/** * Taiga Node - Version 1 * Discriminator: resource=task, operation=update */ interface Credentials { taigaApi: CredentialReference; } /** Update an epic */ export type TaigaV1TaskUpdateParams = { resource: 'task'; operation: 'update'; /** * ID of the project to set the task to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ projectId?: string | Expression; /** * ID of the task to update */ taskId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** ID of the user to assign the task to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ assigned_to?: string | Expression; /** Reason why the task is blocked. Requires "Is Blocked" toggle to be enabled. */ blocked_note?: string | Expression | PlaceholderValue; /** Description */ description?: string | Expression | PlaceholderValue; /** Whether the task is blocked * @default false */ is_blocked?: boolean | Expression; /** ID of the milestone of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ milestone?: string | Expression; /** ID of the status of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ status?: string | Expression; /** Subject */ subject?: string | Expression | PlaceholderValue; /** ID of the user story of the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ user_story?: string | Expression; /** Order of the task in the user story * @default 1 */ us_order?: number | Expression; /** Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @default [] */ tags?: string[]; /** Order of the task in the taskboard * @default 1 */ taskboard_order?: number | Expression; }; }; export type TaigaV1TaskUpdateNode = { type: 'n8n-nodes-base.taiga'; version: 1; credentials?: Credentials; config: NodeConfig; };