UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

76 lines (72 loc) 2.11 kB
/** * ClickUp Node - Version 1 * Discriminator: resource=list, operation=update */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Update a checklist */ export type ClickUpV1ListUpdateParams = { resource: 'list'; operation: 'update'; authentication?: 'accessToken' | 'oAuth2' | 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; */ team?: 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; */ space?: string | Expression<string>; /** * Folderless List * @default false */ folderless?: boolean | Expression<boolean>; /** * Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; * @displayOptions.show { folderless: [false] } */ folder?: string | Expression<string>; /** * List ID */ list?: string | Expression<string> | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ assignee?: string | Expression<string>; /** Content */ content?: string | Expression<string> | PlaceholderValue; /** Due Date */ dueDate?: string | Expression<string>; /** Due Date Time * @default false */ dueDateTime?: boolean | Expression<boolean>; /** Name */ name?: string | Expression<string> | PlaceholderValue; /** Integer mapping as 1 : Urgent, 2 : High, 3 : Normal, 4 : Low * @default 3 */ priority?: number | Expression<number>; /** Unset Status * @default false */ unsetStatus?: boolean | Expression<boolean>; }; }; export type ClickUpV1ListUpdateNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig<ClickUpV1ListUpdateParams>; };