mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor: Add action to all operations on all nodes (#3655)
* 👕 Add `action` to `INodePropertyOptions` * 👕 Apply `node-param-operation-option-without-action` * ✏️ Fix add/remove phrasing * ✏️ Fix email template phrasing * ✏️ Fix add/remove phrasing * ✏️ Fix custom fields phrasing * ✏️ Fix job report phrasing * ✏️ Fix query phrasing * ✏️ Various phrasing fixes * ✏️ Fix final phrasings * ✏️ Remove `conversation` * ✏️ Fix plural
This commit is contained in:
@@ -20,41 +20,49 @@ export const companyOperations: INodeProperties[] = [
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a company',
|
||||
action: 'Create a company',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a company',
|
||||
action: 'Delete a company',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a company',
|
||||
action: 'Get a company',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all companies',
|
||||
action: 'Get all companies',
|
||||
},
|
||||
{
|
||||
name: 'Get Recently Created',
|
||||
value: 'getRecentlyCreated',
|
||||
description: 'Get recently created companies',
|
||||
action: 'Get a recently created company',
|
||||
},
|
||||
{
|
||||
name: 'Get Recently Modified',
|
||||
value: 'getRecentlyModified',
|
||||
description: 'Get recently modified companies',
|
||||
action: 'Get a recently modified company',
|
||||
},
|
||||
{
|
||||
name: 'Search By Domain',
|
||||
value: 'searchByDomain',
|
||||
description: 'Search companies by domain',
|
||||
action: 'Search for a company by Domain',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
value: 'update',
|
||||
description: 'Update a company',
|
||||
action: 'Update a company',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
||||
Reference in New Issue
Block a user