/** * Todoist Node - Version 2.2 * Discriminator: resource=comment, operation=update */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Comment resource */ export type TodoistV22CommentUpdateParams = { resource: 'comment'; operation: 'update'; authentication?: 'apiKey' | 'oAuth2' | Expression; /** * Comment ID */ commentId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ commentUpdateFields?: { /** Comment content */ content?: string | Expression | PlaceholderValue; }; }; export type TodoistV22CommentUpdateNode = { type: 'n8n-nodes-base.todoist'; version: 2.2; credentials?: Credentials; config: NodeConfig; };