/** * 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; /** * The project ID - can be either a string or number */ projectId?: string | Expression | PlaceholderValue; }; export type TodoistV2ProjectDeleteNode = { type: 'n8n-nodes-base.todoist'; version: 2; credentials?: Credentials; config: NodeConfig; };