/** * ClickUp Node - Version 1 * Discriminator: resource=goal, operation=delete */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Delete a checklist */ export type ClickUpV1GoalDeleteParams = { resource: 'goal'; operation: 'delete'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Goal ID */ goal?: string | Expression | PlaceholderValue; }; export type ClickUpV1GoalDeleteNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig; };