/** * Todoist Node - Version 2.1 * Discriminator: resource=comment, operation=create */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Comment resource */ export type TodoistV21CommentCreateParams = { 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 TodoistV21CommentCreateNode = { type: 'n8n-nodes-base.todoist'; version: 2.1; credentials?: Credentials; config: NodeConfig; };