diff --git a/packages/nodes-base/nodes/Asana/Asana.node.ts b/packages/nodes-base/nodes/Asana/Asana.node.ts index a2ce21a29b..c7ff177553 100644 --- a/packages/nodes-base/nodes/Asana/Asana.node.ts +++ b/packages/nodes-base/nodes/Asana/Asana.node.ts @@ -1448,6 +1448,27 @@ export class Asana implements INodeType { default: '', description: 'Basic description or notes for the project', }, + { + displayName: 'Privacy Setting', + name: 'privacy_setting', + type: 'options', + options: [ + { + name: 'Private', + value: 'private', + }, + { + name: 'Private to Team', + value: 'private_to_team', + }, + { + name: 'Public to Workspace', + value: 'public_to_workspace', + }, + ], + default: 'private', + description: 'The privacy setting of the project', + }, ], }, // ---------------------------------- @@ -1659,6 +1680,27 @@ export class Asana implements INodeType { default: '', description: 'The new assignee/cardinal for this project', }, + { + displayName: 'Privacy Setting', + name: 'privacy_setting', + type: 'options', + options: [ + { + name: 'Private', + value: 'private', + }, + { + name: 'Private to Team', + value: 'private_to_team', + }, + { + name: 'Public to Workspace', + value: 'public_to_workspace', + }, + ], + default: 'private', + description: 'The privacy setting of the project', + }, { displayName: 'Team Name or ID', name: 'team',