UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

33 lines (29 loc) 862 B
/** * Microsoft To Do Node - Version 1 * Discriminator: resource=linkedResource, operation=delete */ interface Credentials { microsoftToDoOAuth2Api: CredentialReference; } export type MicrosoftToDoV1LinkedResourceDeleteParams = { resource: 'linkedResource'; operation: 'delete'; /** * Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ taskListId?: string | Expression<string>; /** * Task ID */ taskId?: string | Expression<string> | PlaceholderValue; /** * Linked Resource ID */ linkedResourceId?: string | Expression<string> | PlaceholderValue; }; export type MicrosoftToDoV1LinkedResourceDeleteNode = { type: 'n8n-nodes-base.microsoftToDo'; version: 1; credentials?: Credentials; config: NodeConfig<MicrosoftToDoV1LinkedResourceDeleteParams>; };