UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

28 lines (24 loc) 641 B
/** * Todoist Node - Version 2.1 * Discriminator: resource=comment, operation=delete */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Comment resource */ export type TodoistV21CommentDeleteParams = { resource: 'comment'; operation: 'delete'; authentication?: 'apiKey' | 'oAuth2' | Expression<string>; /** * Comment ID */ commentId?: string | Expression<string> | PlaceholderValue; }; export type TodoistV21CommentDeleteNode = { type: 'n8n-nodes-base.todoist'; version: 2.1; credentials?: Credentials; config: NodeConfig<TodoistV21CommentDeleteParams>; };