n8n-nodes-base
Version:
Base nodes of n8n
28 lines (24 loc) • 675 B
text/typescript
/**
* Asana Node - Version 1
* Discriminator: resource=taskComment, operation=remove
*/
interface Credentials {
asanaApi: CredentialReference;
asanaOAuth2Api: CredentialReference;
}
/** Remove a comment from a task */
export type AsanaV1TaskCommentRemoveParams = {
resource: 'taskComment';
operation: 'remove';
authentication?: 'accessToken' | 'oAuth2' | Expression<string>;
/**
* The ID of the comment to be removed
*/
id?: string | Expression<string> | PlaceholderValue;
};
export type AsanaV1TaskCommentRemoveNode = {
type: 'n8n-nodes-base.asana';
version: 1;
credentials?: Credentials;
config: NodeConfig<AsanaV1TaskCommentRemoveParams>;
};