/** * Todoist Node - Version 1 * Discriminator: resource=task, operation=move */ interface Credentials { todoistApi: CredentialReference; todoistOAuth2Api: CredentialReference; } /** Task resource */ export type TodoistV1TaskMoveParams = { resource: 'task'; operation: 'move'; authentication?: 'apiKey' | 'oAuth2' | Expression; /** * Task ID */ taskId?: string | Expression | PlaceholderValue; /** * The project you want to operate on. Choose from the list, or specify an ID. * @default {"mode":"list","value":""} */ project?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; /** * Section to which you want move the task. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ section?: string | Expression; }; export type TodoistV1TaskMoveNode = { type: 'n8n-nodes-base.todoist'; version: 1; credentials?: Credentials; config: NodeConfig; };