/** * Microsoft To Do Node - Version 1 * Discriminator: resource=task, operation=delete */ interface Credentials { microsoftToDoOAuth2Api: CredentialReference; } export type MicrosoftToDoV1TaskDeleteParams = { resource: 'task'; operation: 'delete'; /** * The identifier of the list, unique in the user's mailbox. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ taskListId?: string | Expression; /** * Task ID */ taskId?: string | Expression | PlaceholderValue; }; export type MicrosoftToDoV1TaskDeleteNode = { type: 'n8n-nodes-base.microsoftToDo'; version: 1; credentials?: Credentials; config: NodeConfig; };