/** * ClickUp Node - Version 1 * Discriminator: resource=comment, operation=update */ interface Credentials { clickUpApi: CredentialReference; clickUpOAuth2Api: CredentialReference; } /** Update a checklist */ export type ClickUpV1CommentUpdateParams = { resource: 'comment'; operation: 'update'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * Comment ID */ comment?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Assignee ID */ assignee?: string | Expression | PlaceholderValue; /** Comment Text */ commentText?: string | Expression | PlaceholderValue; /** Resolved * @default false */ resolved?: boolean | Expression; }; }; export type ClickUpV1CommentUpdateNode = { type: 'n8n-nodes-base.clickUp'; version: 1; credentials?: Credentials; config: NodeConfig; };