mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +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:
@@ -77,16 +77,19 @@ export class OneSimpleApi implements INodeType {
|
||||
name: 'Generate PDF',
|
||||
value: 'pdf',
|
||||
description: 'Generate a PDF from a webpage',
|
||||
action: 'Generate PDF',
|
||||
},
|
||||
{
|
||||
name: 'Get SEO Data',
|
||||
value: 'seo',
|
||||
description: 'Get SEO information from website',
|
||||
action: 'Get SEO Data',
|
||||
},
|
||||
{
|
||||
name: 'Take Screenshot',
|
||||
value: 'screenshot',
|
||||
description: 'Create a screenshot from a webpage',
|
||||
action: 'Screenshot',
|
||||
},
|
||||
],
|
||||
default: 'pdf',
|
||||
@@ -109,11 +112,13 @@ export class OneSimpleApi implements INodeType {
|
||||
name: 'Instagram',
|
||||
value: 'instagramProfile',
|
||||
description: 'Get details about an Instagram profile',
|
||||
action: 'Get details about an Instagram profile',
|
||||
},
|
||||
{
|
||||
name: 'Spotify',
|
||||
value: 'spotifyArtistProfile',
|
||||
description: 'Get details about a Spotify Artist',
|
||||
action: 'Get details about a Spotify artist',
|
||||
},
|
||||
],
|
||||
default: 'instagramProfile',
|
||||
@@ -136,11 +141,13 @@ export class OneSimpleApi implements INodeType {
|
||||
name: 'Exchange Rate',
|
||||
value: 'exchangeRate',
|
||||
description: 'Convert a value between currencies',
|
||||
action: 'Convert a value between currencies',
|
||||
},
|
||||
{
|
||||
name: 'Image Metadata',
|
||||
value: 'imageMetadata',
|
||||
description: 'Retrieve image metadata from a URL',
|
||||
action: 'Get image metadata from a URL',
|
||||
},
|
||||
],
|
||||
default: 'exchangeRate',
|
||||
@@ -163,16 +170,19 @@ export class OneSimpleApi implements INodeType {
|
||||
name: 'Expand URL',
|
||||
value: 'expandURL',
|
||||
description: 'Expand a shortened URL',
|
||||
action: 'Expand a shortened URL',
|
||||
},
|
||||
{
|
||||
name: 'Generate QR Code',
|
||||
value: 'qrCode',
|
||||
description: 'Generate a QR Code',
|
||||
action: 'Generate a QR code utility',
|
||||
},
|
||||
{
|
||||
name: 'Validate Email',
|
||||
value: 'validateEmail',
|
||||
description: 'Validate an email address',
|
||||
action: 'Validate an email address',
|
||||
},
|
||||
],
|
||||
default: 'validateEmail',
|
||||
|
||||
Reference in New Issue
Block a user