/** * Todoist Node - Version 2.1 * Discriminator: resource=section, operation=delete */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Section resource */ export type TodoistV21SectionDeleteParams = { resource: 'section'; operation: 'delete'; authentication?: 'apiKey' | 'oAuth2' | Expression; /** * Section ID */ sectionId?: string | Expression | PlaceholderValue; }; export type TodoistV21SectionDeleteNode = { type: 'n8n-nodes-base.todoist'; version: 2.1; credentials?: Credentials; config: NodeConfig; };