mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
21 lines
395 B
TypeScript
21 lines
395 B
TypeScript
import {IMembershipDto} from "./CommonDtos";
|
|
|
|
enum UserStatusEnum {
|
|
ACTIVE, PENDING_EMAIL_VERIFICATION, DELETED
|
|
}
|
|
|
|
interface IUserSettingsDto {
|
|
}
|
|
|
|
export interface ICurrentUserDto {
|
|
activeWorkspace: string;
|
|
defaultWorkspace: string;
|
|
email: string;
|
|
id: string;
|
|
memberships: IMembershipDto [];
|
|
name: string;
|
|
profilePicture: string;
|
|
settings: IUserSettingsDto;
|
|
status: UserStatusEnum;
|
|
}
|