/** * Todoist Node - Version 2.1 * Discriminator: resource=project, operation=unarchive */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Project resource */ export type TodoistV21ProjectUnarchiveParams = { resource: 'project'; operation: 'unarchive'; authentication?: 'apiKey' | 'oAuth2' | Expression; /** * The project ID - can be either a string or number */ projectId?: string | Expression | PlaceholderValue; }; export type TodoistV21ProjectUnarchiveNode = { type: 'n8n-nodes-base.todoist'; version: 2.1; credentials?: Credentials; config: NodeConfig; };