import { IAddress } from '../address/address'; import { IPaymentMethod } from '../payment/payment'; import { IBilling } from '../billing/billing'; export interface IIdentity { provider: string; authId: string; isSocial: boolean; } export interface IChangePasswordData { email: string; password: string; } export interface IUser { userId: string; firstName: string; lastName: string; fullName?: string; email: string; customerId: string; verified: boolean; createdAt?: string; updatedAt?: string; paymentMethods?: Array; shippingAddress?: Array; billingProfile?: Array; identities?: Array; ebbId?: string; referralCode?: string; referralMdn?: string; referredWithCode?: string; }