/** * Taiga Node - Version 1 * Discriminator: resource=epic, operation=update */ interface Credentials { taigaApi: CredentialReference; } /** Update an epic */ export type TaigaV1EpicUpdateParams = { resource: 'epic'; operation: 'update'; /** * ID of the project to set the epic 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 epic to update */ epicId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** ID of the user to whom the epic is assigned. 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 epic is blocked. Requires "Is Blocked" toggle to be enabled. */ blocked_note?: string | Expression | PlaceholderValue; /** Color code in hexadecimal notation * @default 0000FF */ color?: string | Expression; /** Description */ description?: string | Expression | PlaceholderValue; /** Whether the epic is blocked * @default false */ is_blocked?: boolean | Expression; /** Subject */ subject?: string | Expression | PlaceholderValue; /** Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @default [] */ tags?: string[]; }; }; export type TaigaV1EpicUpdateNode = { type: 'n8n-nodes-base.taiga'; version: 1; credentials?: Credentials; config: NodeConfig; };