UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

28 lines (24 loc) 673 B
/** * Todoist Node - Version 2 * Discriminator: resource=project, operation=delete */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Project resource */ export type TodoistV2ProjectDeleteParams = { resource: 'project'; operation: 'delete'; authentication?: 'apiKey' | 'oAuth2' | Expression<string>; /** * The project ID - can be either a string or number */ projectId?: string | Expression<string> | PlaceholderValue; }; export type TodoistV2ProjectDeleteNode = { type: 'n8n-nodes-base.todoist'; version: 2; credentials?: Credentials; config: NodeConfig<TodoistV2ProjectDeleteParams>; };