mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
49 lines
806 B
TypeScript
49 lines
806 B
TypeScript
export interface IHourlyRateDto {
|
|
amount: number;
|
|
currency: string;
|
|
}
|
|
|
|
const enum MembershipStatusEnum {
|
|
PENDING = 'PENDING',
|
|
ACTIVE = 'ACTIVE',
|
|
DECLINED = 'DECLINED',
|
|
INACTIVE = 'INACTIVE',
|
|
}
|
|
|
|
const enum TaskStatusEnum {
|
|
ACTIVE = 'ACTIVE',
|
|
DONE = 'DONE',
|
|
}
|
|
|
|
export interface IMembershipDto {
|
|
hourlyRate: IHourlyRateDto;
|
|
membershipStatus: MembershipStatusEnum;
|
|
membershipType: string;
|
|
targetId: string;
|
|
userId: string;
|
|
}
|
|
|
|
export interface ITagDto {
|
|
id: string;
|
|
name: any;
|
|
workspaceId: string;
|
|
archived: boolean;
|
|
}
|
|
|
|
export interface ITaskDto {
|
|
assigneeIds: object;
|
|
estimate: string;
|
|
id: string;
|
|
name: any;
|
|
workspaceId: string;
|
|
projectId: string;
|
|
'is-active': boolean;
|
|
status: TaskStatusEnum;
|
|
}
|
|
|
|
export interface ITimeIntervalDto {
|
|
duration: string;
|
|
end: string;
|
|
start: string;
|
|
}
|