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