mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Building out the skeleton for Clockify integration
This commit is contained in:
20
packages/nodes-base/nodes/Clockify/UserDtos.ts
Normal file
20
packages/nodes-base/nodes/Clockify/UserDtos.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user