mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
3a73493aeb
* Added pull.yml back after reset * Added Clockify Entry * Created ClockifyWriter * ⚡ Improvements to #988 * ⚡ Improvements * ⚡ Improvements Co-authored-by: Ethan Sowell <ethan.sowell@dominion.solutions> Co-authored-by: Mark Horninger <mark.horninger@dominion.solutions>
21 lines
390 B
TypeScript
21 lines
390 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;
|
|
}
|