/** * Todoist Node - Version 2 * Discriminator: resource=comment, operation=delete */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Comment resource */ export type TodoistV2CommentDeleteParams = { resource: 'comment'; operation: 'delete'; authentication?: 'apiKey' | 'oAuth2' | Expression; /** * Comment ID */ commentId?: string | Expression | PlaceholderValue; }; export type TodoistV2CommentDeleteNode = { type: 'n8n-nodes-base.todoist'; version: 2; credentials?: Credentials; config: NodeConfig; };