UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

72 lines (68 loc) 2.76 kB
/** * Taiga Node - Version 1 * Discriminator: resource=issue, operation=getAll */ interface Credentials { taigaApi: CredentialReference; } /** Get many epics */ export type TaigaV1IssueGetAllParams = { resource: 'issue'; operation: 'getAll'; /** * ID of the project to which the issue 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 to assign the issue 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>; /** Field to order the issues by * @default assigned_to */ orderBy?: 'assigned_to' | 'created_date' | 'modified_date' | 'owner' | 'priority' | 'severity' | 'status' | 'subject' | 'type' | Expression<string>; /** ID of the owner of the issue. 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; */ priority?: 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>; /** Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ severity?: string | Expression<string>; /** ID of the status of the issue. 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[]; /** Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ type?: string | Expression<string>; }; }; export type TaigaV1IssueGetAllNode = { type: 'n8n-nodes-base.taiga'; version: 1; credentials?: Credentials; config: NodeConfig<TaigaV1IssueGetAllParams>; };