/** * Taiga Node - Version 1 * Discriminator: resource=epic, operation=create */ interface Credentials { taigaApi: CredentialReference; } /** Create an epic */ export type TaigaV1EpicCreateParams = { resource: 'epic'; operation: 'create'; /** * ID of the project to which the epic belongs. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ projectId?: string | Expression; /** * Subject */ subject?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** ID of the user to assign the epic 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 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 issue is blocked * @default false */ is_blocked?: boolean | Expression; /** Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @default [] */ tags?: string[]; }; }; export type TaigaV1EpicCreateNode = { type: 'n8n-nodes-base.taiga'; version: 1; credentials?: Credentials; config: NodeConfig; };