n8n-nodes-base
Version:
Base nodes of n8n
29 lines (25 loc) • 770 B
text/typescript
/**
* 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<string>;
/**
* Task ID
*/
taskId?: string | Expression<string> | PlaceholderValue;
};
export type MicrosoftToDoV1TaskDeleteNode = {
type: 'n8n-nodes-base.microsoftToDo';
version: 1;
credentials?: Credentials;
config: NodeConfig<MicrosoftToDoV1TaskDeleteParams>;
};