/** * 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; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ team?: string | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ space?: string | Expression; /** * Folderless List * @default false */ folderless?: boolean | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @displayOptions.show { folderless: [false] } */ folder?: string | Expression; /** * List ID */ list?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ assignee?: string | Expression; /** Content */ content?: string | Expression | PlaceholderValue; /** Due Date */ dueDate?: string | Expression; /** Due Date Time * @default false */ dueDateTime?: boolean | Expression; /** Name */ name?: string | Expression | PlaceholderValue; /** Integer mapping as 1 : Urgent, 2 : High, 3 : Normal, 4 : Low * @default 3 */ priority?: number | Expression; /** Unset Status * @default false */ unsetStatus?: boolean | Expression; }; }; export type ClickUpV1ListUpdateNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig; };