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:
19
packages/nodes-base/nodes/Clockify/CommonDtos.ts
Normal file
19
packages/nodes-base/nodes/Clockify/CommonDtos.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
export interface IHourlyRateDto {
|
||||
amount: number;
|
||||
currency: string;
|
||||
}
|
||||
|
||||
enum MembershipStatusEnum {
|
||||
PENDING = "PENDING",
|
||||
ACTIVE = "ACTIVE",
|
||||
DECLINED = "DECLINED",
|
||||
INACTIVE = "INACTIVE"
|
||||
}
|
||||
|
||||
export interface IMembershipDto {
|
||||
hourlyRate: IHourlyRateDto;
|
||||
membershipStatus: MembershipStatusEnum;
|
||||
membershipType: string;
|
||||
targetId: string;
|
||||
userId: string;
|
||||
}
|
||||
Reference in New Issue
Block a user