UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

45 lines (41 loc) 1.22 kB
/** * ClickUp Node - Version 1 * Discriminator: resource=folder, operation=update */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Update a checklist */ export type ClickUpV1FolderUpdateParams = { resource: 'folder'; 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>; /** * Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ folder?: string | Expression<string>; /** * Update Fields * @default {} */ updateFields?: { /** Name */ name?: string | Expression<string> | PlaceholderValue; }; }; export type ClickUpV1FolderUpdateNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig<ClickUpV1FolderUpdateParams>; };