UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

81 lines (77 loc) 2.43 kB
/** * ClickUp Node - Version 1 * Discriminator: resource=timeEntry, operation=create */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Create a checklist */ export type ClickUpV1TimeEntryCreateParams = { resource: 'timeEntry'; operation: 'create'; 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>; /** * 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: [true] } */ list?: string | Expression<string>; /** * Start */ start?: string | Expression<string>; /** * Duration in minutes * @default 0 */ duration?: number | Expression<number>; /** * Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ task?: string | Expression<string>; /** * Additional Fields * @default {} */ additionalFields?: { /** Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; * @default [] */ assignee?: string | Expression<string>; /** Billable * @default true */ billable?: boolean | Expression<boolean>; /** Description of the time entry */ description?: string | Expression<string> | PlaceholderValue; /** 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[]; }; }; export type ClickUpV1TimeEntryCreateNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig<ClickUpV1TimeEntryCreateParams>; };