n8n-nodes-base
Version:
Base nodes of n8n
32 lines (28 loc) • 907 B
text/typescript
/**
* 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<string>;
/**
* The ID of the task to add the project to
*/
id?: string | Expression<string> | 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<string>;
};
export type AsanaV1TaskProjectRemoveNode = {
type: 'n8n-nodes-base.asana';
version: 1;
credentials?: Credentials;
config: NodeConfig<AsanaV1TaskProjectRemoveParams>;
};