/** * Asana Node - Version 1 * Discriminator: resource=taskProject, operation=remove */ interface Credentials { asanaApi: CredentialReference; asanaOAuth2Api: CredentialReference; } /** Remove a comment from a task */ export type AsanaV1TaskProjectRemoveParams = { resource: 'taskProject'; operation: 'remove'; authentication?: 'accessToken' | 'oAuth2' | Expression; /** * The ID of the task to add the project to */ id?: string | Expression | PlaceholderValue; /** * The project where the task will be removed from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ project?: string | Expression; }; export type AsanaV1TaskProjectRemoveNode = { type: 'n8n-nodes-base.asana'; version: 1; credentials?: Credentials; config: NodeConfig; };