import { UserProfile } from './user'; import { Subscribe } from './subscription'; // ----------- HTTP body ----------- // export interface Body { user?: UserProfile; email?: string; password?: string; rememberMe?: boolean; token?: string; oldPassword?: string; reasonForChange?: string; subscribe?: Subscribe; } // ---- User facing path body ----- // export interface ChangePassword { password?: string; token?: string; oldPassword?: string; reasonForChange: string; }