/** * Todoist Node - Version 2.2 * Discriminator: resource=project, operation=getAll */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Project resource */ export type TodoistV22ProjectGetAllParams = { resource: 'project'; operation: 'getAll'; authentication?: 'apiKey' | 'oAuth2' | Expression; }; export type TodoistV22ProjectGetAllNode = { type: 'n8n-nodes-base.todoist'; version: 2.2; credentials?: Credentials; config: NodeConfig; };