UNPKG

echadospalante-core

Version:

This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.

21 lines (20 loc) 589 B
import { RoleData } from "./role.data"; import { UserContactData } from "./user-contact.data"; import { UserDetailData } from "./user-detail.data"; import { VentureCategoryData } from "./venture-category.data"; export declare class UserData { id: string; picture: string; email: string; firstName: string; lastName: string; active: boolean; createdAt: Date; updatedAt: Date; onboardingCompleted: boolean; verified: boolean; contact?: UserContactData; detail?: UserDetailData; preferences: VentureCategoryData[]; roles: RoleData[]; }