UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

69 lines (65 loc) 2.56 kB
/** * Taiga Node - Version 1 * Discriminator: resource=task, operation=getAll */ interface Credentials { taigaApi: CredentialReference; } /** Get many epics */ export type TaigaV1TaskGetAllParams = { resource: 'task'; operation: 'getAll'; /** * ID of the project to which the task belongs. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ projectId?: string | Expression<string>; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression<boolean>; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression<number>; /** * Filters * @default {} */ filters?: { /** ID of the user whom the task is assigned to. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ assigned_to?: string | Expression<string>; /** Whether the task is closed * @default false */ statusIsClosed?: boolean | Expression<boolean>; /** ID of the milestone of the task. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ milestone?: string | Expression<string>; /** ID of the owner of the task. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ owner?: string | Expression<string>; /** Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ role?: string | Expression<string>; /** ID of the status of the task. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ status?: string | Expression<string>; /** Choose from the list, or specify IDs using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; * @default [] */ tags?: string[]; /** ID of the user story to which the task belongs. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ userStory?: string | Expression<string>; }; }; export type TaigaV1TaskGetAllNode = { type: 'n8n-nodes-base.taiga'; version: 1; credentials?: Credentials; config: NodeConfig<TaigaV1TaskGetAllParams>; };