/** * ClickUp Node - Version 1 * Discriminator: resource=goal, operation=update */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Update a checklist */ export type ClickUpV1GoalUpdateParams = { resource: 'goal'; operation: 'update'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Goal ID */ goal?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Add Owners */ addOwners?: string | Expression | PlaceholderValue; /** Color */ color?: string | Expression; /** Description */ description?: string | Expression | PlaceholderValue; /** Due Date */ dueDate?: string | Expression; /** Name */ name?: string | Expression | PlaceholderValue; /** Remove Owners */ removeOwners?: string | Expression | PlaceholderValue; }; }; export type ClickUpV1GoalUpdateNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig; };