/** * ClickUp Node - Version 1 * Discriminator: resource=goal, operation=create */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Create a checklist */ export type ClickUpV1GoalCreateParams = { resource: 'goal'; operation: 'create'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ team?: string | Expression; /** * Name */ name?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Color */ color?: string | Expression; /** Description */ description?: string | Expression | PlaceholderValue; /** Due Date */ dueDate?: string | Expression; /** Multiple Owners * @default false */ multipleOwners?: boolean | Expression; /** Owners */ owners?: string | Expression | PlaceholderValue; }; }; export type ClickUpV1GoalCreateNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig; };