mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +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:
@@ -106,11 +106,13 @@ export class GoogleBooks implements INodeType {
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Retrieve a specific bookshelf resource for the specified user',
|
||||
action: 'Get a bookshelf',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all public bookshelf resource for the specified user',
|
||||
action: 'Get all bookshelves',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
@@ -132,26 +134,31 @@ export class GoogleBooks implements INodeType {
|
||||
name: 'Add',
|
||||
value: 'add',
|
||||
description: 'Add a volume to a bookshelf',
|
||||
action: 'Add a bookshelf volume',
|
||||
},
|
||||
{
|
||||
name: 'Clear',
|
||||
value: 'clear',
|
||||
description: 'Clears all volumes from a bookshelf',
|
||||
action: 'Clear a bookshelf volume',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all volumes in a specific bookshelf for the specified user',
|
||||
action: 'Get all bookshelf volumes',
|
||||
},
|
||||
{
|
||||
name: 'Move',
|
||||
value: 'move',
|
||||
description: 'Moves a volume within a bookshelf',
|
||||
action: 'Move a bookshelf volume',
|
||||
},
|
||||
{
|
||||
name: 'Remove',
|
||||
value: 'remove',
|
||||
description: 'Removes a volume from a bookshelf',
|
||||
action: 'Remove a bookshelf volume',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
@@ -173,11 +180,13 @@ export class GoogleBooks implements INodeType {
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get a volume resource based on ID',
|
||||
action: 'Get a volume',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all volumes filtered by query',
|
||||
action: 'Get all volumes',
|
||||
},
|
||||
],
|
||||
displayOptions: {
|
||||
|
||||
Reference in New Issue
Block a user