mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
21 lines
389 B
TypeScript
21 lines
389 B
TypeScript
import { IMembershipDto } from './CommonDtos';
|
|
|
|
enum UserStatusEnum {
|
|
ACTIVE, PENDING_EMAIL_VERIFICATION, DELETED,
|
|
}
|
|
|
|
interface IUserSettingsDto {
|
|
}
|
|
|
|
export interface IUserDto {
|
|
activeWorkspace: string;
|
|
defaultWorkspace: string;
|
|
email: string;
|
|
id: string;
|
|
memberships: IMembershipDto[];
|
|
name: string;
|
|
profilePicture: string;
|
|
settings: IUserSettingsDto;
|
|
status: UserStatusEnum;
|
|
}
|