mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
✨ flow node and trigger
This commit is contained in:
27
packages/nodes-base/nodes/Flow/TaskInterface.ts
Normal file
27
packages/nodes-base/nodes/Flow/TaskInterface.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
export interface ITask {
|
||||
organization_id?: number;
|
||||
task?: TaskInfo;
|
||||
}
|
||||
|
||||
export interface TaskInfo {
|
||||
workspace_id?: number;
|
||||
id?: number;
|
||||
name?: string;
|
||||
owner_id?: number;
|
||||
list_id?: number;
|
||||
starts_on?: string;
|
||||
due_on?: string;
|
||||
mirror_parent_subscribers?: boolean;
|
||||
mirror_parent_tags?: boolean;
|
||||
note_content?: string;
|
||||
note_mime_type?: string;
|
||||
parent_id?: number;
|
||||
position_list?: number;
|
||||
position_upcoming?: number;
|
||||
position?: number;
|
||||
section_id?: number;
|
||||
subscriptions?: number;
|
||||
tags?: string[];
|
||||
completed?: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user