/** * Asana Node - Version 1 * Discriminator: resource=task, operation=move */ interface Credentials { asanaApi: CredentialReference; asanaOAuth2Api: CredentialReference; } /** Move a task */ export type AsanaV1TaskMoveParams = { resource: 'task'; operation: 'move'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * The ID of the task to be moved */ id?: string | Expression | PlaceholderValue; /** * Project to show the sections of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ projectId?: string | Expression; /** * The Section to move the task to. 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 AsanaV1TaskMoveOutput = { success?: boolean; }; export type AsanaV1TaskMoveNode = { type: 'n8n-nodes-base.asana'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };