import { IParty, TUserType } from "@retail-data-factory/rdf-angular-types-api"; export interface IUserProfile { deliverySiteId: string; department: string; firstName: string; lastName: string; phone1: string; phone2: string; jobTitle: string; } export interface IUser { id: string; email: string; login: string; userType: TUserType; userProfile: IUserProfile; selectedPartyId: string; selectedPartyProfile: IParty; availableParty: Array; }