/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
packages/shared/src/entities/user/user.interface.ts
22 строки
525 B
Adam Chmara
chore(root): apply biome formatter & linter fixes NV-6436 (#8838)
31 июл 2025, 14:59
Не верифицирован
31 июл 2025, 14:59
855fb8f
Код
Авторство
О чём код?
import { IServicesHashes, JobTitleEnum } from '../../types'; export interface IUserEntity { _id: string; firstName?: string | null; lastName?: string | null; email?: string | null; profilePicture?: string | null; createdAt: string; showOnBoarding?: boolean; showOnBoardingTour?: number; servicesHashes?: IServicesHashes; jobTitle?: JobTitleEnum; hasPassword: boolean; } export interface IUpdateUserProfile { firstName: string; lastName: string; profilePicture?: string; externalId?: string; }