UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

32 lines (28 loc) 828 B
/** * ClickUp Node - Version 1 * Discriminator: resource=timeEntry, operation=delete */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Delete a checklist */ export type ClickUpV1TimeEntryDeleteParams = { resource: 'timeEntry'; operation: 'delete'; 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>; /** * Time Entry ID */ timeEntry?: string | Expression<string> | PlaceholderValue; }; export type ClickUpV1TimeEntryDeleteNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig<ClickUpV1TimeEntryDeleteParams>; };