From 176e475c8e3864a67369d265d6ab37e6468589d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Thu, 26 Aug 2021 19:42:38 +0200 Subject: [PATCH] :xap: Open tooltip links on new tab (#2106) * :sparkles: Create mixin * :zap: Implement mixin * :fire: Remove hardcoded attribute * :hammer: Refactor mixin into helper * :hammer: Refactor string replacement * :pencil2: Unrelated description fixes * :zap: Simplify helper import --- .../editor-ui/src/components/CredentialsInput.vue | 5 ++++- .../editor-ui/src/components/MultipleParameter.vue | 4 +++- .../src/components/ParameterInputFull.vue | 4 +++- .../src/components/ParameterInputList.vue | 5 ++++- packages/editor-ui/src/components/helpers.ts | 5 +++++ .../nodes/AgileCrm/CompanyDescription.ts | 4 ++-- .../nodes/AgileCrm/ContactDescription.ts | 4 ++-- .../nodes-base/nodes/AgileCrm/DealDescription.ts | 4 ++-- .../nodes/Airtable/AirtableTrigger.node.ts | 2 +- .../nodes/Aws/DynamoDB/ItemDescription.ts | 14 +++++++------- .../nodes-base/nodes/Bubble/ObjectDescription.ts | 4 ++-- .../Cisco/Webex/descriptions/MeetingDescription.ts | 14 +++++++------- .../nodes/Cockpit/CollectionDescription.ts | 4 ++-- .../nodes/CustomerIo/CustomerDescription.ts | 2 +- .../nodes/CustomerIo/EventDescription.ts | 4 ++-- .../descriptions/DocumentDescription.ts | 10 +++++----- .../Elasticsearch/descriptions/IndexDescription.ts | 12 ++++++------ packages/nodes-base/nodes/Ghost/PostDescription.ts | 4 ++-- .../nodes/Google/Analytics/ReportDescription.ts | 2 +- .../nodes/Google/Drive/GoogleDrive.node.ts | 4 ++-- .../nodes/Google/GSuiteAdmin/GroupDescripion.ts | 2 +- .../nodes/Google/GSuiteAdmin/UserDescription.ts | 2 +- .../Google/Perspective/GooglePerspective.node.ts | 2 +- .../nodes/HomeAssistant/TemplateDescription.ts | 2 +- packages/nodes-base/nodes/ICalendar.node.ts | 4 ++-- .../nodes/Jira/IssueCommentDescription.ts | 6 +++--- .../descriptions/EndOfDayDataDescription.ts | 2 +- .../descriptions/ExchangeDescription.ts | 2 +- .../nodes-base/nodes/Matrix/MessageDescription.ts | 2 +- .../nodes-base/nodes/Mattermost/Mattermost.node.ts | 2 +- .../Outlook/DraftMessageSharedDescription.ts | 2 +- .../nodes/Microsoft/Outlook/FolderDescription.ts | 2 +- .../Microsoft/Outlook/FolderMessageDecription.ts | 2 +- .../nodes/MondayCom/BoardItemDescription.ts | 4 ++-- .../nodes-base/nodes/Pushover/Pushover.node.ts | 2 +- .../nodes/QuickBase/RecordDescription.ts | 2 +- .../descriptions/Bill/BillDescription.ts | 2 +- .../descriptions/Customer/CustomerDescription.ts | 2 +- .../descriptions/Employee/EmployeeDescription.ts | 2 +- .../descriptions/Estimate/EstimateDescription.ts | 2 +- .../descriptions/Invoice/InvoiceDescription.ts | 2 +- .../descriptions/Item/ItemDescription.ts | 2 +- .../descriptions/Payment/PaymentDescription.ts | 2 +- .../descriptions/Purchase/PurchaseDescription.ts | 2 +- .../descriptions/Vendor/VendorDescription.ts | 2 +- .../nodes/SendGrid/ContactDescription.ts | 2 +- .../nodes-base/nodes/SentryIo/IssueDescription.ts | 2 +- .../nodes/ServiceNow/BusinessServiceDescription.ts | 2 +- .../ServiceNow/ConfigurationItemsDescription.ts | 2 +- .../nodes/ServiceNow/DepartmentDescription.ts | 2 +- .../nodes/ServiceNow/DictionaryDescription.ts | 2 +- .../nodes/ServiceNow/IncidentDescription.ts | 2 +- .../nodes/ServiceNow/TableRecordDescription.ts | 2 +- .../nodes-base/nodes/ServiceNow/UserDescription.ts | 2 +- .../nodes/ServiceNow/UserGroupDescription.ts | 2 +- .../nodes/ServiceNow/UserRoleDescription.ts | 2 +- .../nodes-base/nodes/Strapi/EntryDescription.ts | 2 +- .../nodes/Stripe/descriptions/ChargeDescription.ts | 6 +++--- .../nodes/Stripe/descriptions/CouponDescription.ts | 2 +- .../Stripe/descriptions/CustomerDescription.ts | 8 ++++---- .../nodes/Stripe/descriptions/SourceDescription.ts | 2 +- .../nodes/Tapfiliate/AffiliateDescription.ts | 2 +- packages/nodes-base/nodes/UProc/UProc.node.ts | 2 +- .../nodes-base/nodes/Xero/ContactDescription.ts | 2 +- .../nodes-base/nodes/Xero/InvoiceDescription.ts | 2 +- .../nodes-base/nodes/Zendesk/TicketDescription.ts | 4 ++-- 66 files changed, 119 insertions(+), 104 deletions(-) create mode 100644 packages/editor-ui/src/components/helpers.ts diff --git a/packages/editor-ui/src/components/CredentialsInput.vue b/packages/editor-ui/src/components/CredentialsInput.vue index e5c25b8121..3bf0c21472 100644 --- a/packages/editor-ui/src/components/CredentialsInput.vue +++ b/packages/editor-ui/src/components/CredentialsInput.vue @@ -25,7 +25,7 @@ {{parameter.displayName}}: -
+
@@ -146,6 +146,8 @@ import ParameterInput from '@/components/ParameterInput.vue'; import mixins from 'vue-typed-mixins'; +import { addTargetBlank } from './helpers'; + export default mixins( copyPaste, externalHooks, @@ -266,6 +268,7 @@ export default mixins( }, }, methods: { + addTargetBlank, copyCallbackUrl (): void { this.copyToClipboard(this.oAuthCallbackUrl); diff --git a/packages/editor-ui/src/components/MultipleParameter.vue b/packages/editor-ui/src/components/MultipleParameter.vue index ce606b5eb6..2aeef6df26 100644 --- a/packages/editor-ui/src/components/MultipleParameter.vue +++ b/packages/editor-ui/src/components/MultipleParameter.vue @@ -4,7 +4,7 @@
{{parameter.displayName}}: -
+
@@ -48,6 +48,7 @@ import { get } from 'lodash'; import { genericHelpers } from '@/components/mixins/genericHelpers'; import mixins from 'vue-typed-mixins'; +import { addTargetBlank } from './helpers'; export default mixins(genericHelpers) .extend({ @@ -91,6 +92,7 @@ export default mixins(genericHelpers) this.$emit('valueChanged', parameterData); }, + addTargetBlank, deleteItem (index: number) { const parameterData = { name: this.getPath(index), diff --git a/packages/editor-ui/src/components/ParameterInputFull.vue b/packages/editor-ui/src/components/ParameterInputFull.vue index 4d488faf92..b15c002674 100644 --- a/packages/editor-ui/src/components/ParameterInputFull.vue +++ b/packages/editor-ui/src/components/ParameterInputFull.vue @@ -3,7 +3,7 @@ {{parameter.displayName}}: -
+
@@ -21,6 +21,7 @@ import { } from '@/Interface'; import ParameterInput from '@/components/ParameterInput.vue'; +import { addTargetBlank } from './helpers'; export default Vue .extend({ @@ -51,6 +52,7 @@ export default Vue 'value', ], methods: { + addTargetBlank, getArgument (argumentName: string): string | number | boolean | undefined { if (this.parameter.typeOptions === undefined) { return undefined; diff --git a/packages/editor-ui/src/components/ParameterInputList.vue b/packages/editor-ui/src/components/ParameterInputList.vue index 4c1865b230..cb9f749e1a 100644 --- a/packages/editor-ui/src/components/ParameterInputList.vue +++ b/packages/editor-ui/src/components/ParameterInputList.vue @@ -31,7 +31,7 @@ {{parameter.displayName}}: -
+
@@ -92,6 +92,8 @@ import { genericHelpers } from '@/components/mixins/genericHelpers'; import { workflowHelpers } from '@/components/mixins/workflowHelpers'; import ParameterInputFull from '@/components/ParameterInputFull.vue'; +import { addTargetBlank } from './helpers'; + import { get, set } from 'lodash'; import mixins from 'vue-typed-mixins'; @@ -121,6 +123,7 @@ export default mixins( }, }, methods: { + addTargetBlank, multipleValues (parameter: INodeProperties): boolean { if (this.getArgument('multipleValues', parameter) === true) { return true; diff --git a/packages/editor-ui/src/components/helpers.ts b/packages/editor-ui/src/components/helpers.ts new file mode 100644 index 0000000000..c751adf785 --- /dev/null +++ b/packages/editor-ui/src/components/helpers.ts @@ -0,0 +1,5 @@ +export function addTargetBlank(html: string) { + return html.includes('href=') + ? html.replace(/href=/g, 'target="_blank" href=') + : html; +} diff --git a/packages/nodes-base/nodes/AgileCrm/CompanyDescription.ts b/packages/nodes-base/nodes/AgileCrm/CompanyDescription.ts index ef473ef46f..da5eeef238 100644 --- a/packages/nodes-base/nodes/AgileCrm/CompanyDescription.ts +++ b/packages/nodes-base/nodes/AgileCrm/CompanyDescription.ts @@ -147,7 +147,7 @@ export const companyFields = [ ], }, }, - description: 'Object of values to set as described here.', + description: 'Object of values to set as described here.', }, { displayName: 'Additional Fields', @@ -443,7 +443,7 @@ export const companyFields = [ ], }, }, - description: 'Object of values to set as described here.', + description: 'Object of values to set as described here.', }, { displayName: 'Additional Fields', diff --git a/packages/nodes-base/nodes/AgileCrm/ContactDescription.ts b/packages/nodes-base/nodes/AgileCrm/ContactDescription.ts index 167d428f8d..82cd03afe1 100644 --- a/packages/nodes-base/nodes/AgileCrm/ContactDescription.ts +++ b/packages/nodes-base/nodes/AgileCrm/ContactDescription.ts @@ -151,7 +151,7 @@ export const contactFields = [ }, }, - description: `Object of values to set as described here.`, + description: `Object of values to set as described here.`, }, { @@ -611,7 +611,7 @@ export const contactFields = [ ], }, }, - description: `Object of values to set as described here.`, + description: `Object of values to set as described here.`, }, { displayName: 'Additional Fields', diff --git a/packages/nodes-base/nodes/AgileCrm/DealDescription.ts b/packages/nodes-base/nodes/AgileCrm/DealDescription.ts index 812d939e0a..7fb7f55e5f 100644 --- a/packages/nodes-base/nodes/AgileCrm/DealDescription.ts +++ b/packages/nodes-base/nodes/AgileCrm/DealDescription.ts @@ -266,7 +266,7 @@ export const dealFields = [ ], }, }, - description: `Object of values to set as described here.`, + description: `Object of values to set as described here.`, }, { displayName: 'Additional Fields', @@ -416,7 +416,7 @@ export const dealFields = [ }, }, - description: `Object of values to set as described here.`, + description: `Object of values to set as described here.`, }, { displayName: 'Additional Fields', diff --git a/packages/nodes-base/nodes/Airtable/AirtableTrigger.node.ts b/packages/nodes-base/nodes/Airtable/AirtableTrigger.node.ts index 0cd4c3e8ad..fa866960c9 100644 --- a/packages/nodes-base/nodes/Airtable/AirtableTrigger.node.ts +++ b/packages/nodes-base/nodes/Airtable/AirtableTrigger.node.ts @@ -109,7 +109,7 @@ export class AirtableTrigger implements INodeType { name: 'formula', type: 'string', default: '', - description: `Formulas may involve functions, numeric operations, logical operations, and text operations that operate on fields. More info here.`, + description: `Formulas may involve functions, numeric operations, logical operations, and text operations that operate on fields. More info here.`, }, { displayName: 'View ID', diff --git a/packages/nodes-base/nodes/Aws/DynamoDB/ItemDescription.ts b/packages/nodes-base/nodes/Aws/DynamoDB/ItemDescription.ts index e89d5ef3d6..3a0dd79c09 100644 --- a/packages/nodes-base/nodes/Aws/DynamoDB/ItemDescription.ts +++ b/packages/nodes-base/nodes/Aws/DynamoDB/ItemDescription.ts @@ -223,7 +223,7 @@ export const itemFields = [ name: 'conditionExpression', type: 'string', default: '', - description: 'A condition that must be satisfied in order for a conditional upsert to succeed. View details', + description: 'A condition that must be satisfied in order for a conditional upsert to succeed. View details', }, { displayName: 'Expression Attribute Names', @@ -254,7 +254,7 @@ export const itemFields = [ ], }, ], - description: 'One or more substitution tokens for attribute names in an expression. View details', + description: 'One or more substitution tokens for attribute names in an expression. View details', }, ], }, @@ -425,7 +425,7 @@ export const itemFields = [ ], }, ], - description: 'One or more substitution tokens for attribute names in an expression. Check Info', + description: 'One or more substitution tokens for attribute names in an expression. Check Info', }, { displayName: 'Expression Attribute Values', @@ -648,7 +648,7 @@ export const itemFields = [ ], }, ], - description: 'One or more substitution tokens for attribute names in an expression. View details', + description: 'One or more substitution tokens for attribute names in an expression. View details', }, { displayName: 'Read Type', @@ -665,7 +665,7 @@ export const itemFields = [ }, ], default: 'eventuallyConsistentRead', - description: 'Type of read to perform on the table. View details', + description: 'Type of read to perform on the table. View details', }, ], }, @@ -688,7 +688,7 @@ export const itemFields = [ }, }, default: false, - description: 'Whether to do an scan or query. Check differences', + description: 'Whether to do an scan or query. Check differences', }, { displayName: 'Filter Expression', @@ -955,7 +955,7 @@ export const itemFields = [ ], }, ], - description: 'One or more substitution tokens for attribute names in an expression. Check Info', + description: 'One or more substitution tokens for attribute names in an expression. Check Info', }, ], }, diff --git a/packages/nodes-base/nodes/Bubble/ObjectDescription.ts b/packages/nodes-base/nodes/Bubble/ObjectDescription.ts index 74c5870606..63270b434e 100644 --- a/packages/nodes-base/nodes/Bubble/ObjectDescription.ts +++ b/packages/nodes-base/nodes/Bubble/ObjectDescription.ts @@ -432,7 +432,7 @@ export const objectFields = [ { name: 'Geographic Search', value: 'geographic_search', - description: `Use to test if the current thing is within a radius from a central address. To use this, the value sent with the constraint must have an address and a range. See link.`, + description: `Use to test if the current thing is within a radius from a central address. To use this, the value sent with the constraint must have an address and a range. See link.`, }, ], default: '', @@ -471,7 +471,7 @@ export const objectFields = [ }, }, placeholder: `[ { "key": "name", "constraint_type": "text contains", "value": "cafe" } , { "key": "address", "constraint_type": "geographic_search", "value": { "range":10, "origin_address":"New York" } } ]`, - description: 'Refine the list that is returned by the Data API with search constraints, exactly as you define a search in Bubble. See link', + description: 'Refine the list that is returned by the Data API with search constraints, exactly as you define a search in Bubble. See link', }, { displayName: 'Sort', diff --git a/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingDescription.ts b/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingDescription.ts index 8937ff0314..925b1ccee1 100644 --- a/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingDescription.ts +++ b/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingDescription.ts @@ -79,7 +79,7 @@ export const meetingFields = [ ], }, }, - description: 'Date and time for the start of meeting. Acceptable format', + description: 'Date and time for the start of the meeting. Acceptable format', }, { displayName: 'End', @@ -97,7 +97,7 @@ export const meetingFields = [ ], }, }, - description: 'Date and time for the end of meeting. Acceptable format', + description: 'Date and time for the end of the meeting. Acceptable format', }, { displayName: 'Additional Fields', @@ -270,7 +270,7 @@ export const meetingFields = [ name: 'recurrence', type: 'string', default: '', - description: `Rule for how the meeting should recur. Acceptable format`, + description: `Rule for how the meeting should recur. Acceptable format`, }, { displayName: 'Required Registration Info', @@ -542,7 +542,7 @@ export const meetingFields = [ name: 'from', type: 'dateTime', default: '', - description: 'Start date and time (inclusive) for the meeting. Acceptable format', + description: 'Start date and time (inclusive) for the meeting. Acceptable format', }, { displayName: 'Host Email', @@ -658,7 +658,7 @@ export const meetingFields = [ name: 'to', type: 'dateTime', default: '', - description: 'End date and time (inclusive) for the meeting. Acceptable format', + description: 'End date and time (inclusive) for the meeting. Acceptable format', }, { displayName: 'Weblink', @@ -762,7 +762,7 @@ export const meetingFields = [ name: 'end', type: 'dateTime', default: '', - description: 'Date and time for the end of meeting. Acceptable format', + description: 'Date and time for the end of the meeting. Acceptable format', }, { displayName: 'Exclude Password', @@ -955,7 +955,7 @@ export const meetingFields = [ name: 'start', type: 'dateTime', default: '', - description: 'Date and time for the start of meeting. Acceptable format', + description: 'Date and time for the start of the meeting. Acceptable format', }, { displayName: 'Title', diff --git a/packages/nodes-base/nodes/Cockpit/CollectionDescription.ts b/packages/nodes-base/nodes/Cockpit/CollectionDescription.ts index 904f470a7f..9b10469aef 100644 --- a/packages/nodes-base/nodes/Cockpit/CollectionDescription.ts +++ b/packages/nodes-base/nodes/Cockpit/CollectionDescription.ts @@ -133,7 +133,7 @@ export const collectionFields = [ alwaysOpenEditWindow: true, }, placeholder: '{"name": "Jim"}', - description: 'Filter query in Mongolite format.', + description: 'Filter query in Mongolite format.', }, { displayName: 'Language', @@ -170,7 +170,7 @@ export const collectionFields = [ type: 'json', default: '', placeholder: '{"price": -1}', - description: 'Sort query in Mongolite format.', + description: 'Sort query in Mongolite format.', }, ], }, diff --git a/packages/nodes-base/nodes/CustomerIo/CustomerDescription.ts b/packages/nodes-base/nodes/CustomerIo/CustomerDescription.ts index abb0dcbb1b..7ccf04aeeb 100644 --- a/packages/nodes-base/nodes/CustomerIo/CustomerDescription.ts +++ b/packages/nodes-base/nodes/CustomerIo/CustomerDescription.ts @@ -112,7 +112,7 @@ export const customerFields = [ ], }, }, - description: 'Object of values to set as described here.', + description: 'Object of values to set as described here.', }, { displayName: 'Additional Fields', diff --git a/packages/nodes-base/nodes/CustomerIo/EventDescription.ts b/packages/nodes-base/nodes/CustomerIo/EventDescription.ts index 208228afbd..8d22a979d7 100644 --- a/packages/nodes-base/nodes/CustomerIo/EventDescription.ts +++ b/packages/nodes-base/nodes/CustomerIo/EventDescription.ts @@ -107,7 +107,7 @@ export const eventFields = [ ], }, }, - description: 'Object of values to set as described here.', + description: 'Object of values to set as described here.', }, { displayName: 'Additional Fields', @@ -233,7 +233,7 @@ export const eventFields = [ ], }, }, - description: 'Object of values to set as described here.', + description: 'Object of values to set as described here.', }, { displayName: 'Additional Fields', diff --git a/packages/nodes-base/nodes/Elasticsearch/descriptions/DocumentDescription.ts b/packages/nodes-base/nodes/Elasticsearch/descriptions/DocumentDescription.ts index 24c0519206..c2e2d1fa21 100644 --- a/packages/nodes-base/nodes/Elasticsearch/descriptions/DocumentDescription.ts +++ b/packages/nodes-base/nodes/Elasticsearch/descriptions/DocumentDescription.ts @@ -389,7 +389,7 @@ export const documentFields = [ { displayName: 'Query', name: 'query', - description: 'Query in the Elasticsearch Query DSL', + description: 'Query in the Elasticsearch Query DSL', type: 'json', typeOptions: { alwaysOpenEditWindow: true, @@ -400,7 +400,7 @@ export const documentFields = [ { displayName: 'Request Cache', name: 'request_cache', - description: 'If true, the caching of search results is enabled for requests where size is 0. See Elasticsearch shard request cache settings', + description: 'If true, the caching of search results is enabled for requests where size is 0. See Elasticsearch shard request cache settings', type: 'boolean', default: false, }, @@ -431,7 +431,7 @@ export const documentFields = [ { displayName: 'Sequence Number and Primary Term', name: 'seq_no_primary_term', - description: 'If true, return the sequence number and primary term of the last modification of each hit. See Optimistic concurrency control', + description: 'If true, return the sequence number and primary term of the last modification of each hit. See Optimistic concurrency control', type: 'boolean', default: false, }, @@ -466,7 +466,7 @@ export const documentFields = [ { displayName: 'Timeout', name: 'timeout', - description: 'Period to wait for active shards. Defaults to 1m (one minute). See the Elasticsearch time units reference', + description: 'Period to wait for active shards. Defaults to 1m (one minute). See the Elasticsearch time units reference', type: 'string', default: '1m', }, @@ -644,7 +644,7 @@ export const documentFields = [ { displayName: 'Timeout', name: 'timeout', - description: 'Period to wait for active shards. Defaults to 1m (one minute). See the Elasticsearch time units reference', + description: 'Period to wait for active shards. Defaults to 1m (one minute). See the Elasticsearch time units reference', type: 'string', default: '1m', }, diff --git a/packages/nodes-base/nodes/Elasticsearch/descriptions/IndexDescription.ts b/packages/nodes-base/nodes/Elasticsearch/descriptions/IndexDescription.ts index 504b0967c1..a32c0994c4 100644 --- a/packages/nodes-base/nodes/Elasticsearch/descriptions/IndexDescription.ts +++ b/packages/nodes-base/nodes/Elasticsearch/descriptions/IndexDescription.ts @@ -81,7 +81,7 @@ export const indexFields = [ { displayName: 'Aliases', name: 'aliases', - description: 'Index aliases which include the index, as an alias object', + description: 'Index aliases which include the index, as an alias object', type: 'json', typeOptions: { alwaysOpenEditWindow: true, @@ -99,7 +99,7 @@ export const indexFields = [ { displayName: 'Mappings', name: 'mappings', - description: 'Mapping for fields in the index, as mapping object', + description: 'Mapping for fields in the index, as mapping object', type: 'json', typeOptions: { alwaysOpenEditWindow: true, @@ -110,14 +110,14 @@ export const indexFields = [ { displayName: 'Master Timeout', name: 'master_timeout', - description: 'Period to wait for a connection to the master node. If no response is received before the timeout expires,
the request fails and returns an error. Defaults to 1m. See the Elasticsearch time units reference', + description: 'Period to wait for a connection to the master node. If no response is received before the timeout expires,
the request fails and returns an error. Defaults to 1m. See the Elasticsearch time units reference', type: 'string', default: '1m', }, { displayName: 'Settings', name: 'settings', - description: 'Configuration options for the index, as an index settings object', + description: 'Configuration options for the index, as an index settings object', type: 'json', typeOptions: { alwaysOpenEditWindow: true, @@ -128,7 +128,7 @@ export const indexFields = [ { displayName: 'Timeout', name: 'timeout', - description: 'Period to wait for a response. If no response is received before the timeout expires, the request
fails and returns an error. Defaults to 30s. See the Elasticsearch time units reference', + description: 'Period to wait for a response. If no response is received before the timeout expires, the request
fails and returns an error. Defaults to 30s. See the Elasticsearch time units reference', type: 'string', default: '30s', }, @@ -269,7 +269,7 @@ export const indexFields = [ { displayName: 'Master Timeout', name: 'master_timeout', - description: 'Period to wait for a connection to the master node. If no response is received before the timeout expires,
the request fails and returns an error. Defaults to 1m. See the Elasticsearch time units reference', + description: 'Period to wait for a connection to the master node. If no response is received before the timeout expires,
the request fails and returns an error. Defaults to 1m. See the Elasticsearch time units reference', type: 'string', default: '1m', }, diff --git a/packages/nodes-base/nodes/Ghost/PostDescription.ts b/packages/nodes-base/nodes/Ghost/PostDescription.ts index c5dbd3bb4b..11f920d1ce 100644 --- a/packages/nodes-base/nodes/Ghost/PostDescription.ts +++ b/packages/nodes-base/nodes/Ghost/PostDescription.ts @@ -181,7 +181,7 @@ export const postFields = [ }, default: '', - description: 'Mobiledoc is the raw JSON format that Ghost uses to store post contents. Info', + description: 'Mobiledoc is the raw JSON format that Ghost uses to store post contents. Info', }, { displayName: 'Additional Fields', @@ -820,7 +820,7 @@ export const postFields = [ }, }, default: '', - description: 'Mobiledoc is the raw JSON format that Ghost uses to store post contents. Info.', + description: 'Mobiledoc is the raw JSON format that Ghost uses to store post contents. Info.', }, { displayName: 'Featured', diff --git a/packages/nodes-base/nodes/Google/Analytics/ReportDescription.ts b/packages/nodes-base/nodes/Google/Analytics/ReportDescription.ts index 7b18604762..944b95b5f9 100644 --- a/packages/nodes-base/nodes/Google/Analytics/ReportDescription.ts +++ b/packages/nodes-base/nodes/Google/Analytics/ReportDescription.ts @@ -256,7 +256,7 @@ export const reportFields = [ type: 'string', default: '', placeholder: 'ga:newUsers', - description: `String or regular expression to match against.`, + description: `String or regular expression to match against.`, }, ], }, diff --git a/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts b/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts index 70af7a41df..d107487c9c 100644 --- a/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts +++ b/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts @@ -628,7 +628,7 @@ export class GoogleDrive implements INodeType { }, ], default: '', - description: 'Information about the different types can be found here.', + description: 'Information about the different types can be found here.', }, { displayName: 'Email Address', @@ -1798,7 +1798,7 @@ export class GoogleDrive implements INodeType { name: 'q', type: 'string', default: '', - description: 'Query string for searching shared drives. See the "Search for shared drives" guide for supported syntax.', + description: 'Query string for searching shared drives. See the "Search for shared drives" guide for supported syntax.', }, { displayName: 'Use Domain Admin Access', diff --git a/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts b/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts index 160cb65f74..a0e3994f95 100644 --- a/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts +++ b/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts @@ -238,7 +238,7 @@ export const groupFields = [ name: 'query', type: 'string', default: '', - description: `Query string search. Complete documentation is at`, + description: `Query string search. Complete documentation is at`, }, { displayName: 'Sort Order', diff --git a/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts b/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts index 4222f86c09..7cb7675f86 100644 --- a/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts +++ b/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts @@ -641,7 +641,7 @@ export const userFields = [ type: 'string', default: '', description: `Free text search terms to find users that match these terms in any field, except for extended properties.
- For more information on constructing user queries, see Search for Users`, + For more information on constructing user queries, see Search for Users`, }, { displayName: 'Show Deleted', diff --git a/packages/nodes-base/nodes/Google/Perspective/GooglePerspective.node.ts b/packages/nodes-base/nodes/Google/Perspective/GooglePerspective.node.ts index 662573de01..81ee996862 100644 --- a/packages/nodes-base/nodes/Google/Perspective/GooglePerspective.node.ts +++ b/packages/nodes-base/nodes/Google/Perspective/GooglePerspective.node.ts @@ -139,7 +139,7 @@ export class GooglePerspective implements INodeType { value: 'toxicity', }, ], - description: 'Attribute to analyze in the text. Details here', + description: 'Attribute to analyze in the text. Details here', default: 'flirtation', }, { diff --git a/packages/nodes-base/nodes/HomeAssistant/TemplateDescription.ts b/packages/nodes-base/nodes/HomeAssistant/TemplateDescription.ts index 9f35155c6a..6a5685e260 100644 --- a/packages/nodes-base/nodes/HomeAssistant/TemplateDescription.ts +++ b/packages/nodes-base/nodes/HomeAssistant/TemplateDescription.ts @@ -47,6 +47,6 @@ export const templateFields = [ }, required: true, default: '', - description: 'Render a Home Assistant template. See template docs for more information.', + description: 'Render a Home Assistant template. See template docs for more information.', }, ] as INodeProperties[]; diff --git a/packages/nodes-base/nodes/ICalendar.node.ts b/packages/nodes-base/nodes/ICalendar.node.ts index 97e66fd67b..98883d9b1e 100644 --- a/packages/nodes-base/nodes/ICalendar.node.ts +++ b/packages/nodes-base/nodes/ICalendar.node.ts @@ -160,7 +160,7 @@ export class ICalendar implements INodeType { name: 'calName', type: 'string', default: '', - description: 'Specifies the calendar (not event) name. Used by Apple iCal and Microsoft Outlook (spec).', + description: 'Specifies the calendar (not event) name. Used by Apple iCal and Microsoft Outlook (spec).', }, { displayName: 'Description', @@ -217,7 +217,7 @@ export class ICalendar implements INodeType { name: 'recurrenceRule', type: 'string', default: '', - description: `A rule to define the repeat pattern of the event (RRULE). (Rule generator)`, + description: `A rule to define the repeat pattern of the event (RRULE). (Rule generator)`, }, { displayName: 'Organizer', diff --git a/packages/nodes-base/nodes/Jira/IssueCommentDescription.ts b/packages/nodes-base/nodes/Jira/IssueCommentDescription.ts index e4a491c861..7b4980e20e 100644 --- a/packages/nodes-base/nodes/Jira/IssueCommentDescription.ts +++ b/packages/nodes-base/nodes/Jira/IssueCommentDescription.ts @@ -121,7 +121,7 @@ export const issueCommentFields = [ ], }, }, - description: `The Atlassian Document Format (ADF). Online builder can be found here.`, + description: `The Atlassian Document Format (ADF). Online builder can be found here.`, }, { displayName: 'Options', @@ -451,7 +451,7 @@ export const issueCommentFields = [ ], }, }, - description: `The Atlassian Document Format (ADF). Online builder can be found here.`, + description: `The Atlassian Document Format (ADF). Online builder can be found here.`, }, { displayName: 'Options', @@ -485,4 +485,4 @@ export const issueCommentFields = [ }, ], }, -] as INodeProperties[]; \ No newline at end of file +] as INodeProperties[]; diff --git a/packages/nodes-base/nodes/Marketstack/descriptions/EndOfDayDataDescription.ts b/packages/nodes-base/nodes/Marketstack/descriptions/EndOfDayDataDescription.ts index 7b36201441..8144856254 100644 --- a/packages/nodes-base/nodes/Marketstack/descriptions/EndOfDayDataDescription.ts +++ b/packages/nodes-base/nodes/Marketstack/descriptions/EndOfDayDataDescription.ts @@ -105,7 +105,7 @@ export const endOfDayDataFields: INodeProperties[] = [ name: 'exchange', type: 'string', default: '', - description: 'Stock exchange to filter results by, specified by Market Identifier Code, e.g. XNAS', + description: 'Stock exchange to filter results by, specified by Market Identifier Code, e.g. XNAS', }, { displayName: 'Latest', diff --git a/packages/nodes-base/nodes/Marketstack/descriptions/ExchangeDescription.ts b/packages/nodes-base/nodes/Marketstack/descriptions/ExchangeDescription.ts index 5973020ab7..7cdc8ee9e2 100644 --- a/packages/nodes-base/nodes/Marketstack/descriptions/ExchangeDescription.ts +++ b/packages/nodes-base/nodes/Marketstack/descriptions/ExchangeDescription.ts @@ -41,6 +41,6 @@ export const exchangeFields: INodeProperties[] = [ }, }, default: '', - description: 'Stock exchange to retrieve, specified by Market Identifier Code, e.g. XNAS', + description: 'Stock exchange to retrieve, specified by Market Identifier Code, e.g. XNAS', }, ]; diff --git a/packages/nodes-base/nodes/Matrix/MessageDescription.ts b/packages/nodes-base/nodes/Matrix/MessageDescription.ts index 6f37663ded..498f3a8781 100644 --- a/packages/nodes-base/nodes/Matrix/MessageDescription.ts +++ b/packages/nodes-base/nodes/Matrix/MessageDescription.ts @@ -255,7 +255,7 @@ export const messageFields = [ name: 'filter', type: 'string', default: '', - description: 'A JSON RoomEventFilter to filter returned events with. More information can be found on this page.', + description: 'A JSON RoomEventFilter to filter returned events with. More information can be found on this page.', placeholder: '{"contains_url":true,"types":["m.room.message", "m.sticker"]}', }, ], diff --git a/packages/nodes-base/nodes/Mattermost/Mattermost.node.ts b/packages/nodes-base/nodes/Mattermost/Mattermost.node.ts index 1677c5be00..87c2ba30ea 100644 --- a/packages/nodes-base/nodes/Mattermost/Mattermost.node.ts +++ b/packages/nodes-base/nodes/Mattermost/Mattermost.node.ts @@ -612,7 +612,7 @@ export class Mattermost implements INodeType { displayName: 'Actions', name: 'actions', placeholder: 'Add Actions', - description: 'Actions to add to message. More information can be found here', + description: 'Actions to add to message. More information can be found here', type: 'fixedCollection', typeOptions: { multipleValues: true, diff --git a/packages/nodes-base/nodes/Microsoft/Outlook/DraftMessageSharedDescription.ts b/packages/nodes-base/nodes/Microsoft/Outlook/DraftMessageSharedDescription.ts index 9478096b56..8c4e42dcc9 100644 --- a/packages/nodes-base/nodes/Microsoft/Outlook/DraftMessageSharedDescription.ts +++ b/packages/nodes-base/nodes/Microsoft/Outlook/DraftMessageSharedDescription.ts @@ -44,7 +44,7 @@ export const draftMessageSharedFields = [ type: 'string', default: '', placeholder: 'isRead eq false', - description: 'Microsoft Graph API OData $filter query. Information about the syntax can be found here.', + description: 'Microsoft Graph API OData $filter query. Information about the syntax can be found here.', }, ], }, diff --git a/packages/nodes-base/nodes/Microsoft/Outlook/FolderDescription.ts b/packages/nodes-base/nodes/Microsoft/Outlook/FolderDescription.ts index d86033f722..da7492536a 100644 --- a/packages/nodes-base/nodes/Microsoft/Outlook/FolderDescription.ts +++ b/packages/nodes-base/nodes/Microsoft/Outlook/FolderDescription.ts @@ -251,7 +251,7 @@ export const folderFields = [ name: 'filter', type: 'string', default: '', - description: 'Microsoft Graph API OData $filter query. Information about the syntax can be found here.', + description: 'Microsoft Graph API OData $filter query. Information about the syntax can be found here.', }, ], }, diff --git a/packages/nodes-base/nodes/Microsoft/Outlook/FolderMessageDecription.ts b/packages/nodes-base/nodes/Microsoft/Outlook/FolderMessageDecription.ts index c8ec09287b..436b3c223b 100644 --- a/packages/nodes-base/nodes/Microsoft/Outlook/FolderMessageDecription.ts +++ b/packages/nodes-base/nodes/Microsoft/Outlook/FolderMessageDecription.ts @@ -115,7 +115,7 @@ export const folderMessageFields = [ name: 'filter', type: 'string', default: '', - description: 'Microsoft Graph API OData $filter query. Information about the syntax can be found here.', + description: 'Microsoft Graph API OData $filter query. Information about the syntax can be found here.', }, ], }, diff --git a/packages/nodes-base/nodes/MondayCom/BoardItemDescription.ts b/packages/nodes-base/nodes/MondayCom/BoardItemDescription.ts index 7f17409585..6b1d41c4b2 100644 --- a/packages/nodes-base/nodes/MondayCom/BoardItemDescription.ts +++ b/packages/nodes-base/nodes/MondayCom/BoardItemDescription.ts @@ -189,7 +189,7 @@ export const boardItemFields = [ ], }, }, - description: 'The column value in JSON format. Documentation can be found here.', + description: 'The column value in JSON format. Documentation can be found here.', }, /* -------------------------------------------------------------------------- */ /* boardItem:changeMultipleColumnValues */ @@ -249,7 +249,7 @@ export const boardItemFields = [ ], }, }, - description: 'The column fields and values in JSON format. Documentation can be found here.', + description: 'The column fields and values in JSON format. Documentation can be found here.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/Pushover/Pushover.node.ts b/packages/nodes-base/nodes/Pushover/Pushover.node.ts index deea02da99..d297b49d63 100644 --- a/packages/nodes-base/nodes/Pushover/Pushover.node.ts +++ b/packages/nodes-base/nodes/Pushover/Pushover.node.ts @@ -90,7 +90,7 @@ export class Pushover implements INodeType { }, default: '', description: `The user/group key (not e-mail address) of your user (or you),
- viewable when logged into our dashboard (often referred to as USER_KEY in our and code examples)`, + viewable when logged into our dashboard (often referred to as USER_KEY in our and code examples)`, }, { displayName: 'Message', diff --git a/packages/nodes-base/nodes/QuickBase/RecordDescription.ts b/packages/nodes-base/nodes/QuickBase/RecordDescription.ts index bd08835843..064248dbe9 100644 --- a/packages/nodes-base/nodes/QuickBase/RecordDescription.ts +++ b/packages/nodes-base/nodes/QuickBase/RecordDescription.ts @@ -323,7 +323,7 @@ export const recordFields = [ name: 'where', type: 'string', default: '', - description: 'The filter, using the Quick Base query language, which determines the records to return.', + description: 'The filter, using the Quick Base query language, which determines the records to return.', }, ], }, diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillDescription.ts index 9a1dcff0f9..211220266d 100644 --- a/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillDescription.ts +++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillDescription.ts @@ -268,7 +268,7 @@ export const billFields = [ type: 'string', default: '', placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'', - description: 'The condition for selecting bills. See the guide for supported syntax.', + description: 'The condition for selecting bills. See the guide for supported syntax.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerDescription.ts index f4735d2b55..56b53bec29 100644 --- a/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerDescription.ts +++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerDescription.ts @@ -161,7 +161,7 @@ export const customerFields = [ type: 'string', default: '', placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'', - description: 'The condition for selecting customers. See the guide for supported syntax.', + description: 'The condition for selecting customers. See the guide for supported syntax.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeDescription.ts index 7e6b001aed..5fb94c4563 100644 --- a/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeDescription.ts +++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeDescription.ts @@ -175,7 +175,7 @@ export const employeeFields = [ type: 'string', default: '', placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'', - description: 'The condition for selecting employees. See the guide for supported syntax.', + description: 'The condition for selecting employees. See the guide for supported syntax.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateDescription.ts index 2768c675f0..25d4af1f3b 100644 --- a/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateDescription.ts +++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateDescription.ts @@ -323,7 +323,7 @@ export const estimateFields = [ type: 'string', default: '', placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'', - description: 'The condition for selecting estimates. See the guide for supported syntax.', + description: 'The condition for selecting estimates. See the guide for supported syntax.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceDescription.ts index d9a4eee478..9ad251c7d2 100644 --- a/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceDescription.ts +++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceDescription.ts @@ -327,7 +327,7 @@ export const invoiceFields = [ type: 'string', default: '', placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'', - description: 'The condition for selecting invoices. See the guide for supported syntax.', + description: 'The condition for selecting invoices. See the guide for supported syntax.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Item/ItemDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Item/ItemDescription.ts index 91a23cabe8..23d55fad6b 100644 --- a/packages/nodes-base/nodes/QuickBooks/descriptions/Item/ItemDescription.ts +++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Item/ItemDescription.ts @@ -109,7 +109,7 @@ export const itemFields = [ type: 'string', default: '', placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'', - description: 'The condition for selecting items. See the guide for supported syntax.', + description: 'The condition for selecting items. See the guide for supported syntax.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentDescription.ts index 9b6c58bc85..9ccd3238af 100644 --- a/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentDescription.ts +++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentDescription.ts @@ -276,7 +276,7 @@ export const paymentFields = [ type: 'string', default: '', placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'', - description: 'The condition for selecting payments. See the guide for supported syntax.', + description: 'The condition for selecting payments. See the guide for supported syntax.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Purchase/PurchaseDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Purchase/PurchaseDescription.ts index f4491dae1b..16827948b1 100644 --- a/packages/nodes-base/nodes/QuickBooks/descriptions/Purchase/PurchaseDescription.ts +++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Purchase/PurchaseDescription.ts @@ -109,7 +109,7 @@ export const purchaseFields = [ type: 'string', default: '', placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'', - description: 'The condition for selecting purchases. See the guide for supported syntax.', + description: 'The condition for selecting purchases. See the guide for supported syntax.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorDescription.ts index 09c1030912..d675e70688 100644 --- a/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorDescription.ts +++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorDescription.ts @@ -161,7 +161,7 @@ export const vendorFields = [ type: 'string', default: '', placeholder: 'WHERE Metadata.LastUpdatedTime > \'2021-01-01\'', - description: 'The condition for selecting vendors. See the guide for supported syntax.', + description: 'The condition for selecting vendors. See the guide for supported syntax.', typeOptions: { alwaysOpenEditWindow: true, }, diff --git a/packages/nodes-base/nodes/SendGrid/ContactDescription.ts b/packages/nodes-base/nodes/SendGrid/ContactDescription.ts index 48e1052e6c..a94fccc986 100644 --- a/packages/nodes-base/nodes/SendGrid/ContactDescription.ts +++ b/packages/nodes-base/nodes/SendGrid/ContactDescription.ts @@ -108,7 +108,7 @@ export const contactFields = [ name: 'query', type: 'string', default: '', - description: 'The query field accepts valid SGQL for searching for a contact.', + description: 'The query field accepts valid SGQL for searching for a contact.', }, ], }, diff --git a/packages/nodes-base/nodes/SentryIo/IssueDescription.ts b/packages/nodes-base/nodes/SentryIo/IssueDescription.ts index 69b5b11a10..20977b6ac9 100644 --- a/packages/nodes-base/nodes/SentryIo/IssueDescription.ts +++ b/packages/nodes-base/nodes/SentryIo/IssueDescription.ts @@ -177,7 +177,7 @@ export const issueFields = [ name: 'query', type: 'string', default: '', - description: 'An optional Sentry structured search query. If not provided an implied "is:unresolved" is assumed. Info here.', + description: 'An optional Sentry structured search query. If not provided, an implied "is:unresolved" is assumed. Info here.', }, { displayName: 'Stats Period', diff --git a/packages/nodes-base/nodes/ServiceNow/BusinessServiceDescription.ts b/packages/nodes-base/nodes/ServiceNow/BusinessServiceDescription.ts index 650480e9f2..74696709f5 100644 --- a/packages/nodes-base/nodes/ServiceNow/BusinessServiceDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/BusinessServiceDescription.ts @@ -109,7 +109,7 @@ export const businessServiceFields = [ name: 'sysparm_query', type: 'string', default: '', - description: 'An encoded query string used to filter the results. More info', + description: 'An encoded query string used to filter the results. More info', }, { displayName: 'Return Values', diff --git a/packages/nodes-base/nodes/ServiceNow/ConfigurationItemsDescription.ts b/packages/nodes-base/nodes/ServiceNow/ConfigurationItemsDescription.ts index bb95b3a955..8537312f25 100644 --- a/packages/nodes-base/nodes/ServiceNow/ConfigurationItemsDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/ConfigurationItemsDescription.ts @@ -109,7 +109,7 @@ export const configurationItemsFields = [ name: 'sysparm_query', type: 'string', default: '', - description: 'An encoded query string used to filter the results. More info', + description: 'An encoded query string used to filter the results. More info', }, { displayName: 'Return Values', diff --git a/packages/nodes-base/nodes/ServiceNow/DepartmentDescription.ts b/packages/nodes-base/nodes/ServiceNow/DepartmentDescription.ts index cc4a3871b4..928f568db8 100644 --- a/packages/nodes-base/nodes/ServiceNow/DepartmentDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/DepartmentDescription.ts @@ -109,7 +109,7 @@ export const departmentFields = [ name: 'sysparm_query', type: 'string', default: '', - description: 'An encoded query string used to filter the results. More info', + description: 'An encoded query string used to filter the results. More info', }, { displayName: 'Return Values', diff --git a/packages/nodes-base/nodes/ServiceNow/DictionaryDescription.ts b/packages/nodes-base/nodes/ServiceNow/DictionaryDescription.ts index fd0f14cd4f..84fe64dfb2 100644 --- a/packages/nodes-base/nodes/ServiceNow/DictionaryDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/DictionaryDescription.ts @@ -109,7 +109,7 @@ export const dictionaryFields = [ name: 'sysparm_query', type: 'string', default: '', - description: 'An encoded query string used to filter the results. More info', + description: 'An encoded query string used to filter the results. More info', }, { displayName: 'Return Values', diff --git a/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts b/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts index 41d1537ab5..021a6e4983 100644 --- a/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/IncidentDescription.ts @@ -340,7 +340,7 @@ export const incidentFields = [ name: 'sysparm_query', type: 'string', default: '', - description: 'An encoded query string used to filter the results. More info', + description: 'An encoded query string used to filter the results. More info', }, { displayName: 'Return Values', diff --git a/packages/nodes-base/nodes/ServiceNow/TableRecordDescription.ts b/packages/nodes-base/nodes/ServiceNow/TableRecordDescription.ts index 51c9845a44..f5f2074530 100644 --- a/packages/nodes-base/nodes/ServiceNow/TableRecordDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/TableRecordDescription.ts @@ -276,7 +276,7 @@ export const tableRecordFields = [ name: 'sysparm_query', type: 'string', default: '', - description: 'An encoded query string used to filter the results. More info', + description: 'An encoded query string used to filter the results. More info', }, { displayName: 'Return Values', diff --git a/packages/nodes-base/nodes/ServiceNow/UserDescription.ts b/packages/nodes-base/nodes/ServiceNow/UserDescription.ts index 645d7efa75..494a312957 100644 --- a/packages/nodes-base/nodes/ServiceNow/UserDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/UserDescription.ts @@ -340,7 +340,7 @@ export const userFields = [ name: 'sysparm_query', type: 'string', default: '', - description: 'An encoded query string used to filter the results. More info', + description: 'An encoded query string used to filter the results. More info', }, { displayName: 'Return Values', diff --git a/packages/nodes-base/nodes/ServiceNow/UserGroupDescription.ts b/packages/nodes-base/nodes/ServiceNow/UserGroupDescription.ts index 99c5a81776..d98c3a74ff 100644 --- a/packages/nodes-base/nodes/ServiceNow/UserGroupDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/UserGroupDescription.ts @@ -109,7 +109,7 @@ export const userGroupFields = [ name: 'sysparm_query', type: 'string', default: '', - description: 'An encoded query string used to filter the results. More info', + description: 'An encoded query string used to filter the results. More info', }, { displayName: 'Return Values', diff --git a/packages/nodes-base/nodes/ServiceNow/UserRoleDescription.ts b/packages/nodes-base/nodes/ServiceNow/UserRoleDescription.ts index d3cbb25f33..f8cde5ca44 100644 --- a/packages/nodes-base/nodes/ServiceNow/UserRoleDescription.ts +++ b/packages/nodes-base/nodes/ServiceNow/UserRoleDescription.ts @@ -109,7 +109,7 @@ export const userRoleFields = [ name: 'sysparm_query', type: 'string', default: '', - description: 'An encoded query string used to filter the results. More info', + description: 'An encoded query string used to filter the results. More info', }, { displayName: 'Return Values', diff --git a/packages/nodes-base/nodes/Strapi/EntryDescription.ts b/packages/nodes-base/nodes/Strapi/EntryDescription.ts index 08b70e25d0..41fd8c6fa1 100644 --- a/packages/nodes-base/nodes/Strapi/EntryDescription.ts +++ b/packages/nodes-base/nodes/Strapi/EntryDescription.ts @@ -285,7 +285,7 @@ export const entryFields = [ alwaysOpenEditWindow: true, }, default: '', - description: 'JSON query to filter the data. More info.', + description: 'JSON query to filter the data. More info.', }, ], }, diff --git a/packages/nodes-base/nodes/Stripe/descriptions/ChargeDescription.ts b/packages/nodes-base/nodes/Stripe/descriptions/ChargeDescription.ts index d26f367839..060d25ad50 100644 --- a/packages/nodes-base/nodes/Stripe/descriptions/ChargeDescription.ts +++ b/packages/nodes-base/nodes/Stripe/descriptions/ChargeDescription.ts @@ -94,7 +94,7 @@ export const chargeFields = [ }, required: true, default: '', - description: 'Three-letter ISO currency code, e.g. USD or EUR. It must be a Stripe-supported currency', + description: 'Three-letter ISO currency code, e.g. USD or EUR. It must be a Stripe-supported currency', displayOptions: { show: { resource: [ @@ -250,7 +250,7 @@ export const chargeFields = [ { displayName: 'Country', name: 'country', - description: 'Two-letter country code (ISO 3166-1 alpha-2)', + description: 'Two-letter country code (ISO 3166-1 alpha-2)', type: 'string', default: '', }, @@ -484,7 +484,7 @@ export const chargeFields = [ { displayName: 'Country', name: 'country', - description: 'Two-letter country code (ISO 3166-1 alpha-2)', + description: 'Two-letter country code (ISO 3166-1 alpha-2)', type: 'string', default: '', }, diff --git a/packages/nodes-base/nodes/Stripe/descriptions/CouponDescription.ts b/packages/nodes-base/nodes/Stripe/descriptions/CouponDescription.ts index efc041fc73..cf5a2d7c03 100644 --- a/packages/nodes-base/nodes/Stripe/descriptions/CouponDescription.ts +++ b/packages/nodes-base/nodes/Stripe/descriptions/CouponDescription.ts @@ -125,7 +125,7 @@ export const couponFields = [ }, required: true, default: '', - description: 'Three-letter ISO currency code, e.g. USD or EUR. It must be a Stripe-supported currency', + description: 'Three-letter ISO currency code, e.g. USD or EUR. It must be a Stripe-supported currency', displayOptions: { show: { resource: [ diff --git a/packages/nodes-base/nodes/Stripe/descriptions/CustomerDescription.ts b/packages/nodes-base/nodes/Stripe/descriptions/CustomerDescription.ts index 26e49fc489..beb4398551 100644 --- a/packages/nodes-base/nodes/Stripe/descriptions/CustomerDescription.ts +++ b/packages/nodes-base/nodes/Stripe/descriptions/CustomerDescription.ts @@ -128,7 +128,7 @@ export const customerFields = [ { displayName: 'Country', name: 'country', - description: 'Two-letter country code (ISO 3166-1 alpha-2)', + description: 'Two-letter country code (ISO 3166-1 alpha-2)', type: 'string', default: '', }, @@ -257,7 +257,7 @@ export const customerFields = [ { displayName: 'Country', name: 'country', - description: 'Two-letter country code (ISO 3166-1 alpha-2)', + description: 'Two-letter country code (ISO 3166-1 alpha-2)', type: 'string', default: '', }, @@ -481,7 +481,7 @@ export const customerFields = [ { displayName: 'Country', name: 'country', - description: 'Two-letter country code (ISO 3166-1 alpha-2)', + description: 'Two-letter country code (ISO 3166-1 alpha-2)', type: 'string', default: '', }, @@ -618,7 +618,7 @@ export const customerFields = [ { displayName: 'Country', name: 'country', - description: 'Two-letter country code (ISO 3166-1 alpha-2)', + description: 'Two-letter country code (ISO 3166-1 alpha-2)', type: 'string', default: '', }, diff --git a/packages/nodes-base/nodes/Stripe/descriptions/SourceDescription.ts b/packages/nodes-base/nodes/Stripe/descriptions/SourceDescription.ts index 9cd3a27cf5..e87e87d146 100644 --- a/packages/nodes-base/nodes/Stripe/descriptions/SourceDescription.ts +++ b/packages/nodes-base/nodes/Stripe/descriptions/SourceDescription.ts @@ -111,7 +111,7 @@ export const sourceFields = [ loadOptionsMethod: 'getCurrencies', }, default: '', - description: 'Three-letter ISO currency code, e.g. USD or EUR. It must be a Stripe-supported currency', + description: 'Three-letter ISO currency code, e.g. USD or EUR. It must be a Stripe-supported currency', displayOptions: { show: { resource: [ diff --git a/packages/nodes-base/nodes/Tapfiliate/AffiliateDescription.ts b/packages/nodes-base/nodes/Tapfiliate/AffiliateDescription.ts index c32d2bc876..0970e34ccc 100644 --- a/packages/nodes-base/nodes/Tapfiliate/AffiliateDescription.ts +++ b/packages/nodes-base/nodes/Tapfiliate/AffiliateDescription.ts @@ -165,7 +165,7 @@ export const affiliateFields = [ name: 'country', type: 'string', default: '', - description: `The country’s ISO_3166-1 code. Codes.`, + description: `The country’s ISO_3166-1 code. Codes.`, }, ], }, diff --git a/packages/nodes-base/nodes/UProc/UProc.node.ts b/packages/nodes-base/nodes/UProc/UProc.node.ts index 33428d4e51..63d1b7e2ab 100644 --- a/packages/nodes-base/nodes/UProc/UProc.node.ts +++ b/packages/nodes-base/nodes/UProc/UProc.node.ts @@ -75,7 +75,7 @@ export class UProc implements INodeType { displayName: 'Data Webhook', name: 'dataWebhook', type: 'string', - description: 'URL to send tool response when tool has resolved your request. You can create your own webhook at en Beeceptor, Integromat, Zapier or n8n', + description: 'URL to send tool response when tool has resolved your request. You can create your own webhook at en Beeceptor, Integromat, Zapier or n8n', default: '', }, ], diff --git a/packages/nodes-base/nodes/Xero/ContactDescription.ts b/packages/nodes-base/nodes/Xero/ContactDescription.ts index 418aef44ac..2023729442 100644 --- a/packages/nodes-base/nodes/Xero/ContactDescription.ts +++ b/packages/nodes-base/nodes/Xero/ContactDescription.ts @@ -515,7 +515,7 @@ export const contactFields = [ }, placeholder: 'EmailAddress!=null&&EmailAddress.StartsWith("boom")', default: '', - description: `The where parameter allows you to filter on endpoints and elements that don't have explicit parameters. Examples Here`, + description: `The where parameter allows you to filter on endpoints and elements that don't have explicit parameters. Examples Here`, }, ], }, diff --git a/packages/nodes-base/nodes/Xero/InvoiceDescription.ts b/packages/nodes-base/nodes/Xero/InvoiceDescription.ts index ef0ae61597..b2505da4f1 100644 --- a/packages/nodes-base/nodes/Xero/InvoiceDescription.ts +++ b/packages/nodes-base/nodes/Xero/InvoiceDescription.ts @@ -976,7 +976,7 @@ export const invoiceFields = [ }, placeholder: 'EmailAddress!=null&&EmailAddress.StartsWith("boom")', default: '', - description: `The where parameter allows you to filter on endpoints and elements that don't have explicit parameters. Examples Here`, + description: `The where parameter allows you to filter on endpoints and elements that don't have explicit parameters. Examples Here`, }, ], }, diff --git a/packages/nodes-base/nodes/Zendesk/TicketDescription.ts b/packages/nodes-base/nodes/Zendesk/TicketDescription.ts index 341a430a0c..e3c64f7bbd 100644 --- a/packages/nodes-base/nodes/Zendesk/TicketDescription.ts +++ b/packages/nodes-base/nodes/Zendesk/TicketDescription.ts @@ -262,7 +262,7 @@ export const ticketFields = [ ], }, }, - description: `Object of values to set as described here.`, + description: `Object of values to set as described here.`, }, /* -------------------------------------------------------------------------- */ @@ -476,7 +476,7 @@ export const ticketFields = [ ], }, }, - description: `Object of values to update as described here.`, + description: `Object of values to update as described here.`, }, /* -------------------------------------------------------------------------- */