/** * Todoist Node - Version 2.2 * Discriminator: resource=comment, operation=create */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Comment resource */ export type TodoistV22CommentCreateParams = { resource: 'comment'; operation: 'create'; authentication?: 'apiKey' | 'oAuth2' | Expression; /** * The ID of the task to comment on */ commentTaskId?: string | Expression | PlaceholderValue; /** * Comment content */ commentContent?: string | Expression | PlaceholderValue; }; export type TodoistV22CommentCreateNode = { type: 'n8n-nodes-base.todoist'; version: 2.2; credentials?: Credentials; config: NodeConfig; };