mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
0ecbb4a19d
* 🔨 prettier formated nodes - A * 🔨 prettier formated nodes - B * ⚡ prettier formated nodes - C * ⚡ prettier formated nodes - D * ⚡ prettier formated nodes - E-F * 🎨 Adjust nodes-base formatting command (#3805) * Format additional files in nodes A-F (#3811) * ⚡ fixes * 🎨 Add Mindee to ignored dirs Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
27 lines
536 B
TypeScript
27 lines
536 B
TypeScript
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;
|
|
}
|