diff --git a/packages/nodes-base/nodes/ActionNetwork/descriptions/AttendanceDescription.ts b/packages/nodes-base/nodes/ActionNetwork/descriptions/AttendanceDescription.ts
index 4b76624fc2..4aa4340269 100644
--- a/packages/nodes-base/nodes/ActionNetwork/descriptions/AttendanceDescription.ts
+++ b/packages/nodes-base/nodes/ActionNetwork/descriptions/AttendanceDescription.ts
@@ -44,7 +44,7 @@ export const attendanceFields: INodeProperties[] = [
{
displayName: 'Person ID',
name: 'personId',
- description: 'ID of the person to create an attendance for.',
+ description: 'ID of the person to create an attendance for',
type: 'string',
default: '',
required: true,
@@ -62,7 +62,7 @@ export const attendanceFields: INodeProperties[] = [
{
displayName: 'Event ID',
name: 'eventId',
- description: 'ID of the event to create an attendance for.',
+ description: 'ID of the event to create an attendance for',
type: 'string',
default: '',
required: true,
@@ -85,7 +85,7 @@ export const attendanceFields: INodeProperties[] = [
{
displayName: 'Event ID',
name: 'eventId',
- description: 'ID of the event whose attendance to retrieve.',
+ description: 'ID of the event whose attendance to retrieve',
type: 'string',
default: '',
required: true,
@@ -103,7 +103,7 @@ export const attendanceFields: INodeProperties[] = [
{
displayName: 'Attendance ID',
name: 'attendanceId',
- description: 'ID of the attendance to retrieve.',
+ description: 'ID of the attendance to retrieve',
type: 'string',
default: '',
required: true,
@@ -126,7 +126,7 @@ export const attendanceFields: INodeProperties[] = [
{
displayName: 'Event ID',
name: 'eventId',
- description: 'ID of the event to create an attendance for.',
+ description: 'ID of the event to create an attendance for',
type: 'string',
default: '',
required: true,
@@ -146,7 +146,7 @@ export const attendanceFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -163,7 +163,7 @@ export const attendanceFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 50,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
},
diff --git a/packages/nodes-base/nodes/ActionNetwork/descriptions/EventDescription.ts b/packages/nodes-base/nodes/ActionNetwork/descriptions/EventDescription.ts
index 31de2616bc..b111eafc3d 100644
--- a/packages/nodes-base/nodes/ActionNetwork/descriptions/EventDescription.ts
+++ b/packages/nodes-base/nodes/ActionNetwork/descriptions/EventDescription.ts
@@ -45,7 +45,7 @@ export const eventFields: INodeProperties[] = [
{
displayName: 'Origin System',
name: 'originSystem',
- description: 'Source where the event originated.',
+ description: 'Source where the event originated',
type: 'string',
required: true,
default: '',
@@ -63,7 +63,7 @@ export const eventFields: INodeProperties[] = [
{
displayName: 'Title',
name: 'title',
- description: 'Title of the event to create.',
+ description: 'Title of the event to create',
type: 'string',
required: true,
default: '',
@@ -104,7 +104,7 @@ export const eventFields: INodeProperties[] = [
{
displayName: 'Event ID',
name: 'eventId',
- description: 'ID of the event to retrieve.',
+ description: 'ID of the event to retrieve',
type: 'string',
default: '',
required: true,
@@ -129,7 +129,7 @@ export const eventFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -146,7 +146,7 @@ export const eventFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 50,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
},
diff --git a/packages/nodes-base/nodes/ActionNetwork/descriptions/PersonDescription.ts b/packages/nodes-base/nodes/ActionNetwork/descriptions/PersonDescription.ts
index 30b90f1077..c314900c2a 100644
--- a/packages/nodes-base/nodes/ActionNetwork/descriptions/PersonDescription.ts
+++ b/packages/nodes-base/nodes/ActionNetwork/descriptions/PersonDescription.ts
@@ -53,7 +53,7 @@ export const personFields: INodeProperties[] = [
type: 'fixedCollection',
default: {},
placeholder: 'Add Email Address Field',
- description: 'Person’s email addresses.',
+ description: 'Person’s email addresses',
displayOptions: {
show: {
resource: [
@@ -74,21 +74,21 @@ export const personFields: INodeProperties[] = [
name: 'address',
type: 'string',
default: '',
- description: 'Person\'s email address.',
+ description: 'Person\'s email address',
},
{
displayName: 'Primary',
name: 'primary',
type: 'hidden',
default: true,
- description: 'Whether this is the person\'s primary email address.',
+ description: 'Whether this is the person\'s primary email address',
},
{
displayName: 'Status',
name: 'status',
type: 'options',
default: 'subscribed',
- description: 'Subscription status of this email address.',
+ description: 'Subscription status of this email address',
options: [
{
name: 'Bouncing',
@@ -145,7 +145,7 @@ export const personFields: INodeProperties[] = [
{
displayName: 'Person ID',
name: 'personId',
- description: 'ID of the person to retrieve.',
+ description: 'ID of the person to retrieve',
type: 'string',
required: true,
default: '',
@@ -170,7 +170,7 @@ export const personFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -187,7 +187,7 @@ export const personFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 25,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 25,
@@ -214,7 +214,7 @@ export const personFields: INodeProperties[] = [
{
displayName: 'Person ID',
name: 'personId',
- description: 'ID of the person to update.',
+ description: 'ID of the person to update',
type: 'string',
required: true,
default: '',
diff --git a/packages/nodes-base/nodes/ActionNetwork/descriptions/PersonTagDescription.ts b/packages/nodes-base/nodes/ActionNetwork/descriptions/PersonTagDescription.ts
index d5715d9feb..0b99d4d078 100644
--- a/packages/nodes-base/nodes/ActionNetwork/descriptions/PersonTagDescription.ts
+++ b/packages/nodes-base/nodes/ActionNetwork/descriptions/PersonTagDescription.ts
@@ -36,7 +36,7 @@ export const personTagFields: INodeProperties[] = [
{
displayName: 'Tag ID',
name: 'tagId',
- description: 'ID of the tag to add.',
+ description: 'ID of the tag to add',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getTags',
@@ -57,7 +57,7 @@ export const personTagFields: INodeProperties[] = [
{
displayName: 'Person ID',
name: 'personId',
- description: 'ID of the person to add the tag to.',
+ description: 'ID of the person to add the tag to',
type: 'string',
default: '',
required: true,
@@ -79,7 +79,7 @@ export const personTagFields: INodeProperties[] = [
{
displayName: 'Tag ID',
name: 'tagId',
- description: 'ID of the tag whose tagging to delete.',
+ description: 'ID of the tag whose tagging to delete',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getTags',
@@ -100,7 +100,7 @@ export const personTagFields: INodeProperties[] = [
{
displayName: 'Tagging ID',
name: 'taggingId',
- description: 'ID of the tagging to remove.',
+ description: 'ID of the tagging to remove',
type: 'options',
typeOptions: {
loadOptionsDependsOn: [
diff --git a/packages/nodes-base/nodes/ActionNetwork/descriptions/PetitionDescription.ts b/packages/nodes-base/nodes/ActionNetwork/descriptions/PetitionDescription.ts
index c7723cee7c..053c59c0ae 100644
--- a/packages/nodes-base/nodes/ActionNetwork/descriptions/PetitionDescription.ts
+++ b/packages/nodes-base/nodes/ActionNetwork/descriptions/PetitionDescription.ts
@@ -49,7 +49,7 @@ export const petitionFields: INodeProperties[] = [
{
displayName: 'Origin System',
name: 'originSystem',
- description: 'Source where the petition originated.',
+ description: 'Source where the petition originated',
type: 'string',
required: true,
default: '',
@@ -67,7 +67,7 @@ export const petitionFields: INodeProperties[] = [
{
displayName: 'Title',
name: 'title',
- description: 'Title of the petition to create.',
+ description: 'Title of the petition to create',
type: 'string',
required: true,
default: '',
@@ -108,7 +108,7 @@ export const petitionFields: INodeProperties[] = [
{
displayName: 'Petition ID',
name: 'petitionId',
- description: 'ID of the petition to retrieve.',
+ description: 'ID of the petition to retrieve',
type: 'string',
default: '',
required: true,
@@ -133,7 +133,7 @@ export const petitionFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -150,7 +150,7 @@ export const petitionFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 50,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
},
@@ -176,7 +176,7 @@ export const petitionFields: INodeProperties[] = [
{
displayName: 'Petition ID',
name: 'petitionId',
- description: 'ID of the petition to update.',
+ description: 'ID of the petition to update',
type: 'string',
default: '',
required: true,
diff --git a/packages/nodes-base/nodes/ActionNetwork/descriptions/SharedFields.ts b/packages/nodes-base/nodes/ActionNetwork/descriptions/SharedFields.ts
index 9bebbf81ef..fc39b37d21 100644
--- a/packages/nodes-base/nodes/ActionNetwork/descriptions/SharedFields.ts
+++ b/packages/nodes-base/nodes/ActionNetwork/descriptions/SharedFields.ts
@@ -80,14 +80,14 @@ const postalAddressesFields: INodeProperties[] = [
name: 'primary',
type: 'boolean',
default: false,
- description: 'Whether this is the person\'s primary address.',
+ description: 'Whether this is the person\'s primary address',
},
{
displayName: 'Address Line',
name: 'address_lines',
type: 'string', // The Action Network API expects a string array but ignores any string beyond the first, so this input field is simplified to string.
default: '',
- description: 'Line for a person\'s address.',
+ description: 'Line for a person\'s address',
},
{
displayName: 'Locality',
@@ -101,14 +101,14 @@ const postalAddressesFields: INodeProperties[] = [
name: 'region',
type: 'string',
default: '',
- description: 'State or subdivision code per ISO 3166-2.',
+ description: 'State or subdivision code per ISO 3166-2',
},
{
displayName: 'Postal Code',
name: 'postal_code',
type: 'string',
default: '',
- description: 'Region specific postal code, such as ZIP code.',
+ description: 'Region specific postal code, such as ZIP code',
},
{
displayName: 'Country',
@@ -122,7 +122,7 @@ const postalAddressesFields: INodeProperties[] = [
name: 'language',
type: 'string',
default: '',
- description: 'Language in which the address is recorded, per ISO 639.',
+ description: 'Language in which the address is recorded, per ISO 639',
},
{
displayName: 'Location',
@@ -139,14 +139,14 @@ const postalAddressesFields: INodeProperties[] = [
name: 'latitude',
type: 'string',
default: '',
- description: 'Latitude of the location of the address.',
+ description: 'Latitude of the location of the address',
},
{
displayName: 'Longitude',
name: 'longitude',
type: 'string',
default: '',
- description: 'Longitude of the location of the address.',
+ description: 'Longitude of the location of the address',
},
],
},
@@ -160,7 +160,7 @@ export const eventAdditionalFieldsOptions: INodeProperties['options'] = [
name: 'browser_url',
type: 'string',
default: '',
- description: 'URL to this event’s page on the Action Network or a third party.',
+ description: 'URL to this event’s page on the Action Network or a third party',
},
{
displayName: 'Description',
@@ -174,14 +174,14 @@ export const eventAdditionalFieldsOptions: INodeProperties['options'] = [
name: 'end_date',
type: 'dateTime',
default: '',
- description: 'End date and time of the event.',
+ description: 'End date and time of the event',
},
{
displayName: 'Featured Image URL',
name: 'featured_image_url',
type: 'string',
default: '',
- description: 'URL to this event’s featured image on the Action Network.',
+ description: 'URL to this event’s featured image on the Action Network',
},
{
displayName: 'Instructions',
@@ -214,14 +214,14 @@ export const eventAdditionalFieldsOptions: INodeProperties['options'] = [
name: 'name',
type: 'string',
default: '',
- description: 'Internal (not public) title of the event.',
+ description: 'Internal (not public) title of the event',
},
{
displayName: 'Start Date',
name: 'start_date',
type: 'dateTime',
default: '',
- description: 'Start date and time of the event.',
+ description: 'Start date and time of the event',
},
];
@@ -231,14 +231,14 @@ export const personAdditionalFieldsOptions: INodeProperties['options'] = [
name: 'family_name',
type: 'string',
default: '',
- description: 'Person’s last name.',
+ description: 'Person’s last name',
},
{
displayName: 'Given Name',
name: 'given_name',
type: 'string',
default: '',
- description: 'Person’s first name.',
+ description: 'Person’s first name',
},
{
displayName: 'Language Spoken',
@@ -265,21 +265,21 @@ export const personAdditionalFieldsOptions: INodeProperties['options'] = [
name: 'number',
type: 'string',
default: '',
- description: 'Person\'s mobile number, in international format without the plus sign.',
+ description: 'Person\'s mobile number, in international format without the plus sign',
},
{
displayName: 'Primary',
name: 'primary',
type: 'hidden',
default: true,
- description: 'Whether this is the person\'s primary phone number.',
+ description: 'Whether this is the person\'s primary phone number',
},
{
displayName: 'Status',
name: 'status',
type: 'options',
default: 'subscribed',
- description: 'Subscription status of this number.',
+ description: 'Subscription status of this number',
options: [
{
name: 'Bouncing',
@@ -329,35 +329,35 @@ export const petitionAdditionalFieldsOptions: INodeProperties[] = [
name: 'browser_url',
type: 'string',
default: '',
- description: 'URL to this petition’s page on the Action Network or a third party.',
+ description: 'URL to this petition’s page on the Action Network or a third party',
},
{
displayName: 'Featured Image URL',
name: 'featured_image_url',
type: 'string',
default: '',
- description: 'URL to this action’s featured image on the Action Network.',
+ description: 'URL to this action’s featured image on the Action Network',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Internal (not public) title of the petition.',
+ description: 'Internal (not public) title of the petition',
},
{
displayName: 'Petition Text',
name: 'petition_text',
type: 'string',
default: '',
- description: 'Text of the letter to the petition’s target.',
+ description: 'Text of the letter to the petition’s target',
},
{
displayName: 'Targets',
name: 'target',
type: 'string',
default: '',
- description: 'Comma-separated names of targets for this petition.',
+ description: 'Comma-separated names of targets for this petition',
},
];
@@ -376,5 +376,5 @@ export const makeSimpleField = (resource: Resource, operation: Operation): INode
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
});
diff --git a/packages/nodes-base/nodes/ActionNetwork/descriptions/SignatureDescription.ts b/packages/nodes-base/nodes/ActionNetwork/descriptions/SignatureDescription.ts
index b9ffd6e1ff..e595172e1c 100644
--- a/packages/nodes-base/nodes/ActionNetwork/descriptions/SignatureDescription.ts
+++ b/packages/nodes-base/nodes/ActionNetwork/descriptions/SignatureDescription.ts
@@ -48,7 +48,7 @@ export const signatureFields: INodeProperties[] = [
{
displayName: 'Petition ID',
name: 'petitionId',
- description: 'ID of the petition to sign.',
+ description: 'ID of the petition to sign',
type: 'string',
default: '',
required: true,
@@ -66,7 +66,7 @@ export const signatureFields: INodeProperties[] = [
{
displayName: 'Person ID',
name: 'personId',
- description: 'ID of the person whose signature to create.',
+ description: 'ID of the person whose signature to create',
type: 'string',
default: '',
required: true,
@@ -104,7 +104,7 @@ export const signatureFields: INodeProperties[] = [
name: 'comments',
type: 'string',
default: '',
- description: 'Comments to leave when signing this petition.',
+ description: 'Comments to leave when signing this petition',
},
],
},
@@ -115,7 +115,7 @@ export const signatureFields: INodeProperties[] = [
{
displayName: 'Petition ID',
name: 'petitionId',
- description: 'ID of the petition whose signature to retrieve.',
+ description: 'ID of the petition whose signature to retrieve',
type: 'string',
default: '',
required: true,
@@ -133,7 +133,7 @@ export const signatureFields: INodeProperties[] = [
{
displayName: 'Signature ID',
name: 'signatureId',
- description: 'ID of the signature to retrieve.',
+ description: 'ID of the signature to retrieve',
type: 'string',
default: '',
required: true,
@@ -156,7 +156,7 @@ export const signatureFields: INodeProperties[] = [
{
displayName: 'Petition ID',
name: 'petitionId',
- description: 'ID of the petition whose signatures to retrieve.',
+ description: 'ID of the petition whose signatures to retrieve',
type: 'string',
default: '',
required: true,
@@ -176,7 +176,7 @@ export const signatureFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -193,7 +193,7 @@ export const signatureFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 50,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
},
@@ -219,7 +219,7 @@ export const signatureFields: INodeProperties[] = [
{
displayName: 'Petition ID',
name: 'petitionId',
- description: 'ID of the petition whose signature to update.',
+ description: 'ID of the petition whose signature to update',
type: 'string',
default: '',
required: true,
@@ -237,7 +237,7 @@ export const signatureFields: INodeProperties[] = [
{
displayName: 'Signature ID',
name: 'signatureId',
- description: 'ID of the signature to update.',
+ description: 'ID of the signature to update',
type: 'string',
default: '',
required: true,
@@ -275,7 +275,7 @@ export const signatureFields: INodeProperties[] = [
name: 'comments',
type: 'string',
default: '',
- description: 'Comments to leave when signing this petition.',
+ description: 'Comments to leave when signing this petition',
},
],
},
diff --git a/packages/nodes-base/nodes/ActionNetwork/descriptions/TagDescription.ts b/packages/nodes-base/nodes/ActionNetwork/descriptions/TagDescription.ts
index 75ee25c0c2..866b2fbd1d 100644
--- a/packages/nodes-base/nodes/ActionNetwork/descriptions/TagDescription.ts
+++ b/packages/nodes-base/nodes/ActionNetwork/descriptions/TagDescription.ts
@@ -44,7 +44,7 @@ export const tagFields: INodeProperties[] = [
{
displayName: 'Name',
name: 'name',
- description: 'Name of the tag to create.',
+ description: 'Name of the tag to create',
type: 'string',
required: true,
default: '',
@@ -67,7 +67,7 @@ export const tagFields: INodeProperties[] = [
{
displayName: 'Tag ID',
name: 'tagId',
- description: 'ID of the tag to retrieve.',
+ description: 'ID of the tag to retrieve',
type: 'string',
default: '',
required: true,
@@ -92,7 +92,7 @@ export const tagFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -109,7 +109,7 @@ export const tagFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 50,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
},
diff --git a/packages/nodes-base/nodes/ActiveCampaign/AccountContactDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/AccountContactDescription.ts
index 65febe9095..461054d0ca 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/AccountContactDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/AccountContactDescription.ts
@@ -121,7 +121,7 @@ export const accountContactFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the account contact to delete.',
+ description: 'ID of the account contact to delete',
},
// ----------------------------------
// accountContact:update
@@ -149,7 +149,7 @@ export const accountContactFields: INodeProperties[] = [
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
- description: 'The fields to update.',
+ description: 'The fields to update',
placeholder: 'Add Field',
displayOptions: {
show: {
diff --git a/packages/nodes-base/nodes/ActiveCampaign/AccountDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/AccountDescription.ts
index 3fb19f2dff..cea0e5875e 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/AccountDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/AccountDescription.ts
@@ -70,7 +70,7 @@ export const accountFields: INodeProperties[] = [
],
},
},
- description: 'Account\'s name.',
+ description: 'Account\'s name',
},
{
displayName: 'Additional Fields',
@@ -100,7 +100,7 @@ export const accountFields: INodeProperties[] = [
displayName: 'Fields',
name: 'fields',
placeholder: 'Add Custom Fields',
- description: 'Adds a custom fields to set also values which have not been predefined.',
+ description: 'Adds a custom fields to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -119,14 +119,14 @@ export const accountFields: INodeProperties[] = [
loadOptionsMethod: 'getAccountCustomFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -154,13 +154,13 @@ export const accountFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the account to update.',
+ description: 'ID of the account to update',
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
- description: 'The fields to update.',
+ description: 'The fields to update',
placeholder: 'Add Field',
displayOptions: {
show: {
@@ -179,7 +179,7 @@ export const accountFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Account\'s name.',
+ description: 'Account\'s name',
},
{
displayName: 'Account URL',
@@ -192,7 +192,7 @@ export const accountFields: INodeProperties[] = [
displayName: 'Fields',
name: 'fields',
placeholder: 'Add Fields',
- description: 'Adds a custom fields to set also values which have not been predefined.',
+ description: 'Adds a custom fields to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -211,14 +211,14 @@ export const accountFields: INodeProperties[] = [
loadOptionsMethod: 'getAccountCustomFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -245,7 +245,7 @@ export const accountFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the account to delete.',
+ description: 'ID of the account to delete',
},
// ----------------------------------
// account:get
@@ -266,7 +266,7 @@ export const accountFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the account to get.',
+ description: 'ID of the account to get',
},
// ----------------------------------
// account:getAll
diff --git a/packages/nodes-base/nodes/ActiveCampaign/ConnectionDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/ConnectionDescription.ts
index 1f319aa602..34e66f53e2 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/ConnectionDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/ConnectionDescription.ts
@@ -71,7 +71,7 @@ export const connectionFields: INodeProperties[] = [
],
},
},
- description: 'The name of the service.',
+ description: 'The name of the service',
},
{
displayName: 'External accout ID',
@@ -89,7 +89,7 @@ export const connectionFields: INodeProperties[] = [
],
},
},
- description: 'The id of the account in the external service.',
+ description: 'The id of the account in the external service',
},
{
displayName: 'Account Name',
@@ -125,7 +125,7 @@ export const connectionFields: INodeProperties[] = [
],
},
},
- description: 'The URL to a logo image for the external service.',
+ description: 'The URL to a logo image for the external service',
},
{
displayName: 'Link URL',
@@ -143,7 +143,7 @@ export const connectionFields: INodeProperties[] = [
],
},
},
- description: 'The URL to a page where the integration with the external service can be managed in the third-party\'s website.',
+ description: 'The URL to a page where the integration with the external service can be managed in the third-party\'s website',
},
// ----------------------------------
@@ -165,13 +165,13 @@ export const connectionFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the connection to update.',
+ description: 'ID of the connection to update',
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
- description: 'The fields to update.',
+ description: 'The fields to update',
placeholder: 'Add Field',
displayOptions: {
show: {
@@ -190,14 +190,14 @@ export const connectionFields: INodeProperties[] = [
name: 'service',
type: 'string',
default: '',
- description: 'The name of the service.',
+ description: 'The name of the service',
},
{
displayName: 'External accout ID',
name: 'externalid',
type: 'string',
default: '',
- description: 'The id of the account in the external service.',
+ description: 'The id of the account in the external service',
},
{
displayName: 'Account Name',
@@ -211,14 +211,14 @@ export const connectionFields: INodeProperties[] = [
name: 'logoUrl',
type: 'string',
default: '',
- description: 'The URL to a logo image for the external service.',
+ description: 'The URL to a logo image for the external service',
},
{
displayName: 'Link URL',
name: 'linkUrl',
type: 'string',
default: '',
- description: 'The URL to a page where the integration with the external service can be managed in the third-party\'s website.',
+ description: 'The URL to a page where the integration with the external service can be managed in the third-party\'s website',
},
{
displayName: 'Status',
@@ -232,7 +232,7 @@ export const connectionFields: INodeProperties[] = [
name: 'syncStatus',
type: 'number',
default: 1,
- description: 'The status of a sync triggered on the connection (0 = sync stopped; 1 = sync running).',
+ description: 'The status of a sync triggered on the connection (0 = sync stopped; 1 = sync running)',
},
],
},
@@ -256,7 +256,7 @@ export const connectionFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the connection to delete.',
+ description: 'ID of the connection to delete',
},
// ----------------------------------
@@ -278,7 +278,7 @@ export const connectionFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the connection to get.',
+ description: 'ID of the connection to get',
},
// ----------------------------------
diff --git a/packages/nodes-base/nodes/ActiveCampaign/ContactDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/ContactDescription.ts
index 9972e2828a..252fd54dd8 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/ContactDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/ContactDescription.ts
@@ -70,7 +70,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'The email of the contact to create.',
+ description: 'The email of the contact to create',
},
{
displayName: 'Update if exists',
@@ -110,7 +110,7 @@ export const contactFields: INodeProperties[] = [
displayName: 'Custom Fields',
name: 'fieldValues',
placeholder: 'Add Custom Fields',
- description: 'Adds a custom fields to set also values which have not been predefined.',
+ description: 'Adds a custom fields to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -129,14 +129,14 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getContactCustomFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -147,21 +147,21 @@ export const contactFields: INodeProperties[] = [
name: 'firstName',
type: 'string',
default: '',
- description: 'The first name of the contact to create.',
+ description: 'The first name of the contact to create',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
default: '',
- description: 'The last name of the contact to create.',
+ description: 'The last name of the contact to create',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number of the contact.',
+ description: 'Phone number of the contact',
},
],
},
@@ -185,13 +185,13 @@ export const contactFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the contact to update.',
+ description: 'ID of the contact to update',
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
- description: 'The fields to update.',
+ description: 'The fields to update',
placeholder: 'Add Field',
displayOptions: {
show: {
@@ -209,7 +209,7 @@ export const contactFields: INodeProperties[] = [
displayName: 'Custom Fields',
name: 'fieldValues',
placeholder: 'Add Custom Fields',
- description: 'Adds a custom fields to set also values which have not been predefined.',
+ description: 'Adds a custom fields to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -228,14 +228,14 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getContactCustomFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -246,28 +246,28 @@ export const contactFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email of the contact.',
+ description: 'Email of the contact',
},
{
displayName: 'First Name',
name: 'firstName',
type: 'string',
default: '',
- description: 'First name of the contact.',
+ description: 'First name of the contact',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
default: '',
- description: 'Last name of the contact.',
+ description: 'Last name of the contact',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number of the contact.',
+ description: 'Phone number of the contact',
},
],
},
@@ -291,7 +291,7 @@ export const contactFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the contact to delete.',
+ description: 'ID of the contact to delete',
},
// ----------------------------------
@@ -313,7 +313,7 @@ export const contactFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the contact to get.',
+ description: 'ID of the contact to get',
},
// ----------------------------------
diff --git a/packages/nodes-base/nodes/ActiveCampaign/ContactTagDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/ContactTagDescription.ts
index 5bbe4990a1..73c6598906 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/ContactTagDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/ContactTagDescription.ts
@@ -93,6 +93,6 @@ export const contactTagFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the contact tag to delete.',
+ description: 'ID of the contact tag to delete',
},
];
diff --git a/packages/nodes-base/nodes/ActiveCampaign/DealDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/DealDescription.ts
index 77075ac9a9..0006bae7f6 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/DealDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/DealDescription.ts
@@ -254,13 +254,13 @@ export const dealFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the deal to update.',
+ description: 'ID of the deal to update',
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
- description: 'The fields to update.',
+ description: 'The fields to update',
placeholder: 'Add Field',
displayOptions: {
show: {
@@ -367,7 +367,7 @@ export const dealFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the deal to delete.',
+ description: 'The ID of the deal to delete',
},
// ----------------------------------
@@ -389,7 +389,7 @@ export const dealFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the deal to get.',
+ description: 'The ID of the deal to get',
},
// ----------------------------------
diff --git a/packages/nodes-base/nodes/ActiveCampaign/EcomCustomerDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/EcomCustomerDescription.ts
index 9916d467f1..3b23458971 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/EcomCustomerDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/EcomCustomerDescription.ts
@@ -70,7 +70,7 @@ export const ecomCustomerFields: INodeProperties[] = [
],
},
},
- description: 'The id of the connection object for the service where the customer originates.',
+ description: 'The id of the connection object for the service where the customer originates',
},
{
displayName: 'Customer ID',
@@ -88,7 +88,7 @@ export const ecomCustomerFields: INodeProperties[] = [
],
},
},
- description: 'The id of the customer in the external service.',
+ description: 'The id of the customer in the external service',
},
{
displayName: 'Customer Email',
@@ -106,7 +106,7 @@ export const ecomCustomerFields: INodeProperties[] = [
],
},
},
- description: 'The email address of the customer.',
+ description: 'The email address of the customer',
},
{
displayName: 'Additional Fields',
@@ -130,7 +130,7 @@ export const ecomCustomerFields: INodeProperties[] = [
name: 'acceptsMarketing',
type: 'boolean',
default: false,
- description: 'Indication of whether customer has opt-ed in to marketing communications.',
+ description: 'Indication of whether customer has opt-ed in to marketing communications',
},
],
},
@@ -154,13 +154,13 @@ export const ecomCustomerFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the E-commerce customer to update.',
+ description: 'ID of the E-commerce customer to update',
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
- description: 'The fields to update.',
+ description: 'The fields to update',
placeholder: 'Add Field',
displayOptions: {
show: {
@@ -179,28 +179,28 @@ export const ecomCustomerFields: INodeProperties[] = [
name: 'connectionid',
type: 'string',
default: '',
- description: 'The id of the connection object for the service where the customer originates.',
+ description: 'The id of the connection object for the service where the customer originates',
},
{
displayName: 'Customer ID',
name: 'externalid',
type: 'string',
default: '',
- description: 'The id of the customer in the external service.',
+ description: 'The id of the customer in the external service',
},
{
displayName: 'Customer Email',
name: 'email',
type: 'string',
default: '',
- description: 'The email address of the customer.',
+ description: 'The email address of the customer',
},
{
displayName: 'Accepts Marketing',
name: 'acceptsMarketing',
type: 'boolean',
default: false,
- description: 'Indication of whether customer has opt-ed in to marketing communications.',
+ description: 'Indication of whether customer has opt-ed in to marketing communications',
},
],
},
@@ -224,7 +224,7 @@ export const ecomCustomerFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the E-commerce customer to delete.',
+ description: 'ID of the E-commerce customer to delete',
},
// ----------------------------------
@@ -246,7 +246,7 @@ export const ecomCustomerFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the E-commerce customer to get.',
+ description: 'ID of the E-commerce customer to get',
},
// ----------------------------------
diff --git a/packages/nodes-base/nodes/ActiveCampaign/EcomOrderDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/EcomOrderDescription.ts
index 3eeb3f6686..b2944d78d6 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/EcomOrderDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/EcomOrderDescription.ts
@@ -108,7 +108,7 @@ export const ecomOrderFields: INodeProperties[] = [
],
},
},
- description: 'The order source code (0 - will not trigger automations, 1 - will trigger automations).',
+ description: 'The order source code (0 - will not trigger automations, 1 - will trigger automations)',
},
{
displayName: 'Customer Email',
@@ -126,7 +126,7 @@ export const ecomOrderFields: INodeProperties[] = [
],
},
},
- description: 'The email address of the customer who placed the order.',
+ description: 'The email address of the customer who placed the order',
},
{
displayName: 'Total price',
@@ -163,7 +163,7 @@ export const ecomOrderFields: INodeProperties[] = [
},
},
options: allCurrencies,
- description: 'The currency of the order (3-digit ISO code, e.g., "USD").',
+ description: 'The currency of the order (3-digit ISO code, e.g., "USD")',
},
{
displayName: 'Connection ID',
@@ -181,7 +181,7 @@ export const ecomOrderFields: INodeProperties[] = [
],
},
},
- description: 'The id of the connection from which this order originated.',
+ description: 'The id of the connection from which this order originated',
},
{
displayName: 'Customer ID',
@@ -199,7 +199,7 @@ export const ecomOrderFields: INodeProperties[] = [
],
},
},
- description: 'The id of the customer associated with this order.',
+ description: 'The id of the customer associated with this order',
},
{
displayName: 'Creation Date',
@@ -217,7 +217,7 @@ export const ecomOrderFields: INodeProperties[] = [
],
},
},
- description: 'The date the order was placed.',
+ description: 'The date the order was placed',
},
{
displayName: 'Abandoning Date',
@@ -277,49 +277,49 @@ export const ecomOrderFields: INodeProperties[] = [
name: 'quantity',
type: 'number',
default: 0,
- description: 'The quantity ordered.',
+ description: 'The quantity ordered',
},
{
displayName: 'Product external ID',
name: 'externalid',
type: 'string',
default: '',
- description: 'The id of the product in the external service.',
+ description: 'The id of the product in the external service',
},
{
displayName: 'Product Category',
name: 'category',
type: 'string',
default: '',
- description: 'The category of the product.',
+ description: 'The category of the product',
},
{
displayName: 'SKU',
name: 'sku',
type: 'string',
default: '',
- description: 'The SKU for the product.',
+ description: 'The SKU for the product',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'The description of the product.',
+ description: 'The description of the product',
},
{
displayName: 'Image URL',
name: 'imageUrl',
type: 'string',
default: '',
- description: 'An Image URL that displays an image of the product.',
+ description: 'An Image URL that displays an image of the product',
},
{
displayName: 'Product URL',
name: 'productUrl',
type: 'string',
default: '',
- description: 'A URL linking to the product in your store.',
+ description: 'A URL linking to the product in your store',
},
],
},
@@ -345,7 +345,7 @@ export const ecomOrderFields: INodeProperties[] = [
name: 'shippingAmount',
type: 'number',
default: 0,
- description: 'The total shipping amount for the order in cents .',
+ description: 'The total shipping amount for the order in cents ',
},
{
@@ -353,35 +353,35 @@ export const ecomOrderFields: INodeProperties[] = [
name: 'taxAmount',
type: 'number',
default: 0,
- description: 'The total tax amount for the order in cents.',
+ description: 'The total tax amount for the order in cents',
},
{
displayName: 'Discount Amount',
name: 'discountAmount',
type: 'number',
default: 0,
- description: 'The total discount amount for the order in cents.',
+ description: 'The total discount amount for the order in cents',
},
{
displayName: 'Order URL',
name: 'orderUrl',
type: 'string',
default: '',
- description: 'The URL for the order in the external service.',
+ description: 'The URL for the order in the external service',
},
{
displayName: 'External updated date',
name: 'externalUpdatedDate',
type: 'dateTime',
default: '',
- description: 'The date the order was updated.',
+ description: 'The date the order was updated',
},
{
displayName: 'Shipping Method',
name: 'shippingMethod',
type: 'string',
default: '',
- description: 'The shipping method of the order.',
+ description: 'The shipping method of the order',
},
{
displayName: 'Order Number',
@@ -412,7 +412,7 @@ export const ecomOrderFields: INodeProperties[] = [
],
},
},
- description: 'The id of the e-commerce order.',
+ description: 'The id of the e-commerce order',
},
{
@@ -451,14 +451,14 @@ export const ecomOrderFields: INodeProperties[] = [
name: 'source',
type: 'number',
default: 0,
- description: 'The order source code (0 - will not trigger automations, 1 - will trigger automations).',
+ description: 'The order source code (0 - will not trigger automations, 1 - will trigger automations)',
},
{
displayName: 'Customer Email',
name: 'email',
type: 'string',
default: '',
- description: 'The email address of the customer who placed the order.',
+ description: 'The email address of the customer who placed the order',
},
{
displayName: 'Total price',
@@ -473,28 +473,28 @@ export const ecomOrderFields: INodeProperties[] = [
type: 'options',
default: 'eur',
options: allCurrencies,
- description: 'The currency of the order (3-digit ISO code, e.g., "USD").',
+ description: 'The currency of the order (3-digit ISO code, e.g., "USD")',
},
{
displayName: 'Connection ID',
name: 'connectionid',
type: 'number',
default: 0,
- description: 'The id of the connection from which this order originated.',
+ description: 'The id of the connection from which this order originated',
},
{
displayName: 'Customer ID',
name: 'customerid',
type: 'number',
default: 0,
- description: 'The id of the customer associated with this order.',
+ description: 'The id of the customer associated with this order',
},
{
displayName: 'Creation Date',
name: 'externalupdatedDate',
type: 'dateTime',
default: '',
- description: 'The date the order was placed.',
+ description: 'The date the order was placed',
},
{
displayName: 'Abandoning Date',
@@ -508,7 +508,7 @@ export const ecomOrderFields: INodeProperties[] = [
name: 'shippingAmount',
type: 'number',
default: 0,
- description: 'The total shipping amount for the order in cents .',
+ description: 'The total shipping amount for the order in cents ',
},
{
@@ -516,35 +516,35 @@ export const ecomOrderFields: INodeProperties[] = [
name: 'taxAmount',
type: 'number',
default: 0,
- description: 'The total tax amount for the order in cents.',
+ description: 'The total tax amount for the order in cents',
},
{
displayName: 'Discount Amount',
name: 'discountAmount',
type: 'number',
default: 0,
- description: 'The total discount amount for the order in cents.',
+ description: 'The total discount amount for the order in cents',
},
{
displayName: 'Order URL',
name: 'orderUrl',
type: 'string',
default: '',
- description: 'The URL for the order in the external service.',
+ description: 'The URL for the order in the external service',
},
{
displayName: 'External updated date',
name: 'externalUpdatedDate',
type: 'dateTime',
default: '',
- description: 'The date the order was updated.',
+ description: 'The date the order was updated',
},
{
displayName: 'Shipping Method',
name: 'shippingMethod',
type: 'string',
default: '',
- description: 'The shipping method of the order.',
+ description: 'The shipping method of the order',
},
{
displayName: 'Order Number',
@@ -585,49 +585,49 @@ export const ecomOrderFields: INodeProperties[] = [
name: 'quantity',
type: 'number',
default: 0,
- description: 'The quantity ordered.',
+ description: 'The quantity ordered',
},
{
displayName: 'Product external ID',
name: 'externalid',
type: 'string',
default: '',
- description: 'The id of the product in the external service.',
+ description: 'The id of the product in the external service',
},
{
displayName: 'Product Category',
name: 'category',
type: 'string',
default: '',
- description: 'The category of the product.',
+ description: 'The category of the product',
},
{
displayName: 'SKU',
name: 'sku',
type: 'string',
default: '',
- description: 'The SKU for the product.',
+ description: 'The SKU for the product',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'The description of the product.',
+ description: 'The description of the product',
},
{
displayName: 'Image URL',
name: 'imageUrl',
type: 'string',
default: '',
- description: 'An Image URL that displays an image of the product.',
+ description: 'An Image URL that displays an image of the product',
},
{
displayName: 'Product URL',
name: 'productUrl',
type: 'string',
default: '',
- description: 'A URL linking to the product in your store.',
+ description: 'A URL linking to the product in your store',
},
],
},
@@ -653,7 +653,7 @@ export const ecomOrderFields: INodeProperties[] = [
],
},
},
- description: 'The id of the e-commerce order.',
+ description: 'The id of the e-commerce order',
},
// ----------------------------------
@@ -674,7 +674,7 @@ export const ecomOrderFields: INodeProperties[] = [
],
},
},
- description: 'The id of the e-commerce order.',
+ description: 'The id of the e-commerce order',
},
// ----------------------------------
diff --git a/packages/nodes-base/nodes/ActiveCampaign/EcomOrderProductsDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/EcomOrderProductsDescription.ts
index 7f875111fe..155dd9017f 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/EcomOrderProductsDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/EcomOrderProductsDescription.ts
@@ -59,7 +59,7 @@ export const ecomOrderProductsFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the order whose products you\'d like returned.',
+ description: 'The ID of the order whose products you\'d like returned',
},
// ----------------------------------
@@ -80,7 +80,7 @@ export const ecomOrderProductsFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the product you\'d like returned.',
+ description: 'The ID of the product you\'d like returned',
},
// ----------------------------------
diff --git a/packages/nodes-base/nodes/ActiveCampaign/GenericFunctions.ts b/packages/nodes-base/nodes/ActiveCampaign/GenericFunctions.ts
index 19cf0f65dd..5d253938b0 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/GenericFunctions.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/GenericFunctions.ts
@@ -133,7 +133,7 @@ export function activeCampaignDefaultGetAllProperties(resource: string, operatio
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -157,7 +157,7 @@ export function activeCampaignDefaultGetAllProperties(resource: string, operatio
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Simplify Response',
@@ -174,7 +174,7 @@ export function activeCampaignDefaultGetAllProperties(resource: string, operatio
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
];
}
diff --git a/packages/nodes-base/nodes/ActiveCampaign/TagDescription.ts b/packages/nodes-base/nodes/ActiveCampaign/TagDescription.ts
index df206f4944..9c36b0b231 100644
--- a/packages/nodes-base/nodes/ActiveCampaign/TagDescription.ts
+++ b/packages/nodes-base/nodes/ActiveCampaign/TagDescription.ts
@@ -147,13 +147,13 @@ export const tagFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the tag to update.',
+ description: 'ID of the tag to update',
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
- description: 'The fields to update.',
+ description: 'The fields to update',
placeholder: 'Add Field',
displayOptions: {
show: {
@@ -172,7 +172,7 @@ export const tagFields: INodeProperties[] = [
name: 'tag',
type: 'string',
default: '',
- description: 'Name of the contact.',
+ description: 'Name of the contact',
},
{
displayName: 'Description',
@@ -202,7 +202,7 @@ export const tagFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the tag to delete.',
+ description: 'ID of the tag to delete',
},
// ----------------------------------
// contact:get
@@ -223,7 +223,7 @@ export const tagFields: INodeProperties[] = [
},
default: 0,
required: true,
- description: 'ID of the tag to get.',
+ description: 'ID of the tag to get',
},
// ----------------------------------
// tag:getAll
diff --git a/packages/nodes-base/nodes/Affinity/AffinityTrigger.node.ts b/packages/nodes-base/nodes/Affinity/AffinityTrigger.node.ts
index 5971581b89..c4338913c7 100644
--- a/packages/nodes-base/nodes/Affinity/AffinityTrigger.node.ts
+++ b/packages/nodes-base/nodes/Affinity/AffinityTrigger.node.ts
@@ -153,7 +153,7 @@ export class AffinityTrigger implements INodeType {
],
default: [],
required: true,
- description: 'Webhook events that will be enabled for that endpoint.',
+ description: 'Webhook events that will be enabled for that endpoint',
},
],
diff --git a/packages/nodes-base/nodes/Affinity/ListDescription.ts b/packages/nodes-base/nodes/Affinity/ListDescription.ts
index 72fbc8708a..e4218fda16 100644
--- a/packages/nodes-base/nodes/Affinity/ListDescription.ts
+++ b/packages/nodes-base/nodes/Affinity/ListDescription.ts
@@ -51,7 +51,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The unique id of the list object to be retrieved.',
+ description: 'The unique id of the list object to be retrieved',
},
/* -------------------------------------------------------------------------- */
/* list:getAll */
@@ -71,7 +71,7 @@ export const listFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -95,6 +95,6 @@ export const listFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Affinity/ListEntryDescription.ts b/packages/nodes-base/nodes/Affinity/ListEntryDescription.ts
index 3231771c4c..c97ea5915a 100644
--- a/packages/nodes-base/nodes/Affinity/ListEntryDescription.ts
+++ b/packages/nodes-base/nodes/Affinity/ListEntryDescription.ts
@@ -65,7 +65,7 @@ export const listEntryFields: INodeProperties[] = [
],
},
},
- description: 'The unique id of the list whose list entries are to be retrieved.',
+ description: 'The unique id of the list whose list entries are to be retrieved',
},
{
displayName: 'Entity ID',
@@ -83,7 +83,7 @@ export const listEntryFields: INodeProperties[] = [
],
},
},
- description: 'The unique id of the entity (person, organization, or opportunity) to add to this list.',
+ description: 'The unique id of the entity (person, organization, or opportunity) to add to this list',
},
{
displayName: 'Additional Fields',
@@ -133,7 +133,7 @@ export const listEntryFields: INodeProperties[] = [
],
},
},
- description: 'The unique id of the list that contains the specified list_entry_id.',
+ description: 'The unique id of the list that contains the specified list_entry_id',
},
{
displayName: 'List Entry ID',
@@ -151,7 +151,7 @@ export const listEntryFields: INodeProperties[] = [
],
},
},
- description: 'The unique id of the list entry object to be retrieved.',
+ description: 'The unique id of the list entry object to be retrieved',
},
/* -------------------------------------------------------------------------- */
/* listEntry:getAll */
@@ -174,7 +174,7 @@ export const listEntryFields: INodeProperties[] = [
},
},
default: '',
- description: 'The unique id of the list whose list entries are to be retrieved.',
+ description: 'The unique id of the list whose list entries are to be retrieved',
},
{
displayName: 'Return All',
@@ -191,7 +191,7 @@ export const listEntryFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -215,7 +215,7 @@ export const listEntryFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* listEntry:delete */
@@ -239,7 +239,7 @@ export const listEntryFields: INodeProperties[] = [
],
},
},
- description: 'The unique id of the list that contains the specified list_entry_id.',
+ description: 'The unique id of the list that contains the specified list_entry_id',
},
{
displayName: 'List Entry ID',
@@ -257,6 +257,6 @@ export const listEntryFields: INodeProperties[] = [
],
},
},
- description: 'The unique id of the list entry object to be deleted.',
+ description: 'The unique id of the list entry object to be deleted',
},
];
diff --git a/packages/nodes-base/nodes/Affinity/OrganizationDescription.ts b/packages/nodes-base/nodes/Affinity/OrganizationDescription.ts
index da445cc33b..ed42046668 100644
--- a/packages/nodes-base/nodes/Affinity/OrganizationDescription.ts
+++ b/packages/nodes-base/nodes/Affinity/OrganizationDescription.ts
@@ -67,7 +67,7 @@ export const organizationFields: INodeProperties[] = [
],
},
},
- description: 'The name of the organization.',
+ description: 'The name of the organization',
},
{
displayName: 'Domain',
@@ -85,7 +85,7 @@ export const organizationFields: INodeProperties[] = [
],
},
},
- description: 'The domain name of the organization.',
+ description: 'The domain name of the organization',
},
{
displayName: 'Additional Fields',
@@ -112,7 +112,7 @@ export const organizationFields: INodeProperties[] = [
loadOptionsMethod: 'getPersons',
},
default: [],
- description: 'Persons that the new organization will be associated with.',
+ description: 'Persons that the new organization will be associated with',
},
],
},
@@ -135,7 +135,7 @@ export const organizationFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the organization.',
+ description: 'Unique identifier for the organization',
},
{
displayName: 'Update Fields',
@@ -159,14 +159,14 @@ export const organizationFields: INodeProperties[] = [
name: 'domain',
type: 'string',
default: '',
- description: 'The domain name of the organization.',
+ description: 'The domain name of the organization',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'The name of the organization.',
+ description: 'The name of the organization',
},
{
displayName: 'Persons',
@@ -176,7 +176,7 @@ export const organizationFields: INodeProperties[] = [
loadOptionsMethod: 'getPersons',
},
default: [],
- description: 'Persons that the new organization will be associated with.',
+ description: 'Persons that the new organization will be associated with',
},
],
},
@@ -199,7 +199,7 @@ export const organizationFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the organization.',
+ description: 'Unique identifier for the organization',
},
{
displayName: 'Options',
@@ -223,7 +223,7 @@ export const organizationFields: INodeProperties[] = [
name: 'withInteractionDates',
type: 'boolean',
default: false,
- description: 'When true, interaction dates will be present on the returned resources.',
+ description: 'When true, interaction dates will be present on the returned resources',
},
],
},
@@ -245,7 +245,7 @@ export const organizationFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -269,7 +269,7 @@ export const organizationFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -300,7 +300,7 @@ export const organizationFields: INodeProperties[] = [
name: 'withInteractionDates',
type: 'boolean',
default: false,
- description: 'When true, interaction dates will be present on the returned resources.',
+ description: 'When true, interaction dates will be present on the returned resources',
},
],
},
@@ -323,6 +323,6 @@ export const organizationFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the organization.',
+ description: 'Unique identifier for the organization',
},
];
diff --git a/packages/nodes-base/nodes/Affinity/PersonDescription.ts b/packages/nodes-base/nodes/Affinity/PersonDescription.ts
index 096765b573..25c8ce5c36 100644
--- a/packages/nodes-base/nodes/Affinity/PersonDescription.ts
+++ b/packages/nodes-base/nodes/Affinity/PersonDescription.ts
@@ -67,7 +67,7 @@ export const personFields: INodeProperties[] = [
],
},
},
- description: 'The first name of the person.',
+ description: 'The first name of the person',
},
{
displayName: 'Last Name',
@@ -85,7 +85,7 @@ export const personFields: INodeProperties[] = [
],
},
},
- description: 'The last name of the person.',
+ description: 'The last name of the person',
},
{
displayName: 'Additional Fields',
@@ -112,7 +112,7 @@ export const personFields: INodeProperties[] = [
loadOptionsMethod: 'getOrganizations',
},
default: [],
- description: 'Organizations that the person is associated with.',
+ description: 'Organizations that the person is associated with',
},
],
},
@@ -157,7 +157,7 @@ export const personFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the person.',
+ description: 'Unique identifier for the person',
},
{
displayName: 'Update Fields',
@@ -181,14 +181,14 @@ export const personFields: INodeProperties[] = [
name: 'firstName',
type: 'string',
default: '',
- description: 'The first name of the person.',
+ description: 'The first name of the person',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
default: '',
- description: 'The last name of the person.',
+ description: 'The last name of the person',
},
{
displayName: 'Organizations',
@@ -198,7 +198,7 @@ export const personFields: INodeProperties[] = [
loadOptionsMethod: 'getOrganizations',
},
default: [],
- description: 'Organizations that the person is associated with.',
+ description: 'Organizations that the person is associated with',
},
],
},
@@ -243,7 +243,7 @@ export const personFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the person.',
+ description: 'Unique identifier for the person',
},
{
displayName: 'Options',
@@ -267,7 +267,7 @@ export const personFields: INodeProperties[] = [
name: 'withInteractionDates',
type: 'boolean',
default: false,
- description: 'When true, interaction dates will be present on the returned resources.',
+ description: 'When true, interaction dates will be present on the returned resources',
},
],
},
@@ -289,7 +289,7 @@ export const personFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -313,7 +313,7 @@ export const personFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -344,7 +344,7 @@ export const personFields: INodeProperties[] = [
name: 'withInteractionDates',
type: 'boolean',
default: false,
- description: 'When true, interaction dates will be present on the returned resources.',
+ description: 'When true, interaction dates will be present on the returned resources',
},
],
},
@@ -367,6 +367,6 @@ export const personFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the person.',
+ description: 'Unique identifier for the person',
},
];
diff --git a/packages/nodes-base/nodes/AgileCrm/CompanyDescription.ts b/packages/nodes-base/nodes/AgileCrm/CompanyDescription.ts
index 67551bfe56..1bed483073 100644
--- a/packages/nodes-base/nodes/AgileCrm/CompanyDescription.ts
+++ b/packages/nodes-base/nodes/AgileCrm/CompanyDescription.ts
@@ -87,7 +87,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -107,7 +107,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: 20,
- description: 'Number of results to fetch.',
+ description: 'Number of results to fetch',
},
{
@@ -185,7 +185,7 @@ export const companyFields: INodeProperties[] = [
},
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
default: false,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Filters',
@@ -219,7 +219,7 @@ export const companyFields: INodeProperties[] = [
name: 'field',
type: 'string',
default: '',
- description: 'Any searchable field.',
+ description: 'Any searchable field',
},
{
displayName: 'Condition Type',
@@ -420,7 +420,7 @@ export const companyFields: INodeProperties[] = [
],
},
},
- description: 'Object of values to set as described here.',
+ description: 'Object of values to set as described here',
},
{
displayName: 'Additional Fields',
@@ -447,28 +447,28 @@ export const companyFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Company address.',
+ description: 'Company address',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'Company email.',
+ description: 'Company email',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Company name.',
+ description: 'Company name',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Company phone.',
+ description: 'Company phone',
},
{
displayName: 'Star Value',
@@ -518,7 +518,7 @@ export const companyFields: INodeProperties[] = [
displayName: 'Website',
name: 'websiteOptions',
type: 'fixedCollection',
- description: 'Companies websites.',
+ description: 'Companies websites',
default: {},
typeOptions: {
multipleValues: true,
@@ -534,7 +534,7 @@ export const companyFields: INodeProperties[] = [
type: 'options',
required: true,
default: '',
- description: 'Type of website.',
+ description: 'Type of website',
options: [
{
name: 'Facebook',
@@ -614,21 +614,21 @@ export const companyFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Property name.',
+ description: 'Property name',
},
{
displayName: 'Sub Type',
name: 'subtype',
type: 'string',
default: '',
- description: 'Property sub type.',
+ description: 'Property sub type',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Property value.',
+ description: 'Property value',
},
],
},
@@ -717,7 +717,7 @@ export const companyFields: INodeProperties[] = [
],
},
},
- description: 'Object of values to set as described here.',
+ description: 'Object of values to set as described here',
},
{
displayName: 'Additional Fields',
@@ -744,14 +744,14 @@ export const companyFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Company address.',
+ description: 'Company address',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'Company email.',
+ description: 'Company email',
},
{
displayName: 'Star Value',
@@ -802,21 +802,21 @@ export const companyFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Company name.',
+ description: 'Company name',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Company phone.',
+ description: 'Company phone',
},
{
displayName: 'Website',
name: 'websiteOptions',
type: 'fixedCollection',
default: {},
- description: 'Companys websites.',
+ description: 'Companys websites',
typeOptions: {
multipleValues: true,
},
@@ -831,7 +831,7 @@ export const companyFields: INodeProperties[] = [
type: 'options',
required: true,
default: '',
- description: 'Type of website.',
+ description: 'Type of website',
options: [
{
name: 'Facebook',
@@ -911,21 +911,21 @@ export const companyFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Property name.',
+ description: 'Property name',
},
{
displayName: 'Sub Type',
name: 'subtype',
type: 'string',
default: '',
- description: 'Property sub type.',
+ description: 'Property sub type',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Property value.',
+ description: 'Property value',
},
],
},
diff --git a/packages/nodes-base/nodes/AgileCrm/ContactDescription.ts b/packages/nodes-base/nodes/AgileCrm/ContactDescription.ts
index e499aa7004..e7345cf7a2 100644
--- a/packages/nodes-base/nodes/AgileCrm/ContactDescription.ts
+++ b/packages/nodes-base/nodes/AgileCrm/ContactDescription.ts
@@ -87,7 +87,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -107,7 +107,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: 20,
- description: 'Number of results to fetch.',
+ description: 'Number of results to fetch',
},
{
@@ -185,7 +185,7 @@ export const contactFields: INodeProperties[] = [
},
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
default: false,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Filters',
@@ -219,7 +219,7 @@ export const contactFields: INodeProperties[] = [
name: 'field',
type: 'string',
default: '',
- description: 'Any searchable field.',
+ description: 'Any searchable field',
},
{
displayName: 'Condition Type',
@@ -422,7 +422,7 @@ export const contactFields: INodeProperties[] = [
},
},
- description: `Object of values to set as described here.`,
+ description: 'Object of values to set as described here',
},
{
@@ -450,7 +450,7 @@ export const contactFields: INodeProperties[] = [
name: 'addressOptions',
type: 'fixedCollection',
default: {},
- description: 'Contacts address.',
+ description: 'Contacts address',
typeOptions: {
multipleValues: true,
},
@@ -465,7 +465,7 @@ export const contactFields: INodeProperties[] = [
type: 'options',
required: true,
default: '',
- description: 'Type of address.',
+ description: 'Type of address',
options: [
{
name: 'Home',
@@ -487,7 +487,7 @@ export const contactFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Full address.',
+ description: 'Full address',
},
],
},
@@ -498,14 +498,14 @@ export const contactFields: INodeProperties[] = [
name: 'company',
type: 'string',
default: '',
- description: 'Company Name.',
+ description: 'Company Name',
},
{
displayName: 'Email',
name: 'emailOptions',
type: 'fixedCollection',
default: {},
- description: 'Contact email.',
+ description: 'Contact email',
typeOptions: {
multipleValues: true,
},
@@ -549,14 +549,14 @@ export const contactFields: INodeProperties[] = [
name: 'firstName',
type: 'string',
default: '',
- description: 'Contact first name.',
+ description: 'Contact first name',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
default: '',
- description: 'Contact last name.',
+ description: 'Contact last name',
},
{
displayName: 'Lead Score',
@@ -606,7 +606,7 @@ export const contactFields: INodeProperties[] = [
name: 'phoneOptions',
type: 'fixedCollection',
default: {},
- description: 'Contacts phone.',
+ description: 'Contacts phone',
typeOptions: {
multipleValues: true,
},
@@ -621,7 +621,7 @@ export const contactFields: INodeProperties[] = [
type: 'options',
required: true,
default: '',
- description: 'Type of phone number.',
+ description: 'Type of phone number',
options: [
{
name: 'Home',
@@ -659,7 +659,7 @@ export const contactFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Phone number.',
+ description: 'Phone number',
},
],
},
@@ -681,14 +681,14 @@ export const contactFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Professional title.',
+ description: 'Professional title',
},
{
displayName: 'Website',
name: 'websiteOptions',
type: 'fixedCollection',
default: {},
- description: 'Contacts websites.',
+ description: 'Contacts websites',
typeOptions: {
multipleValues: true,
},
@@ -703,7 +703,7 @@ export const contactFields: INodeProperties[] = [
type: 'options',
required: true,
default: '',
- description: 'Type of website.',
+ description: 'Type of website',
options: [
{
name: 'Facebook',
@@ -783,21 +783,21 @@ export const contactFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Property name.',
+ description: 'Property name',
},
{
displayName: 'Sub Type',
name: 'subtype',
type: 'string',
default: '',
- description: 'Property sub type.',
+ description: 'Property sub type',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Property value.',
+ description: 'Property value',
},
],
},
@@ -825,7 +825,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Id of contact to delete.',
+ description: 'Id of contact to delete',
},
/* -------------------------------------------------------------------------- */
@@ -886,7 +886,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: `Object of values to set as described here.`,
+ description: 'Object of values to set as described here',
},
{
displayName: 'Additional Fields',
@@ -913,7 +913,7 @@ export const contactFields: INodeProperties[] = [
name: 'addressOptions',
type: 'fixedCollection',
default: {},
- description: 'Contacts address.',
+ description: 'Contacts address',
typeOptions: {
multipleValues: true,
},
@@ -928,7 +928,7 @@ export const contactFields: INodeProperties[] = [
type: 'options',
required: true,
default: '',
- description: 'Type of address.',
+ description: 'Type of address',
options: [
{
name: 'Home',
@@ -950,7 +950,7 @@ export const contactFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Full address.',
+ description: 'Full address',
},
],
},
@@ -961,14 +961,14 @@ export const contactFields: INodeProperties[] = [
name: 'company',
type: 'string',
default: '',
- description: 'Company Name.',
+ description: 'Company Name',
},
{
displayName: 'Email',
name: 'emailOptions',
type: 'fixedCollection',
default: {},
- description: 'Contact email.',
+ description: 'Contact email',
typeOptions: {
multipleValues: true,
},
@@ -1012,14 +1012,14 @@ export const contactFields: INodeProperties[] = [
name: 'firstName',
type: 'string',
default: '',
- description: 'Contact first name.',
+ description: 'Contact first name',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
default: '',
- description: 'Contact last name.',
+ description: 'Contact last name',
},
{
displayName: 'Lead Score',
@@ -1069,7 +1069,7 @@ export const contactFields: INodeProperties[] = [
name: 'phoneOptions',
type: 'fixedCollection',
default: {},
- description: 'Contacts phone.',
+ description: 'Contacts phone',
typeOptions: {
multipleValues: true,
},
@@ -1084,7 +1084,7 @@ export const contactFields: INodeProperties[] = [
type: 'options',
required: true,
default: '',
- description: 'Type of phone number.',
+ description: 'Type of phone number',
options: [
{
name: 'Home',
@@ -1122,7 +1122,7 @@ export const contactFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Phone number.',
+ description: 'Phone number',
},
],
},
@@ -1144,14 +1144,14 @@ export const contactFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Professional title.',
+ description: 'Professional title',
},
{
displayName: 'Website',
name: 'websiteOptions',
type: 'fixedCollection',
default: {},
- description: 'Contacts websites.',
+ description: 'Contacts websites',
typeOptions: {
multipleValues: true,
},
@@ -1166,7 +1166,7 @@ export const contactFields: INodeProperties[] = [
type: 'options',
required: true,
default: '',
- description: 'Type of website.',
+ description: 'Type of website',
options: [
{
name: 'Facebook',
@@ -1246,21 +1246,21 @@ export const contactFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Property name.',
+ description: 'Property name',
},
{
displayName: 'Sub Type',
name: 'subtype',
type: 'string',
default: '',
- description: 'Property sub type.',
+ description: 'Property sub type',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Property value.',
+ description: 'Property value',
},
],
},
diff --git a/packages/nodes-base/nodes/AgileCrm/DealDescription.ts b/packages/nodes-base/nodes/AgileCrm/DealDescription.ts
index 2d8f088437..17a09818c4 100644
--- a/packages/nodes-base/nodes/AgileCrm/DealDescription.ts
+++ b/packages/nodes-base/nodes/AgileCrm/DealDescription.ts
@@ -108,7 +108,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
/* -------------------------------------------------------------------------- */
/* deal:create */
@@ -132,7 +132,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: '',
- description: 'Closing date of deal.',
+ description: 'Closing date of deal',
},
{
displayName: 'Expected Value',
@@ -157,7 +157,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: 1,
- description: 'Expected Value of deal.',
+ description: 'Expected Value of deal',
},
{
displayName: 'Milestone',
@@ -178,7 +178,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: '',
- description: 'Milestone of deal.',
+ description: 'Milestone of deal',
},
{
displayName: 'Name',
@@ -199,7 +199,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of deal.',
+ description: 'Name of deal',
},
{
displayName: 'Probability',
@@ -224,7 +224,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: 50,
- description: 'Expected probability.',
+ description: 'Expected probability',
},
{
displayName: 'JSON Parameters',
@@ -263,7 +263,7 @@ export const dealFields: INodeProperties[] = [
],
},
},
- description: `Object of values to set as described here.`,
+ description: 'Object of values to set as described here',
},
{
displayName: 'Additional Fields',
@@ -294,7 +294,7 @@ export const dealFields: INodeProperties[] = [
multipleValueButtonText: 'Add ID',
},
default: [],
- description: 'Unique contact identifiers.',
+ description: 'Unique contact identifiers',
},
{
displayName: 'Custom Data',
@@ -316,14 +316,14 @@ export const dealFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Property name.',
+ description: 'Property name',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Property value.',
+ description: 'Property value',
},
],
},
@@ -413,7 +413,7 @@ export const dealFields: INodeProperties[] = [
},
},
- description: `Object of values to set as described here.`,
+ description: 'Object of values to set as described here',
},
{
displayName: 'Additional Fields',
@@ -444,14 +444,14 @@ export const dealFields: INodeProperties[] = [
maxValue: 10000,
},
default: '',
- description: 'Expected Value of deal.',
+ description: 'Expected Value of deal',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Name of deal.',
+ description: 'Name of deal',
},
{
displayName: 'Probability',
@@ -462,7 +462,7 @@ export const dealFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'Expected Value of deal.',
+ description: 'Expected Value of deal',
},
{
displayName: 'Contact Ids',
@@ -473,7 +473,7 @@ export const dealFields: INodeProperties[] = [
multipleValueButtonText: 'Add ID',
},
default: [],
- description: 'Unique contact identifiers.',
+ description: 'Unique contact identifiers',
},
{
displayName: 'Custom Data',
@@ -495,14 +495,14 @@ export const dealFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Property name.',
+ description: 'Property name',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Property value.',
+ description: 'Property value',
},
],
},
diff --git a/packages/nodes-base/nodes/Airtable/Airtable.node.ts b/packages/nodes-base/nodes/Airtable/Airtable.node.ts
index 5c30522d97..66ab5916a3 100644
--- a/packages/nodes-base/nodes/Airtable/Airtable.node.ts
+++ b/packages/nodes-base/nodes/Airtable/Airtable.node.ts
@@ -80,7 +80,7 @@ export class Airtable implements INodeType {
type: 'string',
default: '',
required: true,
- description: 'The ID of the base to access.',
+ description: 'The ID of the base to access',
},
{
displayName: 'Table ID',
@@ -89,7 +89,7 @@ export class Airtable implements INodeType {
default: '',
placeholder: 'Stories',
required: true,
- description: 'The ID of the table to access.',
+ description: 'The ID of the table to access',
},
// ----------------------------------
@@ -107,7 +107,7 @@ export class Airtable implements INodeType {
},
},
default: true,
- description: 'If all fields should be sent to Airtable or only specific ones.',
+ description: 'If all fields should be sent to Airtable or only specific ones',
},
{
displayName: 'Fields',
@@ -130,7 +130,7 @@ export class Airtable implements INodeType {
default: [],
placeholder: 'Name',
required: true,
- description: 'The name of fields for which data should be sent to Airtable.',
+ description: 'The name of fields for which data should be sent to Airtable',
},
// ----------------------------------
@@ -149,7 +149,7 @@ export class Airtable implements INodeType {
},
default: '',
required: true,
- description: 'Id of the record to delete.',
+ description: 'Id of the record to delete',
},
// ----------------------------------
@@ -167,7 +167,7 @@ export class Airtable implements INodeType {
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -188,7 +188,7 @@ export class Airtable implements INodeType {
maxValue: 100,
},
default: 100,
- description: 'Number of results to return.',
+ description: 'Number of results to return',
},
{
displayName: 'Download Attachments',
@@ -202,7 +202,7 @@ export class Airtable implements INodeType {
},
},
default: false,
- description: `When set to true the attachment fields define in 'Download Fields' will be downloaded.`,
+ description: 'When set to true the attachment fields define in \'Download Fields\' will be downloaded',
},
{
displayName: 'Download Fields',
@@ -247,7 +247,7 @@ export class Airtable implements INodeType {
},
default: [],
placeholder: 'Name',
- description: 'Only data for fields whose names are in this list will be included in the records.',
+ description: 'Only data for fields whose names are in this list will be included in the records',
},
{
displayName: 'Filter By Formula',
@@ -261,7 +261,7 @@ export class Airtable implements INodeType {
displayName: 'Sort',
name: 'sort',
placeholder: 'Add Sort Rule',
- description: 'Defines how the returned records should be ordered.',
+ description: 'Defines how the returned records should be ordered',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -277,7 +277,7 @@ export class Airtable implements INodeType {
name: 'field',
type: 'string',
default: '',
- description: 'Name of the field to sort on.',
+ description: 'Name of the field to sort on',
},
{
displayName: 'Direction',
@@ -296,7 +296,7 @@ export class Airtable implements INodeType {
},
],
default: 'asc',
- description: 'The sort direction.',
+ description: 'The sort direction',
},
],
},
@@ -329,7 +329,7 @@ export class Airtable implements INodeType {
},
default: '',
required: true,
- description: 'Id of the record to return.',
+ description: 'Id of the record to return',
},
// ----------------------------------
@@ -348,7 +348,7 @@ export class Airtable implements INodeType {
},
default: '',
required: true,
- description: 'Id of the record to update.',
+ description: 'Id of the record to update',
},
{
displayName: 'Update All Fields',
@@ -362,7 +362,7 @@ export class Airtable implements INodeType {
},
},
default: true,
- description: 'If all fields should be sent to Airtable or only specific ones.',
+ description: 'If all fields should be sent to Airtable or only specific ones',
},
{
displayName: 'Fields',
@@ -385,7 +385,7 @@ export class Airtable implements INodeType {
default: [],
placeholder: 'Name',
required: true,
- description: 'The name of fields for which data should be sent to Airtable.',
+ description: 'The name of fields for which data should be sent to Airtable',
},
// ----------------------------------
@@ -416,7 +416,7 @@ export class Airtable implements INodeType {
maxValue: 10,
},
default: 10,
- description: `Number of records to process at once.`,
+ description: 'Number of records to process at once',
},
{
displayName: 'Ignore Fields',
@@ -433,7 +433,7 @@ export class Airtable implements INodeType {
},
},
default: '',
- description: 'Comma-separated list of fields to ignore.',
+ description: 'Comma-separated list of fields to ignore',
},
{
displayName: 'Typecast',
@@ -448,7 +448,7 @@ export class Airtable implements INodeType {
},
},
default: false,
- description: 'If the Airtable API should attempt mapping of string values for linked records & select options.',
+ description: 'If the Airtable API should attempt mapping of string values for linked records & select options',
},
],
},
diff --git a/packages/nodes-base/nodes/Airtable/AirtableTrigger.node.ts b/packages/nodes-base/nodes/Airtable/AirtableTrigger.node.ts
index 30953d3a20..fb6976e406 100644
--- a/packages/nodes-base/nodes/Airtable/AirtableTrigger.node.ts
+++ b/packages/nodes-base/nodes/Airtable/AirtableTrigger.node.ts
@@ -45,14 +45,14 @@ export class AirtableTrigger implements INodeType {
type: 'string',
default: '',
required: true,
- description: 'The ID of this base.',
+ description: 'The ID of this base',
},
{
displayName: 'Table ID',
name: 'tableId',
type: 'string',
default: '',
- description: 'The ID of the table to access.',
+ description: 'The ID of the table to access',
required: true,
},
{
@@ -68,7 +68,7 @@ export class AirtableTrigger implements INodeType {
name: 'downloadAttachments',
type: 'boolean',
default: false,
- description: `When set to true the attachment fields define in 'Download Fields' will be downloaded.`,
+ description: 'When set to true the attachment fields define in \'Download Fields\' will be downloaded',
},
{
displayName: 'Download Fields',
diff --git a/packages/nodes-base/nodes/Amqp/Amqp.node.ts b/packages/nodes-base/nodes/Amqp/Amqp.node.ts
index 54a17e59fd..b8c6f7ad51 100644
--- a/packages/nodes-base/nodes/Amqp/Amqp.node.ts
+++ b/packages/nodes-base/nodes/Amqp/Amqp.node.ts
@@ -67,7 +67,7 @@ export class Amqp implements INodeType {
name: 'dataAsObject',
type: 'boolean',
default: false,
- description: 'Send the data as an object.',
+ description: 'Send the data as an object',
},
{
displayName: 'Reconnect',
diff --git a/packages/nodes-base/nodes/Amqp/AmqpTrigger.node.ts b/packages/nodes-base/nodes/Amqp/AmqpTrigger.node.ts
index 1c30b441fb..a6dfc40580 100644
--- a/packages/nodes-base/nodes/Amqp/AmqpTrigger.node.ts
+++ b/packages/nodes-base/nodes/Amqp/AmqpTrigger.node.ts
@@ -86,7 +86,7 @@ export class AmqpTrigger implements INodeType {
name: 'jsonParseBody',
type: 'boolean',
default: false,
- description: 'Parse the body to an object.',
+ description: 'Parse the body to an object',
},
{
displayName: 'Messages per Cicle',
@@ -100,7 +100,7 @@ export class AmqpTrigger implements INodeType {
name: 'onlyBody',
type: 'boolean',
default: false,
- description: 'Returns only the body property.',
+ description: 'Returns only the body property',
},
{
displayName: 'Reconnect',
@@ -121,7 +121,7 @@ export class AmqpTrigger implements INodeType {
name: 'sleepTime',
type: 'number',
default: 10,
- description: 'Milliseconds to sleep after every cicle.',
+ description: 'Milliseconds to sleep after every cicle',
},
],
},
diff --git a/packages/nodes-base/nodes/ApiTemplateIo/ApiTemplateIo.node.ts b/packages/nodes-base/nodes/ApiTemplateIo/ApiTemplateIo.node.ts
index 64058090a6..2f29c85423 100644
--- a/packages/nodes-base/nodes/ApiTemplateIo/ApiTemplateIo.node.ts
+++ b/packages/nodes-base/nodes/ApiTemplateIo/ApiTemplateIo.node.ts
@@ -110,7 +110,7 @@ export class ApiTemplateIo implements INodeType {
type: 'options',
required: true,
default: '',
- description: 'ID of the image template to use.',
+ description: 'ID of the image template to use',
typeOptions: {
loadOptionsMethod: 'getImageTemplates',
},
@@ -131,7 +131,7 @@ export class ApiTemplateIo implements INodeType {
type: 'options',
required: true,
default: '',
- description: 'ID of the PDF template to use.',
+ description: 'ID of the PDF template to use',
typeOptions: {
loadOptionsMethod: 'getPdfTemplates',
},
@@ -179,7 +179,7 @@ export class ApiTemplateIo implements INodeType {
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
{
displayName: 'Binary Property',
@@ -187,7 +187,7 @@ export class ApiTemplateIo implements INodeType {
type: 'string',
required: true,
default: 'data',
- description: 'Name of the binary property to which to write to.',
+ description: 'Name of the binary property to which to write to',
displayOptions: {
show: {
resource: [
@@ -296,7 +296,7 @@ export class ApiTemplateIo implements INodeType {
name: 'value',
type: 'string',
default: '',
- description: 'Value to the property.',
+ description: 'Value to the property',
},
],
},
@@ -345,7 +345,7 @@ export class ApiTemplateIo implements INodeType {
name: 'value',
type: 'string',
default: '',
- description: 'Value to the property.',
+ description: 'Value to the property',
},
],
},
diff --git a/packages/nodes-base/nodes/Asana/Asana.node.ts b/packages/nodes-base/nodes/Asana/Asana.node.ts
index 2c4cf27da4..bf410a15db 100644
--- a/packages/nodes-base/nodes/Asana/Asana.node.ts
+++ b/packages/nodes-base/nodes/Asana/Asana.node.ts
@@ -176,7 +176,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The task to operate on.',
+ description: 'The task to operate on',
},
{
displayName: 'Name',
@@ -253,21 +253,21 @@ export class Asana implements INodeType {
name: 'completed',
type: 'boolean',
default: false,
- description: 'If the subtask should be marked completed.',
+ description: 'If the subtask should be marked completed',
},
{
displayName: 'Due On',
name: 'due_on',
type: 'dateTime',
default: '',
- description: 'Date on which the time is due.',
+ description: 'Date on which the time is due',
},
{
displayName: 'Liked',
name: 'liked',
type: 'boolean',
default: false,
- description: 'If the task is liked by the authorized user.',
+ description: 'If the task is liked by the authorized user',
},
{
displayName: 'Notes',
@@ -311,7 +311,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The task to operate on.',
+ description: 'The task to operate on',
},
{
displayName: 'Return All',
@@ -328,7 +328,7 @@ export class Asana implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -352,7 +352,7 @@ export class Asana implements INodeType {
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -383,14 +383,14 @@ export class Asana implements INodeType {
'name',
'resource_type',
],
- description: 'Defines fields to return.',
+ description: 'Defines fields to return',
},
{
displayName: 'Pretty',
name: 'opt_pretty',
type: 'boolean',
default: false,
- description: 'Provides “pretty” output.',
+ description: 'Provides “pretty” output',
},
],
},
@@ -512,7 +512,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The ID of the task to delete.',
+ description: 'The ID of the task to delete',
},
// ----------------------------------
@@ -534,7 +534,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The ID of the task to get the data of.',
+ description: 'The ID of the task to get the data of',
},
// ----------------------------------
// task:getAll
@@ -554,7 +554,7 @@ export class Asana implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -578,7 +578,7 @@ export class Asana implements INodeType {
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -620,14 +620,14 @@ export class Asana implements INodeType {
'name',
'resource_type',
],
- description: 'Defines fields to return.',
+ description: 'Defines fields to return',
},
{
displayName: 'Pretty',
name: 'opt_pretty',
type: 'boolean',
default: false,
- description: 'Provides “pretty” output.',
+ description: 'Provides “pretty” output',
},
{
displayName: 'Project',
@@ -637,7 +637,7 @@ export class Asana implements INodeType {
loadOptionsMethod: 'getProjects',
},
default: '',
- description: 'The project to filter tasks on.',
+ description: 'The project to filter tasks on',
},
{
displayName: 'Section',
@@ -647,7 +647,7 @@ export class Asana implements INodeType {
loadOptionsMethod: 'getSections',
},
default: '',
- description: 'The section to filter tasks on.',
+ description: 'The section to filter tasks on',
},
{
displayName: 'Workspace',
@@ -664,14 +664,14 @@ export class Asana implements INodeType {
name: 'completed_since',
type: 'dateTime',
default: '',
- description: 'Only return tasks that are either incomplete or that have been completed since this time.',
+ description: 'Only return tasks that are either incomplete or that have been completed since this time',
},
{
displayName: 'Modified Since',
name: 'modified_since',
type: 'dateTime',
default: '',
- description: 'Only return tasks that have been modified since the given time.',
+ description: 'Only return tasks that have been modified since the given time',
},
],
},
@@ -696,7 +696,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The ID of the task to be moved.',
+ description: 'The ID of the task to be moved',
},
{
displayName: 'Project',
@@ -718,7 +718,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'Project to show the sections of.',
+ description: 'Project to show the sections of',
},
{
displayName: 'Section',
@@ -765,7 +765,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The ID of the task to update the data of.',
+ description: 'The ID of the task to update the data of',
},
// ----------------------------------
@@ -816,7 +816,7 @@ export class Asana implements INodeType {
name: 'completed',
type: 'boolean',
default: false,
- description: 'If the task is marked completed.',
+ description: 'If the task is marked completed',
},
{
displayName: 'Text',
@@ -827,7 +827,7 @@ export class Asana implements INodeType {
rows: 5,
},
default: '',
- description: 'Text to search for in name or notes.',
+ description: 'Text to search for in name or notes',
},
],
},
@@ -893,14 +893,14 @@ export class Asana implements INodeType {
name: 'completed',
type: 'boolean',
default: false,
- description: 'If the task should be marked completed.',
+ description: 'If the task should be marked completed',
},
{
displayName: 'Due On',
name: 'due_on',
type: 'dateTime',
default: '',
- description: 'Date on which the time is due.',
+ description: 'Date on which the time is due',
},
{
displayName: 'Name',
@@ -921,7 +921,7 @@ export class Asana implements INodeType {
name: 'liked',
type: 'boolean',
default: false,
- description: 'If the task is liked by the authorized user.',
+ description: 'If the task is liked by the authorized user',
},
{
displayName: 'Notes',
@@ -942,7 +942,7 @@ export class Asana implements INodeType {
loadOptionsMethod: 'getProjects',
},
default: [],
- description: 'The project to filter tasks on.',
+ description: 'The project to filter tasks on',
},
],
},
@@ -1015,7 +1015,7 @@ export class Asana implements INodeType {
},
},
default: false,
- description: 'If body is HTML or simple text.',
+ description: 'If body is HTML or simple text',
},
{
displayName: 'Text',
@@ -1088,7 +1088,7 @@ export class Asana implements INodeType {
name: 'is_pinned',
type: 'boolean',
default: false,
- description: 'Pin the comment.',
+ description: 'Pin the comment',
},
],
},
@@ -1210,14 +1210,14 @@ export class Asana implements INodeType {
name: 'insert_after',
type: 'string',
default: '',
- description: 'A task in the project to insert the task after, or null to insert at the beginning of the list.',
+ description: 'A task in the project to insert the task after, or null to insert at the beginning of the list',
},
{
displayName: 'Insert Before',
name: 'insert_before',
type: 'string',
default: '',
- description: 'A task in the project to insert the task before, or null to insert at the end of the list.',
+ description: 'A task in the project to insert the task before, or null to insert at the end of the list',
},
{
displayName: 'Section',
@@ -1471,7 +1471,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The workspace in which to get users.',
+ description: 'The workspace in which to get users',
},
// ----------------------------------
@@ -1583,7 +1583,7 @@ export class Asana implements INodeType {
},
},
default: '',
- description: 'The team this project will be assigned to.',
+ description: 'The team this project will be assigned to',
},
{
displayName: 'Additional Fields',
@@ -1609,7 +1609,7 @@ export class Asana implements INodeType {
type: 'options',
options: getColorOptions(),
default: 'none',
- description: 'Color of the project.',
+ description: 'Color of the project',
},
{
displayName: 'Due On',
@@ -1623,7 +1623,7 @@ export class Asana implements INodeType {
name: 'notes',
type: 'string',
default: '',
- description: 'Basic description or notes for the project.',
+ description: 'Basic description or notes for the project',
},
],
},
@@ -1691,7 +1691,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The workspace in which to get users.',
+ description: 'The workspace in which to get users',
},
{
displayName: 'Return All',
@@ -1708,7 +1708,7 @@ export class Asana implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1732,7 +1732,7 @@ export class Asana implements INodeType {
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -1757,7 +1757,7 @@ export class Asana implements INodeType {
name: 'archived',
type: 'boolean',
default: false,
- description: 'Only return projects whose archived field takes on the value of this parameter.',
+ description: 'Only return projects whose archived field takes on the value of this parameter',
},
{
displayName: 'Teams',
@@ -1797,7 +1797,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The workspace in which to get users.',
+ description: 'The workspace in which to get users',
},
{
displayName: 'Project ID',
@@ -1815,7 +1815,7 @@ export class Asana implements INodeType {
],
},
},
- description: 'The ID of the project to update the data of.',
+ description: 'The ID of the project to update the data of',
},
{
displayName: 'Update Fields',
@@ -1841,7 +1841,7 @@ export class Asana implements INodeType {
type: 'options',
options: getColorOptions(),
default: 'none',
- description: 'Color of the project.',
+ description: 'Color of the project',
},
{
displayName: 'Due On',
@@ -1855,21 +1855,21 @@ export class Asana implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'The name of the project.',
+ description: 'The name of the project',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
- description: 'Basic description or notes for the project.',
+ description: 'Basic description or notes for the project',
},
{
displayName: 'Owner',
name: 'owner',
type: 'string',
default: '',
- description: 'The new assignee/cardinal for this project.',
+ description: 'The new assignee/cardinal for this project',
},
{
displayName: 'Team',
@@ -1882,7 +1882,7 @@ export class Asana implements INodeType {
loadOptionsMethod: 'getTeams',
},
default: '',
- description: 'The team this project will be assigned to.',
+ description: 'The team this project will be assigned to',
},
],
},
diff --git a/packages/nodes-base/nodes/Automizy/ContactDescription.ts b/packages/nodes-base/nodes/Automizy/ContactDescription.ts
index 348435a86a..c2fd899238 100644
--- a/packages/nodes-base/nodes/Automizy/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Automizy/ContactDescription.ts
@@ -67,7 +67,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'The email address of the contact.',
+ description: 'The email address of the contact',
},
{
displayName: 'List ID',
@@ -128,14 +128,14 @@ export const contactFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCustomFields',
},
- description: 'The end user specified key of the user defined data.',
+ description: 'The end user specified key of the user defined data',
default: '',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
- description: 'The end user specified value of the user defined data.',
+ description: 'The end user specified value of the user defined data',
default: '',
},
],
@@ -180,7 +180,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getTags',
},
default: [],
- description: 'The tags you want to set to the contact.',
+ description: 'The tags you want to set to the contact',
},
],
},
@@ -204,7 +204,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Can be ID or email.',
+ description: 'Can be ID or email',
},
/* -------------------------------------------------------------------------- */
@@ -267,7 +267,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -291,7 +291,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -332,7 +332,7 @@ export const contactFields: INodeProperties[] = [
name: 'fields',
type: 'string',
default: '',
- description: 'A comma-separated list of attributes to include in the response.',
+ description: 'A comma-separated list of attributes to include in the response',
},
{
displayName: 'Sort By',
@@ -388,7 +388,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getTags',
},
default: [],
- description: 'The tags you want to add to the contact.',
+ description: 'The tags you want to add to the contact',
},
{
displayName: 'Custom Fields',
@@ -412,14 +412,14 @@ export const contactFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCustomFields',
},
- description: 'The end user specified key of the user defined data.',
+ description: 'The end user specified key of the user defined data',
default: '',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
- description: 'The end user specified value of the user defined data.',
+ description: 'The end user specified value of the user defined data',
default: '',
},
],
@@ -434,7 +434,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getTags',
},
default: [],
- description: 'The tags you want to add to the contact.',
+ description: 'The tags you want to add to the contact',
},
{
displayName: 'Status',
diff --git a/packages/nodes-base/nodes/Automizy/ListDescription.ts b/packages/nodes-base/nodes/Automizy/ListDescription.ts
index e3bf022be0..28987f27c4 100644
--- a/packages/nodes-base/nodes/Automizy/ListDescription.ts
+++ b/packages/nodes-base/nodes/Automizy/ListDescription.ts
@@ -126,7 +126,7 @@ export const listFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -150,7 +150,7 @@ export const listFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -191,7 +191,7 @@ export const listFields: INodeProperties[] = [
name: 'fields',
type: 'string',
default: '',
- description: 'A comma-separated list of attributes to include in the response.',
+ description: 'A comma-separated list of attributes to include in the response',
},
{
displayName: 'Sort By',
diff --git a/packages/nodes-base/nodes/Autopilot/ContactDescription.ts b/packages/nodes-base/nodes/Autopilot/ContactDescription.ts
index d4f14af207..30ccd0a310 100644
--- a/packages/nodes-base/nodes/Autopilot/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Autopilot/ContactDescription.ts
@@ -62,7 +62,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email address of the contact.',
+ description: 'Email address of the contact',
},
{
displayName: 'Additional Fields',
@@ -109,14 +109,14 @@ export const contactFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCustomFields',
},
- description: 'User-specified key of user-defined data.',
+ description: 'User-specified key of user-defined data',
default: '',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
- description: 'User-specified value of user-defined data.',
+ description: 'User-specified value of user-defined data',
default: '',
},
],
@@ -167,7 +167,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getLists',
},
default: '',
- description: 'List to which this contact will be added on creation.',
+ description: 'List to which this contact will be added on creation',
},
{
displayName: 'Mailing Country',
@@ -210,7 +210,7 @@ export const contactFields: INodeProperties[] = [
name: 'newEmail',
type: 'string',
default: '',
- description: 'If provided, will change the email address of the contact identified by the Email field.',
+ description: 'If provided, will change the email address of the contact identified by the Email field',
},
{
displayName: 'Notify',
@@ -248,7 +248,7 @@ export const contactFields: INodeProperties[] = [
name: 'autopilotSessionId',
type: 'string',
default: '',
- description: 'Used to associate a contact with a session.',
+ description: 'Used to associate a contact with a session',
},
{
displayName: 'Status',
@@ -267,7 +267,7 @@ export const contactFields: INodeProperties[] = [
name: 'unsubscribed',
type: 'boolean',
default: false,
- description: 'Whether to subscribe or un-subscribe a contact.',
+ description: 'Whether to subscribe or un-subscribe a contact',
},
{
displayName: 'Website URL',
@@ -297,7 +297,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Can be ID or email.',
+ description: 'Can be ID or email',
},
/* -------------------------------------------------------------------------- */
@@ -319,7 +319,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Can be ID or email.',
+ description: 'Can be ID or email',
},
/* -------------------------------------------------------------------------- */
@@ -340,7 +340,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -364,6 +364,6 @@ export const contactFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Autopilot/ContactJourneyDescription.ts b/packages/nodes-base/nodes/Autopilot/ContactJourneyDescription.ts
index 27d5fcdcc8..b2dd3b5ca5 100644
--- a/packages/nodes-base/nodes/Autopilot/ContactJourneyDescription.ts
+++ b/packages/nodes-base/nodes/Autopilot/ContactJourneyDescription.ts
@@ -50,7 +50,7 @@ export const contactJourneyFields: INodeProperties[] = [
},
},
default: '',
- description: 'List ID.',
+ description: 'List ID',
},
{
displayName: 'Contact ID',
@@ -68,6 +68,6 @@ export const contactJourneyFields: INodeProperties[] = [
},
},
default: '',
- description: 'Can be ID or email.',
+ description: 'Can be ID or email',
},
];
diff --git a/packages/nodes-base/nodes/Autopilot/ContactListDescription.ts b/packages/nodes-base/nodes/Autopilot/ContactListDescription.ts
index 22ab9e7a49..bca556b7d5 100644
--- a/packages/nodes-base/nodes/Autopilot/ContactListDescription.ts
+++ b/packages/nodes-base/nodes/Autopilot/ContactListDescription.ts
@@ -18,22 +18,22 @@ export const contactListOperations: INodeProperties[] = [
{
name: 'Add',
value: 'add',
- description: 'Add contact to list.',
+ description: 'Add contact to list',
},
{
name: 'Exist',
value: 'exist',
- description: 'Check if contact is on list.',
+ description: 'Check if contact is on list',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all contacts on list.',
+ description: 'Get all contacts on list',
},
{
name: 'Remove',
value: 'remove',
- description: 'Remove a contact from a list.',
+ description: 'Remove a contact from a list',
},
],
default: 'add',
@@ -68,7 +68,7 @@ export const contactListFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the list to operate on.',
+ description: 'ID of the list to operate on',
},
{
displayName: 'Contact ID',
@@ -88,7 +88,7 @@ export const contactListFields: INodeProperties[] = [
},
},
default: '',
- description: 'Can be ID or email.',
+ description: 'Can be ID or email',
},
/* -------------------------------------------------------------------------- */
@@ -109,7 +109,7 @@ export const contactListFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -133,6 +133,6 @@ export const contactListFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Autopilot/ListDescription.ts b/packages/nodes-base/nodes/Autopilot/ListDescription.ts
index ef7eb1ca95..f631dbeef8 100644
--- a/packages/nodes-base/nodes/Autopilot/ListDescription.ts
+++ b/packages/nodes-base/nodes/Autopilot/ListDescription.ts
@@ -18,12 +18,12 @@ export const listOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
- description: 'Create a list.',
+ description: 'Create a list',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all lists.',
+ description: 'Get all lists',
},
],
default: 'create',
@@ -52,7 +52,7 @@ export const listFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of the list to create.',
+ description: 'Name of the list to create',
},
/* -------------------------------------------------------------------------- */
@@ -73,7 +73,7 @@ export const listFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -97,6 +97,6 @@ export const listFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Aws/Comprehend/AwsComprehend.node.ts b/packages/nodes-base/nodes/Aws/Comprehend/AwsComprehend.node.ts
index b15bd770f8..39e4399c8e 100644
--- a/packages/nodes-base/nodes/Aws/Comprehend/AwsComprehend.node.ts
+++ b/packages/nodes-base/nodes/Aws/Comprehend/AwsComprehend.node.ts
@@ -45,7 +45,7 @@ export class AwsComprehend implements INodeType {
},
],
default: 'text',
- description: 'The resource to perform.',
+ description: 'The resource to perform',
},
{
displayName: 'Operation',
@@ -137,7 +137,7 @@ export class AwsComprehend implements INodeType {
],
},
},
- description: 'The language code for text.',
+ description: 'The language code for text',
},
{
displayName: 'Text',
@@ -154,7 +154,7 @@ export class AwsComprehend implements INodeType {
],
},
},
- description: 'The text to send.',
+ description: 'The text to send',
},
{
displayName: 'Simplify Response',
@@ -171,7 +171,7 @@ export class AwsComprehend implements INodeType {
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Additional Fields',
@@ -198,7 +198,7 @@ export class AwsComprehend implements INodeType {
alwaysOpenEditWindow: true,
},
default: '',
- description: 'The Amazon Resource Name of an endpoint that is associated with a custom entity recognition model.',
+ description: 'The Amazon Resource Name of an endpoint that is associated with a custom entity recognition model',
},
],
},
diff --git a/packages/nodes-base/nodes/Aws/Rekognition/AwsRekognition.node.ts b/packages/nodes-base/nodes/Aws/Rekognition/AwsRekognition.node.ts
index 854fdc2fb7..2db6007122 100644
--- a/packages/nodes-base/nodes/Aws/Rekognition/AwsRekognition.node.ts
+++ b/packages/nodes-base/nodes/Aws/Rekognition/AwsRekognition.node.ts
@@ -119,7 +119,7 @@ export class AwsRekognition implements INodeType {
],
},
},
- description: 'If the image to analize should be taken from binary field.',
+ description: 'If the image to analize should be taken from binary field',
},
{
displayName: 'Binary Property',
@@ -139,7 +139,7 @@ export class AwsRekognition implements INodeType {
name: 'binaryPropertyName',
type: 'string',
default: 'data',
- description: 'Object property name which holds binary data.',
+ description: 'Object property name which holds binary data',
required: true,
},
{
@@ -226,28 +226,28 @@ export class AwsRekognition implements INodeType {
displayName: 'Height',
name: 'height',
type: 'number',
- description: 'Height of the bounding box as a ratio of the overall image height.',
+ description: 'Height of the bounding box as a ratio of the overall image height',
default: 0,
},
{
displayName: 'Left',
name: 'left',
type: 'number',
- description: 'Left coordinate of the bounding box as a ratio of overall image width.',
+ description: 'Left coordinate of the bounding box as a ratio of overall image width',
default: 0,
},
{
displayName: 'Top',
name: 'top',
type: 'number',
- description: 'Top coordinate of the bounding box as a ratio of overall image height.',
+ description: 'Top coordinate of the bounding box as a ratio of overall image height',
default: 0,
},
{
displayName: 'Width',
name: 'Width',
type: 'number',
- description: 'Width of the bounding box as a ratio of the overall image width.',
+ description: 'Width of the bounding box as a ratio of the overall image width',
default: 0,
},
],
diff --git a/packages/nodes-base/nodes/Aws/S3/BucketDescription.ts b/packages/nodes-base/nodes/Aws/S3/BucketDescription.ts
index d0f868c1f5..4593f0329d 100644
--- a/packages/nodes-base/nodes/Aws/S3/BucketDescription.ts
+++ b/packages/nodes-base/nodes/Aws/S3/BucketDescription.ts
@@ -62,7 +62,7 @@ export const bucketFields: INodeProperties[] = [
],
},
},
- description: 'A succinct description of the nature, symptoms, cause, or effect of the bucket.',
+ description: 'A succinct description of the nature, symptoms, cause, or effect of the bucket',
},
{
displayName: 'Additional Fields',
@@ -104,56 +104,56 @@ export const bucketFields: INodeProperties[] = [
},
],
default: '',
- description: 'The canned ACL to apply to the bucket.',
+ description: 'The canned ACL to apply to the bucket',
},
{
displayName: 'Bucket Object Lock Enabled',
name: 'bucketObjectLockEnabled',
type: 'boolean',
default: false,
- description: 'Specifies whether you want S3 Object Lock to be enabled for the new bucket.',
+ description: 'Specifies whether you want S3 Object Lock to be enabled for the new bucket',
},
{
displayName: 'Grant Full Control',
name: 'grantFullControl',
type: 'boolean',
default: false,
- description: 'Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.',
+ description: 'Allows grantee the read, write, read ACP, and write ACP permissions on the bucket',
},
{
displayName: 'Grant Read',
name: 'grantRead',
type: 'boolean',
default: false,
- description: 'Allows grantee to list the objects in the bucket.',
+ description: 'Allows grantee to list the objects in the bucket',
},
{
displayName: 'Grant Read ACP',
name: 'grantReadAcp',
type: 'boolean',
default: false,
- description: 'Allows grantee to read the bucket ACL.',
+ description: 'Allows grantee to read the bucket ACL',
},
{
displayName: 'Grant Write',
name: 'grantWrite',
type: 'boolean',
default: false,
- description: 'Allows grantee to create, overwrite, and delete any object in the bucket.',
+ description: 'Allows grantee to create, overwrite, and delete any object in the bucket',
},
{
displayName: 'Grant Write ACP',
name: 'grantWriteAcp',
type: 'boolean',
default: false,
- description: 'Allows grantee to write the ACL for the applicable bucket.',
+ description: 'Allows grantee to write the ACL for the applicable bucket',
},
{
displayName: 'Region',
name: 'region',
type: 'string',
default: '',
- description: 'Region you want to create the bucket in, by default the buckets are created on the region defined on the credentials.',
+ description: 'Region you want to create the bucket in, by default the buckets are created on the region defined on the credentials',
},
],
},
@@ -177,7 +177,7 @@ export const bucketFields: INodeProperties[] = [
],
},
},
- description: 'Name of the AWS S3 bucket to delete.',
+ description: 'Name of the AWS S3 bucket to delete',
},
/* -------------------------------------------------------------------------- */
@@ -198,7 +198,7 @@ export const bucketFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -222,7 +222,7 @@ export const bucketFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* bucket:search */
@@ -259,7 +259,7 @@ export const bucketFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -283,7 +283,7 @@ export const bucketFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -307,7 +307,7 @@ export const bucketFields: INodeProperties[] = [
name: 'delimiter',
type: 'string',
default: '',
- description: 'A delimiter is a character you use to group keys.',
+ description: 'A delimiter is a character you use to group keys',
},
{
displayName: 'Encoding Type',
@@ -320,21 +320,21 @@ export const bucketFields: INodeProperties[] = [
},
],
default: '',
- description: 'Encoding type used by Amazon S3 to encode object keys in the response.',
+ description: 'Encoding type used by Amazon S3 to encode object keys in the response',
},
{
displayName: 'Fetch Owner',
name: 'fetchOwner',
type: 'boolean',
default: false,
- description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true.',
+ description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true',
},
{
displayName: 'Prefix',
name: 'prefix',
type: 'string',
default: '',
- description: 'Limits the response to keys that begin with the specified prefix.',
+ description: 'Limits the response to keys that begin with the specified prefix',
},
{
displayName: 'Requester Pays',
diff --git a/packages/nodes-base/nodes/Aws/S3/FileDescription.ts b/packages/nodes-base/nodes/Aws/S3/FileDescription.ts
index c83286e03a..09c7f1125b 100644
--- a/packages/nodes-base/nodes/Aws/S3/FileDescription.ts
+++ b/packages/nodes-base/nodes/Aws/S3/FileDescription.ts
@@ -141,35 +141,35 @@ export const fileFields: INodeProperties[] = [
},
],
default: 'private',
- description: 'The canned ACL to apply to the object.',
+ description: 'The canned ACL to apply to the object',
},
{
displayName: 'Grant Full Control',
name: 'grantFullControl',
type: 'boolean',
default: false,
- description: 'Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.',
+ description: 'Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object',
},
{
displayName: 'Grant Read',
name: 'grantRead',
type: 'boolean',
default: false,
- description: 'Allows grantee to read the object data and its metadata.',
+ description: 'Allows grantee to read the object data and its metadata',
},
{
displayName: 'Grant Read ACP',
name: 'grantReadAcp',
type: 'boolean',
default: false,
- description: 'Allows grantee to read the object ACL.',
+ description: 'Allows grantee to read the object ACL',
},
{
displayName: 'Grant Write ACP',
name: 'grantWriteAcp',
type: 'boolean',
default: false,
- description: 'Allows grantee to write the ACL for the applicable object.',
+ description: 'Allows grantee to write the ACL for the applicable object',
},
{
displayName: 'Lock Legal Hold',
@@ -193,14 +193,14 @@ export const fileFields: INodeProperties[] = [
},
],
default: '',
- description: 'The Object Lock mode that you want to apply to this object.',
+ description: 'The Object Lock mode that you want to apply to this object',
},
{
displayName: 'Lock Retain Until Date',
name: 'lockRetainUntilDate',
type: 'dateTime',
default: '',
- description: `The date and time when you want this object's Object Lock to expire.`,
+ description: 'The date and time when you want this object\'s Object Lock to expire',
},
{
displayName: 'Metadata Directive',
@@ -217,7 +217,7 @@ export const fileFields: INodeProperties[] = [
},
],
default: '',
- description: 'Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request.',
+ description: 'Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request',
},
{
displayName: 'Requester Pays',
@@ -262,7 +262,7 @@ export const fileFields: INodeProperties[] = [
name: 'serversideEncryptionCustomerAlgorithm',
type: 'string',
default: '',
- description: 'Specifies the algorithm to use to when encrypting the object (for example, AES256).',
+ description: 'Specifies the algorithm to use to when encrypting the object (for example, AES256)',
},
{
displayName: 'Server Side Encryption Customer Key',
@@ -276,7 +276,7 @@ export const fileFields: INodeProperties[] = [
name: 'serversideEncryptionCustomerKeyMD5',
type: 'string',
default: '',
- description: 'Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321.',
+ description: 'Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321',
},
{
displayName: 'Storage Class',
@@ -309,7 +309,7 @@ export const fileFields: INodeProperties[] = [
},
],
default: 'standard',
- description: 'Amazon S3 storage classes.',
+ description: 'Amazon S3 storage classes',
},
{
displayName: 'Tagging Directive',
@@ -326,7 +326,7 @@ export const fileFields: INodeProperties[] = [
},
],
default: '',
- description: 'Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request.',
+ description: 'Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request',
},
],
},
@@ -389,7 +389,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'If not set the binary data filename will be used.',
+ description: 'If not set the binary data filename will be used',
},
{
displayName: 'Binary Data',
@@ -406,7 +406,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'If the data to upload should be taken from binary field.',
+ description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'File Content',
@@ -427,7 +427,7 @@ export const fileFields: INodeProperties[] = [
},
},
placeholder: '',
- description: 'The text content of the file to upload.',
+ description: 'The text content of the file to upload',
},
{
displayName: 'Binary Property',
@@ -450,7 +450,7 @@ export const fileFields: INodeProperties[] = [
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
{
displayName: 'Additional Fields',
@@ -504,35 +504,35 @@ export const fileFields: INodeProperties[] = [
},
],
default: 'private',
- description: 'The canned ACL to apply to the object.',
+ description: 'The canned ACL to apply to the object',
},
{
displayName: 'Grant Full Control',
name: 'grantFullControl',
type: 'boolean',
default: false,
- description: 'Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.',
+ description: 'Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object',
},
{
displayName: 'Grant Read',
name: 'grantRead',
type: 'boolean',
default: false,
- description: 'Allows grantee to read the object data and its metadata.',
+ description: 'Allows grantee to read the object data and its metadata',
},
{
displayName: 'Grant Read ACP',
name: 'grantReadAcp',
type: 'boolean',
default: false,
- description: 'Allows grantee to read the object ACL.',
+ description: 'Allows grantee to read the object ACL',
},
{
displayName: 'Grant Write ACP',
name: 'grantWriteAcp',
type: 'boolean',
default: false,
- description: 'Allows grantee to write the ACL for the applicable object.',
+ description: 'Allows grantee to write the ACL for the applicable object',
},
{
displayName: 'Lock Legal Hold',
@@ -556,14 +556,14 @@ export const fileFields: INodeProperties[] = [
},
],
default: '',
- description: 'The Object Lock mode that you want to apply to this object.',
+ description: 'The Object Lock mode that you want to apply to this object',
},
{
displayName: 'Lock Retain Until Date',
name: 'lockRetainUntilDate',
type: 'dateTime',
default: '',
- description: `The date and time when you want this object's Object Lock to expire.`,
+ description: 'The date and time when you want this object\'s Object Lock to expire',
},
{
displayName: 'Parent Folder Key',
@@ -615,7 +615,7 @@ export const fileFields: INodeProperties[] = [
name: 'serversideEncryptionCustomerAlgorithm',
type: 'string',
default: '',
- description: 'Specifies the algorithm to use to when encrypting the object (for example, AES256).',
+ description: 'Specifies the algorithm to use to when encrypting the object (for example, AES256)',
},
{
displayName: 'Server Side Encryption Customer Key',
@@ -629,7 +629,7 @@ export const fileFields: INodeProperties[] = [
name: 'serversideEncryptionCustomerKeyMD5',
type: 'string',
default: '',
- description: 'Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321.',
+ description: 'Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321',
},
{
displayName: 'Storage Class',
@@ -662,7 +662,7 @@ export const fileFields: INodeProperties[] = [
},
],
default: 'standard',
- description: 'Amazon S3 storage classes.',
+ description: 'Amazon S3 storage classes',
},
],
},
@@ -705,7 +705,7 @@ export const fileFields: INodeProperties[] = [
],
},
],
- description: 'Optional extra headers to add to the message (most headers are allowed).',
+ description: 'Optional extra headers to add to the message (most headers are allowed)',
},
/* -------------------------------------------------------------------------- */
/* file:download */
@@ -760,7 +760,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
/* -------------------------------------------------------------------------- */
/* file:delete */
@@ -859,7 +859,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -883,7 +883,7 @@ export const fileFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -907,7 +907,7 @@ export const fileFields: INodeProperties[] = [
name: 'fetchOwner',
type: 'boolean',
default: false,
- description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true.',
+ description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true',
},
{
displayName: 'Folder Key',
diff --git a/packages/nodes-base/nodes/Aws/S3/FolderDescription.ts b/packages/nodes-base/nodes/Aws/S3/FolderDescription.ts
index 45124365c5..1ad6b31771 100644
--- a/packages/nodes-base/nodes/Aws/S3/FolderDescription.ts
+++ b/packages/nodes-base/nodes/Aws/S3/FolderDescription.ts
@@ -141,7 +141,7 @@ export const folderFields: INodeProperties[] = [
},
],
default: 'standard',
- description: 'Amazon S3 storage classes.',
+ description: 'Amazon S3 storage classes',
},
],
},
@@ -217,7 +217,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -241,7 +241,7 @@ export const folderFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -265,7 +265,7 @@ export const folderFields: INodeProperties[] = [
name: 'fetchOwner',
type: 'boolean',
default: false,
- description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true.',
+ description: 'The owner field is not present in listV2 by default, if you want to return owner field with each key in the result then set the fetch owner field to true',
},
{
displayName: 'Folder Key',
diff --git a/packages/nodes-base/nodes/Aws/SES/AwsSes.node.ts b/packages/nodes-base/nodes/Aws/SES/AwsSes.node.ts
index d917c96955..621cb062d5 100644
--- a/packages/nodes-base/nodes/Aws/SES/AwsSes.node.ts
+++ b/packages/nodes-base/nodes/Aws/SES/AwsSes.node.ts
@@ -105,7 +105,7 @@ export class AwsSes implements INodeType {
{
name: 'Update',
value: 'update',
- description: 'Update an existing custom verification email template.',
+ description: 'Update an existing custom verification email template',
},
],
default: 'create',
@@ -127,7 +127,7 @@ export class AwsSes implements INodeType {
},
},
required: true,
- description: 'The email address that the custom verification email is sent from.',
+ description: 'The email address that the custom verification email is sent from',
default: '',
},
{
@@ -145,7 +145,7 @@ export class AwsSes implements INodeType {
},
},
default: '',
- description: 'The name of the custom verification email template.',
+ description: 'The name of the custom verification email template',
},
{
displayName: 'Template Content',
@@ -183,7 +183,7 @@ export class AwsSes implements INodeType {
},
default: '',
required: true,
- description: 'The subject line of the custom verification email.',
+ description: 'The subject line of the custom verification email',
},
{
displayName: 'Success Redirection URL',
@@ -200,7 +200,7 @@ export class AwsSes implements INodeType {
},
},
required: true,
- description: 'The URL that the recipient of the verification email is sent to if his or her address is successfully verified.',
+ description: 'The URL that the recipient of the verification email is sent to if his or her address is successfully verified',
default: '',
},
{
@@ -218,7 +218,7 @@ export class AwsSes implements INodeType {
},
},
required: true,
- description: 'The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.',
+ description: 'The URL that the recipient of the verification email is sent to if his or her address is not successfully verified',
default: '',
},
@@ -238,7 +238,7 @@ export class AwsSes implements INodeType {
},
default: '',
required: true,
- description: 'The email address to verify.',
+ description: 'The email address to verify',
},
{
displayName: 'Template Name',
@@ -256,7 +256,7 @@ export class AwsSes implements INodeType {
},
default: '',
required: true,
- description: 'The name of the custom verification email template to use when sending the verification email.',
+ description: 'The name of the custom verification email template to use when sending the verification email',
},
{
displayName: 'Additional Fields',
@@ -279,7 +279,7 @@ export class AwsSes implements INodeType {
displayName: 'Configuration Set Name',
name: 'configurationSetName',
type: 'string',
- description: 'Name of a configuration set to use when sending the verification email.',
+ description: 'Name of a configuration set to use when sending the verification email',
default: '',
},
],
@@ -302,7 +302,7 @@ export class AwsSes implements INodeType {
},
},
default: '',
- description: 'The name of the custom verification email template.',
+ description: 'The name of the custom verification email template',
},
{
displayName: 'Update Fields',
@@ -325,21 +325,21 @@ export class AwsSes implements INodeType {
displayName: 'Failure Redirection URL',
name: 'failureRedirectionURL',
type: 'string',
- description: 'The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.',
+ description: 'The URL that the recipient of the verification email is sent to if his or her address is not successfully verified',
default: '',
},
{
displayName: 'From Email',
name: 'fromEmailAddress',
type: 'string',
- description: 'The email address that the custom verification email is sent from.',
+ description: 'The email address that the custom verification email is sent from',
default: '',
},
{
displayName: 'Success Redirection URL',
name: 'successRedirectionURL',
type: 'string',
- description: 'The URL that the recipient of the verification email is sent to if his or her address is successfully verified.',
+ description: 'The URL that the recipient of the verification email is sent to if his or her address is successfully verified',
default: '',
},
{
@@ -357,7 +357,7 @@ export class AwsSes implements INodeType {
name: 'templateSubject',
type: 'string',
default: '',
- description: 'The subject line of the custom verification email.',
+ description: 'The subject line of the custom verification email',
},
],
},
@@ -376,7 +376,7 @@ export class AwsSes implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -436,7 +436,7 @@ export class AwsSes implements INodeType {
},
},
default: false,
- description: 'If body is HTML or simple text.',
+ description: 'If body is HTML or simple text',
},
{
displayName: 'Subject',
@@ -473,7 +473,7 @@ export class AwsSes implements INodeType {
},
},
default: '',
- description: 'The message to be sent.',
+ description: 'The message to be sent',
required: true,
},
{
@@ -491,7 +491,7 @@ export class AwsSes implements INodeType {
},
},
required: true,
- description: 'Email address of the sender.',
+ description: 'Email address of the sender',
placeholder: 'admin@example.com',
default: '',
},
@@ -499,7 +499,7 @@ export class AwsSes implements INodeType {
displayName: 'To Addresses',
name: 'toAddresses',
type: 'string',
- description: 'Email addresses of the recipients.',
+ description: 'Email addresses of the recipients',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add To Email',
@@ -552,7 +552,7 @@ export class AwsSes implements INodeType {
},
},
required: true,
- description: 'Email address of the sender.',
+ description: 'Email address of the sender',
placeholder: 'admin@example.com',
default: '',
},
@@ -560,7 +560,7 @@ export class AwsSes implements INodeType {
displayName: 'To Addresses',
name: 'toAddresses',
type: 'string',
- description: 'Email addresses of the recipients.',
+ description: 'Email addresses of the recipients',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add To Email',
@@ -644,7 +644,7 @@ export class AwsSes implements INodeType {
multipleValues: true,
multipleValueButtonText: 'Add Bcc Email',
},
- description: 'Bcc Recipients of the email.',
+ description: 'Bcc Recipients of the email',
default: [],
},
{
@@ -655,14 +655,14 @@ export class AwsSes implements INodeType {
multipleValues: true,
multipleValueButtonText: 'Add Cc Email',
},
- description: 'Cc recipients of the email.',
+ description: 'Cc recipients of the email',
default: [],
},
{
displayName: 'Configuration Set Name',
name: 'configurationSetName',
type: 'string',
- description: 'Name of the configuration set to use when you send an email using send.',
+ description: 'Name of the configuration set to use when you send an email using send',
default: '',
},
{
@@ -674,7 +674,7 @@ export class AwsSes implements INodeType {
multipleValueButtonText: 'Add Reply To Email',
},
placeholder: 'Add Reply Address',
- description: 'Reply-to email address(es) for the message.',
+ description: 'Reply-to email address(es) for the message',
default: [],
},
{
@@ -695,7 +695,7 @@ export class AwsSes implements INodeType {
displayName: 'Source ARN',
name: 'sourceArn',
type: 'string',
- description: 'This parameter is used only for sending authorization.',
+ description: 'This parameter is used only for sending authorization',
default: '',
},
],
@@ -759,7 +759,7 @@ export class AwsSes implements INodeType {
},
},
required: true,
- description: 'The name of the template.',
+ description: 'The name of the template',
default: '',
},
{
@@ -776,7 +776,7 @@ export class AwsSes implements INodeType {
],
},
},
- description: 'The subject line of the email.',
+ description: 'The subject line of the email',
default: '',
},
{
@@ -793,7 +793,7 @@ export class AwsSes implements INodeType {
],
},
},
- description: 'The HTML body of the email.',
+ description: 'The HTML body of the email',
default: '',
},
{
@@ -817,7 +817,7 @@ export class AwsSes implements INodeType {
displayName: 'Text Part',
name: 'textPart',
type: 'string',
- description: 'The email body that will be visible to recipients whose email clients do not display HTML.',
+ description: 'The email body that will be visible to recipients whose email clients do not display HTML',
default: '',
},
],
@@ -843,21 +843,21 @@ export class AwsSes implements INodeType {
displayName: 'Text Part',
name: 'textPart',
type: 'string',
- description: 'The email body that will be visible to recipients whose email clients do not display HTML.',
+ description: 'The email body that will be visible to recipients whose email clients do not display HTML',
default: '',
},
{
displayName: 'Subject Part',
name: 'subjectPart',
type: 'string',
- description: 'The subject line of the email.',
+ description: 'The subject line of the email',
default: '',
},
{
displayName: 'Html Part',
name: 'htmlPart',
type: 'string',
- description: 'The HTML body of the email.',
+ description: 'The HTML body of the email',
default: '',
},
],
@@ -877,7 +877,7 @@ export class AwsSes implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
diff --git a/packages/nodes-base/nodes/Aws/SQS/AwsSqs.node.ts b/packages/nodes-base/nodes/Aws/SQS/AwsSqs.node.ts
index a43c13e5f3..16c87b767a 100644
--- a/packages/nodes-base/nodes/Aws/SQS/AwsSqs.node.ts
+++ b/packages/nodes-base/nodes/Aws/SQS/AwsSqs.node.ts
@@ -55,7 +55,7 @@ export class AwsSqs implements INodeType {
{
name: 'Send message',
value: 'sendMessage',
- description: 'Send a message to a queue.',
+ description: 'Send a message to a queue',
},
],
default: 'sendMessage',
@@ -78,7 +78,7 @@ export class AwsSqs implements INodeType {
options: [],
default: '',
required: true,
- description: 'Queue to send a message to.',
+ description: 'Queue to send a message to',
},
{
displayName: 'Queue Type',
@@ -88,12 +88,12 @@ export class AwsSqs implements INodeType {
{
name: 'FIFO',
value: 'fifo',
- description: 'FIFO SQS queue.',
+ description: 'FIFO SQS queue',
},
{
name: 'Standard',
value: 'standard',
- description: 'Standard SQS queue.',
+ description: 'Standard SQS queue',
},
],
default: 'standard',
@@ -104,7 +104,7 @@ export class AwsSqs implements INodeType {
name: 'sendInputData',
type: 'boolean',
default: true,
- description: 'Send the data the node receives as JSON to SQS.',
+ description: 'Send the data the node receives as JSON to SQS',
},
{
displayName: 'Message',
@@ -125,7 +125,7 @@ export class AwsSqs implements INodeType {
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Message to send to the queue.',
+ description: 'Message to send to the queue',
},
{
displayName: 'Message Group ID',
@@ -167,7 +167,7 @@ export class AwsSqs implements INodeType {
],
},
},
- description: 'How long, in seconds, to delay a message for.',
+ description: 'How long, in seconds, to delay a message for',
default: 0,
typeOptions: {
minValue: 0,
@@ -182,7 +182,7 @@ export class AwsSqs implements INodeType {
typeOptions: {
multipleValues: true,
},
- description: 'Attributes to set.',
+ description: 'Attributes to set',
default: {},
options: [
{
@@ -194,14 +194,14 @@ export class AwsSqs implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the attribute.',
+ description: 'Name of the attribute',
},
{
displayName: 'Property Name',
name: 'dataPropertyName',
type: 'string',
default: 'data',
- description: 'Name of the binary property which contains the data for the message attribute.',
+ description: 'Name of the binary property which contains the data for the message attribute',
},
],
},
@@ -214,14 +214,14 @@ export class AwsSqs implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the attribute.',
+ description: 'Name of the attribute',
},
{
displayName: 'Value',
name: 'value',
type: 'number',
default: 0,
- description: 'Number value of the attribute.',
+ description: 'Number value of the attribute',
},
],
},
@@ -234,14 +234,14 @@ export class AwsSqs implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the attribute.',
+ description: 'Name of the attribute',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'String value of attribute.',
+ description: 'String value of attribute',
},
],
},
diff --git a/packages/nodes-base/nodes/Aws/Textract/AwsTextract.node.ts b/packages/nodes-base/nodes/Aws/Textract/AwsTextract.node.ts
index 8db656e93d..125961f383 100644
--- a/packages/nodes-base/nodes/Aws/Textract/AwsTextract.node.ts
+++ b/packages/nodes-base/nodes/Aws/Textract/AwsTextract.node.ts
@@ -83,7 +83,7 @@ export class AwsTextract implements INodeType {
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
],
};
diff --git a/packages/nodes-base/nodes/Aws/Transcribe/AwsTranscribe.node.ts b/packages/nodes-base/nodes/Aws/Transcribe/AwsTranscribe.node.ts
index 568fcdb504..e790c993c1 100644
--- a/packages/nodes-base/nodes/Aws/Transcribe/AwsTranscribe.node.ts
+++ b/packages/nodes-base/nodes/Aws/Transcribe/AwsTranscribe.node.ts
@@ -94,7 +94,7 @@ export class AwsTranscribe implements INodeType {
],
},
},
- description: 'The name of the job.',
+ description: 'The name of the job',
},
{
displayName: 'Media File URI',
@@ -128,7 +128,7 @@ export class AwsTranscribe implements INodeType {
},
},
default: false,
- description: 'Set this field to true to enable automatic language identification.',
+ description: 'Set this field to true to enable automatic language identification',
},
{
displayName: 'Language',
@@ -178,7 +178,7 @@ export class AwsTranscribe implements INodeType {
},
},
default: 'en-US',
- description: 'Language used in the input media file.',
+ description: 'Language used in the input media file',
},
// ----------------------------------
// Transcription Job Settings
@@ -213,7 +213,7 @@ export class AwsTranscribe implements INodeType {
minValue: 2,
maxValue: 10,
},
- description: 'The number of alternative transcriptions that the service should return.',
+ description: 'The number of alternative transcriptions that the service should return',
},
{
displayName: 'Max Speaker Labels',
@@ -231,7 +231,7 @@ export class AwsTranscribe implements INodeType {
name: 'vocabularyName',
type: 'string',
default: '',
- description: 'Name of vocabulary to use when processing the transcription job.',
+ description: 'Name of vocabulary to use when processing the transcription job',
},
{
displayName: 'Vocabulary Filter Name',
@@ -299,7 +299,7 @@ export class AwsTranscribe implements INodeType {
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Return All',
@@ -316,7 +316,7 @@ export class AwsTranscribe implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -362,7 +362,7 @@ export class AwsTranscribe implements INodeType {
displayName: 'Job Name Contains',
name: 'jobNameContains',
type: 'string',
- description: 'Return only transcription jobs whose name contains the specified string.',
+ description: 'Return only transcription jobs whose name contains the specified string',
default: '',
},
{
@@ -387,7 +387,7 @@ export class AwsTranscribe implements INodeType {
value: 'QUEUED',
},
],
- description: 'Return only transcription jobs with the specified status.',
+ description: 'Return only transcription jobs with the specified status',
default: 'COMPLETED',
},
],
diff --git a/packages/nodes-base/nodes/Bannerbear/ImageDescription.ts b/packages/nodes-base/nodes/Bannerbear/ImageDescription.ts
index d68713b0cb..e192f629c0 100644
--- a/packages/nodes-base/nodes/Bannerbear/ImageDescription.ts
+++ b/packages/nodes-base/nodes/Bannerbear/ImageDescription.ts
@@ -104,7 +104,7 @@ export const imageFields: INodeProperties[] = [
},
},
default: 3,
- description: `How often it should check if the image is available before it fails.`,
+ description: 'How often it should check if the image is available before it fails',
},
{
displayName: 'Webhook URL',
@@ -203,6 +203,6 @@ export const imageFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the image.',
+ description: 'Unique identifier for the image',
},
];
diff --git a/packages/nodes-base/nodes/Bannerbear/TemplateDescription.ts b/packages/nodes-base/nodes/Bannerbear/TemplateDescription.ts
index b3d052d0ae..5673eccbef 100644
--- a/packages/nodes-base/nodes/Bannerbear/TemplateDescription.ts
+++ b/packages/nodes-base/nodes/Bannerbear/TemplateDescription.ts
@@ -52,6 +52,6 @@ export const templateFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the template.',
+ description: 'Unique identifier for the template',
},
];
diff --git a/packages/nodes-base/nodes/Beeminder/Beeminder.node.ts b/packages/nodes-base/nodes/Beeminder/Beeminder.node.ts
index 667b163e54..9ddc574111 100644
--- a/packages/nodes-base/nodes/Beeminder/Beeminder.node.ts
+++ b/packages/nodes-base/nodes/Beeminder/Beeminder.node.ts
@@ -69,22 +69,22 @@ export class Beeminder implements INodeType {
{
name: 'Create',
value: 'create',
- description: 'Create datapoint for goal.',
+ description: 'Create datapoint for goal',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete a datapoint.',
+ description: 'Delete a datapoint',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all datapoints for a goal.',
+ description: 'Get all datapoints for a goal',
},
{
name: 'Update',
value: 'update',
- description: 'Update a datapoint.',
+ description: 'Update a datapoint',
},
],
default: 'create',
@@ -106,7 +106,7 @@ export class Beeminder implements INodeType {
},
},
default: '',
- description: 'The name of the goal.',
+ description: 'The name of the goal',
required: true,
},
{
@@ -124,7 +124,7 @@ export class Beeminder implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -148,7 +148,7 @@ export class Beeminder implements INodeType {
maxValue: 300,
},
default: 30,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Value',
@@ -156,7 +156,7 @@ export class Beeminder implements INodeType {
type: 'number',
default: 1,
placeholder: '',
- description: 'Datapoint value to send.',
+ description: 'Datapoint value to send',
displayOptions: {
show: {
resource: [
@@ -215,7 +215,7 @@ export class Beeminder implements INodeType {
type: 'dateTime',
default: '',
placeholder: '',
- description: 'Defaults to "now" if none is passed in, or the existing timestamp if the datapoint is being updated rather than created.',
+ description: 'Defaults to "now" if none is passed in, or the existing timestamp if the datapoint is being updated rather than created',
},
{
displayName: 'Request ID',
@@ -223,7 +223,7 @@ export class Beeminder implements INodeType {
type: 'string',
default: '',
placeholder: '',
- description: 'String to uniquely identify a datapoint.',
+ description: 'String to uniquely identify a datapoint',
},
],
},
@@ -250,7 +250,7 @@ export class Beeminder implements INodeType {
type: 'string',
default: 'id',
placeholder: '',
- description: 'Attribute to sort on.',
+ description: 'Attribute to sort on',
},
],
},
@@ -277,7 +277,7 @@ export class Beeminder implements INodeType {
type: 'number',
default: 1,
placeholder: '',
- description: 'Datapoint value to send.',
+ description: 'Datapoint value to send',
},
{
displayName: 'Comment',
@@ -292,7 +292,7 @@ export class Beeminder implements INodeType {
type: 'dateTime',
default: '',
placeholder: '',
- description: 'Defaults to "now" if none is passed in, or the existing timestamp if the datapoint is being updated rather than created.',
+ description: 'Defaults to "now" if none is passed in, or the existing timestamp if the datapoint is being updated rather than created',
},
],
},
diff --git a/packages/nodes-base/nodes/Bitbucket/BitbucketTrigger.node.ts b/packages/nodes-base/nodes/Bitbucket/BitbucketTrigger.node.ts
index 603f6d7869..b0713840cc 100644
--- a/packages/nodes-base/nodes/Bitbucket/BitbucketTrigger.node.ts
+++ b/packages/nodes-base/nodes/Bitbucket/BitbucketTrigger.node.ts
@@ -86,7 +86,7 @@ export class BitbucketTrigger implements INodeType {
},
required: true,
default: '',
- description: 'The repository of which to listen to the events.',
+ description: 'The repository of which to listen to the events',
},
{
displayName: 'Events',
@@ -105,7 +105,7 @@ export class BitbucketTrigger implements INodeType {
options: [],
required: true,
default: [],
- description: 'The events to listen to.',
+ description: 'The events to listen to',
},
{
displayName: 'Repository',
@@ -126,7 +126,7 @@ export class BitbucketTrigger implements INodeType {
},
required: true,
default: '',
- description: 'The repository of which to listen to the events.',
+ description: 'The repository of which to listen to the events',
},
{
displayName: 'Events',
@@ -145,7 +145,7 @@ export class BitbucketTrigger implements INodeType {
options: [],
required: true,
default: [],
- description: 'The events to listen to.',
+ description: 'The events to listen to',
},
],
diff --git a/packages/nodes-base/nodes/Bitwarden/descriptions/CollectionDescription.ts b/packages/nodes-base/nodes/Bitwarden/descriptions/CollectionDescription.ts
index 0a244df64e..c00cf7af84 100644
--- a/packages/nodes-base/nodes/Bitwarden/descriptions/CollectionDescription.ts
+++ b/packages/nodes-base/nodes/Bitwarden/descriptions/CollectionDescription.ts
@@ -46,7 +46,7 @@ export const collectionFields: INodeProperties[] = [
name: 'collectionId',
type: 'string',
required: true,
- description: 'The identifier of the collection.',
+ description: 'The identifier of the collection',
default: '',
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
displayOptions: {
@@ -71,7 +71,7 @@ export const collectionFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all available results for the query.',
+ description: 'Return all available results for the query',
displayOptions: {
show: {
resource: [
@@ -88,7 +88,7 @@ export const collectionFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'Number of results to return for the query.',
+ description: 'Number of results to return for the query',
displayOptions: {
show: {
resource: [
@@ -119,7 +119,7 @@ export const collectionFields: INodeProperties[] = [
displayName: 'Group',
name: 'groups',
type: 'multiOptions',
- description: 'The group to assign this collection to.',
+ description: 'The group to assign this collection to',
default: [],
typeOptions: {
loadOptionsMethod: 'getGroups',
@@ -129,7 +129,7 @@ export const collectionFields: INodeProperties[] = [
displayName: 'External ID',
name: 'externalId',
type: 'string',
- description: 'The external identifier to set to this collection.',
+ description: 'The external identifier to set to this collection',
default: '',
},
],
diff --git a/packages/nodes-base/nodes/Bitwarden/descriptions/EventDescription.ts b/packages/nodes-base/nodes/Bitwarden/descriptions/EventDescription.ts
index 9d2e780e42..2c1ea1511b 100644
--- a/packages/nodes-base/nodes/Bitwarden/descriptions/EventDescription.ts
+++ b/packages/nodes-base/nodes/Bitwarden/descriptions/EventDescription.ts
@@ -35,7 +35,7 @@ export const eventFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all available results for the query.',
+ description: 'Return all available results for the query',
displayOptions: {
show: {
resource: [
@@ -52,7 +52,7 @@ export const eventFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'Number of results to return for the query.',
+ description: 'Number of results to return for the query',
displayOptions: {
show: {
resource: [
@@ -79,7 +79,7 @@ export const eventFields: INodeProperties[] = [
name: 'actingUserId',
type: 'string',
default: '',
- description: 'The unique identifier of the acting user.',
+ description: 'The unique identifier of the acting user',
placeholder: '4a59c8c7-e05a-4d17-8e85-acc301343926',
},
{
@@ -87,14 +87,14 @@ export const eventFields: INodeProperties[] = [
name: 'end',
type: 'dateTime',
default: '',
- description: 'The end date for the search.',
+ description: 'The end date for the search',
},
{
displayName: 'Item ID',
name: 'itemID',
type: 'string',
default: '',
- description: 'The unique identifier of the item that the event describes.',
+ description: 'The unique identifier of the item that the event describes',
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
},
{
@@ -102,7 +102,7 @@ export const eventFields: INodeProperties[] = [
name: 'start',
type: 'dateTime',
default: '',
- description: 'The start date for the search.',
+ description: 'The start date for the search',
},
],
displayOptions: {
diff --git a/packages/nodes-base/nodes/Bitwarden/descriptions/GroupDescription.ts b/packages/nodes-base/nodes/Bitwarden/descriptions/GroupDescription.ts
index 162389ff0f..017e446475 100644
--- a/packages/nodes-base/nodes/Bitwarden/descriptions/GroupDescription.ts
+++ b/packages/nodes-base/nodes/Bitwarden/descriptions/GroupDescription.ts
@@ -58,7 +58,7 @@ export const groupFields: INodeProperties[] = [
name: 'groupId',
type: 'string',
required: true,
- description: 'The identifier of the group.',
+ description: 'The identifier of the group',
default: '',
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
displayOptions: {
@@ -85,7 +85,7 @@ export const groupFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all available results for the query.',
+ description: 'Return all available results for the query',
displayOptions: {
show: {
resource: [
@@ -102,7 +102,7 @@ export const groupFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'Number of results to return for the query.',
+ description: 'Number of results to return for the query',
displayOptions: {
show: {
resource: [
@@ -127,7 +127,7 @@ export const groupFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'The name of the group to create.',
+ description: 'The name of the group to create',
displayOptions: {
show: {
resource: [
@@ -167,7 +167,7 @@ export const groupFields: INodeProperties[] = [
displayName: 'Collections',
name: 'collections',
type: 'multiOptions',
- description: 'The collections to assign to this group.',
+ description: 'The collections to assign to this group',
default: [],
typeOptions: {
loadOptionsMethod: 'getCollections',
@@ -177,7 +177,7 @@ export const groupFields: INodeProperties[] = [
displayName: 'External ID',
name: 'externalId',
type: 'string',
- description: 'The external identifier to set to this group.',
+ description: 'The external identifier to set to this group',
default: '',
},
],
@@ -214,7 +214,7 @@ export const groupFields: INodeProperties[] = [
displayName: 'Collections',
name: 'collections',
type: 'multiOptions',
- description: 'The collections to assign to this group.',
+ description: 'The collections to assign to this group',
default: [],
typeOptions: {
loadOptionsMethod: 'getCollections',
@@ -224,7 +224,7 @@ export const groupFields: INodeProperties[] = [
displayName: 'External ID',
name: 'externalId',
type: 'string',
- description: 'The external identifier to set to this group.',
+ description: 'The external identifier to set to this group',
default: '',
},
{
@@ -232,7 +232,7 @@ export const groupFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'The name of the group to update.',
+ description: 'The name of the group to update',
},
],
displayOptions: {
@@ -255,7 +255,7 @@ export const groupFields: INodeProperties[] = [
name: 'memberIds',
type: 'string',
default: '',
- description: 'Comma-separated list of IDs of members to set in a group.',
+ description: 'Comma-separated list of IDs of members to set in a group',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/Bitwarden/descriptions/MemberDescription.ts b/packages/nodes-base/nodes/Bitwarden/descriptions/MemberDescription.ts
index b3013207fe..b31bc19449 100644
--- a/packages/nodes-base/nodes/Bitwarden/descriptions/MemberDescription.ts
+++ b/packages/nodes-base/nodes/Bitwarden/descriptions/MemberDescription.ts
@@ -58,7 +58,7 @@ export const memberFields: INodeProperties[] = [
name: 'memberId',
type: 'string',
required: true,
- description: 'The identifier of the member.',
+ description: 'The identifier of the member',
default: '',
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
displayOptions: {
@@ -119,7 +119,7 @@ export const memberFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all available results for the query.',
+ description: 'Return all available results for the query',
displayOptions: {
show: {
resource: [
@@ -136,7 +136,7 @@ export const memberFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'Number of results to return for the query.',
+ description: 'Number of results to return for the query',
displayOptions: {
show: {
resource: [
@@ -159,7 +159,7 @@ export const memberFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'The email of the member to update.',
+ description: 'The email of the member to update',
displayOptions: {
show: {
resource: [
@@ -198,7 +198,7 @@ export const memberFields: INodeProperties[] = [
displayName: 'Collections',
name: 'collections',
type: 'multiOptions',
- description: 'The collections to assign to this member.',
+ description: 'The collections to assign to this member',
default: [],
typeOptions: {
loadOptionsMethod: 'getCollections',
@@ -208,7 +208,7 @@ export const memberFields: INodeProperties[] = [
displayName: 'External ID',
name: 'externalId',
type: 'string',
- description: 'The external identifier to set to this member.',
+ description: 'The external identifier to set to this member',
default: '',
},
],
@@ -261,7 +261,7 @@ export const memberFields: INodeProperties[] = [
displayName: 'Collections',
name: 'collections',
type: 'multiOptions',
- description: 'The collections to assign to this member.',
+ description: 'The collections to assign to this member',
default: [],
typeOptions: {
loadOptionsMethod: 'getCollections',
@@ -271,7 +271,7 @@ export const memberFields: INodeProperties[] = [
displayName: 'External ID',
name: 'externalId',
type: 'string',
- description: 'The external identifier to set to this member.',
+ description: 'The external identifier to set to this member',
default: '',
},
{
@@ -300,7 +300,7 @@ export const memberFields: INodeProperties[] = [
name: 'groupIds',
type: 'string',
default: '',
- description: 'Comma-separated list of IDs of groups to set for a member.',
+ description: 'Comma-separated list of IDs of groups to set for a member',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/Box/BoxTrigger.node.ts b/packages/nodes-base/nodes/Box/BoxTrigger.node.ts
index 34f4ab9650..85af9b9bc0 100644
--- a/packages/nodes-base/nodes/Box/BoxTrigger.node.ts
+++ b/packages/nodes-base/nodes/Box/BoxTrigger.node.ts
@@ -70,7 +70,7 @@ export class BoxTrigger implements INodeType {
{
name: 'Collaboration Updated',
value: 'COLLABORATION.UPDATED',
- description: 'A collaboration has been updated.',
+ description: 'A collaboration has been updated',
},
{
name: 'Comment Created',
@@ -120,7 +120,7 @@ export class BoxTrigger implements INodeType {
{
name: 'File Renamed',
value: 'FILE.RENAMED',
- description: 'A file was renamed.',
+ description: 'A file was renamed',
},
{
name: 'File Restored',
@@ -170,7 +170,7 @@ export class BoxTrigger implements INodeType {
{
name: 'Folder Renamed',
value: 'FOLDER.RENAMED',
- description: 'A folder was renamed.',
+ description: 'A folder was renamed',
},
{
name: 'Folder Restored',
@@ -230,7 +230,7 @@ export class BoxTrigger implements INodeType {
],
required: true,
default: [],
- description: 'The events to listen to.',
+ description: 'The events to listen to',
},
{
displayName: 'Target Type',
diff --git a/packages/nodes-base/nodes/Box/FileDescription.ts b/packages/nodes-base/nodes/Box/FileDescription.ts
index 01b90ee975..3148ac6a9e 100644
--- a/packages/nodes-base/nodes/Box/FileDescription.ts
+++ b/packages/nodes-base/nodes/Box/FileDescription.ts
@@ -125,14 +125,14 @@ export const fileFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'An optional new name for the copied file.',
+ description: 'An optional new name for the copied file',
},
{
displayName: 'Version',
name: 'version',
type: 'string',
default: '',
- description: 'An optional ID of the specific file version to copy.',
+ description: 'An optional ID of the specific file version to copy',
},
],
},
@@ -194,7 +194,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
/* -------------------------------------------------------------------------- */
@@ -279,7 +279,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -303,7 +303,7 @@ export const fileFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -389,7 +389,7 @@ export const fileFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'pdf,png,gif',
- description: 'Limits search results to a comma-separated list of file extensions.',
+ description: 'Limits search results to a comma-separated list of file extensions',
},
{
displayName: 'Folder IDs',
@@ -413,7 +413,7 @@ export const fileFields: INodeProperties[] = [
},
],
default: '',
- description: 'Limits search results to a user scope.',
+ description: 'Limits search results to a user scope',
},
{
displayName: 'Size Range',
@@ -438,7 +438,7 @@ export const fileFields: INodeProperties[] = [
},
],
default: 'relevance',
- description: 'returns the results ordered in descending order by date at which the item was last modified.',
+ description: 'returns the results ordered in descending order by date at which the item was last modified',
},
{
displayName: 'Trash Content',
@@ -455,7 +455,7 @@ export const fileFields: INodeProperties[] = [
},
],
default: 'non_trashed_only',
- description: 'Controls if search results include the trash.',
+ description: 'Controls if search results include the trash',
},
{
displayName: 'Update At Range',
@@ -515,7 +515,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the file to share.',
+ description: 'The ID of the file to share',
},
{
displayName: 'Accessible By',
@@ -542,7 +542,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
- description: 'The type of object the file will be shared with.',
+ description: 'The type of object the file will be shared with',
},
{
displayName: 'Use Email',
@@ -562,7 +562,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: true,
- description: 'Whether identify the user by email or ID.',
+ description: 'Whether identify the user by email or ID',
},
{
displayName: 'Email',
@@ -585,7 +585,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
- description: `The user's email address to share the file with.`,
+ description: 'The user\'s email address to share the file with',
},
{
displayName: 'User ID',
@@ -608,7 +608,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
- description: `The user's ID to share the file with.`,
+ description: 'The user\'s ID to share the file with',
},
{
displayName: 'Group ID',
@@ -628,7 +628,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
- description: `The group's ID to share the file with.`,
+ description: 'The group\'s ID to share the file with',
},
{
displayName: 'Role',
@@ -682,7 +682,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: 'editor',
- description: 'The level of access granted.',
+ description: 'The level of access granted',
},
{
displayName: 'Options',
@@ -727,7 +727,7 @@ export const fileFields: INodeProperties[] = [
name: 'notify',
type: 'boolean',
default: false,
- description: 'Whether if users should receive email notification for the action performed.',
+ description: 'Whether if users should receive email notification for the action performed',
},
],
},
@@ -751,7 +751,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
- description: 'The name the file should be saved as.',
+ description: 'The name the file should be saved as',
},
{
displayName: 'Binary Data',
@@ -769,7 +769,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'If the data to upload should be taken from binary field.',
+ description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'File Content',
@@ -791,7 +791,7 @@ export const fileFields: INodeProperties[] = [
},
},
- description: 'The text content of the file.',
+ description: 'The text content of the file',
},
{
displayName: 'Binary Property',
@@ -813,7 +813,7 @@ export const fileFields: INodeProperties[] = [
},
},
- description: 'Name of the binary property which contains the data for the file.',
+ description: 'Name of the binary property which contains the data for the file',
},
{
displayName: 'Parent ID',
diff --git a/packages/nodes-base/nodes/Box/FolderDescription.ts b/packages/nodes-base/nodes/Box/FolderDescription.ts
index eab8718197..add54d28ed 100644
--- a/packages/nodes-base/nodes/Box/FolderDescription.ts
+++ b/packages/nodes-base/nodes/Box/FolderDescription.ts
@@ -116,7 +116,7 @@ export const folderFields: INodeProperties[] = [
{
name: 'Collaborators',
value: 'collaborators',
- description: 'Only emails from registered email addresses for collaborators will be accepted.',
+ description: 'Only emails from registered email addresses for collaborators will be accepted',
},
{
name: 'Open',
@@ -193,7 +193,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: false,
- description: 'Delete a folder that is not empty by recursively deleting the folder and all of its content.',
+ description: 'Delete a folder that is not empty by recursively deleting the folder and all of its content',
},
/* -------------------------------------------------------------------------- */
@@ -231,7 +231,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -255,7 +255,7 @@ export const folderFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -341,7 +341,7 @@ export const folderFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'pdf,png,gif',
- description: 'Limits search results to a comma-separated list of file extensions.',
+ description: 'Limits search results to a comma-separated list of file extensions',
},
{
displayName: 'Folder IDs',
@@ -365,7 +365,7 @@ export const folderFields: INodeProperties[] = [
},
],
default: '',
- description: 'Limits search results to a user scope.',
+ description: 'Limits search results to a user scope',
},
{
displayName: 'Size Range',
@@ -390,7 +390,7 @@ export const folderFields: INodeProperties[] = [
},
],
default: 'relevance',
- description: 'returns the results ordered in descending order by date at which the item was last modified.',
+ description: 'returns the results ordered in descending order by date at which the item was last modified',
},
{
displayName: 'Trash Content',
@@ -407,7 +407,7 @@ export const folderFields: INodeProperties[] = [
},
],
default: 'non_trashed_only',
- description: 'Controls if search results include the trash.',
+ description: 'Controls if search results include the trash',
},
{
displayName: 'Update At Range',
@@ -467,7 +467,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the folder to share.',
+ description: 'The ID of the folder to share',
},
{
displayName: 'Accessible By',
@@ -494,7 +494,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: 'user',
- description: 'The type of object the file will be shared with.',
+ description: 'The type of object the file will be shared with',
},
{
displayName: 'Use Email',
@@ -514,7 +514,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: true,
- description: 'Whether identify the user by email or ID.',
+ description: 'Whether identify the user by email or ID',
},
{
displayName: 'Email',
@@ -537,7 +537,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: '',
- description: `The user's email address to share the folder with.`,
+ description: 'The user\'s email address to share the folder with',
},
{
displayName: 'User ID',
@@ -560,7 +560,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: '',
- description: `The user's ID to share the folder with.`,
+ description: 'The user\'s ID to share the folder with',
},
{
displayName: 'Group ID',
@@ -580,7 +580,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: '',
- description: `The group's ID to share the folder with.`,
+ description: 'The group\'s ID to share the folder with',
},
{
displayName: 'Role',
@@ -634,7 +634,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: 'editor',
- description: 'The level of access granted.',
+ description: 'The level of access granted',
},
{
displayName: 'Options',
@@ -679,7 +679,7 @@ export const folderFields: INodeProperties[] = [
name: 'notify',
type: 'boolean',
default: false,
- description: 'Whether if users should receive email notification for the action performed.',
+ description: 'Whether if users should receive email notification for the action performed',
},
],
},
@@ -727,21 +727,21 @@ export const folderFields: INodeProperties[] = [
name: 'can_non_owners_invite',
type: 'boolean',
default: false,
- description: 'Specifies if users who are not the owner of the folder can invite new collaborators to the folder.',
+ description: 'Specifies if users who are not the owner of the folder can invite new collaborators to the folder',
},
{
displayName: 'Can Non-Owners View Colaborators',
name: 'can_non_owners_view_collaborators',
type: 'boolean',
default: false,
- description: 'Restricts collaborators who are not the owner of this folder from viewing other collaborations on this folder.',
+ description: 'Restricts collaborators who are not the owner of this folder from viewing other collaborations on this folder',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'The optional description of this folder.',
+ description: 'The optional description of this folder',
},
{
displayName: 'Fields',
@@ -762,7 +762,7 @@ export const folderFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'The optional new name for this folder.',
+ description: 'The optional new name for this folder',
},
{
displayName: 'Parent ID',
@@ -778,7 +778,7 @@ export const folderFields: INodeProperties[] = [
typeOptions: {
multipleValues: false,
},
- description: 'Share link information.',
+ description: 'Share link information',
placeholder: 'Add Shared Link Config',
default: {},
options: [
@@ -831,21 +831,21 @@ export const folderFields: INodeProperties[] = [
name: 'can_download',
type: 'boolean',
default: false,
- description: 'If the shared link allows for downloading of files.',
+ description: 'If the shared link allows for downloading of files',
},
{
displayName: 'Unshared At',
name: 'unshared_at',
type: 'dateTime',
default: '',
- description: 'The timestamp at which this shared link will expire.',
+ description: 'The timestamp at which this shared link will expire',
},
{
displayName: 'Vanity Name',
name: 'vanity_name',
type: 'string',
default: '',
- description: 'Defines a custom vanity name to use in the shared link URL, for example https://app.box.com/v/my-shared-link.',
+ description: 'Defines a custom vanity name to use in the shared link URL, for example https://app.box.com/v/my-shared-link',
},
],
},
diff --git a/packages/nodes-base/nodes/Brandfetch/Brandfetch.node.ts b/packages/nodes-base/nodes/Brandfetch/Brandfetch.node.ts
index f83b51a4f3..38ef93f44e 100644
--- a/packages/nodes-base/nodes/Brandfetch/Brandfetch.node.ts
+++ b/packages/nodes-base/nodes/Brandfetch/Brandfetch.node.ts
@@ -78,7 +78,7 @@ export class Brandfetch implements INodeType {
name: 'domain',
type: 'string',
default: '',
- description: 'The domain name of the company.',
+ description: 'The domain name of the company',
required: true,
},
{
@@ -94,7 +94,7 @@ export class Brandfetch implements INodeType {
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
{
displayName: 'Image Type',
@@ -153,7 +153,7 @@ export class Brandfetch implements INodeType {
default: [
'png',
],
- description: 'The image format in which the logo should be returned as.',
+ description: 'The image format in which the logo should be returned as',
required: true,
},
],
diff --git a/packages/nodes-base/nodes/Bubble/ObjectDescription.ts b/packages/nodes-base/nodes/Bubble/ObjectDescription.ts
index 7b8ac2f24e..806b80ccb4 100644
--- a/packages/nodes-base/nodes/Bubble/ObjectDescription.ts
+++ b/packages/nodes-base/nodes/Bubble/ObjectDescription.ts
@@ -50,7 +50,7 @@ export const objectFields: INodeProperties[] = [
name: 'typeName',
type: 'string',
required: true,
- description: 'Name of data type of the object to create.',
+ description: 'Name of data type of the object to create',
default: '',
displayOptions: {
show: {
@@ -92,14 +92,14 @@ export const objectFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Field to set for the object to create.',
+ description: 'Field to set for the object to create',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the object to create.',
+ description: 'Value to set for the object to create',
},
],
},
@@ -114,7 +114,7 @@ export const objectFields: INodeProperties[] = [
name: 'typeName',
type: 'string',
required: true,
- description: 'Name of data type of the object to retrieve.',
+ description: 'Name of data type of the object to retrieve',
default: '',
displayOptions: {
show: {
@@ -133,7 +133,7 @@ export const objectFields: INodeProperties[] = [
name: 'objectId',
type: 'string',
required: true,
- description: 'ID of the object to retrieve.',
+ description: 'ID of the object to retrieve',
default: '',
displayOptions: {
show: {
@@ -156,7 +156,7 @@ export const objectFields: INodeProperties[] = [
name: 'typeName',
type: 'string',
required: true,
- description: 'Name of data type of the object to update.',
+ description: 'Name of data type of the object to update',
default: '',
displayOptions: {
show: {
@@ -174,7 +174,7 @@ export const objectFields: INodeProperties[] = [
name: 'objectId',
type: 'string',
required: true,
- description: 'ID of the object to update.',
+ description: 'ID of the object to update',
default: '',
displayOptions: {
show: {
@@ -216,14 +216,14 @@ export const objectFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Field to set for the object to create.',
+ description: 'Field to set for the object to create',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the object to create.',
+ description: 'Value to set for the object to create',
},
],
},
@@ -238,7 +238,7 @@ export const objectFields: INodeProperties[] = [
name: 'typeName',
type: 'string',
required: true,
- description: 'Name of data type of the object to create.',
+ description: 'Name of data type of the object to create',
default: '',
displayOptions: {
show: {
@@ -266,7 +266,7 @@ export const objectFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -290,7 +290,7 @@ export const objectFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'JSON Parameters',
@@ -351,7 +351,7 @@ export const objectFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Field to set for the object to create.',
+ description: 'Field to set for the object to create',
},
{
displayName: 'Constrain',
@@ -361,7 +361,7 @@ export const objectFields: INodeProperties[] = [
{
name: 'Equals',
value: 'equals',
- description: 'Use to test strict equality, for all field types.',
+ description: 'Use to test strict equality, for all field types',
},
{
name: 'Not Equal',
@@ -371,12 +371,12 @@ export const objectFields: INodeProperties[] = [
{
name: 'Is Empty',
value: 'is_empty',
- description: `Use to test whether a thing's given field is empty, for all field types.`,
+ description: 'Use to test whether a thing\'s given field is empty, for all field types',
},
{
name: 'Is Not Empty',
value: 'is_not_empty',
- description: `Use to test whether a thing's given field is not empty, for all field types.`,
+ description: 'Use to test whether a thing\'s given field is not empty, for all field types',
},
{
name: 'Text Contains',
@@ -401,12 +401,12 @@ export const objectFields: INodeProperties[] = [
{
name: 'In',
value: 'in',
- description: `Use to test whether a thing's field is in a list, for all field types.`,
+ description: 'Use to test whether a thing\'s field is in a list, for all field types',
},
{
name: 'Not In',
value: 'not in',
- description: `Use to test whether a thing's field is not in a list, for all field types.`,
+ description: 'Use to test whether a thing\'s field is not in a list, for all field types',
},
{
name: 'Contains',
@@ -451,7 +451,7 @@ export const objectFields: INodeProperties[] = [
},
},
default: '',
- description: 'Value to set for the object to create.',
+ description: 'Value to set for the object to create',
},
],
},
diff --git a/packages/nodes-base/nodes/Chargebee/Chargebee.node.ts b/packages/nodes-base/nodes/Chargebee/Chargebee.node.ts
index 117f8807b9..888efc1376 100644
--- a/packages/nodes-base/nodes/Chargebee/Chargebee.node.ts
+++ b/packages/nodes-base/nodes/Chargebee/Chargebee.node.ts
@@ -127,41 +127,41 @@ export class Chargebee implements INodeType {
name: 'first_name',
type: 'string',
default: '',
- description: 'The first name of the customer.',
+ description: 'The first name of the customer',
},
{
displayName: 'Last Name',
name: 'last_name',
type: 'string',
default: '',
- description: 'The last name of the customer.',
+ description: 'The last name of the customer',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'The email address of the customer.',
+ description: 'The email address of the customer',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'The phone number of the customer.',
+ description: 'The phone number of the customer',
},
{
displayName: 'Company',
name: 'company',
type: 'string',
default: '',
- description: 'The company of the customer.',
+ description: 'The company of the customer',
},
{
displayName: 'Custom Properties',
name: 'customProperties',
placeholder: 'Add Custom Property',
- description: 'Adds a custom property to set also values which have not been predefined.',
+ description: 'Adds a custom property to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -177,14 +177,14 @@ export class Chargebee implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -254,7 +254,7 @@ export class Chargebee implements INodeType {
displayName: 'Filters',
name: 'filters',
placeholder: 'Add Filter',
- description: 'Filter for invoices.',
+ description: 'Filter for invoices',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -299,14 +299,14 @@ export class Chargebee implements INodeType {
],
default: 'after',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Date',
name: 'value',
type: 'dateTime',
default: '',
- description: 'Query date.',
+ description: 'Query date',
},
],
},
@@ -345,7 +345,7 @@ export class Chargebee implements INodeType {
},
],
default: 'gt',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Amount',
@@ -355,7 +355,7 @@ export class Chargebee implements INodeType {
numberPrecision: 2,
},
default: 0,
- description: 'Query amount.',
+ description: 'Query amount',
},
],
},
@@ -368,7 +368,7 @@ export class Chargebee implements INodeType {
{
displayName: 'Invoice Id',
name: 'invoiceId',
- description: 'The id of the invoice to get.',
+ description: 'The id of the invoice to get',
type: 'string',
default: '',
required: true,
@@ -422,7 +422,7 @@ export class Chargebee implements INodeType {
{
displayName: 'Subscription Id',
name: 'subscriptionId',
- description: 'The id of the subscription to cancel.',
+ description: 'The id of the subscription to cancel',
type: 'string',
default: '',
required: true,
@@ -452,7 +452,7 @@ export class Chargebee implements INodeType {
],
},
},
- description: 'If set it will not cancel it directly in will instead schedule the cancelation for the end of the term..',
+ description: 'If set it will not cancel it directly in will instead schedule the cancelation for the end of the term',
},
// ----------------------------------
@@ -461,7 +461,7 @@ export class Chargebee implements INodeType {
{
displayName: 'Subscription Id',
name: 'subscriptionId',
- description: 'The id of the subscription to delete.',
+ description: 'The id of the subscription to delete',
type: 'string',
default: '',
required: true,
diff --git a/packages/nodes-base/nodes/Chargebee/ChargebeeTrigger.node.ts b/packages/nodes-base/nodes/Chargebee/ChargebeeTrigger.node.ts
index 08b42b8f45..4ea0aa19ce 100644
--- a/packages/nodes-base/nodes/Chargebee/ChargebeeTrigger.node.ts
+++ b/packages/nodes-base/nodes/Chargebee/ChargebeeTrigger.node.ts
@@ -43,57 +43,57 @@ export class ChargebeeTrigger implements INodeType {
{
name: '*',
value: '*',
- description: 'Any time any event is triggered (Wildcard Event).',
+ description: 'Any time any event is triggered (Wildcard Event)',
},
{
name: 'Customer Created',
value: 'customer_created',
- description: 'Triggered when a customer is created.',
+ description: 'Triggered when a customer is created',
},
{
name: 'Customer Changed',
value: 'customer_changed',
- description: 'Triggered when a customer is changed.',
+ description: 'Triggered when a customer is changed',
},
{
name: 'Customer Deleted',
value: 'customer_deleted',
- description: 'Triggered when a customer is deleted.',
+ description: 'Triggered when a customer is deleted',
},
{
name: 'Subscription Created',
value: 'subscription_created',
- description: 'Triggered when a new subscription is created.',
+ description: 'Triggered when a new subscription is created',
},
{
name: 'Subscription Started',
value: 'subscription_started',
- description: 'Triggered when a "future" subscription gets started.',
+ description: 'Triggered when a "future" subscription gets started',
},
{
name: 'Subscription Trial Ending',
value: 'subscription_trial_ending',
- description: 'Triggered 6 days prior to the trial period\'s end date.',
+ description: 'Triggered 6 days prior to the trial period\'s end date',
},
{
name: 'Subscription Activated',
value: 'subscription_activated',
- description: 'Triggered after the subscription has been moved from "Trial" to "Active" state.',
+ description: 'Triggered after the subscription has been moved from "Trial" to "Active" state',
},
{
name: 'Subscription Changed',
value: 'subscription_changed',
- description: 'Triggered when the subscription\'s recurring items are changed.',
+ description: 'Triggered when the subscription\'s recurring items are changed',
},
{
name: 'Subscription Cancellation Scheduled',
value: 'subscription_cancellation_scheduled',
- description: 'Triggered when subscription is scheduled to cancel at end of current term.',
+ description: 'Triggered when subscription is scheduled to cancel at end of current term',
},
{
name: 'Subscription Cancelling',
value: 'subscription_cancelling',
- description: 'Triggered 6 days prior to the scheduled cancellation date.',
+ description: 'Triggered 6 days prior to the scheduled cancellation date',
},
{
name: 'Subscription Cancelled',
@@ -103,22 +103,22 @@ export class ChargebeeTrigger implements INodeType {
{
name: 'Subscription Reactivated',
value: 'subscription_reactivated',
- description: 'Triggered when the subscription is moved from cancelled state to "Active" or "Trial" state.',
+ description: 'Triggered when the subscription is moved from cancelled state to "Active" or "Trial" state',
},
{
name: 'Subscription Renewed',
value: 'subscription_renewed',
- description: 'Triggered when the subscription is renewed from the current term.',
+ description: 'Triggered when the subscription is renewed from the current term',
},
{
name: 'Subscription Scheduled Cancellation Removed',
value: 'subscription_scheduled_cancellation_removed',
- description: 'Triggered when scheduled cancellation is removed for the subscription.',
+ description: 'Triggered when scheduled cancellation is removed for the subscription',
},
{
name: 'Subscription Shipping Address Updated',
value: 'subscription_shipping_address_updated',
- description: 'Triggered when shipping address is added or updated for a subscription.',
+ description: 'Triggered when shipping address is added or updated for a subscription',
},
{
name: 'Subscription Deleted',
@@ -138,22 +138,22 @@ export class ChargebeeTrigger implements INodeType {
{
name: 'Invoice Updated',
value: 'invoice_updated',
- description: 'Triggered when the invoice’s shipping/billing address is updated, if the invoice is voided, or when the amount due is modified due to payments applied/removed.',
+ description: 'Triggered when the invoice’s shipping/billing address is updated, if the invoice is voided, or when the amount due is modified due to payments applied/removed',
},
{
name: 'Invoice Deleted',
value: 'invoice_deleted',
- description: 'Event triggered when an invoice is deleted.',
+ description: 'Event triggered when an invoice is deleted',
},
{
name: 'Subscription Renewal Reminder',
value: 'subscription_renewal_reminder',
- description: 'Triggered 3 days before each subscription\'s renewal.',
+ description: 'Triggered 3 days before each subscription\'s renewal',
},
{
name: 'Transaction Created',
value: 'transaction_created',
- description: 'Triggered when a transaction is recorded.',
+ description: 'Triggered when a transaction is recorded',
},
{
name: 'Transaction Updated',
@@ -163,57 +163,57 @@ export class ChargebeeTrigger implements INodeType {
{
name: 'Transaction Deleted',
value: 'transaction_deleted',
- description: 'Triggered when a transaction is deleted.',
+ description: 'Triggered when a transaction is deleted',
},
{
name: 'Payment Succeeded',
value: 'payment_succeeded',
- description: 'Triggered when the payment is successfully collected.',
+ description: 'Triggered when the payment is successfully collected',
},
{
name: 'Payment Failed',
value: 'payment_failed',
- description: 'Triggered when attempt to charge customer\'s credit card fails.',
+ description: 'Triggered when attempt to charge customer\'s credit card fails',
},
{
name: 'Payment Refunded',
value: 'payment_refunded',
- description: 'Triggered when a payment refund is made.',
+ description: 'Triggered when a payment refund is made',
},
{
name: 'Payment Initiated',
value: 'payment_initiated',
- description: 'Triggered when a payment is initiated via direct debit.',
+ description: 'Triggered when a payment is initiated via direct debit',
},
{
name: 'Refund Initiated',
value: 'refund_initiated',
- description: 'Triggered when a refund is initiated via direct debit.',
+ description: 'Triggered when a refund is initiated via direct debit',
},
{
name: 'Card Added',
value: 'card_added',
- description: 'Triggered when a card is added for a customer.',
+ description: 'Triggered when a card is added for a customer',
},
{
name: 'Card Updated',
value: 'card_updated',
- description: 'Triggered when the card is updated for a customer.',
+ description: 'Triggered when the card is updated for a customer',
},
{
name: 'Card Expiring',
value: 'card_expiring',
- description: 'Triggered when the customer\'s credit card is expiring soon.Triggered 30 days before the expiry date.',
+ description: 'Triggered when the customer\'s credit card is expiring soon.Triggered 30 days before the expiry date',
},
{
name: 'Card Expired',
value: 'card_expired',
- description: 'Triggered when the card for a customer has expired.',
+ description: 'Triggered when the card for a customer has expired',
},
{
name: 'Card Deleted',
value: 'card_deleted',
- description: 'Triggered when a card is deleted for a customer.',
+ description: 'Triggered when a card is deleted for a customer',
},
],
},
diff --git a/packages/nodes-base/nodes/CircleCi/PipelineDescription.ts b/packages/nodes-base/nodes/CircleCi/PipelineDescription.ts
index ec4db57a0f..4d509d89b3 100644
--- a/packages/nodes-base/nodes/CircleCi/PipelineDescription.ts
+++ b/packages/nodes-base/nodes/CircleCi/PipelineDescription.ts
@@ -133,7 +133,7 @@ export const pipelineFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -157,7 +157,7 @@ export const pipelineFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -181,7 +181,7 @@ export const pipelineFields: INodeProperties[] = [
name: 'branch',
type: 'string',
default: '',
- description: 'The name of a vcs branch.',
+ description: 'The name of a vcs branch',
},
],
},
diff --git a/packages/nodes-base/nodes/Cisco/Webex/GenericFunctions.ts b/packages/nodes-base/nodes/Cisco/Webex/GenericFunctions.ts
index a410dd161d..10afd69a16 100644
--- a/packages/nodes-base/nodes/Cisco/Webex/GenericFunctions.ts
+++ b/packages/nodes-base/nodes/Cisco/Webex/GenericFunctions.ts
@@ -157,7 +157,7 @@ export function getActionInheritedProperties(): INodeProperties[] {
type: 'string',
default: '',
required: true,
- description: 'Label for button or link that represents this action.',
+ description: 'Label for button or link that represents this action',
},
{
displayName: 'Icon URL',
@@ -185,7 +185,7 @@ export function getActionInheritedProperties(): INodeProperties[] {
},
],
default: 'default',
- description: 'Controls the style of an Action, which influences how the action is displayed, spoken, etc.',
+ description: 'Controls the style of an Action, which influences how the action is displayed, spoken, etc',
},
];
}
@@ -445,7 +445,7 @@ export function getTextBlockProperties(): INodeProperties[] {
],
},
},
- description: 'When true, draw a separating line at the top of the element.',
+ description: 'When true, draw a separating line at the top of the element',
},
{
displayName: 'Spacing',
diff --git a/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingDescription.ts b/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingDescription.ts
index 9f802ed6b9..ef85c55fc0 100644
--- a/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingDescription.ts
+++ b/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingDescription.ts
@@ -410,7 +410,7 @@ export const meetingFields: INodeProperties[] = [
name: 'sendEmail',
type: 'boolean',
default: true,
- description: 'Whether or not to send emails to host and invitees.',
+ description: 'Whether or not to send emails to host and invitees',
},
],
},
@@ -485,7 +485,7 @@ export const meetingFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingTranscript.ts b/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingTranscript.ts
index b17fe9bfcc..97f8866788 100644
--- a/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingTranscript.ts
+++ b/packages/nodes-base/nodes/Cisco/Webex/descriptions/MeetingTranscript.ts
@@ -132,7 +132,7 @@ export const meetingTranscriptFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/Clearbit/Clearbit.node.ts b/packages/nodes-base/nodes/Clearbit/Clearbit.node.ts
index 2e63669a42..cabe53dda5 100644
--- a/packages/nodes-base/nodes/Clearbit/Clearbit.node.ts
+++ b/packages/nodes-base/nodes/Clearbit/Clearbit.node.ts
@@ -57,7 +57,7 @@ export class Clearbit implements INodeType {
{
name: 'Person',
value: 'person',
- description: 'The Person API lets you retrieve social information associated with an email address, such as a person’s name, location and Twitter handle.',
+ description: 'The Person API lets you retrieve social information associated with an email address, such as a person’s name, location and Twitter handle',
},
],
default: 'company',
diff --git a/packages/nodes-base/nodes/Clearbit/CompanyDescription.ts b/packages/nodes-base/nodes/Clearbit/CompanyDescription.ts
index 2ae0278147..17623ae88d 100644
--- a/packages/nodes-base/nodes/Clearbit/CompanyDescription.ts
+++ b/packages/nodes-base/nodes/Clearbit/CompanyDescription.ts
@@ -50,7 +50,7 @@ export const companyFields: INodeProperties[] = [
],
},
},
- description: 'The domain to look up.',
+ description: 'The domain to look up',
},
{
displayName: 'Additional Fields',
@@ -74,28 +74,28 @@ export const companyFields: INodeProperties[] = [
name: 'companyName',
type: 'string',
default: '',
- description: 'The name of the company.',
+ description: 'The name of the company',
},
{
displayName: 'Facebook',
name: 'facebook',
type: 'string',
default: '',
- description: 'The Facebook URL for the company.',
+ description: 'The Facebook URL for the company',
},
{
displayName: 'Linkedin',
name: 'linkedin',
type: 'string',
default: '',
- description: 'The LinkedIn URL for the company.',
+ description: 'The LinkedIn URL for the company',
},
{
displayName: 'Twitter',
name: 'twitter',
type: 'string',
default: '',
- description: 'The Twitter handle for the company.',
+ description: 'The Twitter handle for the company',
},
],
},
@@ -119,6 +119,6 @@ export const companyFields: INodeProperties[] = [
],
},
},
- description: 'Name is the partial name of the company.',
+ description: 'Name is the partial name of the company',
},
];
diff --git a/packages/nodes-base/nodes/Clearbit/PersonDescription.ts b/packages/nodes-base/nodes/Clearbit/PersonDescription.ts
index 52a8dd0482..2a3327f52e 100644
--- a/packages/nodes-base/nodes/Clearbit/PersonDescription.ts
+++ b/packages/nodes-base/nodes/Clearbit/PersonDescription.ts
@@ -45,7 +45,7 @@ export const personFields: INodeProperties[] = [
],
},
},
- description: 'The email address to look up.',
+ description: 'The email address to look up',
},
{
displayName: 'Additional Fields',
@@ -69,21 +69,21 @@ export const personFields: INodeProperties[] = [
name: 'company',
type: 'string',
default: '',
- description: 'The name of the person’s employer.',
+ description: 'The name of the person’s employer',
},
{
displayName: 'Company Domain',
name: 'companyDomain',
type: 'string',
default: '',
- description: 'The domain for the person’s employer.',
+ description: 'The domain for the person’s employer',
},
{
displayName: 'Facebook',
name: 'facebook',
type: 'string',
default: '',
- description: 'The Facebook URL for the person.',
+ description: 'The Facebook URL for the person',
},
{
displayName: 'Family Name',
@@ -97,7 +97,7 @@ export const personFields: INodeProperties[] = [
name: 'givenName',
type: 'string',
default: '',
- description: 'First name of person.',
+ description: 'First name of person',
},
{
displayName: 'IP Address',
@@ -111,21 +111,21 @@ export const personFields: INodeProperties[] = [
name: 'location',
type: 'string',
default: '',
- description: 'The city or country where the person resides.',
+ description: 'The city or country where the person resides',
},
{
displayName: 'LinkedIn',
name: 'linkedIn',
type: 'string',
default: '',
- description: 'The LinkedIn URL for the person.',
+ description: 'The LinkedIn URL for the person',
},
{
displayName: 'Twitter',
name: 'twitter',
type: 'string',
default: '',
- description: 'The Twitter handle for the person.',
+ description: 'The Twitter handle for the person',
},
],
},
diff --git a/packages/nodes-base/nodes/ClickUp/ChecklistItemDescription.ts b/packages/nodes-base/nodes/ClickUp/ChecklistItemDescription.ts
index 322b628587..17dd3f0730 100644
--- a/packages/nodes-base/nodes/ClickUp/ChecklistItemDescription.ts
+++ b/packages/nodes-base/nodes/ClickUp/ChecklistItemDescription.ts
@@ -210,7 +210,7 @@ export const checklistItemFields: INodeProperties[] = [
name: 'parent',
type: 'string',
default: '',
- description: 'Checklist item that you want to nest the target checklist item underneath.',
+ description: 'Checklist item that you want to nest the target checklist item underneath',
},
{
displayName: 'Resolved',
diff --git a/packages/nodes-base/nodes/ClickUp/CommentDescription.ts b/packages/nodes-base/nodes/ClickUp/CommentDescription.ts
index 847c848ce5..5af7760354 100644
--- a/packages/nodes-base/nodes/ClickUp/CommentDescription.ts
+++ b/packages/nodes-base/nodes/ClickUp/CommentDescription.ts
@@ -137,7 +137,7 @@ export const commentFields: INodeProperties[] = [
name: 'notifyAll',
type: 'boolean',
default: false,
- description: 'If true, creation notifications will be sent to everyone including the creator of the comment.',
+ description: 'If true, creation notifications will be sent to everyone including the creator of the comment',
},
],
},
@@ -232,7 +232,7 @@ export const commentFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
diff --git a/packages/nodes-base/nodes/ClickUp/FolderDescription.ts b/packages/nodes-base/nodes/ClickUp/FolderDescription.ts
index 60b7de5ff6..0d44b37e41 100644
--- a/packages/nodes-base/nodes/ClickUp/FolderDescription.ts
+++ b/packages/nodes-base/nodes/ClickUp/FolderDescription.ts
@@ -317,7 +317,7 @@ export const folderFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/ClickUp/GoalDescription.ts b/packages/nodes-base/nodes/ClickUp/GoalDescription.ts
index 455d6084aa..f1192f8c49 100644
--- a/packages/nodes-base/nodes/ClickUp/GoalDescription.ts
+++ b/packages/nodes-base/nodes/ClickUp/GoalDescription.ts
@@ -225,7 +225,7 @@ export const goalFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
diff --git a/packages/nodes-base/nodes/ClickUp/ListDescription.ts b/packages/nodes-base/nodes/ClickUp/ListDescription.ts
index 0a85d04cba..dcf6012576 100644
--- a/packages/nodes-base/nodes/ClickUp/ListDescription.ts
+++ b/packages/nodes-base/nodes/ClickUp/ListDescription.ts
@@ -270,7 +270,7 @@ export const listFields: INodeProperties[] = [
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -294,7 +294,7 @@ export const listFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* list:customFields */
@@ -760,7 +760,7 @@ export const listFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/ClickUp/SpaceTagDescription.ts b/packages/nodes-base/nodes/ClickUp/SpaceTagDescription.ts
index 5ea899a407..71e8764e54 100644
--- a/packages/nodes-base/nodes/ClickUp/SpaceTagDescription.ts
+++ b/packages/nodes-base/nodes/ClickUp/SpaceTagDescription.ts
@@ -110,7 +110,7 @@ export const spaceTagFields: INodeProperties[] = [
displayName: 'New Name',
name: 'newName',
type: 'string',
- description: 'New name to set for the tag.',
+ description: 'New name to set for the tag',
default: '',
displayOptions: {
show: {
@@ -175,7 +175,7 @@ export const spaceTagFields: INodeProperties[] = [
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -199,6 +199,6 @@ export const spaceTagFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/ClickUp/TaskDescription.ts b/packages/nodes-base/nodes/ClickUp/TaskDescription.ts
index c22958474b..3420b313b0 100644
--- a/packages/nodes-base/nodes/ClickUp/TaskDescription.ts
+++ b/packages/nodes-base/nodes/ClickUp/TaskDescription.ts
@@ -669,7 +669,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -693,7 +693,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -754,7 +754,7 @@ export const taskFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Operator',
@@ -795,7 +795,7 @@ export const taskFields: INodeProperties[] = [
},
],
default: 'equal',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
{
displayName: 'Value',
@@ -810,7 +810,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -982,7 +982,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1006,7 +1006,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -1028,7 +1028,7 @@ export const taskFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the task to add custom field to.',
+ description: 'The ID of the task to add custom field to',
},
{
displayName: 'Field ID',
@@ -1046,7 +1046,7 @@ export const taskFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value is JSON',
@@ -1081,6 +1081,6 @@ export const taskFields: INodeProperties[] = [
],
},
},
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
];
diff --git a/packages/nodes-base/nodes/ClickUp/TimeEntryDescription.ts b/packages/nodes-base/nodes/ClickUp/TimeEntryDescription.ts
index 1b52590349..61aa6980e9 100644
--- a/packages/nodes-base/nodes/ClickUp/TimeEntryDescription.ts
+++ b/packages/nodes-base/nodes/ClickUp/TimeEntryDescription.ts
@@ -96,7 +96,7 @@ export const timeEntryFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -120,7 +120,7 @@ export const timeEntryFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/ClickUp/TimeEntryTagDescription.ts b/packages/nodes-base/nodes/ClickUp/TimeEntryTagDescription.ts
index f6ce20f8c5..892edf8e4e 100644
--- a/packages/nodes-base/nodes/ClickUp/TimeEntryTagDescription.ts
+++ b/packages/nodes-base/nodes/ClickUp/TimeEntryTagDescription.ts
@@ -76,7 +76,7 @@ export const timeEntryTagFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -100,7 +100,7 @@ export const timeEntryTagFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
diff --git a/packages/nodes-base/nodes/Clockify/ProjectDescription.ts b/packages/nodes-base/nodes/Clockify/ProjectDescription.ts
index ac2c9bd426..6a5205d273 100644
--- a/packages/nodes-base/nodes/Clockify/ProjectDescription.ts
+++ b/packages/nodes-base/nodes/Clockify/ProjectDescription.ts
@@ -57,7 +57,7 @@ export const projectFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Name of project being created.',
+ description: 'Name of project being created',
displayOptions: {
show: {
resource: [
@@ -223,7 +223,7 @@ export const projectFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -247,7 +247,7 @@ export const projectFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -312,21 +312,21 @@ export const projectFields: INodeProperties[] = [
},
],
default: '',
- description: 'If provided, projects will be filtered by whether they have a client.',
+ description: 'If provided, projects will be filtered by whether they have a client',
},
{
displayName: 'Contains User',
name: 'contains-user',
type: 'boolean',
default: false,
- description: 'If provided, projects will be filtered by whether they have users.',
+ description: 'If provided, projects will be filtered by whether they have users',
},
{
displayName: 'Is Template',
name: 'is-template',
type: 'boolean',
default: false,
- description: 'If provided, projects will be filtered by whether they are used as a template.',
+ description: 'If provided, projects will be filtered by whether they are used as a template',
},
{
displayName: 'Name',
@@ -397,7 +397,7 @@ export const projectFields: INodeProperties[] = [
},
],
default: '',
- description: 'If provided, projects will be filtered by whether they have a client.',
+ description: 'If provided, projects will be filtered by whether they have a client',
},
],
},
diff --git a/packages/nodes-base/nodes/Clockify/TagDescription.ts b/packages/nodes-base/nodes/Clockify/TagDescription.ts
index f834f795e0..12a7ddeeb0 100644
--- a/packages/nodes-base/nodes/Clockify/TagDescription.ts
+++ b/packages/nodes-base/nodes/Clockify/TagDescription.ts
@@ -102,7 +102,7 @@ export const tagFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -126,7 +126,7 @@ export const tagFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
diff --git a/packages/nodes-base/nodes/Clockify/TaskDescription.ts b/packages/nodes-base/nodes/Clockify/TaskDescription.ts
index 6476e6e59c..565856fcf1 100644
--- a/packages/nodes-base/nodes/Clockify/TaskDescription.ts
+++ b/packages/nodes-base/nodes/Clockify/TaskDescription.ts
@@ -187,7 +187,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -211,7 +211,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/Clockify/TimeEntryDescription.ts b/packages/nodes-base/nodes/Clockify/TimeEntryDescription.ts
index 99d1bba4e6..f766189393 100644
--- a/packages/nodes-base/nodes/Clockify/TimeEntryDescription.ts
+++ b/packages/nodes-base/nodes/Clockify/TimeEntryDescription.ts
@@ -112,14 +112,14 @@ export const timeEntryFields: INodeProperties[] = [
loadOptionsMethod: 'loadCustomFieldsForWorkspace',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -235,7 +235,7 @@ export const timeEntryFields: INodeProperties[] = [
name: 'consider-duration-format',
type: 'boolean',
default: false,
- description: `If provided, returned timeentry's duration will be rounded to minutes or seconds based on duration format (hh:mm or hh:mm:ss) from workspace settings.`,
+ description: 'If provided, returned timeentry\'s duration will be rounded to minutes or seconds based on duration format (hh:mm or hh:mm:ss) from workspace settings',
},
{
displayName: 'Hydrated',
@@ -315,14 +315,14 @@ export const timeEntryFields: INodeProperties[] = [
loadOptionsMethod: 'loadCustomFieldsForWorkspace',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
diff --git a/packages/nodes-base/nodes/Cockpit/CollectionDescription.ts b/packages/nodes-base/nodes/Cockpit/CollectionDescription.ts
index 69a87056d7..25f93094b8 100644
--- a/packages/nodes-base/nodes/Cockpit/CollectionDescription.ts
+++ b/packages/nodes-base/nodes/Cockpit/CollectionDescription.ts
@@ -51,7 +51,7 @@ export const collectionFields: INodeProperties[] = [
},
},
required: true,
- description: 'Name of the collection to operate on.',
+ description: 'Name of the collection to operate on',
},
// Collection:entry:getAll
@@ -70,7 +70,7 @@ export const collectionFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -94,7 +94,7 @@ export const collectionFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -122,7 +122,7 @@ export const collectionFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
placeholder: '_id,name',
- description: 'Comma-separated list of fields to get.',
+ description: 'Comma-separated list of fields to get',
},
{
displayName: 'Filter Query',
@@ -133,14 +133,14 @@ export const collectionFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
placeholder: '{"name": "Jim"}',
- description: 'Filter query in Mongolite format.',
+ description: 'Filter query in Mongolite format',
},
{
displayName: 'Language',
name: 'language',
type: 'string',
default: '',
- description: 'Return normalized language fields.',
+ description: 'Return normalized language fields',
},
{
displayName: 'Populate',
@@ -148,21 +148,21 @@ export const collectionFields: INodeProperties[] = [
type: 'boolean',
required: true,
default: true,
- description: 'Resolve linked collection items.',
+ description: 'Resolve linked collection items',
},
{
displayName: 'RAW Data',
name: 'rawData',
type: 'boolean',
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
{
displayName: 'Skip',
name: 'skip',
type: 'number',
default: '',
- description: 'Skip number of entries.',
+ description: 'Skip number of entries',
},
{
displayName: 'Sort Query',
@@ -170,7 +170,7 @@ export const collectionFields: INodeProperties[] = [
type: 'json',
default: '',
placeholder: '{"price": -1}',
- description: 'Sort query in Mongolite format.',
+ description: 'Sort query in Mongolite format',
},
],
},
@@ -192,7 +192,7 @@ export const collectionFields: INodeProperties[] = [
],
},
},
- description: 'The entry ID.',
+ description: 'The entry ID',
},
// Collection:entry:create
@@ -213,7 +213,7 @@ export const collectionFields: INodeProperties[] = [
],
},
},
- description: 'If new entry fields should be set via the value-key pair UI or JSON.',
+ description: 'If new entry fields should be set via the value-key pair UI or JSON',
},
{
displayName: 'Entry Data',
@@ -237,7 +237,7 @@ export const collectionFields: INodeProperties[] = [
],
},
},
- description: 'Entry data to send as JSON.',
+ description: 'Entry data to send as JSON',
},
{
displayName: 'Entry Data',
@@ -271,18 +271,18 @@ export const collectionFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the field.',
+ description: 'Name of the field',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the field.',
+ description: 'Value of the field',
},
],
},
],
- description: 'Entry data to send.',
+ description: 'Entry data to send',
},
];
diff --git a/packages/nodes-base/nodes/Cockpit/FormDescription.ts b/packages/nodes-base/nodes/Cockpit/FormDescription.ts
index fa7c3ae13a..0abdec6f24 100644
--- a/packages/nodes-base/nodes/Cockpit/FormDescription.ts
+++ b/packages/nodes-base/nodes/Cockpit/FormDescription.ts
@@ -39,7 +39,7 @@ export const formFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'Name of the form to operate on.',
+ description: 'Name of the form to operate on',
},
// Form:submit
@@ -58,7 +58,7 @@ export const formFields: INodeProperties[] = [
],
},
},
- description: 'If form fields should be set via the value-key pair UI or JSON.',
+ description: 'If form fields should be set via the value-key pair UI or JSON',
},
{
displayName: 'Form Data',
@@ -81,7 +81,7 @@ export const formFields: INodeProperties[] = [
],
},
},
- description: 'Form data to send as JSON.',
+ description: 'Form data to send as JSON',
},
{
displayName: 'Form Data',
@@ -114,18 +114,18 @@ export const formFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the field.',
+ description: 'Name of the field',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the field.',
+ description: 'Value of the field',
},
],
},
],
- description: 'Form data to send.',
+ description: 'Form data to send',
},
];
diff --git a/packages/nodes-base/nodes/Cockpit/SingletonDescription.ts b/packages/nodes-base/nodes/Cockpit/SingletonDescription.ts
index 19a45d674b..5f608b6fbc 100644
--- a/packages/nodes-base/nodes/Cockpit/SingletonDescription.ts
+++ b/packages/nodes-base/nodes/Cockpit/SingletonDescription.ts
@@ -41,6 +41,6 @@ export const singletonFields: INodeProperties[] = [
},
},
required: true,
- description: 'Name of the singleton to operate on.',
+ description: 'Name of the singleton to operate on',
},
];
diff --git a/packages/nodes-base/nodes/Coda/Coda.node.ts b/packages/nodes-base/nodes/Coda/Coda.node.ts
index 90f50abc71..a91da2e869 100644
--- a/packages/nodes-base/nodes/Coda/Coda.node.ts
+++ b/packages/nodes-base/nodes/Coda/Coda.node.ts
@@ -61,7 +61,7 @@ export class Coda implements INodeType {
{
name: 'Control',
value: 'control',
- description: 'Controls provide a user-friendly way to input a value that can affect other parts of the doc.',
+ description: 'Controls provide a user-friendly way to input a value that can affect other parts of the doc',
},
{
name: 'Formula',
@@ -71,12 +71,12 @@ export class Coda implements INodeType {
{
name: 'Table',
value: 'table',
- description: `Access data of tables in documents.`,
+ description: 'Access data of tables in documents',
},
{
name: 'View',
value: 'view',
- description: `Access data of views in documents.`,
+ description: 'Access data of views in documents',
},
],
default: 'table',
diff --git a/packages/nodes-base/nodes/Coda/ControlDescription.ts b/packages/nodes-base/nodes/Coda/ControlDescription.ts
index 09b7146873..60b89cf5a8 100644
--- a/packages/nodes-base/nodes/Coda/ControlDescription.ts
+++ b/packages/nodes-base/nodes/Coda/ControlDescription.ts
@@ -53,7 +53,7 @@ export const controlFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Control ID',
@@ -71,7 +71,7 @@ export const controlFields: INodeProperties[] = [
],
},
},
- description: 'The control to get the row from.',
+ description: 'The control to get the row from',
},
/* -------------------------------------------------------------------------- */
/* control:getAll */
@@ -95,7 +95,7 @@ export const controlFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Return All',
@@ -112,7 +112,7 @@ export const controlFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -136,6 +136,6 @@ export const controlFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Coda/FormulaDescription.ts b/packages/nodes-base/nodes/Coda/FormulaDescription.ts
index ea20147bee..13adca7246 100644
--- a/packages/nodes-base/nodes/Coda/FormulaDescription.ts
+++ b/packages/nodes-base/nodes/Coda/FormulaDescription.ts
@@ -53,7 +53,7 @@ export const formulaFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Formula ID',
@@ -71,7 +71,7 @@ export const formulaFields: INodeProperties[] = [
],
},
},
- description: 'The formula to get the row from.',
+ description: 'The formula to get the row from',
},
/* -------------------------------------------------------------------------- */
/* formula:getAll */
@@ -95,7 +95,7 @@ export const formulaFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Return All',
@@ -112,7 +112,7 @@ export const formulaFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -136,6 +136,6 @@ export const formulaFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Coda/TableDescription.ts b/packages/nodes-base/nodes/Coda/TableDescription.ts
index 259f838f59..e4ac85a1b8 100644
--- a/packages/nodes-base/nodes/Coda/TableDescription.ts
+++ b/packages/nodes-base/nodes/Coda/TableDescription.ts
@@ -78,7 +78,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Table',
@@ -102,7 +102,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The table to create the row in.',
+ description: 'The table to create the row in',
},
{
displayName: 'Options',
@@ -126,7 +126,7 @@ export const tableFields: INodeProperties[] = [
name: 'disableParsing',
type: 'boolean',
default: false,
- description: `If true, the API will not attempt to parse the data in any way.`,
+ description: 'If true, the API will not attempt to parse the data in any way',
},
{
displayName: 'Key Columns',
@@ -159,7 +159,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Table',
@@ -183,7 +183,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The table to get the row from.',
+ description: 'The table to get the row from',
},
{
displayName: 'Row ID',
@@ -225,7 +225,7 @@ export const tableFields: INodeProperties[] = [
name: 'rawData',
type: 'boolean',
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
{
displayName: 'Use Column Names',
@@ -253,7 +253,7 @@ export const tableFields: INodeProperties[] = [
value: 'rich',
},
],
- description: `The format that cell values are returned as.`,
+ description: 'The format that cell values are returned as',
},
],
},
@@ -279,7 +279,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Table',
@@ -303,7 +303,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The table to get the rows from.',
+ description: 'The table to get the rows from',
},
{
displayName: 'Return All',
@@ -320,7 +320,7 @@ export const tableFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -344,7 +344,7 @@ export const tableFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -378,7 +378,7 @@ export const tableFields: INodeProperties[] = [
name: 'rawData',
type: 'boolean',
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
{
displayName: 'Sort By',
@@ -423,14 +423,14 @@ export const tableFields: INodeProperties[] = [
value: 'rich',
},
],
- description: `The format that cell values are returned as.`,
+ description: 'The format that cell values are returned as',
},
{
displayName: 'Visible Only',
name: 'visibleOnly',
type: 'boolean',
default: false,
- description: `If true, returns only visible rows and columns for the table.`,
+ description: 'If true, returns only visible rows and columns for the table',
},
],
},
@@ -456,7 +456,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Table',
@@ -480,7 +480,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The table to delete the row in.',
+ description: 'The table to delete the row in',
},
{
displayName: 'Row ID',
@@ -498,7 +498,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'Row IDs to delete.',
+ description: 'Row IDs to delete',
},
/* -------------------------------------------------------------------------- */
/* table:pushButton */
@@ -522,7 +522,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Table',
@@ -546,7 +546,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The table to get the row from.',
+ description: 'The table to get the row from',
},
{
displayName: 'Row ID',
@@ -612,7 +612,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Table',
@@ -636,7 +636,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The table to get the row from.',
+ description: 'The table to get the row from',
},
{
displayName: 'Column ID',
@@ -654,7 +654,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The table to get the row from.',
+ description: 'The table to get the row from',
},
/* -------------------------------------------------------------------------- */
/* table:getAllColumns */
@@ -678,7 +678,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Table',
@@ -702,7 +702,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The table to get the row from.',
+ description: 'The table to get the row from',
},
{
displayName: 'Return All',
@@ -719,7 +719,7 @@ export const tableFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -743,6 +743,6 @@ export const tableFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Coda/ViewDescription.ts b/packages/nodes-base/nodes/Coda/ViewDescription.ts
index 8ab35b442e..0df5a6e516 100644
--- a/packages/nodes-base/nodes/Coda/ViewDescription.ts
+++ b/packages/nodes-base/nodes/Coda/ViewDescription.ts
@@ -78,7 +78,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'View ID',
@@ -96,7 +96,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The view to get the row from.',
+ description: 'The view to get the row from',
},
/* -------------------------------------------------------------------------- */
/* view:getAll */
@@ -120,7 +120,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'Return All',
@@ -137,7 +137,7 @@ export const viewFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -161,7 +161,7 @@ export const viewFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* view:getAllViewRows */
@@ -185,7 +185,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'View',
@@ -209,7 +209,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The table to get the rows from.',
+ description: 'The table to get the rows from',
},
{
displayName: 'Return All',
@@ -226,7 +226,7 @@ export const viewFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -250,7 +250,7 @@ export const viewFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -305,14 +305,14 @@ export const viewFields: INodeProperties[] = [
value: 'rich',
},
],
- description: `The format that cell values are returned as.`,
+ description: 'The format that cell values are returned as',
},
{
displayName: 'RAW Data',
name: 'rawData',
type: 'boolean',
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
{
displayName: 'Sort By',
@@ -355,7 +355,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'View',
@@ -379,7 +379,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The table to get the rows from.',
+ description: 'The table to get the rows from',
},
{
displayName: 'Return All',
@@ -396,7 +396,7 @@ export const viewFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -420,7 +420,7 @@ export const viewFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* view:deleteViewRow */
@@ -444,7 +444,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'View',
@@ -468,7 +468,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The view to get the row from.',
+ description: 'The view to get the row from',
},
{
displayName: 'Row',
@@ -492,7 +492,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The view to get the row from.',
+ description: 'The view to get the row from',
},
/* -------------------------------------------------------------------------- */
/* view:pushViewButton */
@@ -516,7 +516,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'View',
@@ -540,7 +540,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The view to get the row from.',
+ description: 'The view to get the row from',
},
{
displayName: 'Row',
@@ -564,7 +564,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The view to get the row from.',
+ description: 'The view to get the row from',
},
{
displayName: 'Column',
@@ -612,7 +612,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'ID of the doc.',
+ description: 'ID of the doc',
},
{
displayName: 'View',
@@ -636,7 +636,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The view to get the row from.',
+ description: 'The view to get the row from',
},
{
displayName: 'Row',
@@ -660,7 +660,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The view to get the row from.',
+ description: 'The view to get the row from',
},
{
displayName: 'Key Name',
@@ -678,7 +678,7 @@ export const viewFields: INodeProperties[] = [
],
},
},
- description: 'The view to get the row from.',
+ description: 'The view to get the row from',
},
{
displayName: 'Options',
@@ -702,7 +702,7 @@ export const viewFields: INodeProperties[] = [
name: 'disableParsing',
type: 'boolean',
default: false,
- description: `If true, the API will not attempt to parse the data in any way.`,
+ description: 'If true, the API will not attempt to parse the data in any way',
},
],
},
diff --git a/packages/nodes-base/nodes/CoinGecko/CoinDescription.ts b/packages/nodes-base/nodes/CoinGecko/CoinDescription.ts
index c6e262564e..e8177c42c4 100644
--- a/packages/nodes-base/nodes/CoinGecko/CoinDescription.ts
+++ b/packages/nodes-base/nodes/CoinGecko/CoinDescription.ts
@@ -89,7 +89,7 @@ export const coinFields: INodeProperties[] = [
},
},
default: 'coinId',
- description: 'Search by coin ID or contract address.',
+ description: 'Search by coin ID or contract address',
},
{
displayName: 'Coin ID',
@@ -232,7 +232,7 @@ export const coinFields: INodeProperties[] = [
},
],
default: 'ethereum',
- description: 'The id of the platform issuing tokens.',
+ description: 'The id of the platform issuing tokens',
},
{
displayName: 'Contract address',
@@ -254,7 +254,7 @@ export const coinFields: INodeProperties[] = [
],
},
},
- description: 'Token\'s contract address.',
+ description: 'Token\'s contract address',
},
{
displayName: 'Contract addresses',
@@ -275,7 +275,7 @@ export const coinFields: INodeProperties[] = [
],
},
},
- description: 'The contract address of tokens, comma-separated.',
+ description: 'The contract address of tokens, comma-separated',
},
{
displayName: 'Base Currency',
@@ -400,7 +400,7 @@ export const coinFields: INodeProperties[] = [
},
},
default: '',
- description: 'Return data for this many days in the past from now.',
+ description: 'Return data for this many days in the past from now',
},
{
displayName: 'Date',
@@ -418,7 +418,7 @@ export const coinFields: INodeProperties[] = [
},
},
default: '',
- description: 'The date of data snapshot.',
+ description: 'The date of data snapshot',
},
{
displayName: 'Return All',
@@ -437,7 +437,7 @@ export const coinFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -463,7 +463,7 @@ export const coinFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -488,7 +488,7 @@ export const coinFields: INodeProperties[] = [
type: 'string',
placeholder: 'bitcoin',
default: '',
- description: 'Filter results by comma-separated list of coin ID.',
+ description: 'Filter results by comma-separated list of coin ID',
},
{
displayName: 'Category',
@@ -501,7 +501,7 @@ export const coinFields: INodeProperties[] = [
},
],
default: 'decentralized_finance_defi',
- description: 'Filter by coin category.',
+ description: 'Filter by coin category',
},
{
displayName: 'Order',
@@ -546,14 +546,14 @@ export const coinFields: INodeProperties[] = [
},
],
default: '',
- description: 'Sort results by field.',
+ description: 'Sort results by field',
},
{
displayName: 'Sparkline',
name: 'sparkline',
type: 'boolean',
default: false,
- description: 'Include sparkline 7 days data.',
+ description: 'Include sparkline 7 days data',
},
{
displayName: 'Price Change Percentage',
@@ -590,7 +590,7 @@ export const coinFields: INodeProperties[] = [
},
],
default: [],
- description: 'Include price change percentage for specified times.',
+ description: 'Include price change percentage for specified times',
},
],
},
@@ -662,14 +662,14 @@ export const coinFields: INodeProperties[] = [
loadOptionsMethod: 'getExchanges',
},
default: [],
- description: 'Filter results by exchange IDs.',
+ description: 'Filter results by exchange IDs',
},
{
displayName: 'Include Exchange Logo',
name: 'include_exchange_logo',
type: 'boolean',
default: false,
- description: 'Include exchange logo.',
+ description: 'Include exchange logo',
},
{
displayName: 'Order',
@@ -690,7 +690,7 @@ export const coinFields: INodeProperties[] = [
},
],
default: 'trust_score_desc',
- description: 'Sorts results by the selected rule.',
+ description: 'Sorts results by the selected rule',
},
],
},
@@ -716,7 +716,7 @@ export const coinFields: INodeProperties[] = [
name: 'localization',
type: 'boolean',
default: true,
- description: 'Set to false to exclude localized languages in response.',
+ description: 'Set to false to exclude localized languages in response',
},
],
},
@@ -742,28 +742,28 @@ export const coinFields: INodeProperties[] = [
name: 'community_data',
type: 'boolean',
default: false,
- description: 'Include community data.',
+ description: 'Include community data',
},
{
displayName: 'Developer data',
name: 'developer_data',
type: 'boolean',
default: false,
- description: 'Include developer data.',
+ description: 'Include developer data',
},
{
displayName: 'Localization',
name: 'localization',
type: 'boolean',
default: false,
- description: 'Include all localized languages in response.',
+ description: 'Include all localized languages in response',
},
{
displayName: 'Market data',
name: 'market_data',
type: 'boolean',
default: false,
- description: 'Include market data.',
+ description: 'Include market data',
},
{
displayName: 'Sparkline',
@@ -777,7 +777,7 @@ export const coinFields: INodeProperties[] = [
name: 'tickers',
type: 'boolean',
default: false,
- description: 'Include tickers data.',
+ description: 'Include tickers data',
},
],
},
diff --git a/packages/nodes-base/nodes/CoinGecko/EventDescription.ts b/packages/nodes-base/nodes/CoinGecko/EventDescription.ts
index a448dbcd12..a71953bc9f 100644
--- a/packages/nodes-base/nodes/CoinGecko/EventDescription.ts
+++ b/packages/nodes-base/nodes/CoinGecko/EventDescription.ts
@@ -41,7 +41,7 @@ export const eventFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -65,7 +65,7 @@ export const eventFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -92,21 +92,21 @@ export const eventFields: INodeProperties[] = [
loadOptionsMethod: 'getEventCountryCodes',
},
default: '',
- description: 'Country code of event.',
+ description: 'Country code of event',
},
{
displayName: 'From date',
name: 'from_date',
type: 'dateTime',
default: '',
- description: 'Lists events after this date.',
+ description: 'Lists events after this date',
},
{
displayName: 'To date',
name: 'to_date',
type: 'dateTime',
default: '',
- description: 'Lists events before this date.',
+ description: 'Lists events before this date',
},
{
displayName: 'Type',
@@ -116,14 +116,14 @@ export const eventFields: INodeProperties[] = [
loadOptionsMethod: 'getEventTypes',
},
default: '',
- description: 'Type of event.',
+ description: 'Type of event',
},
{
displayName: 'Upcoming events only',
name: 'upcoming_events_only',
type: 'boolean',
default: true,
- description: 'Lists only upcoming events.',
+ description: 'Lists only upcoming events',
},
],
},
diff --git a/packages/nodes-base/nodes/Compression/Compression.node.ts b/packages/nodes-base/nodes/Compression/Compression.node.ts
index e4a3973b5a..dead01aa97 100644
--- a/packages/nodes-base/nodes/Compression/Compression.node.ts
+++ b/packages/nodes-base/nodes/Compression/Compression.node.ts
@@ -159,7 +159,7 @@ export class Compression implements INodeType {
},
},
placeholder: '',
- description: 'Name of the binary property to which to write the data of the compressed files.',
+ description: 'Name of the binary property to which to write the data of the compressed files',
},
{
displayName: 'Output Prefix',
diff --git a/packages/nodes-base/nodes/Contentful/AssetDescription.ts b/packages/nodes-base/nodes/Contentful/AssetDescription.ts
index 6277c64001..0776295651 100644
--- a/packages/nodes-base/nodes/Contentful/AssetDescription.ts
+++ b/packages/nodes-base/nodes/Contentful/AssetDescription.ts
@@ -69,7 +69,7 @@ export const fields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -93,7 +93,7 @@ export const fields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Asset ID',
@@ -197,7 +197,7 @@ export const fields: INodeProperties[] = [
name: 'rawData',
type: 'boolean',
default: false,
- description: 'If the data should be returned RAW instead of parsed.',
+ description: 'If the data should be returned RAW instead of parsed',
},
],
},
diff --git a/packages/nodes-base/nodes/Contentful/ContentTypeDescription.ts b/packages/nodes-base/nodes/Contentful/ContentTypeDescription.ts
index 8bbd28318d..03a13a6f23 100644
--- a/packages/nodes-base/nodes/Contentful/ContentTypeDescription.ts
+++ b/packages/nodes-base/nodes/Contentful/ContentTypeDescription.ts
@@ -88,7 +88,7 @@ export const fields: INodeProperties[] = [
name: 'rawData',
type: 'boolean',
default: false,
- description: 'If the data should be returned RAW instead of parsed.',
+ description: 'If the data should be returned RAW instead of parsed',
},
],
},
diff --git a/packages/nodes-base/nodes/Contentful/EntryDescription.ts b/packages/nodes-base/nodes/Contentful/EntryDescription.ts
index 7c315e738a..ecb5eb9f57 100644
--- a/packages/nodes-base/nodes/Contentful/EntryDescription.ts
+++ b/packages/nodes-base/nodes/Contentful/EntryDescription.ts
@@ -69,7 +69,7 @@ export const fields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -93,7 +93,7 @@ export const fields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -187,7 +187,7 @@ export const fields: INodeProperties[] = [
name: 'rawData',
type: 'boolean',
default: false,
- description: 'If the data should be returned RAW instead of parsed.',
+ description: 'If the data should be returned RAW instead of parsed',
},
],
},
diff --git a/packages/nodes-base/nodes/Contentful/LocaleDescription.ts b/packages/nodes-base/nodes/Contentful/LocaleDescription.ts
index 6f233fbda1..417731a1d8 100644
--- a/packages/nodes-base/nodes/Contentful/LocaleDescription.ts
+++ b/packages/nodes-base/nodes/Contentful/LocaleDescription.ts
@@ -65,7 +65,7 @@ export const fields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -89,6 +89,6 @@ export const fields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Contentful/SearchParameterDescription.ts b/packages/nodes-base/nodes/Contentful/SearchParameterDescription.ts
index 28f951be11..c0fb254030 100644
--- a/packages/nodes-base/nodes/Contentful/SearchParameterDescription.ts
+++ b/packages/nodes-base/nodes/Contentful/SearchParameterDescription.ts
@@ -4,7 +4,7 @@ export const fields: INodeProperties[] = [
{
displayName: 'Search Parameters',
name: 'search_parameters',
- description: 'You can use a variety of query parameters to search and filter items.',
+ description: 'You can use a variety of query parameters to search and filter items',
placeholder: 'Add parameter',
type: 'fixedCollection',
typeOptions: {
@@ -21,14 +21,14 @@ export const fields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the search parameter to set.',
+ description: 'Name of the search parameter to set',
},
{
displayName: 'Parameter Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the search parameter to set.',
+ description: 'Value of the search parameter to set',
},
],
},
diff --git a/packages/nodes-base/nodes/ConvertKit/ConvertKitTrigger.node.ts b/packages/nodes-base/nodes/ConvertKit/ConvertKitTrigger.node.ts
index 5bca2bdf12..7ffe2f4003 100644
--- a/packages/nodes-base/nodes/ConvertKit/ConvertKitTrigger.node.ts
+++ b/packages/nodes-base/nodes/ConvertKit/ConvertKitTrigger.node.ts
@@ -55,7 +55,7 @@ export class ConvertKitTrigger implements INodeType {
type: 'options',
required: true,
default: '',
- description: 'The events that can trigger the webhook and whether they are enabled.',
+ description: 'The events that can trigger the webhook and whether they are enabled',
options: [
{
name: 'Form Subscribe',
diff --git a/packages/nodes-base/nodes/ConvertKit/CustomFieldDescription.ts b/packages/nodes-base/nodes/ConvertKit/CustomFieldDescription.ts
index 5e04c95e58..a987bd7e7a 100644
--- a/packages/nodes-base/nodes/ConvertKit/CustomFieldDescription.ts
+++ b/packages/nodes-base/nodes/ConvertKit/CustomFieldDescription.ts
@@ -59,7 +59,7 @@ export const customFieldFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of your custom field.',
+ description: 'The ID of your custom field',
},
{
displayName: 'Label',
@@ -78,7 +78,7 @@ export const customFieldFields: INodeProperties[] = [
},
},
default: '',
- description: 'The label of the custom field.',
+ description: 'The label of the custom field',
},
{
displayName: 'Return All',
@@ -95,7 +95,7 @@ export const customFieldFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -119,6 +119,6 @@ export const customFieldFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/ConvertKit/FormDescription.ts b/packages/nodes-base/nodes/ConvertKit/FormDescription.ts
index fc02144f7d..9bd26c6993 100644
--- a/packages/nodes-base/nodes/ConvertKit/FormDescription.ts
+++ b/packages/nodes-base/nodes/ConvertKit/FormDescription.ts
@@ -32,7 +32,7 @@ export const formOperations: INodeProperties[] = [
},
],
default: 'addSubscriber',
- description: 'The operations to perform.',
+ description: 'The operations to perform',
},
];
@@ -57,7 +57,7 @@ export const formFields: INodeProperties[] = [
},
},
default: '',
- description: 'Form ID.',
+ description: 'Form ID',
},
{
displayName: 'Email',
@@ -75,7 +75,7 @@ export const formFields: INodeProperties[] = [
},
},
default: '',
- description: `The subscriber's email address.`,
+ description: 'The subscriber\'s email address',
},
{
displayName: 'Additional Fields',
@@ -98,7 +98,7 @@ export const formFields: INodeProperties[] = [
displayName: 'Custom Fields',
name: 'fieldsUi',
placeholder: 'Add Custom Field',
- description: 'Object of key/value pairs for custom fields (the custom field must exist before you can use it here).',
+ description: 'Object of key/value pairs for custom fields (the custom field must exist before you can use it here)',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -115,7 +115,7 @@ export const formFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'last_name',
- description: `The field's key.`,
+ description: 'The field\'s key',
},
{
displayName: 'Field Value',
@@ -123,7 +123,7 @@ export const formFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'Doe',
- description: 'Value of the field.',
+ description: 'Value of the field',
},
],
},
@@ -134,7 +134,7 @@ export const formFields: INodeProperties[] = [
name: 'firstName',
type: 'string',
default: '',
- description: `The subscriber's first name.`,
+ description: 'The subscriber\'s first name',
},
],
},
@@ -154,7 +154,7 @@ export const formFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -179,7 +179,7 @@ export const formFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -215,6 +215,6 @@ export const formFields: INodeProperties[] = [
default: 'active',
},
],
- description: 'Receive only active subscribers or cancelled subscribers.',
+ description: 'Receive only active subscribers or cancelled subscribers',
},
];
diff --git a/packages/nodes-base/nodes/ConvertKit/SequenceDescription.ts b/packages/nodes-base/nodes/ConvertKit/SequenceDescription.ts
index 747fbfb7dd..8b0bd07ba5 100644
--- a/packages/nodes-base/nodes/ConvertKit/SequenceDescription.ts
+++ b/packages/nodes-base/nodes/ConvertKit/SequenceDescription.ts
@@ -32,7 +32,7 @@ export const sequenceOperations: INodeProperties[] = [
},
],
default: 'addSubscriber',
- description: 'The operations to perform.',
+ description: 'The operations to perform',
},
];
@@ -57,7 +57,7 @@ export const sequenceFields: INodeProperties[] = [
},
},
default: '',
- description: 'Sequence ID.',
+ description: 'Sequence ID',
},
{
displayName: 'Email',
@@ -75,7 +75,7 @@ export const sequenceFields: INodeProperties[] = [
},
},
default: '',
- description: `The subscriber's email address.`,
+ description: 'The subscriber\'s email address',
},
{
displayName: 'Return All',
@@ -93,7 +93,7 @@ export const sequenceFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -118,7 +118,7 @@ export const sequenceFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -141,7 +141,7 @@ export const sequenceFields: INodeProperties[] = [
displayName: 'Custom Fields',
name: 'fieldsUi',
placeholder: 'Add Custom Field',
- description: 'Object of key/value pairs for custom fields (the custom field must exist before you can use it here).',
+ description: 'Object of key/value pairs for custom fields (the custom field must exist before you can use it here)',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -158,7 +158,7 @@ export const sequenceFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'last_name',
- description: `The field's key.`,
+ description: 'The field\'s key',
},
{
displayName: 'Field Value',
@@ -166,7 +166,7 @@ export const sequenceFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'Doe',
- description: 'Value of the field.',
+ description: 'Value of the field',
},
],
},
@@ -177,7 +177,7 @@ export const sequenceFields: INodeProperties[] = [
name: 'firstName',
type: 'string',
default: '',
- description: `The subscriber's first name.`,
+ description: 'The subscriber\'s first name',
},
{
displayName: 'Tag IDs',
@@ -225,6 +225,6 @@ export const sequenceFields: INodeProperties[] = [
default: 'active',
},
],
- description: 'Receive only active subscribers or cancelled subscribers.',
+ description: 'Receive only active subscribers or cancelled subscribers',
},
];
diff --git a/packages/nodes-base/nodes/ConvertKit/TagDescription.ts b/packages/nodes-base/nodes/ConvertKit/TagDescription.ts
index 6d759ca352..dcca86b8eb 100644
--- a/packages/nodes-base/nodes/ConvertKit/TagDescription.ts
+++ b/packages/nodes-base/nodes/ConvertKit/TagDescription.ts
@@ -65,7 +65,7 @@ export const tagFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -89,6 +89,6 @@ export const tagFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/ConvertKit/TagSubscriberDescription.ts b/packages/nodes-base/nodes/ConvertKit/TagSubscriberDescription.ts
index c4217c123b..2f4d745ff1 100644
--- a/packages/nodes-base/nodes/ConvertKit/TagSubscriberDescription.ts
+++ b/packages/nodes-base/nodes/ConvertKit/TagSubscriberDescription.ts
@@ -76,7 +76,7 @@ export const tagSubscriberFields: INodeProperties[] = [
},
},
default: '',
- description: 'Subscriber email address.',
+ description: 'Subscriber email address',
},
{
displayName: 'Additional Fields',
@@ -99,7 +99,7 @@ export const tagSubscriberFields: INodeProperties[] = [
displayName: 'Custom Fields',
name: 'fields',
placeholder: 'Add Custom Field',
- description: 'Object of key/value pairs for custom fields (the custom field must exist before you can use it here).',
+ description: 'Object of key/value pairs for custom fields (the custom field must exist before you can use it here)',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -116,7 +116,7 @@ export const tagSubscriberFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'last_name',
- description: `The field's key.`,
+ description: 'The field\'s key',
},
{
displayName: 'Field Value',
@@ -124,7 +124,7 @@ export const tagSubscriberFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'Doe',
- description: 'Value of the field.',
+ description: 'Value of the field',
},
],
},
@@ -135,7 +135,7 @@ export const tagSubscriberFields: INodeProperties[] = [
name: 'firstName',
type: 'string',
default: '',
- description: 'Subscriber first name.',
+ description: 'Subscriber first name',
},
],
},
@@ -154,7 +154,7 @@ export const tagSubscriberFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -178,7 +178,7 @@ export const tagSubscriberFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -214,6 +214,6 @@ export const tagSubscriberFields: INodeProperties[] = [
default: 'active',
},
],
- description: 'Receive only active subscribers or cancelled subscribers.',
+ description: 'Receive only active subscribers or cancelled subscribers',
},
];
diff --git a/packages/nodes-base/nodes/Copper/CopperTrigger.node.ts b/packages/nodes-base/nodes/Copper/CopperTrigger.node.ts
index eddc93e5ff..e19e0963cf 100644
--- a/packages/nodes-base/nodes/Copper/CopperTrigger.node.ts
+++ b/packages/nodes-base/nodes/Copper/CopperTrigger.node.ts
@@ -75,7 +75,7 @@ export class CopperTrigger implements INodeType {
value: 'task',
},
],
- description: 'The resource which will fire the event.',
+ description: 'The resource which will fire the event',
},
{
displayName: 'Event',
@@ -100,7 +100,7 @@ export class CopperTrigger implements INodeType {
description: 'Any field in the existing entity record is changed',
},
],
- description: 'The event to listen to.',
+ description: 'The event to listen to',
},
],
};
diff --git a/packages/nodes-base/nodes/Copper/descriptions/CompanyDescription.ts b/packages/nodes-base/nodes/Copper/descriptions/CompanyDescription.ts
index 366028e9ab..085f4631a0 100644
--- a/packages/nodes-base/nodes/Copper/descriptions/CompanyDescription.ts
+++ b/packages/nodes-base/nodes/Copper/descriptions/CompanyDescription.ts
@@ -57,7 +57,7 @@ export const companyFields: INodeProperties[] = [
{
displayName: 'Name',
name: 'name',
- description: 'Name of the company to create.',
+ description: 'Name of the company to create',
type: 'string',
required: true,
default: '',
@@ -95,7 +95,7 @@ export const companyFields: INodeProperties[] = [
name: 'details',
type: 'string',
default: '',
- description: 'Description of the company to create.',
+ description: 'Description of the company to create',
},
{
displayName: 'Email Domain',
@@ -113,7 +113,7 @@ export const companyFields: INodeProperties[] = [
{
displayName: 'Company ID',
name: 'companyId',
- description: 'ID of the company to delete.',
+ description: 'ID of the company to delete',
type: 'string',
required: true,
default: '',
@@ -135,7 +135,7 @@ export const companyFields: INodeProperties[] = [
{
displayName: 'Company ID',
name: 'companyId',
- description: 'ID of the company to retrieve.',
+ description: 'ID of the company to retrieve',
type: 'string',
required: true,
default: '',
@@ -159,7 +159,7 @@ export const companyFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -176,7 +176,7 @@ export const companyFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -218,14 +218,14 @@ export const companyFields: INodeProperties[] = [
type: 'options',
options: isoCountryCodes.map(({ name, alpha2 }) => ({ name, value: alpha2 })),
default: '',
- description: 'Country of the company to filter by.',
+ description: 'Country of the company to filter by',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Name of the company to filter by.',
+ description: 'Name of the company to filter by',
},
],
},
@@ -236,7 +236,7 @@ export const companyFields: INodeProperties[] = [
{
displayName: 'Company ID',
name: 'companyId',
- description: 'ID of the company to update.',
+ description: 'ID of the company to update',
type: 'string',
required: true,
default: '',
@@ -274,14 +274,14 @@ export const companyFields: INodeProperties[] = [
name: 'details',
type: 'string',
default: '',
- description: 'Description to set for the company.',
+ description: 'Description to set for the company',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Name to set for the company.',
+ description: 'Name to set for the company',
},
phoneNumbersFixedCollection,
],
diff --git a/packages/nodes-base/nodes/Copper/descriptions/CustomerSourceDescription.ts b/packages/nodes-base/nodes/Copper/descriptions/CustomerSourceDescription.ts
index 63c7b9dbde..1ca69f39c4 100644
--- a/packages/nodes-base/nodes/Copper/descriptions/CustomerSourceDescription.ts
+++ b/packages/nodes-base/nodes/Copper/descriptions/CustomerSourceDescription.ts
@@ -34,7 +34,7 @@ export const customerSourceFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -51,7 +51,7 @@ export const customerSourceFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
diff --git a/packages/nodes-base/nodes/Copper/descriptions/LeadDescription.ts b/packages/nodes-base/nodes/Copper/descriptions/LeadDescription.ts
index bdab82dec3..f10a0fab53 100644
--- a/packages/nodes-base/nodes/Copper/descriptions/LeadDescription.ts
+++ b/packages/nodes-base/nodes/Copper/descriptions/LeadDescription.ts
@@ -54,7 +54,7 @@ export const leadFields: INodeProperties[] = [
{
displayName: 'Name',
name: 'name',
- description: 'Name of the lead to create.',
+ description: 'Name of the lead to create',
type: 'string',
required: true,
default: '',
@@ -98,7 +98,7 @@ export const leadFields: INodeProperties[] = [
{
displayName: 'Lead ID',
name: 'leadId',
- description: 'ID of the lead to delete.',
+ description: 'ID of the lead to delete',
type: 'string',
required: true,
default: '',
@@ -120,7 +120,7 @@ export const leadFields: INodeProperties[] = [
{
displayName: 'Lead ID',
name: 'leadId',
- description: 'ID of the lead to retrieve.',
+ description: 'ID of the lead to retrieve',
type: 'string',
required: true,
default: '',
@@ -144,7 +144,7 @@ export const leadFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -161,7 +161,7 @@ export const leadFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -202,14 +202,14 @@ export const leadFields: INodeProperties[] = [
name: 'country',
type: 'string',
default: '',
- description: 'Name of the country to filter by.',
+ description: 'Name of the country to filter by',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Name of the lead to filter by.',
+ description: 'Name of the lead to filter by',
},
],
},
@@ -220,7 +220,7 @@ export const leadFields: INodeProperties[] = [
{
displayName: 'Lead ID',
name: 'leadId',
- description: 'ID of the lead to update.',
+ description: 'ID of the lead to update',
type: 'string',
required: true,
default: '',
@@ -258,7 +258,7 @@ export const leadFields: INodeProperties[] = [
name: 'details',
type: 'string',
default: '',
- description: 'Description to set for the lead.',
+ description: 'Description to set for the lead',
},
emailFixedCollection,
{
@@ -266,7 +266,7 @@ export const leadFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name to set for the lead.',
+ description: 'Name to set for the lead',
},
phoneNumbersFixedCollection,
],
diff --git a/packages/nodes-base/nodes/Copper/descriptions/OpportunityDescription.ts b/packages/nodes-base/nodes/Copper/descriptions/OpportunityDescription.ts
index 31496e3b76..ec4896ec33 100644
--- a/packages/nodes-base/nodes/Copper/descriptions/OpportunityDescription.ts
+++ b/packages/nodes-base/nodes/Copper/descriptions/OpportunityDescription.ts
@@ -48,7 +48,7 @@ export const opportunityFields: INodeProperties[] = [
{
displayName: 'Name',
name: 'name',
- description: 'Name of the opportunity to create.',
+ description: 'Name of the opportunity to create',
type: 'string',
required: true,
default: '',
@@ -68,7 +68,7 @@ export const opportunityFields: INodeProperties[] = [
name: 'customerSourceId',
type: 'string',
default: '',
- description: 'ID of the customer source that generated this opportunity.',
+ description: 'ID of the customer source that generated this opportunity',
displayOptions: {
show: {
resource: [
@@ -85,7 +85,7 @@ export const opportunityFields: INodeProperties[] = [
name: 'primaryContactId',
type: 'string',
default: '',
- description: 'ID of the primary company associated with this opportunity.',
+ description: 'ID of the primary company associated with this opportunity',
displayOptions: {
show: {
resource: [
@@ -104,7 +104,7 @@ export const opportunityFields: INodeProperties[] = [
{
displayName: 'Opportunity ID',
name: 'opportunityId',
- description: 'ID of the opportunity to delete.',
+ description: 'ID of the opportunity to delete',
type: 'string',
required: true,
default: '',
@@ -126,7 +126,7 @@ export const opportunityFields: INodeProperties[] = [
{
displayName: 'Opportunity ID',
name: 'opportunityId',
- description: 'ID of the opportunity to retrieve.',
+ description: 'ID of the opportunity to retrieve',
type: 'string',
required: true,
default: '',
@@ -150,7 +150,7 @@ export const opportunityFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -167,7 +167,7 @@ export const opportunityFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -208,14 +208,14 @@ export const opportunityFields: INodeProperties[] = [
name: 'company_ids',
type: 'string',
default: '',
- description: 'Comma-separated IDs of the primary companies to filter by.',
+ description: 'Comma-separated IDs of the primary companies to filter by',
},
{
displayName: 'Customer Source IDs',
name: 'customer_source_ids',
type: 'string',
default: '',
- description: 'Comma-separated IDs of the customer sources to filter by.',
+ description: 'Comma-separated IDs of the customer sources to filter by',
},
],
},
@@ -226,7 +226,7 @@ export const opportunityFields: INodeProperties[] = [
{
displayName: 'Opportunity ID',
name: 'opportunityId',
- description: 'ID of the opportunity to update.',
+ description: 'ID of the opportunity to update',
type: 'string',
required: true,
default: '',
@@ -263,21 +263,21 @@ export const opportunityFields: INodeProperties[] = [
name: 'customer_source_id',
type: 'string',
default: '',
- description: 'ID of the primary company associated with this opportunity.',
+ description: 'ID of the primary company associated with this opportunity',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Name to set for the opportunity.',
+ description: 'Name to set for the opportunity',
},
{
displayName: 'Primary Contact ID',
name: 'primary_contact_id',
type: 'string',
default: '',
- description: 'ID of the customer source that generated this opportunity.',
+ description: 'ID of the customer source that generated this opportunity',
},
],
},
diff --git a/packages/nodes-base/nodes/Copper/descriptions/PersonDescription.ts b/packages/nodes-base/nodes/Copper/descriptions/PersonDescription.ts
index 139da1a190..7c7c6251e0 100644
--- a/packages/nodes-base/nodes/Copper/descriptions/PersonDescription.ts
+++ b/packages/nodes-base/nodes/Copper/descriptions/PersonDescription.ts
@@ -54,7 +54,7 @@ export const personFields: INodeProperties[] = [
{
displayName: 'Name',
name: 'name',
- description: 'Name of the person to create.',
+ description: 'Name of the person to create',
type: 'string',
required: true,
default: '',
@@ -92,7 +92,7 @@ export const personFields: INodeProperties[] = [
name: 'details',
type: 'string',
default: '',
- description: 'Description to set for the person.',
+ description: 'Description to set for the person',
},
{
displayName: 'Email Domain',
@@ -111,7 +111,7 @@ export const personFields: INodeProperties[] = [
{
displayName: 'Person ID',
name: 'personId',
- description: 'ID of the person to delete.',
+ description: 'ID of the person to delete',
type: 'string',
required: true,
default: '',
@@ -133,7 +133,7 @@ export const personFields: INodeProperties[] = [
{
displayName: 'Person ID',
name: 'personId',
- description: 'ID of the person to retrieve.',
+ description: 'ID of the person to retrieve',
type: 'string',
required: true,
default: '',
@@ -157,7 +157,7 @@ export const personFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -174,7 +174,7 @@ export const personFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -215,7 +215,7 @@ export const personFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the person to filter by.',
+ description: 'Name of the person to filter by',
},
],
},
@@ -226,7 +226,7 @@ export const personFields: INodeProperties[] = [
{
displayName: 'Person ID',
name: 'personId',
- description: 'ID of the person to update.',
+ description: 'ID of the person to update',
type: 'string',
required: true,
default: '',
@@ -264,7 +264,7 @@ export const personFields: INodeProperties[] = [
name: 'details',
type: 'string',
default: '',
- description: 'Description to set for the person.',
+ description: 'Description to set for the person',
},
{
displayName: 'Email Domain',
@@ -278,7 +278,7 @@ export const personFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name to set for the person.',
+ description: 'Name to set for the person',
},
phoneNumbersFixedCollection,
],
diff --git a/packages/nodes-base/nodes/Copper/descriptions/ProjectDescription.ts b/packages/nodes-base/nodes/Copper/descriptions/ProjectDescription.ts
index f44f2a500b..d0b7c7daa5 100644
--- a/packages/nodes-base/nodes/Copper/descriptions/ProjectDescription.ts
+++ b/packages/nodes-base/nodes/Copper/descriptions/ProjectDescription.ts
@@ -48,7 +48,7 @@ export const projectFields: INodeProperties[] = [
{
displayName: 'Name',
name: 'name',
- description: 'Name of the project to create.',
+ description: 'Name of the project to create',
type: 'string',
required: true,
default: '',
@@ -85,14 +85,14 @@ export const projectFields: INodeProperties[] = [
name: 'assignee_id',
type: 'string',
default: '',
- description: 'ID of the user who will own the project to create.',
+ description: 'ID of the user who will own the project to create',
},
{
displayName: 'Details',
name: 'details',
type: 'string',
default: '',
- description: 'Description of the project to create.',
+ description: 'Description of the project to create',
},
{
displayName: 'Status',
@@ -119,7 +119,7 @@ export const projectFields: INodeProperties[] = [
{
displayName: 'Project ID',
name: 'projectId',
- description: 'ID of the project to delete.',
+ description: 'ID of the project to delete',
type: 'string',
required: true,
default: '',
@@ -141,7 +141,7 @@ export const projectFields: INodeProperties[] = [
{
displayName: 'Project ID',
name: 'projectId',
- description: 'ID of the project to retrieve.',
+ description: 'ID of the project to retrieve',
type: 'string',
required: true,
default: '',
@@ -165,7 +165,7 @@ export const projectFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -182,7 +182,7 @@ export const projectFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -223,7 +223,7 @@ export const projectFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the project to filter by.',
+ description: 'Name of the project to filter by',
},
],
},
@@ -234,7 +234,7 @@ export const projectFields: INodeProperties[] = [
{
displayName: 'Project ID',
name: 'projectId',
- description: 'ID of the project to update.',
+ description: 'ID of the project to update',
type: 'string',
required: true,
default: '',
@@ -271,21 +271,21 @@ export const projectFields: INodeProperties[] = [
name: 'assignee_id',
type: 'string',
default: '',
- description: 'ID of the user who will own the project.',
+ description: 'ID of the user who will own the project',
},
{
displayName: 'Details',
name: 'details',
type: 'string',
default: '',
- description: 'Description to set for the project.',
+ description: 'Description to set for the project',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Name to set for the project.',
+ description: 'Name to set for the project',
},
{
displayName: 'Status',
diff --git a/packages/nodes-base/nodes/Copper/descriptions/TaskDescription.ts b/packages/nodes-base/nodes/Copper/descriptions/TaskDescription.ts
index b497779b53..08b19e884e 100644
--- a/packages/nodes-base/nodes/Copper/descriptions/TaskDescription.ts
+++ b/packages/nodes-base/nodes/Copper/descriptions/TaskDescription.ts
@@ -84,14 +84,14 @@ export const taskFields: INodeProperties[] = [
name: 'assignee_id',
type: 'string',
default: '',
- description: 'ID of the user who will own the task to create.',
+ description: 'ID of the user who will own the task to create',
},
{
displayName: 'Details',
name: 'details',
type: 'string',
default: '',
- description: 'Description of the task to create.',
+ description: 'Description of the task to create',
},
{
displayName: 'Priority',
@@ -134,7 +134,7 @@ export const taskFields: INodeProperties[] = [
{
displayName: 'Task ID',
name: 'taskId',
- description: 'ID of the task to delete.',
+ description: 'ID of the task to delete',
type: 'string',
required: true,
default: '',
@@ -156,7 +156,7 @@ export const taskFields: INodeProperties[] = [
{
displayName: 'Task ID',
name: 'taskId',
- description: 'ID of the task to retrieve.',
+ description: 'ID of the task to retrieve',
type: 'string',
required: true,
default: '',
@@ -180,7 +180,7 @@ export const taskFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -197,7 +197,7 @@ export const taskFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -238,14 +238,14 @@ export const taskFields: INodeProperties[] = [
name: 'assignee_ids',
type: 'string',
default: '',
- description: 'Comma-separated IDs of assignee IDs to filter by.',
+ description: 'Comma-separated IDs of assignee IDs to filter by',
},
{
displayName: 'Project IDs',
name: 'project_ids',
type: 'string',
default: '',
- description: 'Comma-separated IDs of project IDs to filter by.',
+ description: 'Comma-separated IDs of project IDs to filter by',
},
],
},
@@ -256,7 +256,7 @@ export const taskFields: INodeProperties[] = [
{
displayName: 'Task ID',
name: 'taskId',
- description: 'ID of the task to update.',
+ description: 'ID of the task to update',
type: 'string',
required: true,
default: '',
@@ -293,21 +293,21 @@ export const taskFields: INodeProperties[] = [
name: 'assignee_id',
type: 'string',
default: '',
- description: 'ID of the user who will own the task.',
+ description: 'ID of the user who will own the task',
},
{
displayName: 'Details',
name: 'details',
type: 'string',
default: '',
- description: 'Description to set for the task.',
+ description: 'Description to set for the task',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Name to set for the task.',
+ description: 'Name to set for the task',
},
{
displayName: 'Priority',
diff --git a/packages/nodes-base/nodes/Copper/descriptions/UserDescription.ts b/packages/nodes-base/nodes/Copper/descriptions/UserDescription.ts
index 0507b64c97..f6baa6b09e 100644
--- a/packages/nodes-base/nodes/Copper/descriptions/UserDescription.ts
+++ b/packages/nodes-base/nodes/Copper/descriptions/UserDescription.ts
@@ -34,7 +34,7 @@ export const userFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -51,7 +51,7 @@ export const userFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
diff --git a/packages/nodes-base/nodes/Copper/utils/sharedFields.ts b/packages/nodes-base/nodes/Copper/utils/sharedFields.ts
index fe8615d2c7..d762a9d424 100644
--- a/packages/nodes-base/nodes/Copper/utils/sharedFields.ts
+++ b/packages/nodes-base/nodes/Copper/utils/sharedFields.ts
@@ -43,7 +43,7 @@ export const addressFixedCollection: INodeProperties = {
name: 'country',
type: 'string',
default: '',
- description: 'ISO 3166 alpha-2 country code.',
+ description: 'ISO 3166 alpha-2 country code',
},
],
},
diff --git a/packages/nodes-base/nodes/Cortex/AnalyzerDescriptions.ts b/packages/nodes-base/nodes/Cortex/AnalyzerDescriptions.ts
index 524d7c0684..95de4e03f4 100644
--- a/packages/nodes-base/nodes/Cortex/AnalyzerDescriptions.ts
+++ b/packages/nodes-base/nodes/Cortex/AnalyzerDescriptions.ts
@@ -129,7 +129,7 @@ export const analyzerFields: INodeProperties[] = [
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
{
displayName: 'TLP',
diff --git a/packages/nodes-base/nodes/Cortex/ResponderDescription.ts b/packages/nodes-base/nodes/Cortex/ResponderDescription.ts
index 7ebb5273e7..5762e775b6 100644
--- a/packages/nodes-base/nodes/Cortex/ResponderDescription.ts
+++ b/packages/nodes-base/nodes/Cortex/ResponderDescription.ts
@@ -12,7 +12,7 @@ export const respondersOperations: INodeProperties[] = [
name: 'operation',
type: 'options',
required: true,
- description: 'Choose an operation.',
+ description: 'Choose an operation',
displayOptions: {
show: {
resource: [
@@ -48,7 +48,7 @@ export const responderFields: INodeProperties[] = [
],
},
},
- description: 'Choose the responder.',
+ description: 'Choose the responder',
},
{
displayName: 'Entity Type',
@@ -69,14 +69,14 @@ export const responderFields: INodeProperties[] = [
],
},
default: '',
- description: 'Choose the Data type.',
+ description: 'Choose the Data type',
},
{
displayName: 'JSON Parameters',
name: 'jsonObject',
type: 'boolean',
default: false,
- description: 'Choose between providing JSON object or seperated attributes.',
+ description: 'Choose between providing JSON object or seperated attributes',
displayOptions: {
show: {
resource: [
@@ -167,7 +167,7 @@ export const responderFields: INodeProperties[] = [
name: 'flag',
type: 'boolean',
default: false,
- description: 'Flag of the case default=false.',
+ description: 'Flag of the case default=false',
},
{
displayName: 'TLP',
@@ -284,7 +284,7 @@ export const responderFields: INodeProperties[] = [
name: 'date',
type: 'dateTime',
default: '',
- description: 'Date and time when the alert was raised default=now.',
+ description: 'Date and time when the alert was raised default=now',
},
{
displayName: 'Tags',
@@ -347,14 +347,14 @@ export const responderFields: INodeProperties[] = [
name: 'type',
type: 'string',
default: '',
- description: 'Type of the alert.',
+ description: 'Type of the alert',
},
{
displayName: 'Source',
name: 'source',
type: 'string',
default: '',
- description: 'Source of the alert.',
+ description: 'Source of the alert',
},
{
displayName: 'SourceRef',
@@ -626,7 +626,7 @@ export const responderFields: INodeProperties[] = [
],
},
},
- description: 'Name of the binary property which contains the attachement data.',
+ description: 'Name of the binary property which contains the attachement data',
},
{
displayName: 'Message',
@@ -639,7 +639,7 @@ export const responderFields: INodeProperties[] = [
name: 'startDate',
type: 'dateTime',
default: '',
- description: 'Date and time of the begin of the case default=now.',
+ description: 'Date and time of the begin of the case default=now',
},
{
displayName: 'TLP',
@@ -670,7 +670,7 @@ export const responderFields: INodeProperties[] = [
name: 'ioc',
type: 'boolean',
default: false,
- description: 'Indicates if the observable is an IOC (Indicator of compromise).',
+ description: 'Indicates if the observable is an IOC (Indicator of compromise)',
},
{
displayName: 'Status',
@@ -687,7 +687,7 @@ export const responderFields: INodeProperties[] = [
value: 'Deleted',
},
],
- description: 'Status of the observable (Ok or Deleted) default=Ok.',
+ description: 'Status of the observable (Ok or Deleted) default=Ok',
},
],
},
@@ -741,7 +741,7 @@ export const responderFields: INodeProperties[] = [
type: 'string',
required: false,
default: '',
- description: 'Title of the task.',
+ description: 'Title of the task',
},
{
displayName: 'Status',
diff --git a/packages/nodes-base/nodes/CrateDb/CrateDb.node.ts b/packages/nodes-base/nodes/CrateDb/CrateDb.node.ts
index 5c748eb45a..f7ad2a2a47 100644
--- a/packages/nodes-base/nodes/CrateDb/CrateDb.node.ts
+++ b/packages/nodes-base/nodes/CrateDb/CrateDb.node.ts
@@ -111,7 +111,7 @@ export class CrateDb implements INodeType {
},
default: '',
required: true,
- description: 'Name of the table in which to insert data to.',
+ description: 'Name of the table in which to insert data to',
},
{
displayName: 'Columns',
@@ -124,7 +124,7 @@ export class CrateDb implements INodeType {
},
default: '',
placeholder: 'id,name,description',
- description: 'Comma-separated list of the properties which should used as columns for the new rows.',
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
// ----------------------------------
@@ -180,7 +180,7 @@ export class CrateDb implements INodeType {
},
default: '',
placeholder: 'name,description',
- description: `Comma-separated list of the properties which should used as columns for rows to update.`,
+ description: 'Comma-separated list of the properties which should used as columns for rows to update',
},
// ----------------------------------
@@ -240,7 +240,7 @@ export class CrateDb implements INodeType {
},
default: '',
placeholder: 'quantity,price',
- description: 'Comma-separated list of properties which should be used as query parameters.',
+ description: 'Comma-separated list of properties which should be used as query parameters',
},
],
},
diff --git a/packages/nodes-base/nodes/Cron/Cron.node.ts b/packages/nodes-base/nodes/Cron/Cron.node.ts
index a4b78e3974..2b36c86da8 100644
--- a/packages/nodes-base/nodes/Cron/Cron.node.ts
+++ b/packages/nodes-base/nodes/Cron/Cron.node.ts
@@ -86,7 +86,7 @@ export class Cron implements INodeType {
},
],
default: 'everyDay',
- description: 'How often to trigger.',
+ description: 'How often to trigger',
},
{
displayName: 'Hour',
@@ -107,7 +107,7 @@ export class Cron implements INodeType {
},
},
default: 14,
- description: 'The hour of the day to trigger (24h format).',
+ description: 'The hour of the day to trigger (24h format)',
},
{
displayName: 'Minute',
@@ -127,7 +127,7 @@ export class Cron implements INodeType {
},
},
default: 0,
- description: 'The minute of the day to trigger.',
+ description: 'The minute of the day to trigger',
},
{
displayName: 'Day of Month',
@@ -145,7 +145,7 @@ export class Cron implements INodeType {
maxValue: 31,
},
default: 1,
- description: 'The day of the month to trigger.',
+ description: 'The day of the month to trigger',
},
{
displayName: 'Weekday',
@@ -189,7 +189,7 @@ export class Cron implements INodeType {
},
],
default: '1',
- description: 'The weekday to trigger.',
+ description: 'The weekday to trigger',
},
{
displayName: 'Cron Expression',
@@ -221,7 +221,7 @@ export class Cron implements INodeType {
},
},
default: 2,
- description: 'All how many X minutes/hours it should trigger.',
+ description: 'All how many X minutes/hours it should trigger',
},
{
displayName: 'Unit',
@@ -245,7 +245,7 @@ export class Cron implements INodeType {
},
],
default: 'hours',
- description: 'If it should trigger all X minutes or hours.',
+ description: 'If it should trigger all X minutes or hours',
},
],
},
diff --git a/packages/nodes-base/nodes/CustomerIo/CustomerDescription.ts b/packages/nodes-base/nodes/CustomerIo/CustomerDescription.ts
index fe616fb035..7b316e294e 100644
--- a/packages/nodes-base/nodes/CustomerIo/CustomerDescription.ts
+++ b/packages/nodes-base/nodes/CustomerIo/CustomerDescription.ts
@@ -16,12 +16,12 @@ export const customerOperations: INodeProperties[] = [
{
name: 'Create/Update',
value: 'upsert',
- description: 'Create/Update a customer.',
+ description: 'Create/Update a customer',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete a customer.',
+ description: 'Delete a customer',
},
],
default: 'upsert',
@@ -50,7 +50,7 @@ export const customerFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier for the customer.',
+ description: 'The unique identifier for the customer',
},
/* -------------------------------------------------------------------------- */
@@ -72,7 +72,7 @@ export const customerFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier for the customer.',
+ description: 'The unique identifier for the customer',
},
{
displayName: 'JSON Parameters',
@@ -111,7 +111,7 @@ export const customerFields: INodeProperties[] = [
],
},
},
- description: 'Object of values to set as described here.',
+ description: 'Object of values to set as described here',
},
{
displayName: 'Additional Fields',
@@ -153,7 +153,7 @@ export const customerFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Property name.',
+ description: 'Property name',
placeholder: 'Plan',
},
@@ -163,7 +163,7 @@ export const customerFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Property value.',
+ description: 'Property value',
placeholder: 'Basic',
},
],
@@ -175,14 +175,14 @@ export const customerFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'The email address of the user.',
+ description: 'The email address of the user',
},
{
displayName: 'Created at',
name: 'createdAt',
type: 'dateTime',
default: '',
- description: 'The UNIX timestamp from when the user was created.',
+ description: 'The UNIX timestamp from when the user was created',
},
],
},
diff --git a/packages/nodes-base/nodes/CustomerIo/CustomerIoTrigger.node.ts b/packages/nodes-base/nodes/CustomerIo/CustomerIoTrigger.node.ts
index 88ed65f34d..393ba76d5a 100644
--- a/packages/nodes-base/nodes/CustomerIo/CustomerIoTrigger.node.ts
+++ b/packages/nodes-base/nodes/CustomerIo/CustomerIoTrigger.node.ts
@@ -58,167 +58,167 @@ export class CustomerIoTrigger implements INodeType {
type: 'multiOptions',
required: true,
default: [],
- description: 'The events that can trigger the webhook and whether they are enabled.',
+ description: 'The events that can trigger the webhook and whether they are enabled',
options: [
{
name: 'Customer Subscribed',
value: 'customer.subscribed',
- description: 'Whether the webhook is triggered when a list subscriber is added.',
+ description: 'Whether the webhook is triggered when a list subscriber is added',
},
{
name: 'Customer Unsubscribe',
value: 'customer.unsubscribed',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email Attempted',
value: 'email.attempted',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email Bounced',
value: 'email.bounced',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email clicked',
value: 'email.clicked',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email converted',
value: 'email.converted',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email delivered',
value: 'email.delivered',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email drafted',
value: 'email.drafted',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email failed',
value: 'email.failed',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email opened',
value: 'email.opened',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email sent',
value: 'email.sent',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Email spammed',
value: 'email.spammed',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Push attempted',
value: 'push.attempted',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Push bounced',
value: 'push.bounced',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Push clicked',
value: 'push.clicked',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Push delivered',
value: 'push.delivered',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Push drafted',
value: 'push.drafted',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Push failed',
value: 'push.failed',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Push opened',
value: 'push.opened',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Push sent',
value: 'push.sent',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Slack attempted',
value: 'slack.attempted',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Slack clicked',
value: 'slack.clicked',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Slack drafted',
value: 'slack.drafted',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Slack failed',
value: 'slack.failed',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Slack sent',
value: 'slack.sent',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'SMS attempted',
value: 'sms.attempted',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'SMS bounced',
value: 'sms.bounced',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'SMS clicked',
value: 'sms.clicked',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'SMS delivered',
value: 'sms.delivered',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'SMS drafted',
value: 'sms.drafted',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'SMS failed',
value: 'sms.failed',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'SMS sent',
value: 'sms.sent',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
],
},
diff --git a/packages/nodes-base/nodes/CustomerIo/EventDescription.ts b/packages/nodes-base/nodes/CustomerIo/EventDescription.ts
index a74a96572e..c1fcf76e7a 100644
--- a/packages/nodes-base/nodes/CustomerIo/EventDescription.ts
+++ b/packages/nodes-base/nodes/CustomerIo/EventDescription.ts
@@ -16,12 +16,12 @@ export const eventOperations: INodeProperties[] = [
{
name: 'Track',
value: 'track',
- description: 'Track a customer event.',
+ description: 'Track a customer event',
},
{
name: 'Track Anonymous',
value: 'trackAnonymous',
- description: 'Track an anonymous event.',
+ description: 'Track an anonymous event',
},
],
default: 'track',
@@ -50,7 +50,7 @@ export const eventFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier for the customer.',
+ description: 'The unique identifier for the customer',
},
{
displayName: 'Event Name',
@@ -67,7 +67,7 @@ export const eventFields: INodeProperties[] = [
],
},
},
- description: 'Name of the event to track.',
+ description: 'Name of the event to track',
},
{
displayName: 'JSON Parameters',
@@ -106,7 +106,7 @@ export const eventFields: INodeProperties[] = [
],
},
},
- description: 'Object of values to set as described here.',
+ description: 'Object of values to set as described here',
},
{
displayName: 'Additional Fields',
@@ -148,7 +148,7 @@ export const eventFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Attribute name.',
+ description: 'Attribute name',
placeholder: 'Price',
},
@@ -158,7 +158,7 @@ export const eventFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Attribute value.',
+ description: 'Attribute value',
placeholder: '25.50',
},
],
@@ -193,7 +193,7 @@ export const eventFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier for the customer.',
+ description: 'The unique identifier for the customer',
},
{
displayName: 'JSON Parameters',
@@ -232,7 +232,7 @@ export const eventFields: INodeProperties[] = [
],
},
},
- description: 'Object of values to set as described here.',
+ description: 'Object of values to set as described here',
},
{
displayName: 'Additional Fields',
@@ -274,7 +274,7 @@ export const eventFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Attribute name.',
+ description: 'Attribute name',
placeholder: 'Price',
},
{
@@ -283,7 +283,7 @@ export const eventFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Attribute value.',
+ description: 'Attribute value',
placeholder: '25.50',
},
],
diff --git a/packages/nodes-base/nodes/CustomerIo/SegmentDescription.ts b/packages/nodes-base/nodes/CustomerIo/SegmentDescription.ts
index 2e104938c9..79c7dca5f9 100644
--- a/packages/nodes-base/nodes/CustomerIo/SegmentDescription.ts
+++ b/packages/nodes-base/nodes/CustomerIo/SegmentDescription.ts
@@ -49,7 +49,7 @@ export const segmentFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier of the segment.',
+ description: 'The unique identifier of the segment',
},
{
displayName: 'Customer IDs',
@@ -68,6 +68,6 @@ export const segmentFields: INodeProperties[] = [
],
},
},
- description: 'A list of customer ids to add to the segment.',
+ description: 'A list of customer ids to add to the segment',
},
];
diff --git a/packages/nodes-base/nodes/DateTime/DateTime.node.ts b/packages/nodes-base/nodes/DateTime/DateTime.node.ts
index 36d91248d7..288401ac64 100644
--- a/packages/nodes-base/nodes/DateTime/DateTime.node.ts
+++ b/packages/nodes-base/nodes/DateTime/DateTime.node.ts
@@ -65,7 +65,7 @@ export class DateTime implements INodeType {
},
type: 'string',
default: '',
- description: 'The value that should be converted.',
+ description: 'The value that should be converted',
required: true,
},
{
@@ -81,7 +81,7 @@ export class DateTime implements INodeType {
],
},
},
- description: 'Name of the property to which to write the converted date.',
+ description: 'Name of the property to which to write the converted date',
},
{
displayName: 'Custom Format',
@@ -95,7 +95,7 @@ export class DateTime implements INodeType {
},
type: 'boolean',
default: false,
- description: 'If a predefined format should be selected or custom format entered.',
+ description: 'If a predefined format should be selected or custom format entered',
},
{
displayName: 'To Format',
@@ -113,7 +113,7 @@ export class DateTime implements INodeType {
type: 'string',
default: '',
placeholder: 'YYYY-MM-DD',
- description: 'The format to convert the date to.',
+ description: 'The format to convert the date to',
},
{
displayName: 'To Format',
@@ -167,7 +167,7 @@ export class DateTime implements INodeType {
},
],
default: 'MM/DD/YYYY',
- description: 'The format to convert the date to.',
+ description: 'The format to convert the date to',
},
{
displayName: 'Options',
@@ -198,7 +198,7 @@ export class DateTime implements INodeType {
loadOptionsMethod: 'getTimezones',
},
default: 'UTC',
- description: 'The timezone to convert from.',
+ description: 'The timezone to convert from',
},
{
displayName: 'To Timezone',
@@ -208,7 +208,7 @@ export class DateTime implements INodeType {
loadOptionsMethod: 'getTimezones',
},
default: 'UTC',
- description: 'The timezone to convert to.',
+ description: 'The timezone to convert to',
},
],
},
@@ -224,7 +224,7 @@ export class DateTime implements INodeType {
},
type: 'string',
default: '',
- description: 'The date string or timestamp from which you want to add/subtract time.',
+ description: 'The date string or timestamp from which you want to add/subtract time',
required: true,
},
{
@@ -274,7 +274,7 @@ export class DateTime implements INodeType {
{
displayName: 'Time Unit',
name: 'timeUnit',
- description: 'Time unit for Duration parameter above.',
+ description: 'Time unit for Duration parameter above',
displayOptions: {
show: {
action: [
@@ -337,7 +337,7 @@ export class DateTime implements INodeType {
],
},
},
- description: 'Name of the output property to which to write the converted date.',
+ description: 'Name of the output property to which to write the converted date',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/DeepL/TextDescription.ts b/packages/nodes-base/nodes/DeepL/TextDescription.ts
index 666ff5a7cc..883eed10b1 100644
--- a/packages/nodes-base/nodes/DeepL/TextDescription.ts
+++ b/packages/nodes-base/nodes/DeepL/TextDescription.ts
@@ -8,7 +8,7 @@ export const textOperations: INodeProperties[] = [
name: 'text',
type: 'string',
default: '',
- description: 'Input text to translate.',
+ description: 'Input text to translate',
required: true,
typeOptions: {
alwaysOpenEditWindow: true,
@@ -29,7 +29,7 @@ export const textOperations: INodeProperties[] = [
loadOptionsMethod: 'getLanguages',
},
default: '',
- description: 'Language to translate to.',
+ description: 'Language to translate to',
required: true,
displayOptions: {
show: {
@@ -51,7 +51,7 @@ export const textOperations: INodeProperties[] = [
name: 'sourceLang',
type: 'options',
default: '',
- description: 'Language to translate from.',
+ description: 'Language to translate from',
typeOptions: {
loadOptionsMethod: 'getLanguages',
},
@@ -61,22 +61,22 @@ export const textOperations: INodeProperties[] = [
name: 'splitSentences',
type: 'options',
default: '1',
- description: 'How the translation engine should split sentences.',
+ description: 'How the translation engine should split sentences',
options: [
{
name: 'Interpunction Only',
value: 'nonewlines',
- description: 'Split text on interpunction only, ignoring newlines.',
+ description: 'Split text on interpunction only, ignoring newlines',
},
{
name: 'No Splitting',
value: '0',
- description: 'Treat all text as a single sentence.',
+ description: 'Treat all text as a single sentence',
},
{
name: 'On Punctuation and Newlines',
value: '1',
- description: 'Split text on interpunction and newlines.',
+ description: 'Split text on interpunction and newlines',
},
],
},
@@ -85,17 +85,17 @@ export const textOperations: INodeProperties[] = [
name: 'preserveFormatting',
type: 'options',
default: '0',
- description: 'Whether the translation engine should respect the original formatting, even if it would usually correct some aspects.',
+ description: 'Whether the translation engine should respect the original formatting, even if it would usually correct some aspects',
options: [
{
name: 'Apply corrections',
value: '0',
- description: 'Fix punctuation at the beginning and end of sentences and fixes lower/upper caseing at the beginning.',
+ description: 'Fix punctuation at the beginning and end of sentences and fixes lower/upper caseing at the beginning',
},
{
name: 'Do not correct',
value: '1',
- description: 'Keep text as similar as possible to the original.',
+ description: 'Keep text as similar as possible to the original',
},
],
},
diff --git a/packages/nodes-base/nodes/Demio/EventDescription.ts b/packages/nodes-base/nodes/Demio/EventDescription.ts
index 1568300fec..3182db8f61 100644
--- a/packages/nodes-base/nodes/Demio/EventDescription.ts
+++ b/packages/nodes-base/nodes/Demio/EventDescription.ts
@@ -56,7 +56,7 @@ export const eventFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -80,7 +80,7 @@ export const eventFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -258,7 +258,7 @@ export const eventFields: INodeProperties[] = [
name: 'company',
type: 'string',
default: '',
- description: 'The value for the predefined Company field.',
+ description: 'The value for the predefined Company field',
},
{
displayName: 'Custom Fields',
@@ -279,14 +279,14 @@ export const eventFields: INodeProperties[] = [
name: 'fieldId',
type: 'string',
default: '',
- description: 'Each custom field\'s unique identifier can be found within the Event\'s Registration block in the Customize tab.',
+ description: 'Each custom field\'s unique identifier can be found within the Event\'s Registration block in the Customize tab',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -304,21 +304,21 @@ export const eventFields: INodeProperties[] = [
name: 'gdpr',
type: 'string',
default: '',
- description: 'The value for the predefined GDPR field.',
+ description: 'The value for the predefined GDPR field',
},
{
displayName: 'Last Name',
name: 'last_name',
type: 'string',
default: '',
- description: 'The value for the predefined Last Name field.',
+ description: 'The value for the predefined Last Name field',
},
{
displayName: 'Phone Number',
name: 'phone_number',
type: 'string',
default: '',
- description: 'The value for the predefined Phone Number field.',
+ description: 'The value for the predefined Phone Number field',
},
{
displayName: 'Session ID',
@@ -338,7 +338,7 @@ export const eventFields: INodeProperties[] = [
name: 'website',
type: 'string',
default: '',
- description: 'The value for the predefined Website field.',
+ description: 'The value for the predefined Website field',
},
],
},
diff --git a/packages/nodes-base/nodes/Discourse/CategoryDescription.ts b/packages/nodes-base/nodes/Discourse/CategoryDescription.ts
index 84a6500237..3709b6531c 100644
--- a/packages/nodes-base/nodes/Discourse/CategoryDescription.ts
+++ b/packages/nodes-base/nodes/Discourse/CategoryDescription.ts
@@ -57,7 +57,7 @@ export const categoryFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of the category.',
+ description: 'Name of the category',
},
{
displayName: 'Color',
@@ -75,7 +75,7 @@ export const categoryFields: INodeProperties[] = [
},
},
default: '0000FF',
- description: 'Color of the category.',
+ description: 'Color of the category',
},
{
displayName: 'Text Color',
@@ -93,7 +93,7 @@ export const categoryFields: INodeProperties[] = [
},
},
default: '0000FF',
- description: 'Text color of the category.',
+ description: 'Text color of the category',
},
/* -------------------------------------------------------------------------- */
@@ -114,7 +114,7 @@ export const categoryFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -138,7 +138,7 @@ export const categoryFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -160,7 +160,7 @@ export const categoryFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the category.',
+ description: 'ID of the category',
},
{
displayName: 'Name',
@@ -178,7 +178,7 @@ export const categoryFields: INodeProperties[] = [
},
},
default: '',
- description: 'New name of the category.',
+ description: 'New name of the category',
},
{
displayName: 'Update Fields',
diff --git a/packages/nodes-base/nodes/Discourse/GroupDescription.ts b/packages/nodes-base/nodes/Discourse/GroupDescription.ts
index ef301969a2..b41223b1a8 100644
--- a/packages/nodes-base/nodes/Discourse/GroupDescription.ts
+++ b/packages/nodes-base/nodes/Discourse/GroupDescription.ts
@@ -63,7 +63,7 @@ export const groupFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of the group.',
+ description: 'Name of the group',
},
/* -------------------------------------------------------------------------- */
@@ -84,7 +84,7 @@ export const groupFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -108,7 +108,7 @@ export const groupFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -130,7 +130,7 @@ export const groupFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the group to update.',
+ description: 'ID of the group to update',
},
{
displayName: 'Name',
@@ -148,6 +148,6 @@ export const groupFields: INodeProperties[] = [
},
},
default: '',
- description: 'New name of the group.',
+ description: 'New name of the group',
},
];
diff --git a/packages/nodes-base/nodes/Discourse/PostDescription.ts b/packages/nodes-base/nodes/Discourse/PostDescription.ts
index 09bed8459b..a3f23a4826 100644
--- a/packages/nodes-base/nodes/Discourse/PostDescription.ts
+++ b/packages/nodes-base/nodes/Discourse/PostDescription.ts
@@ -61,7 +61,7 @@ export const postFields: INodeProperties[] = [
},
},
default: '',
- description: 'Title of the post.',
+ description: 'Title of the post',
},
{
displayName: 'Content',
@@ -82,7 +82,7 @@ export const postFields: INodeProperties[] = [
},
},
default: '',
- description: 'Content of the post.',
+ description: 'Content of the post',
},
{
displayName: 'Additional Fields',
@@ -147,7 +147,7 @@ export const postFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the post.',
+ description: 'ID of the post',
},
/* -------------------------------------------------------------------------- */
@@ -168,7 +168,7 @@ export const postFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -192,7 +192,7 @@ export const postFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* post:update */
@@ -213,7 +213,7 @@ export const postFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the post.',
+ description: 'ID of the post',
},
{
displayName: 'Content',
diff --git a/packages/nodes-base/nodes/Discourse/SearchDescription.ts b/packages/nodes-base/nodes/Discourse/SearchDescription.ts
index 634007e8b1..407a8f01ad 100644
--- a/packages/nodes-base/nodes/Discourse/SearchDescription.ts
+++ b/packages/nodes-base/nodes/Discourse/SearchDescription.ts
@@ -47,7 +47,7 @@ export const searchFields: INodeProperties[] = [
},
},
default: '',
- description: 'Term to search for.',
+ description: 'Term to search for',
},
{
displayName: 'Simplify Response',
@@ -64,6 +64,6 @@ export const searchFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
];
diff --git a/packages/nodes-base/nodes/Discourse/UserDescription.ts b/packages/nodes-base/nodes/Discourse/UserDescription.ts
index 46b4fafbb5..c87851a4ee 100644
--- a/packages/nodes-base/nodes/Discourse/UserDescription.ts
+++ b/packages/nodes-base/nodes/Discourse/UserDescription.ts
@@ -57,7 +57,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of the user to create.',
+ description: 'Name of the user to create',
},
{
displayName: 'Email',
@@ -75,7 +75,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email of the user to create.',
+ description: 'Email of the user to create',
},
{
displayName: 'Username',
@@ -93,7 +93,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: `The username of the user to create.`,
+ description: 'The username of the user to create',
},
{
displayName: 'Password',
@@ -114,7 +114,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: `The password of the user to create.`,
+ description: 'The password of the user to create',
},
{
displayName: 'Additional Fields',
@@ -177,7 +177,7 @@ export const userFields: INodeProperties[] = [
},
},
default: 'username',
- description: 'What to search by.',
+ description: 'What to search by',
},
{
displayName: 'Username',
@@ -198,7 +198,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: `The username of the user to return.`,
+ description: 'The username of the user to return',
},
{
displayName: 'SSO External ID',
@@ -219,7 +219,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: `Discourse SSO external ID.`,
+ description: 'Discourse SSO external ID',
},
/* -------------------------------------------------------------------------- */
@@ -262,7 +262,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: `User flags to search for.`,
+ description: 'User flags to search for',
},
{
displayName: 'Return All',
@@ -279,7 +279,7 @@ export const userFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -303,6 +303,6 @@ export const userFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Discourse/UserGroupDescription.ts b/packages/nodes-base/nodes/Discourse/UserGroupDescription.ts
index c9a4295e5c..9cccd01ed3 100644
--- a/packages/nodes-base/nodes/Discourse/UserGroupDescription.ts
+++ b/packages/nodes-base/nodes/Discourse/UserGroupDescription.ts
@@ -70,7 +70,7 @@ export const userGroupFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the group.',
+ description: 'ID of the group',
},
/* -------------------------------------------------------------------------- */
@@ -110,7 +110,7 @@ export const userGroupFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the group to remove.',
+ description: 'ID of the group to remove',
},
];
diff --git a/packages/nodes-base/nodes/Disqus/Disqus.node.ts b/packages/nodes-base/nodes/Disqus/Disqus.node.ts
index a7d3e7d33c..b1a4c35571 100644
--- a/packages/nodes-base/nodes/Disqus/Disqus.node.ts
+++ b/packages/nodes-base/nodes/Disqus/Disqus.node.ts
@@ -106,7 +106,7 @@ export class Disqus implements INodeType {
],
},
},
- description: 'The short name(aka ID) of the forum to get.',
+ description: 'The short name(aka ID) of the forum to get',
},
{
displayName: 'Additional Fields',
@@ -205,7 +205,7 @@ export class Disqus implements INodeType {
],
},
},
- description: 'The short name(aka ID) of the forum to get.',
+ description: 'The short name(aka ID) of the forum to get',
},
{
displayName: 'Return All',
@@ -222,7 +222,7 @@ export class Disqus implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -246,7 +246,7 @@ export class Disqus implements INodeType {
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -316,7 +316,7 @@ export class Disqus implements INodeType {
},
],
default: [],
- description: 'You may specify filters for your response.',
+ description: 'You may specify filters for your response',
},
{
displayName: 'Include',
@@ -329,7 +329,7 @@ export class Disqus implements INodeType {
},
],
default: [],
- description: 'You may specify relations to include with your response.',
+ description: 'You may specify relations to include with your response',
},
{
displayName: 'Order',
@@ -346,14 +346,14 @@ export class Disqus implements INodeType {
},
],
default: 'asc',
- description: 'You may specify order to sort your response.',
+ description: 'You may specify order to sort your response',
},
{
displayName: 'Query',
name: 'query',
type: 'string',
default: '',
- description: 'You may specify query forChoices: asc, desc your response.',
+ description: 'You may specify query forChoices: asc, desc your response',
},
{
displayName: 'Related',
@@ -397,7 +397,7 @@ export class Disqus implements INodeType {
],
},
},
- description: 'The short name(aka ID) of the forum to get Categories.',
+ description: 'The short name(aka ID) of the forum to get Categories',
},
{
displayName: 'Return All',
@@ -414,7 +414,7 @@ export class Disqus implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -438,7 +438,7 @@ export class Disqus implements INodeType {
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -472,7 +472,7 @@ export class Disqus implements INodeType {
},
],
default: 'asc',
- description: 'You may specify order to sort your response.',
+ description: 'You may specify order to sort your response',
},
],
},
@@ -496,7 +496,7 @@ export class Disqus implements INodeType {
],
},
},
- description: 'The short name(aka ID) of the forum to get Threads.',
+ description: 'The short name(aka ID) of the forum to get Threads',
},
{
displayName: 'Return All',
@@ -513,7 +513,7 @@ export class Disqus implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -537,7 +537,7 @@ export class Disqus implements INodeType {
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -592,7 +592,7 @@ export class Disqus implements INodeType {
},
],
default: [],
- description: 'You may specify relations to include with your response.',
+ description: 'You may specify relations to include with your response',
},
{
displayName: 'Order',
@@ -609,7 +609,7 @@ export class Disqus implements INodeType {
},
],
default: 'asc',
- description: 'You may specify order to sort your response.',
+ description: 'You may specify order to sort your response',
},
{
displayName: 'Since',
diff --git a/packages/nodes-base/nodes/Drift/ContactDescription.ts b/packages/nodes-base/nodes/Drift/ContactDescription.ts
index c622b733a0..8b8d54fc1e 100644
--- a/packages/nodes-base/nodes/Drift/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Drift/ContactDescription.ts
@@ -65,7 +65,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'The email of the contact.',
+ description: 'The email of the contact',
},
{
displayName: 'Additional Fields',
@@ -89,14 +89,14 @@ export const contactFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'The name of the contact.',
+ description: 'The name of the contact',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'The phone number associated with the contact.',
+ description: 'The phone number associated with the contact',
},
],
},
@@ -119,7 +119,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the contact.',
+ description: 'Unique identifier for the contact',
},
{
displayName: 'Update Fields',
@@ -143,21 +143,21 @@ export const contactFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'The email of the contact.',
+ description: 'The email of the contact',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'The name of the contact.',
+ description: 'The name of the contact',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'The phone number associated with the contact.',
+ description: 'The phone number associated with the contact',
},
],
},
@@ -180,7 +180,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the contact.',
+ description: 'Unique identifier for the contact',
},
/* -------------------------------------------------------------------------- */
/* contact:delete */
@@ -201,6 +201,6 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the contact.',
+ description: 'Unique identifier for the contact',
},
];
diff --git a/packages/nodes-base/nodes/Dropbox/Dropbox.node.ts b/packages/nodes-base/nodes/Dropbox/Dropbox.node.ts
index 41a6e54b11..0f21b339b9 100644
--- a/packages/nodes-base/nodes/Dropbox/Dropbox.node.ts
+++ b/packages/nodes-base/nodes/Dropbox/Dropbox.node.ts
@@ -70,7 +70,7 @@ export class Dropbox implements INodeType {
},
],
default: 'accessToken',
- description: 'Means of authenticating with the service.',
+ description: 'Means of authenticating with the service',
},
{
displayName: 'Resource',
@@ -227,7 +227,7 @@ export class Dropbox implements INodeType {
},
},
placeholder: '/invoices/original.txt',
- description: 'The path of file or folder to copy.',
+ description: 'The path of file or folder to copy',
},
{
displayName: 'To Path',
@@ -247,7 +247,7 @@ export class Dropbox implements INodeType {
},
},
placeholder: '/invoices/copy.txt',
- description: 'The destination path of file or folder.',
+ description: 'The destination path of file or folder',
},
// ----------------------------------
@@ -296,7 +296,7 @@ export class Dropbox implements INodeType {
},
},
placeholder: '/invoices/old_name.txt',
- description: 'The path of file or folder to move.',
+ description: 'The path of file or folder to move',
},
{
displayName: 'To Path',
@@ -316,7 +316,7 @@ export class Dropbox implements INodeType {
},
},
placeholder: '/invoices/new_name.txt',
- description: 'The new path of file or folder.',
+ description: 'The new path of file or folder',
},
// ----------------------------------
@@ -357,7 +357,7 @@ export class Dropbox implements INodeType {
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
// ----------------------------------
@@ -397,7 +397,7 @@ export class Dropbox implements INodeType {
],
},
},
- description: 'If the data to upload should be taken from binary field.',
+ description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'File Content',
@@ -419,7 +419,7 @@ export class Dropbox implements INodeType {
},
placeholder: '',
- description: 'The text content of the file to upload.',
+ description: 'The text content of the file to upload',
},
{
displayName: 'Binary Property',
@@ -442,7 +442,7 @@ export class Dropbox implements INodeType {
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
// ----------------------------------
@@ -508,7 +508,7 @@ export class Dropbox implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -528,7 +528,7 @@ export class Dropbox implements INodeType {
},
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Simple',
@@ -545,7 +545,7 @@ export class Dropbox implements INodeType {
},
},
default: true,
- description: 'When set to true a simplify version of the response will be used else the raw data.',
+ description: 'When set to true a simplify version of the response will be used else the raw data',
},
{
displayName: 'Filters',
@@ -675,7 +675,7 @@ export class Dropbox implements INodeType {
},
},
placeholder: '/invoices/2019/',
- description: 'The path of which to list the content.',
+ description: 'The path of which to list the content',
},
{
displayName: 'Return All',
@@ -692,7 +692,7 @@ export class Dropbox implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -712,7 +712,7 @@ export class Dropbox implements INodeType {
},
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/ERPNext/DocumentDescription.ts b/packages/nodes-base/nodes/ERPNext/DocumentDescription.ts
index aca6208cf3..cfeed5afd0 100644
--- a/packages/nodes-base/nodes/ERPNext/DocumentDescription.ts
+++ b/packages/nodes-base/nodes/ERPNext/DocumentDescription.ts
@@ -18,27 +18,27 @@ export const documentOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
- description: 'Create a document.',
+ description: 'Create a document',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete a document.',
+ description: 'Delete a document',
},
{
name: 'Get',
value: 'get',
- description: 'Retrieve a document.',
+ description: 'Retrieve a document',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Retrieve all documents.',
+ description: 'Retrieve all documents',
},
{
name: 'Update',
value: 'update',
- description: 'Update a document.',
+ description: 'Update a document',
},
],
default: 'create',
@@ -58,7 +58,7 @@ export const documentFields: INodeProperties[] = [
loadOptionsMethod: 'getDocTypes',
},
default: '',
- description: 'DocType whose documents to retrieve.',
+ description: 'DocType whose documents to retrieve',
placeholder: 'Customer',
displayOptions: {
show: {
@@ -76,7 +76,7 @@ export const documentFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all items.',
+ description: 'Return all items',
displayOptions: {
show: {
resource: [
@@ -93,7 +93,7 @@ export const documentFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
displayOptions: {
show: {
resource: [
@@ -136,7 +136,7 @@ export const documentFields: INodeProperties[] = [
],
},
default: [],
- description: 'Comma-separated list of fields to return.',
+ description: 'Comma-separated list of fields to return',
placeholder: 'name,country',
},
{
@@ -203,7 +203,7 @@ export const documentFields: INodeProperties[] = [
name: 'value',
type: 'string',
default: '',
- description: 'Value of the operator condition.',
+ description: 'Value of the operator condition',
},
],
},
@@ -224,7 +224,7 @@ export const documentFields: INodeProperties[] = [
loadOptionsMethod: 'getDocTypes',
},
required: true,
- description: 'DocType you would like to create.',
+ description: 'DocType you would like to create',
placeholder: 'Customer',
displayOptions: {
show: {
@@ -297,7 +297,7 @@ export const documentFields: INodeProperties[] = [
loadOptionsMethod: 'getDocTypes',
},
default: '',
- description: 'The type of document you would like to get.',
+ description: 'The type of document you would like to get',
displayOptions: {
show: {
resource: [
@@ -315,7 +315,7 @@ export const documentFields: INodeProperties[] = [
name: 'documentName',
type: 'string',
default: '',
- description: 'The name (ID) of document you would like to get.',
+ description: 'The name (ID) of document you would like to get',
displayOptions: {
show: {
resource: [
@@ -340,7 +340,7 @@ export const documentFields: INodeProperties[] = [
loadOptionsMethod: 'getDocTypes',
},
default: '',
- description: 'The type of document you would like to delete.',
+ description: 'The type of document you would like to delete',
displayOptions: {
show: {
resource: [
@@ -358,7 +358,7 @@ export const documentFields: INodeProperties[] = [
name: 'documentName',
type: 'string',
default: '',
- description: 'The name (ID) of document you would like to get.',
+ description: 'The name (ID) of document you would like to get',
displayOptions: {
show: {
resource: [
@@ -401,7 +401,7 @@ export const documentFields: INodeProperties[] = [
name: 'documentName',
type: 'string',
default: '',
- description: 'The name (ID) of document you would like to get.',
+ description: 'The name (ID) of document you would like to get',
displayOptions: {
show: {
resource: [
@@ -419,7 +419,7 @@ export const documentFields: INodeProperties[] = [
name: 'properties',
type: 'fixedCollection',
placeholder: 'Add Property',
- description: 'Properties of request body.',
+ description: 'Properties of request body',
default: {},
typeOptions: {
multipleValues: true,
diff --git a/packages/nodes-base/nodes/EditImage/EditImage.node.ts b/packages/nodes-base/nodes/EditImage/EditImage.node.ts
index 34e58ad7ed..40f83f3cf7 100644
--- a/packages/nodes-base/nodes/EditImage/EditImage.node.ts
+++ b/packages/nodes-base/nodes/EditImage/EditImage.node.ts
@@ -104,7 +104,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'The background color of the image to create.',
+ description: 'The background color of the image to create',
},
{
displayName: 'Image Width',
@@ -121,7 +121,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'The width of the image to create.',
+ description: 'The width of the image to create',
},
{
displayName: 'Image Height',
@@ -138,7 +138,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'The height of the image to create.',
+ description: 'The height of the image to create',
},
@@ -171,7 +171,7 @@ const nodeOperationOptions: INodeProperties[] = [
},
],
default: 'rectangle',
- description: 'The primitive to draw.',
+ description: 'The primitive to draw',
},
{
displayName: 'Color',
@@ -207,7 +207,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'X (horizontal) start position of the primitive.',
+ description: 'X (horizontal) start position of the primitive',
},
{
displayName: 'Start Position Y',
@@ -226,7 +226,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Y (horizontal) start position of the primitive.',
+ description: 'Y (horizontal) start position of the primitive',
},
{
displayName: 'End Position X',
@@ -245,7 +245,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'X (horizontal) end position of the primitive.',
+ description: 'X (horizontal) end position of the primitive',
},
{
displayName: 'End Position Y',
@@ -264,7 +264,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Y (horizontal) end position of the primitive.',
+ description: 'Y (horizontal) end position of the primitive',
},
{
displayName: 'Corner Radius',
@@ -281,7 +281,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'The radius of the corner to create round corners.',
+ description: 'The radius of the corner to create round corners',
},
// ----------------------------------
@@ -303,7 +303,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Text to write on the image.',
+ description: 'Text to write on the image',
},
{
displayName: 'Font Size',
@@ -317,7 +317,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Size of the text.',
+ description: 'Size of the text',
},
{
displayName: 'Font Color',
@@ -331,7 +331,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Color of the text.',
+ description: 'Color of the text',
},
{
displayName: 'Position X',
@@ -345,7 +345,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'X (horizontal) position of the text.',
+ description: 'X (horizontal) position of the text',
},
{
displayName: 'Position Y',
@@ -359,7 +359,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Y (vertical) position of the text.',
+ description: 'Y (vertical) position of the text',
},
{
displayName: 'Max Line Length',
@@ -376,7 +376,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Max amount of characters in a line before a line-break should get added.',
+ description: 'Max amount of characters in a line before a line-break should get added',
},
// ----------------------------------
@@ -463,7 +463,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Color of the border.',
+ description: 'Color of the border',
},
@@ -483,7 +483,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'The name of the binary property which contains the data of the image to composite on top of image which is found in Property Name.',
+ description: 'The name of the binary property which contains the data of the image to composite on top of image which is found in Property Name',
},
{
displayName: 'Operator',
@@ -587,7 +587,7 @@ const nodeOperationOptions: INodeProperties[] = [
},
],
default: 'Over',
- description: 'The operator to use to combine the images.',
+ description: 'The operator to use to combine the images',
},
{
displayName: 'Position X',
@@ -601,7 +601,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'X (horizontal) position of composite image.',
+ description: 'X (horizontal) position of composite image',
},
{
displayName: 'Position Y',
@@ -615,7 +615,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Y (vertical) position of composite image.',
+ description: 'Y (vertical) position of composite image',
},
// ----------------------------------
@@ -661,7 +661,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'X (horizontal) position to crop from.',
+ description: 'X (horizontal) position to crop from',
},
{
displayName: 'Position Y',
@@ -675,7 +675,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Y (vertical) position to crop from.',
+ description: 'Y (vertical) position to crop from',
},
// ----------------------------------
@@ -742,7 +742,7 @@ const nodeOperationOptions: INodeProperties[] = [
{
name: 'Percent',
value: 'percent',
- description: 'Width and height are specified in percents.',
+ description: 'Width and height are specified in percents',
},
],
default: 'maximumArea',
@@ -753,7 +753,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'How to resize the image.',
+ description: 'How to resize the image',
},
// ----------------------------------
@@ -792,7 +792,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'The color to use for the background when image gets rotated by anything which is not a multiple of 90.',
+ description: 'The color to use for the background when image gets rotated by anything which is not a multiple of 90',
},
@@ -811,7 +811,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'X (horizontal) shear degrees.',
+ description: 'X (horizontal) shear degrees',
},
{
displayName: 'Degrees Y',
@@ -825,7 +825,7 @@ const nodeOperationOptions: INodeProperties[] = [
],
},
},
- description: 'Y (vertical) shear degrees.',
+ description: 'Y (vertical) shear degrees',
},
@@ -893,7 +893,7 @@ export class EditImage implements INodeType {
name: 'dataPropertyName',
type: 'string',
default: 'data',
- description: 'Name of the binary property in which the image data can be found.',
+ description: 'Name of the binary property in which the image data can be found',
},
@@ -916,7 +916,7 @@ export class EditImage implements INodeType {
],
},
},
- description: 'The operations to perform.',
+ description: 'The operations to perform',
default: {},
options: [
{
@@ -947,7 +947,7 @@ export class EditImage implements INodeType {
loadOptionsMethod: 'getFonts',
},
default: 'default',
- description: 'The font to use.',
+ description: 'The font to use',
},
],
},
@@ -974,7 +974,7 @@ export class EditImage implements INodeType {
name: 'fileName',
type: 'string',
default: '',
- description: 'File name to set in binary data.',
+ description: 'File name to set in binary data',
},
{
displayName: 'Font',
@@ -991,7 +991,7 @@ export class EditImage implements INodeType {
loadOptionsMethod: 'getFonts',
},
default: 'default',
- description: 'The font to use.',
+ description: 'The font to use',
},
{
displayName: 'Format',
@@ -1020,7 +1020,7 @@ export class EditImage implements INodeType {
},
],
default: 'jpeg',
- description: 'Set the output image format.',
+ description: 'Set the output image format',
},
{
displayName: 'Quality',
@@ -1040,7 +1040,7 @@ export class EditImage implements INodeType {
],
},
},
- description: 'Sets the jpeg|png|tiff compression level from 0 to 100 (best).',
+ description: 'Sets the jpeg|png|tiff compression level from 0 to 100 (best)',
},
],
},
diff --git a/packages/nodes-base/nodes/Egoi/Egoi.node.ts b/packages/nodes-base/nodes/Egoi/Egoi.node.ts
index fec8dcdd37..8705a0cb30 100644
--- a/packages/nodes-base/nodes/Egoi/Egoi.node.ts
+++ b/packages/nodes-base/nodes/Egoi/Egoi.node.ts
@@ -107,7 +107,7 @@ export class Egoi implements INodeType {
},
},
default: '',
- description: 'ID of list to operate on.',
+ description: 'ID of list to operate on',
},
{
displayName: 'Email',
@@ -121,7 +121,7 @@ export class Egoi implements INodeType {
},
},
default: '',
- description: 'Email address for a subscriber.',
+ description: 'Email address for a subscriber',
},
{
displayName: 'Contact ID',
@@ -138,7 +138,7 @@ export class Egoi implements INodeType {
},
},
default: '',
- description: 'Contact ID of the subscriber.',
+ description: 'Contact ID of the subscriber',
},
{
displayName: 'Resolve Data',
@@ -177,14 +177,14 @@ export class Egoi implements INodeType {
name: 'birth_date',
type: 'dateTime',
default: '',
- description: 'Birth date of a subscriber.',
+ description: 'Birth date of a subscriber',
},
{
displayName: 'Cellphone',
name: 'cellphone',
type: 'string',
default: '',
- description: 'Cellphone of a subscriber.',
+ description: 'Cellphone of a subscriber',
},
{
displayName: 'Extra Fields',
@@ -230,14 +230,14 @@ export class Egoi implements INodeType {
name: 'first_name',
type: 'string',
default: '',
- description: 'Name of a subscriber.',
+ description: 'Name of a subscriber',
},
{
displayName: 'Last Name',
name: 'last_name',
type: 'string',
default: '',
- description: 'Name of a subscriber.',
+ description: 'Name of a subscriber',
},
{
displayName: 'Status',
@@ -262,7 +262,7 @@ export class Egoi implements INodeType {
},
],
default: 'active',
- description: `Subscriber's current status.`,
+ description: 'Subscriber\'s current status',
},
{
displayName: 'Tags IDs',
@@ -298,21 +298,21 @@ export class Egoi implements INodeType {
name: 'birth_date',
type: 'dateTime',
default: '',
- description: 'Birth date of subscriber.',
+ description: 'Birth date of subscriber',
},
{
displayName: 'Cellphone',
name: 'cellphone',
type: 'string',
default: '',
- description: 'Cellphone of subscriber.',
+ description: 'Cellphone of subscriber',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'Email address for subscriber.',
+ description: 'Email address for subscriber',
},
{
displayName: 'Extra Fields',
@@ -358,14 +358,14 @@ export class Egoi implements INodeType {
name: 'first_name',
type: 'string',
default: '',
- description: 'Name of subscriber.',
+ description: 'Name of subscriber',
},
{
displayName: 'Last Name',
name: 'last_name',
type: 'string',
default: '',
- description: 'Name of subscriber.',
+ description: 'Name of subscriber',
},
{
displayName: 'Status',
@@ -391,7 +391,7 @@ export class Egoi implements INodeType {
],
default: 'active',
- description: `Subscriber's current status.`,
+ description: 'Subscriber\'s current status',
},
{
displayName: 'Tags IDs',
@@ -450,7 +450,7 @@ export class Egoi implements INodeType {
},
},
default: '',
- description: 'Contact ID of the subscriber.',
+ description: 'Contact ID of the subscriber',
},
{
displayName: 'Email',
@@ -470,7 +470,7 @@ export class Egoi implements INodeType {
},
},
default: '',
- description: 'Email address for subscriber.',
+ description: 'Email address for subscriber',
},
{
displayName: 'Return All',
@@ -487,7 +487,7 @@ export class Egoi implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -511,7 +511,7 @@ export class Egoi implements INodeType {
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Simplify Response',
@@ -529,7 +529,7 @@ export class Egoi implements INodeType {
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
],
};
diff --git a/packages/nodes-base/nodes/EmailReadImap/EmailReadImap.node.ts b/packages/nodes-base/nodes/EmailReadImap/EmailReadImap.node.ts
index 24842fc8f9..8f75b3fb74 100644
--- a/packages/nodes-base/nodes/EmailReadImap/EmailReadImap.node.ts
+++ b/packages/nodes-base/nodes/EmailReadImap/EmailReadImap.node.ts
@@ -94,17 +94,17 @@ export class EmailReadImap implements INodeType {
{
name: 'RAW',
value: 'raw',
- description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used.',
+ description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used',
},
{
name: 'Resolved',
value: 'resolved',
- description: 'Returns the full email with all data resolved and attachments saved as binary data.',
+ description: 'Returns the full email with all data resolved and attachments saved as binary data',
},
{
name: 'Simple',
value: 'simple',
- description: 'Returns the full email; do not use if you wish to gather inline attachments.',
+ description: 'Returns the full email; do not use if you wish to gather inline attachments',
},
],
default: 'simple',
@@ -160,14 +160,14 @@ export class EmailReadImap implements INodeType {
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
- description: 'Do connect even if SSL certificate validation is not possible.',
+ description: 'Do connect even if SSL certificate validation is not possible',
},
{
displayName: 'Force reconnect',
name: 'forceReconnect',
type: 'number',
default: 60,
- description: 'Sets an interval (in minutes) to force a reconnection.',
+ description: 'Sets an interval (in minutes) to force a reconnection',
},
],
},
diff --git a/packages/nodes-base/nodes/EmailSend/EmailSend.node.ts b/packages/nodes-base/nodes/EmailSend/EmailSend.node.ts
index df07edfdfd..e71aa91fdb 100644
--- a/packages/nodes-base/nodes/EmailSend/EmailSend.node.ts
+++ b/packages/nodes-base/nodes/EmailSend/EmailSend.node.ts
@@ -39,7 +39,7 @@ export class EmailSend implements INodeType {
default: '',
required: true,
placeholder: 'admin@example.com',
- description: 'Email address of the sender optional with name.',
+ description: 'Email address of the sender optional with name',
},
{
displayName: 'To Email',
@@ -48,7 +48,7 @@ export class EmailSend implements INodeType {
default: '',
required: true,
placeholder: 'info@example.com',
- description: 'Email address of the recipient.',
+ description: 'Email address of the recipient',
},
{
displayName: 'CC Email',
@@ -56,7 +56,7 @@ export class EmailSend implements INodeType {
type: 'string',
default: '',
placeholder: 'cc@example.com',
- description: 'Email address of CC recipient.',
+ description: 'Email address of CC recipient',
},
{
displayName: 'BCC Email',
@@ -64,7 +64,7 @@ export class EmailSend implements INodeType {
type: 'string',
default: '',
placeholder: 'bcc@example.com',
- description: 'Email address of BCC recipient.',
+ description: 'Email address of BCC recipient',
},
{
displayName: 'Subject',
@@ -72,7 +72,7 @@ export class EmailSend implements INodeType {
type: 'string',
default: '',
placeholder: 'My subject line',
- description: 'Subject line of the email.',
+ description: 'Subject line of the email',
},
{
displayName: 'Text',
@@ -83,7 +83,7 @@ export class EmailSend implements INodeType {
rows: 5,
},
default: '',
- description: 'Plain text message of email.',
+ description: 'Plain text message of email',
},
{
displayName: 'HTML',
@@ -93,7 +93,7 @@ export class EmailSend implements INodeType {
rows: 5,
},
default: '',
- description: 'HTML text message of email.',
+ description: 'HTML text message of email',
},
{
displayName: 'Attachments',
@@ -114,7 +114,7 @@ export class EmailSend implements INodeType {
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
- description: 'Do connect even if SSL certificate validation is not possible.',
+ description: 'Do connect even if SSL certificate validation is not possible',
},
],
},
diff --git a/packages/nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts b/packages/nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts
index f3a4cc9a7b..8a77393b89 100644
--- a/packages/nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts
+++ b/packages/nodes-base/nodes/Eventbrite/EventbriteTrigger.node.ts
@@ -174,7 +174,7 @@ export class EventbriteTrigger implements INodeType {
],
required: true,
default: [],
- description: 'One or more action to subscribe to.',
+ description: 'One or more action to subscribe to',
},
{
displayName: 'Resolve Data',
diff --git a/packages/nodes-base/nodes/ExecuteCommand/ExecuteCommand.node.ts b/packages/nodes-base/nodes/ExecuteCommand/ExecuteCommand.node.ts
index 3ea81c8936..1a753a4aa3 100644
--- a/packages/nodes-base/nodes/ExecuteCommand/ExecuteCommand.node.ts
+++ b/packages/nodes-base/nodes/ExecuteCommand/ExecuteCommand.node.ts
@@ -66,7 +66,7 @@ export class ExecuteCommand implements INodeType {
name: 'executeOnce',
type: 'boolean',
default: true,
- description: 'If activated it executes only once instead of once for each entry.',
+ description: 'If activated it executes only once instead of once for each entry',
},
{
displayName: 'Command',
diff --git a/packages/nodes-base/nodes/ExecuteWorkflow/ExecuteWorkflow.node.ts b/packages/nodes-base/nodes/ExecuteWorkflow/ExecuteWorkflow.node.ts
index b374b18739..83ff97d143 100644
--- a/packages/nodes-base/nodes/ExecuteWorkflow/ExecuteWorkflow.node.ts
+++ b/packages/nodes-base/nodes/ExecuteWorkflow/ExecuteWorkflow.node.ts
@@ -37,26 +37,26 @@ export class ExecuteWorkflow implements INodeType {
{
name: 'Database',
value: 'database',
- description: 'Load the workflow from the database by ID.',
+ description: 'Load the workflow from the database by ID',
},
{
name: 'Local File',
value: 'localFile',
- description: 'Load the workflow from a locally saved file.',
+ description: 'Load the workflow from a locally saved file',
},
{
name: 'Parameter',
value: 'parameter',
- description: 'Load the workflow from a parameter.',
+ description: 'Load the workflow from a parameter',
},
{
name: 'URL',
value: 'url',
- description: 'Load the workflow from an URL.',
+ description: 'Load the workflow from an URL',
},
],
default: 'database',
- description: 'Where to get the workflow to execute from.',
+ description: 'Where to get the workflow to execute from',
},
// ----------------------------------
@@ -75,7 +75,7 @@ export class ExecuteWorkflow implements INodeType {
},
default: '',
required: true,
- description: 'The workflow to execute.',
+ description: 'The workflow to execute',
},
// ----------------------------------
@@ -95,7 +95,7 @@ export class ExecuteWorkflow implements INodeType {
default: '',
placeholder: '/data/workflow.json',
required: true,
- description: 'The path to local JSON workflow file to execute.',
+ description: 'The path to local JSON workflow file to execute',
},
// ----------------------------------
@@ -119,7 +119,7 @@ export class ExecuteWorkflow implements INodeType {
},
default: '\n\n\n',
required: true,
- description: 'The workflow JSON code to execute.',
+ description: 'The workflow JSON code to execute',
},
// ----------------------------------
@@ -139,7 +139,7 @@ export class ExecuteWorkflow implements INodeType {
default: '',
placeholder: 'https://example.com/workflow.json',
required: true,
- description: 'The URL from which to load the workflow from.',
+ description: 'The URL from which to load the workflow from',
},
{
displayName: 'Any data you pass into this node will be output by the start node of the workflow to be executed. More info',
diff --git a/packages/nodes-base/nodes/Facebook/FacebookGraphApi.node.ts b/packages/nodes-base/nodes/Facebook/FacebookGraphApi.node.ts
index c6e4e2d4f5..dc16c505cd 100644
--- a/packages/nodes-base/nodes/Facebook/FacebookGraphApi.node.ts
+++ b/packages/nodes-base/nodes/Facebook/FacebookGraphApi.node.ts
@@ -70,7 +70,7 @@ export class FacebookGraphApi implements INodeType {
},
],
default: 'GET',
- description: 'The HTTP Method to be used for the request.',
+ description: 'The HTTP Method to be used for the request',
required: true,
},
{
@@ -140,7 +140,7 @@ export class FacebookGraphApi implements INodeType {
},
],
default: '',
- description: 'The version of the Graph API to be used in the request.',
+ description: 'The version of the Graph API to be used in the request',
required: true,
},
{
@@ -182,7 +182,7 @@ export class FacebookGraphApi implements INodeType {
},
default: false,
required: true,
- description: 'If binary data should be send as body.',
+ description: 'If binary data should be send as body',
},
{
displayName: 'Binary Property',
@@ -228,7 +228,7 @@ export class FacebookGraphApi implements INodeType {
],
},
},
- description: 'The list of fields to request in the GET request.',
+ description: 'The list of fields to request in the GET request',
default: {},
options: [
{
@@ -240,7 +240,7 @@ export class FacebookGraphApi implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the field.',
+ description: 'Name of the field',
},
],
},
@@ -266,14 +266,14 @@ export class FacebookGraphApi implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the parameter.',
+ description: 'Name of the parameter',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the parameter.',
+ description: 'Value of the parameter',
},
],
},
diff --git a/packages/nodes-base/nodes/Facebook/FacebookTrigger.node.ts b/packages/nodes-base/nodes/Facebook/FacebookTrigger.node.ts
index 5325647e0b..ef09e87b0f 100644
--- a/packages/nodes-base/nodes/Facebook/FacebookTrigger.node.ts
+++ b/packages/nodes-base/nodes/Facebook/FacebookTrigger.node.ts
@@ -162,7 +162,7 @@ export class FacebookTrigger implements INodeType {
name: 'includeValues',
type: 'boolean',
default: true,
- description: 'Indicates if change notifications should include the new values.',
+ description: 'Indicates if change notifications should include the new values',
},
],
},
diff --git a/packages/nodes-base/nodes/FileMaker/FileMaker.node.ts b/packages/nodes-base/nodes/FileMaker/FileMaker.node.ts
index 2e0e37999c..e125b7e7dc 100644
--- a/packages/nodes-base/nodes/FileMaker/FileMaker.node.ts
+++ b/packages/nodes-base/nodes/FileMaker/FileMaker.node.ts
@@ -108,7 +108,7 @@ export class FileMaker implements INodeType {
required: true,
displayOptions: {},
placeholder: 'Layout Name',
- description: 'FileMaker Layout Name.',
+ description: 'FileMaker Layout Name',
},
{
displayName: 'Record Id',
@@ -133,7 +133,7 @@ export class FileMaker implements INodeType {
displayName: 'Offset',
name: 'offset',
placeholder: '0',
- description: 'The record number of the first record in the range of records.',
+ description: 'The record number of the first record in the range of records',
type: 'number',
default: '1',
displayOptions: {
@@ -343,7 +343,7 @@ export class FileMaker implements INodeType {
loadOptionsMethod: 'getFields',
},
options: [],
- description: 'Field Name.',
+ description: 'Field Name',
},
{
displayName: 'Order',
@@ -360,7 +360,7 @@ export class FileMaker implements INodeType {
value: 'descend',
},
],
- description: 'Sort order.',
+ description: 'Sort order',
},
],
},
@@ -371,7 +371,7 @@ export class FileMaker implements INodeType {
name: 'setScriptBefore',
type: 'boolean',
default: false,
- description: 'Define a script to be run before the action specified by the API call and after the subsequent sort.',
+ description: 'Define a script to be run before the action specified by the API call and after the subsequent sort',
displayOptions: {
show: {
action: [
@@ -405,7 +405,7 @@ export class FileMaker implements INodeType {
},
},
placeholder: 'Script Name',
- description: 'The name of the FileMaker script to be run after the action specified by the API call and after the subsequent sort.',
+ description: 'The name of the FileMaker script to be run after the action specified by the API call and after the subsequent sort',
},
{
displayName: 'Script Parameter',
@@ -426,14 +426,14 @@ export class FileMaker implements INodeType {
},
},
placeholder: 'Script Parameters',
- description: 'A parameter for the FileMaker script.',
+ description: 'A parameter for the FileMaker script',
},
{
displayName: 'Before sort script',
name: 'setScriptSort',
type: 'boolean',
default: false,
- description: 'Define a script to be run after the action specified by the API call but before the subsequent sort.',
+ description: 'Define a script to be run after the action specified by the API call but before the subsequent sort',
displayOptions: {
show: {
action: [
@@ -467,7 +467,7 @@ export class FileMaker implements INodeType {
},
},
placeholder: 'Script Name',
- description: 'The name of the FileMaker script to be run after the action specified by the API call but before the subsequent sort.',
+ description: 'The name of the FileMaker script to be run after the action specified by the API call but before the subsequent sort',
},
{
displayName: 'Script Parameter',
@@ -488,14 +488,14 @@ export class FileMaker implements INodeType {
},
},
placeholder: 'Script Parameters',
- description: 'A parameter for the FileMaker script.',
+ description: 'A parameter for the FileMaker script',
},
{
displayName: 'After sort script',
name: 'setScriptAfter',
type: 'boolean',
default: false,
- description: 'Define a script to be run after the action specified by the API call but before the subsequent sort.',
+ description: 'Define a script to be run after the action specified by the API call but before the subsequent sort',
displayOptions: {
show: {
action: [
@@ -529,7 +529,7 @@ export class FileMaker implements INodeType {
},
},
placeholder: 'Script Name',
- description: 'The name of the FileMaker script to be run after the action specified by the API call and after the subsequent sort.',
+ description: 'The name of the FileMaker script to be run after the action specified by the API call and after the subsequent sort',
},
{
displayName: 'Script Parameter',
@@ -550,7 +550,7 @@ export class FileMaker implements INodeType {
},
},
placeholder: 'Script Parameters',
- description: 'A parameter for the FileMaker script.',
+ description: 'A parameter for the FileMaker script',
},
// ----------------------------------
// create/edit
@@ -617,7 +617,7 @@ export class FileMaker implements INodeType {
loadOptionsMethod: 'getFields',
},
options: [],
- description: 'Field Name.',
+ description: 'Field Name',
},
{
displayName: 'Value',
@@ -650,7 +650,7 @@ export class FileMaker implements INodeType {
},
},
placeholder: 'Script Name',
- description: 'The name of the FileMaker script to be run.',
+ description: 'The name of the FileMaker script to be run',
},
{
displayName: 'Script Parameter',
@@ -666,7 +666,7 @@ export class FileMaker implements INodeType {
},
},
placeholder: 'Script Parameters',
- description: 'A parameter for the FileMaker script.',
+ description: 'A parameter for the FileMaker script',
},
],
};
diff --git a/packages/nodes-base/nodes/Flow/TaskDescription.ts b/packages/nodes-base/nodes/Flow/TaskDescription.ts
index 76cd2354ed..464bf41c08 100644
--- a/packages/nodes-base/nodes/Flow/TaskDescription.ts
+++ b/packages/nodes-base/nodes/Flow/TaskDescription.ts
@@ -60,7 +60,7 @@ export const taskFields: INodeProperties[] = [
],
},
},
- description: 'Create resources under the given workspace.',
+ description: 'Create resources under the given workspace',
},
{
displayName: 'Name',
@@ -78,7 +78,7 @@ export const taskFields: INodeProperties[] = [
],
},
},
- description: 'The title of the task.',
+ description: 'The title of the task',
},
{
displayName: 'Additional Fields',
@@ -103,7 +103,7 @@ export const taskFields: INodeProperties[] = [
type: 'string',
required: false,
default: '',
- description: 'The ID of the account to whom this task will be assigned.',
+ description: 'The ID of the account to whom this task will be assigned',
},
{
displayName: 'List ID',
@@ -119,7 +119,7 @@ export const taskFields: INodeProperties[] = [
type: 'dateTime',
default: '',
required : false,
- description: 'The date on which the task should start.',
+ description: 'The date on which the task should start',
},
{
displayName: 'Due On',
@@ -127,7 +127,7 @@ export const taskFields: INodeProperties[] = [
type: 'dateTime',
default: '',
required : false,
- description: 'The date on which the task should be due.',
+ description: 'The date on which the task should be due',
},
{
displayName: 'Mirror Parent Subscribers',
@@ -135,7 +135,7 @@ export const taskFields: INodeProperties[] = [
type: 'boolean',
default: false,
required : false,
- description: `If this task will be a subtask, and this is true, the parent tasks's subscribers will be mirrored to this one.`,
+ description: 'If this task will be a subtask, and this is true, the parent tasks\'s subscribers will be mirrored to this one',
},
{
displayName: 'Mirror Parent Tags',
@@ -143,7 +143,7 @@ export const taskFields: INodeProperties[] = [
type: 'boolean',
default: false,
required : false,
- description: `If this task will be a subtask, and this is true, the parent tasks's tags will be mirrored to this one.`,
+ description: 'If this task will be a subtask, and this is true, the parent tasks\'s tags will be mirrored to this one',
},
{
displayName: 'Note Content',
@@ -154,7 +154,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
required : false,
- description: `Provide the content for the task's note.`,
+ description: 'Provide the content for the task\'s note',
},
{
displayName: 'Note Mime Type',
@@ -183,7 +183,7 @@ export const taskFields: INodeProperties[] = [
type: 'string',
default: '',
required : false,
- description: `If provided, this task will become a subtask of the given task.`,
+ description: 'If provided, this task will become a subtask of the given task',
},
{
displayName: 'Position List',
@@ -191,7 +191,7 @@ export const taskFields: INodeProperties[] = [
type: 'number',
default: 0,
required : false,
- description: `Determines the sort order when showing tasks in, or grouped by, a list.`,
+ description: 'Determines the sort order when showing tasks in, or grouped by, a list',
},
{
displayName: 'Position Upcoming',
@@ -199,7 +199,7 @@ export const taskFields: INodeProperties[] = [
type: 'number',
default: 0,
required : false,
- description: `Determines the sort order when showing tasks grouped by their due_date.`,
+ description: 'Determines the sort order when showing tasks grouped by their due_date',
},
{
displayName: 'Position',
@@ -207,7 +207,7 @@ export const taskFields: INodeProperties[] = [
type: 'number',
default: 0,
required : false,
- description: `Determines the sort order of tasks.`,
+ description: 'Determines the sort order of tasks',
},
{
displayName: 'Section ID',
@@ -215,7 +215,7 @@ export const taskFields: INodeProperties[] = [
type: 'string',
default: '',
required : false,
- description: `Specify which section under which to create this task.`,
+ description: 'Specify which section under which to create this task',
},
{
displayName: 'Tags',
@@ -247,7 +247,7 @@ export const taskFields: INodeProperties[] = [
],
},
},
- description: 'Create resources under the given workspace.',
+ description: 'Create resources under the given workspace',
},
{
displayName: 'Task ID',
@@ -288,21 +288,21 @@ export const taskFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'The title of the task.',
+ description: 'The title of the task',
},
{
displayName: 'Completed',
name: 'completed',
type: 'boolean',
default: false,
- description: `If set to true, will complete the task.`,
+ description: 'If set to true, will complete the task',
},
{
displayName: 'Owner ID',
name: 'ownerid',
type: 'string',
default: '',
- description: 'The ID of the account to whom this task will be assigned.',
+ description: 'The ID of the account to whom this task will be assigned',
},
{
displayName: 'List ID',
@@ -316,14 +316,14 @@ export const taskFields: INodeProperties[] = [
name: 'startsOn',
type: 'dateTime',
default: '',
- description: 'The date on which the task should start.',
+ description: 'The date on which the task should start',
},
{
displayName: 'Due On',
name: 'dueOn',
type: 'dateTime',
default: '',
- description: 'The date on which the task should be due.',
+ description: 'The date on which the task should be due',
},
{
displayName: 'Mirror Parent Subscribers',
@@ -331,14 +331,14 @@ export const taskFields: INodeProperties[] = [
type: 'boolean',
default: false,
required : false,
- description: `If this task will be a subtask, and this is true, the parent tasks's subscribers will be mirrored to this one.`,
+ description: 'If this task will be a subtask, and this is true, the parent tasks\'s subscribers will be mirrored to this one',
},
{
displayName: 'Mirror Parent Tags',
name: 'mirrorParentTags',
type: 'boolean',
default: false,
- description: `If this task will be a subtask, and this is true, the parent tasks's tags will be mirrored to this one.`,
+ description: 'If this task will be a subtask, and this is true, the parent tasks\'s tags will be mirrored to this one',
},
{
displayName: 'Note Content',
@@ -348,7 +348,7 @@ export const taskFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: `Provide the content for the task's note.`,
+ description: 'Provide the content for the task\'s note',
},
{
displayName: 'Note Mime Type',
@@ -376,35 +376,35 @@ export const taskFields: INodeProperties[] = [
name: 'parentId',
type: 'string',
default: '',
- description: `If provided, this task will become a subtask of the given task.`,
+ description: 'If provided, this task will become a subtask of the given task',
},
{
displayName: 'Position List',
name: 'positionList',
type: 'number',
default: 0,
- description: `Determines the sort order when showing tasks in, or grouped by, a list.`,
+ description: 'Determines the sort order when showing tasks in, or grouped by, a list',
},
{
displayName: 'Position Upcoming',
name: 'positionUpcoming',
type: 'number',
default: 0,
- description: `Determines the sort order when showing tasks grouped by their due_date.`,
+ description: 'Determines the sort order when showing tasks grouped by their due_date',
},
{
displayName: 'Position',
name: 'position',
type: 'number',
default: 0,
- description: `Determines the sort order of tasks.`,
+ description: 'Determines the sort order of tasks',
},
{
displayName: 'Section ID',
name: 'sectionId',
type: 'string',
default: '',
- description: `Specify which section under which to create this task.`,
+ description: 'Specify which section under which to create this task',
},
{
displayName: 'Tags',
@@ -496,7 +496,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -520,7 +520,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -620,49 +620,49 @@ export const taskFields: INodeProperties[] = [
name: 'workspaceId',
type: 'string',
default: '',
- description: 'Create resources under the given workspace.',
+ description: 'Create resources under the given workspace',
},
{
displayName: 'Created Before',
name: 'createdBefore',
type: 'dateTime',
default: '',
- description: 'Select resources created before a certain time.',
+ description: 'Select resources created before a certain time',
},
{
displayName: 'Created After',
name: 'createdAfter',
type: 'dateTime',
default: '',
- description: 'Select resources created after a certain time.',
+ description: 'Select resources created after a certain time',
},
{
displayName: 'Update Before',
name: 'updateBefore',
type: 'dateTime',
default: '',
- description: 'Select resources updated before a certain time.',
+ description: 'Select resources updated before a certain time',
},
{
displayName: 'Update After',
name: 'updateAfter',
type: 'dateTime',
default: '',
- description: 'Select resources updated after a certain time.',
+ description: 'Select resources updated after a certain time',
},
{
displayName: 'Deleted',
name: 'deleted',
type: 'boolean',
default: false,
- description: 'Select deleted resources.',
+ description: 'Select deleted resources',
},
{
displayName: 'Cleared',
name: 'cleared',
type: 'boolean',
default: false,
- description: 'Select cleared resources.',
+ description: 'Select cleared resources',
},
],
},
diff --git a/packages/nodes-base/nodes/Formstack/FormstackTrigger.node.ts b/packages/nodes-base/nodes/Formstack/FormstackTrigger.node.ts
index bd37a51202..243697a5b0 100644
--- a/packages/nodes-base/nodes/Formstack/FormstackTrigger.node.ts
+++ b/packages/nodes-base/nodes/Formstack/FormstackTrigger.node.ts
@@ -97,7 +97,7 @@ export class FormstackTrigger implements INodeType {
name: 'simple',
type: 'boolean',
default: true,
- description: 'When set to true a simplify version of the response will be used else the raw data.',
+ description: 'When set to true a simplify version of the response will be used else the raw data',
},
],
};
diff --git a/packages/nodes-base/nodes/Freshdesk/ContactDescription.ts b/packages/nodes-base/nodes/Freshdesk/ContactDescription.ts
index 9e471fc2d5..545ecd7cd9 100644
--- a/packages/nodes-base/nodes/Freshdesk/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Freshdesk/ContactDescription.ts
@@ -68,7 +68,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of the contact.',
+ description: 'Name of the contact',
required: true,
},
{
@@ -128,7 +128,7 @@ export const contactFields: INodeProperties[] = [
name: 'address',
type: 'string',
default: '',
- description: 'Address of the contact.',
+ description: 'Address of the contact',
},
// {
// displayName: 'Avatar',
@@ -143,7 +143,7 @@ export const contactFields: INodeProperties[] = [
name: 'company_id',
type: 'number',
default: '',
- description: 'ID of the primary company to which this contact belongs.',
+ description: 'ID of the primary company to which this contact belongs',
},
{
displayName: 'Custom Fields',
@@ -165,14 +165,14 @@ export const contactFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: `Custom Field\'s name.`,
+ description: 'Custom Field\'s name',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: `Custom Field\'s values.`,
+ description: 'Custom Field\'s values',
},
],
},
@@ -183,7 +183,7 @@ export const contactFields: INodeProperties[] = [
name: 'description',
type: 'string',
default: '',
- description: 'A small description of the contact.',
+ description: 'A small description of the contact',
},
{
displayName: 'Email',
@@ -204,7 +204,7 @@ export const contactFields: INodeProperties[] = [
name: 'job_title',
type: 'string',
default: '',
- description: 'Job title of the contact.',
+ description: 'Job title of the contact',
},
{
displayName: 'Language',
@@ -218,7 +218,7 @@ export const contactFields: INodeProperties[] = [
name: 'mobile',
type: 'string',
default: '',
- description: 'Mobile number of the contact.',
+ description: 'Mobile number of the contact',
},
{
displayName: 'Name',
@@ -232,7 +232,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'Name of the contact.',
+ description: 'Name of the contact',
},
{
displayName: 'Other Companies',
@@ -254,14 +254,14 @@ export const contactFields: INodeProperties[] = [
multipleValues: true,
},
placeholder: 'Add Email',
- description: 'Additional emails associated with the contact.',
+ description: 'Additional emails associated with the contact',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Telephone number of the contact.',
+ description: 'Telephone number of the contact',
},
{
displayName: 'Tags',
@@ -271,7 +271,7 @@ export const contactFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'Tags associated with this contact.',
+ description: 'Tags associated with this contact',
},
{
displayName: 'Time Zone',
@@ -285,21 +285,21 @@ export const contactFields: INodeProperties[] = [
name: 'twitter_id',
type: 'string',
default: '',
- description: 'Twitter handle of the contact.',
+ description: 'Twitter handle of the contact',
},
{
displayName: 'Unique External ID',
name: 'unique_external_id',
type: 'string',
default: '',
- description: 'External ID of the contact.',
+ description: 'External ID of the contact',
},
{
displayName: 'View All Tickets',
name: 'view_all_tickets',
type: 'boolean',
default: false,
- description: `Set to true if the contact can see all the tickets that are associated with the company to which they belong.`,
+ description: 'Set to true if the contact can see all the tickets that are associated with the company to which they belong',
},
],
},
diff --git a/packages/nodes-base/nodes/Freshdesk/Freshdesk.node.ts b/packages/nodes-base/nodes/Freshdesk/Freshdesk.node.ts
index 45a10aba6e..54c82209b3 100644
--- a/packages/nodes-base/nodes/Freshdesk/Freshdesk.node.ts
+++ b/packages/nodes-base/nodes/Freshdesk/Freshdesk.node.ts
@@ -346,7 +346,7 @@ export class Freshdesk implements INodeType {
},
],
default: 'portal',
- description: 'The channel through which the ticket was created.',
+ description: 'The channel through which the ticket was created',
},
// {
// displayName: 'JSON Parameters',
@@ -418,7 +418,7 @@ export class Freshdesk implements INodeType {
rows: 5,
alwaysOpenEditWindow: true,
},
- description: 'HTML content of the ticket.',
+ description: 'HTML content of the ticket',
},
{
displayName: 'Due By',
@@ -475,7 +475,7 @@ export class Freshdesk implements INodeType {
type: 'string',
default: '',
placeholder: '',
- description: 'Subject of the ticket.',
+ description: 'Subject of the ticket',
},
{
displayName: 'Tags',
@@ -489,7 +489,7 @@ export class Freshdesk implements INodeType {
name: 'type',
type: 'options',
default: 'Question',
- description: 'Helps categorize the ticket according to the different kinds of issues your support team deals with.',
+ description: 'Helps categorize the ticket according to the different kinds of issues your support team deals with',
options: [
{
name: 'Feature Request',
@@ -835,7 +835,7 @@ export class Freshdesk implements INodeType {
},
],
default: 'portal',
- description: 'The channel through which the ticket was created.',
+ description: 'The channel through which the ticket was created',
},
{
displayName: 'Tags',
@@ -849,7 +849,7 @@ export class Freshdesk implements INodeType {
name: 'type',
type: 'options',
default: 'Question',
- description: 'Helps categorize the ticket according to the different kinds of issues your support team deals with.',
+ description: 'Helps categorize the ticket according to the different kinds of issues your support team deals with',
options: [
{
name: 'Feature Request',
@@ -908,7 +908,7 @@ export class Freshdesk implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -932,7 +932,7 @@ export class Freshdesk implements INodeType {
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -996,7 +996,7 @@ export class Freshdesk implements INodeType {
},
],
default: 'desc',
- description: 'Order sort attribute ascending or descending.',
+ description: 'Order sort attribute ascending or descending',
},
{
displayName: 'Order By',
@@ -1017,7 +1017,7 @@ export class Freshdesk implements INodeType {
},
],
default: '',
- description: 'Sort collection by object attribute.',
+ description: 'Sort collection by object attribute',
},
{
displayName: 'Requester Email',
diff --git a/packages/nodes-base/nodes/Freshservice/descriptions/AssetDescription.ts b/packages/nodes-base/nodes/Freshservice/descriptions/AssetDescription.ts
index b1c0826bb4..5665584c45 100644
--- a/packages/nodes-base/nodes/Freshservice/descriptions/AssetDescription.ts
+++ b/packages/nodes-base/nodes/Freshservice/descriptions/AssetDescription.ts
@@ -122,14 +122,14 @@ export const assetFields: INodeProperties[] = [
loadOptionsMethod: 'getAssetTypeFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -352,14 +352,14 @@ export const assetFields: INodeProperties[] = [
loadOptionsMethod: 'getAssetTypeFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
diff --git a/packages/nodes-base/nodes/Ftp/Ftp.node.ts b/packages/nodes-base/nodes/Ftp/Ftp.node.ts
index 0454a522c1..2f7297c3f6 100644
--- a/packages/nodes-base/nodes/Ftp/Ftp.node.ts
+++ b/packages/nodes-base/nodes/Ftp/Ftp.node.ts
@@ -91,7 +91,7 @@ export class Ftp implements INodeType {
},
],
default: 'ftp',
- description: 'File transfer protocol.',
+ description: 'File transfer protocol',
},
{
displayName: 'Operation',
@@ -101,27 +101,27 @@ export class Ftp implements INodeType {
{
name: 'Delete',
value: 'delete',
- description: 'Delete a file/folder.',
+ description: 'Delete a file/folder',
},
{
name: 'Download',
value: 'download',
- description: 'Download a file.',
+ description: 'Download a file',
},
{
name: 'List',
value: 'list',
- description: 'List folder content.',
+ description: 'List folder content',
},
{
name: 'Rename',
value: 'rename',
- description: 'Rename/move oldPath to newPath.',
+ description: 'Rename/move oldPath to newPath',
},
{
name: 'Upload',
value: 'upload',
- description: 'Upload a file.',
+ description: 'Upload a file',
},
],
default: 'download',
@@ -167,7 +167,7 @@ export class Ftp implements INodeType {
name: 'folder',
type: 'boolean',
default: false,
- description: 'When set to true, folders can be deleted.',
+ description: 'When set to true, folders can be deleted',
required: true,
},
{
@@ -182,7 +182,7 @@ export class Ftp implements INodeType {
name: 'recursive',
type: 'boolean',
default: false,
- description: 'If true, remove all files and directories in target directory.',
+ description: 'If true, remove all files and directories in target directory',
required: true,
},
],
@@ -219,7 +219,7 @@ export class Ftp implements INodeType {
name: 'binaryPropertyName',
type: 'string',
default: 'data',
- description: 'Object property name which holds binary data.',
+ description: 'Object property name which holds binary data',
required: true,
},
@@ -310,7 +310,7 @@ export class Ftp implements INodeType {
name: 'binaryData',
type: 'boolean',
default: true,
- description: 'The text content of the file to upload.',
+ description: 'The text content of the file to upload',
},
{
displayName: 'Binary Property',
@@ -327,7 +327,7 @@ export class Ftp implements INodeType {
name: 'binaryPropertyName',
type: 'string',
default: 'data',
- description: 'Object property name which holds binary data.',
+ description: 'Object property name which holds binary data',
required: true,
},
{
@@ -345,7 +345,7 @@ export class Ftp implements INodeType {
name: 'fileContent',
type: 'string',
default: '',
- description: 'The text content of the file to upload.',
+ description: 'The text content of the file to upload',
},
// ----------------------------------
@@ -363,7 +363,7 @@ export class Ftp implements INodeType {
name: 'path',
type: 'string',
default: '/',
- description: 'Path of directory to list contents of.',
+ description: 'Path of directory to list contents of',
required: true,
},
{
diff --git a/packages/nodes-base/nodes/Function/Function.node.ts b/packages/nodes-base/nodes/Function/Function.node.ts
index 179a012ea0..7f678d2cb2 100644
--- a/packages/nodes-base/nodes/Function/Function.node.ts
+++ b/packages/nodes-base/nodes/Function/Function.node.ts
@@ -47,7 +47,7 @@ for (item of items) {
console.log('Done!');
return items;`,
- description: 'The JavaScript code to execute.',
+ description: 'The JavaScript code to execute',
noDataExpression: true,
},
],
diff --git a/packages/nodes-base/nodes/FunctionItem/FunctionItem.node.ts b/packages/nodes-base/nodes/FunctionItem/FunctionItem.node.ts
index 85cf79de17..1a0ed5e739 100644
--- a/packages/nodes-base/nodes/FunctionItem/FunctionItem.node.ts
+++ b/packages/nodes-base/nodes/FunctionItem/FunctionItem.node.ts
@@ -46,7 +46,7 @@ item.myNewField = 1;
console.log('Done!');
return item;`,
- description: 'The JavaScript code to execute for each item.',
+ description: 'The JavaScript code to execute for each item',
noDataExpression: true,
},
],
diff --git a/packages/nodes-base/nodes/GetResponse/ContactDescription.ts b/packages/nodes-base/nodes/GetResponse/ContactDescription.ts
index 2c6d1fae06..2d3eb08ebd 100644
--- a/packages/nodes-base/nodes/GetResponse/ContactDescription.ts
+++ b/packages/nodes-base/nodes/GetResponse/ContactDescription.ts
@@ -124,14 +124,14 @@ export const contactFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCustomFields',
},
- description: 'The end user specified key of the user defined data.',
+ description: 'The end user specified key of the user defined data',
default: '',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
- description: 'The end user specified value of the user defined data.',
+ description: 'The end user specified value of the user defined data',
default: '',
},
],
@@ -205,7 +205,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Id of contact to delete.',
+ description: 'Id of contact to delete',
},
{
displayName: 'Options',
@@ -307,7 +307,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -573,14 +573,14 @@ export const contactFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCustomFields',
},
- description: 'The end user specified key of the user defined data.',
+ description: 'The end user specified key of the user defined data',
default: '',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
- description: 'The end user specified value of the user defined data.',
+ description: 'The end user specified value of the user defined data',
default: '',
},
],
diff --git a/packages/nodes-base/nodes/GetResponse/GetResponseTrigger.node.ts b/packages/nodes-base/nodes/GetResponse/GetResponseTrigger.node.ts
index 2903e2dfda..a5b3bc1eda 100644
--- a/packages/nodes-base/nodes/GetResponse/GetResponseTrigger.node.ts
+++ b/packages/nodes-base/nodes/GetResponse/GetResponseTrigger.node.ts
@@ -90,27 +90,27 @@ export class GetResponseTrigger implements INodeType {
{
name: 'Customer Subscribed',
value: 'subscribe',
- description: 'Receive notifications when a customer is subscribed to a list.',
+ description: 'Receive notifications when a customer is subscribed to a list',
},
{
name: 'Customer Unsubscribed',
value: 'unsubscribe',
- description: 'Receive notifications when a customer is unsubscribed from a list.',
+ description: 'Receive notifications when a customer is unsubscribed from a list',
},
{
name: 'Email Opened',
value: 'open',
- description: 'Receive notifications when a email is opened.',
+ description: 'Receive notifications when a email is opened',
},
{
name: 'Email Clicked',
value: 'click',
- description: 'Receive notifications when a email is clicked.',
+ description: 'Receive notifications when a email is clicked',
},
{
name: 'Survey Submitted',
value: 'survey',
- description: 'Receive notifications when a survey is submitted.',
+ description: 'Receive notifications when a survey is submitted',
},
],
default: [],
@@ -137,7 +137,7 @@ export class GetResponseTrigger implements INodeType {
name: 'delete',
type: 'boolean',
default: false,
- description: 'Delete the current subscription.',
+ description: 'Delete the current subscription',
},
],
},
diff --git a/packages/nodes-base/nodes/Ghost/PostDescription.ts b/packages/nodes-base/nodes/Ghost/PostDescription.ts
index 2d3674014d..3d8813a400 100644
--- a/packages/nodes-base/nodes/Ghost/PostDescription.ts
+++ b/packages/nodes-base/nodes/Ghost/PostDescription.ts
@@ -101,7 +101,7 @@ export const postFields: INodeProperties[] = [
],
},
},
- description: `Post's title.`,
+ description: 'Post\'s title',
},
{
displayName: 'Content Format',
@@ -131,7 +131,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'html',
- description: `The format of the post.`,
+ description: 'The format of the post',
},
{
displayName: 'Content',
@@ -157,7 +157,7 @@ export const postFields: INodeProperties[] = [
},
},
default: '',
- description: 'The content of the post to create.',
+ description: 'The content of the post to create',
},
{
displayName: 'Content (JSON)',
@@ -355,7 +355,7 @@ export const postFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the post to delete.',
+ description: 'The ID of the post to delete',
},
/* -------------------------------------------------------------------------- */
@@ -391,7 +391,7 @@ export const postFields: INodeProperties[] = [
],
},
},
- description: 'Get the post either by slug or ID.',
+ description: 'Get the post either by slug or ID',
},
{
displayName: 'Identifier',
@@ -413,7 +413,7 @@ export const postFields: INodeProperties[] = [
],
},
},
- description: 'The ID or slug of the post to get.',
+ description: 'The ID or slug of the post to get',
},
{
displayName: 'Options',
@@ -532,7 +532,7 @@ export const postFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your user contacts.',
+ description: 'Returns a list of your user contacts',
},
{
displayName: 'Limit',
@@ -560,7 +560,7 @@ export const postFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -623,7 +623,7 @@ export const postFields: INodeProperties[] = [
default: [
'html',
],
- description: `By default, only html is returned, however each post and page in Ghost has 2 available formats: html and plaintext.`,
+ description: 'By default, only html is returned, however each post and page in Ghost has 2 available formats: html and plaintext',
},
],
},
@@ -713,7 +713,7 @@ export const postFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the post to update.',
+ description: 'The ID of the post to update',
},
{
displayName: 'Content Format',
@@ -743,7 +743,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'html',
- description: `The format of the post.`,
+ description: 'The format of the post',
},
{
displayName: 'Update Fields',
diff --git a/packages/nodes-base/nodes/Git/Git.node.ts b/packages/nodes-base/nodes/Git/Git.node.ts
index e070c317ce..921b2a1bd0 100644
--- a/packages/nodes-base/nodes/Git/Git.node.ts
+++ b/packages/nodes-base/nodes/Git/Git.node.ts
@@ -79,7 +79,7 @@ export class Git implements INodeType {
},
},
default: 'none',
- description: 'The way to authenticate.',
+ description: 'The way to authenticate',
},
{
displayName: 'Operation',
@@ -170,7 +170,7 @@ export class Git implements INodeType {
default: '',
placeholder: '/tmp/repository',
required: true,
- description: 'Local path of the git repository to operate on.',
+ description: 'Local path of the git repository to operate on',
},
{
displayName: 'New Repository Path',
@@ -186,7 +186,7 @@ export class Git implements INodeType {
default: '',
placeholder: '/tmp/repository',
required: true,
- description: 'Local path to which the git repository should be cloned into.',
+ description: 'Local path to which the git repository should be cloned into',
},
...addFields,
diff --git a/packages/nodes-base/nodes/Git/descriptions/AddConfigDescription.ts b/packages/nodes-base/nodes/Git/descriptions/AddConfigDescription.ts
index 9b10649978..2bad90699d 100644
--- a/packages/nodes-base/nodes/Git/descriptions/AddConfigDescription.ts
+++ b/packages/nodes-base/nodes/Git/descriptions/AddConfigDescription.ts
@@ -16,7 +16,7 @@ export const addConfigFields: INodeProperties[] = [
},
default: '',
placeholder: 'user.email',
- description: 'Name of the key to set.',
+ description: 'Name of the key to set',
required: true,
},
{
@@ -32,7 +32,7 @@ export const addConfigFields: INodeProperties[] = [
},
default: '',
placeholder: 'name@example.com',
- description: 'Value of the key to set.',
+ description: 'Value of the key to set',
required: true,
},
{
@@ -64,7 +64,7 @@ export const addConfigFields: INodeProperties[] = [
},
],
default: 'set',
- description: 'Append setting rather than set it in the local config.',
+ description: 'Append setting rather than set it in the local config',
},
],
},
diff --git a/packages/nodes-base/nodes/Git/descriptions/AddDescription.ts b/packages/nodes-base/nodes/Git/descriptions/AddDescription.ts
index a7c0b41388..dd3e2f72ad 100644
--- a/packages/nodes-base/nodes/Git/descriptions/AddDescription.ts
+++ b/packages/nodes-base/nodes/Git/descriptions/AddDescription.ts
@@ -16,7 +16,7 @@ export const addFields: INodeProperties[] = [
},
default: '',
placeholder: 'README.md',
- description: 'Comma-separated list of paths (absolute or relative to Repository Path) of files or folders to add.',
+ description: 'Comma-separated list of paths (absolute or relative to Repository Path) of files or folders to add',
required: true,
},
];
diff --git a/packages/nodes-base/nodes/Git/descriptions/CloneDescription.ts b/packages/nodes-base/nodes/Git/descriptions/CloneDescription.ts
index 4d0ac9194e..833f80e26e 100644
--- a/packages/nodes-base/nodes/Git/descriptions/CloneDescription.ts
+++ b/packages/nodes-base/nodes/Git/descriptions/CloneDescription.ts
@@ -16,7 +16,7 @@ export const cloneFields: INodeProperties[] = [
},
default: '',
placeholder: 'https://github.com/n8n-io/n8n',
- description: 'The URL or path of the repository to clone.',
+ description: 'The URL or path of the repository to clone',
required: true,
},
];
diff --git a/packages/nodes-base/nodes/Git/descriptions/CommitDescription.ts b/packages/nodes-base/nodes/Git/descriptions/CommitDescription.ts
index 4bef7ebe7f..ffb88afc01 100644
--- a/packages/nodes-base/nodes/Git/descriptions/CommitDescription.ts
+++ b/packages/nodes-base/nodes/Git/descriptions/CommitDescription.ts
@@ -15,7 +15,7 @@ export const commitFields: INodeProperties[] = [
},
},
default: '',
- description: 'The commit message to use.',
+ description: 'The commit message to use',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Git/descriptions/LogDescription.ts b/packages/nodes-base/nodes/Git/descriptions/LogDescription.ts
index b774a7bab9..e5c890eb97 100644
--- a/packages/nodes-base/nodes/Git/descriptions/LogDescription.ts
+++ b/packages/nodes-base/nodes/Git/descriptions/LogDescription.ts
@@ -15,7 +15,7 @@ export const logFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -36,7 +36,7 @@ export const logFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -57,7 +57,7 @@ export const logFields: INodeProperties[] = [
name: 'file',
type: 'string',
default: 'README.md',
- description: 'The path (absolute or relative to Repository Path) of file or folder to get the history of.',
+ description: 'The path (absolute or relative to Repository Path) of file or folder to get the history of',
},
],
},
diff --git a/packages/nodes-base/nodes/Git/descriptions/PushDescription.ts b/packages/nodes-base/nodes/Git/descriptions/PushDescription.ts
index 1175d59fce..bd737cd176 100644
--- a/packages/nodes-base/nodes/Git/descriptions/PushDescription.ts
+++ b/packages/nodes-base/nodes/Git/descriptions/PushDescription.ts
@@ -23,7 +23,7 @@ export const pushFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'https://github.com/n8n-io/n8n',
- description: 'The URL or path of the repository to push to.',
+ description: 'The URL or path of the repository to push to',
},
],
},
diff --git a/packages/nodes-base/nodes/Git/descriptions/TagDescription.ts b/packages/nodes-base/nodes/Git/descriptions/TagDescription.ts
index 6894ddaeb6..f7ab403445 100644
--- a/packages/nodes-base/nodes/Git/descriptions/TagDescription.ts
+++ b/packages/nodes-base/nodes/Git/descriptions/TagDescription.ts
@@ -15,7 +15,7 @@ export const tagFields: INodeProperties[] = [
},
},
default: '',
- description: 'The name of the tag to create.',
+ description: 'The name of the tag to create',
required: true,
},
];
diff --git a/packages/nodes-base/nodes/Github/Github.node.ts b/packages/nodes-base/nodes/Github/Github.node.ts
index 9984093688..d4c6416af0 100644
--- a/packages/nodes-base/nodes/Github/Github.node.ts
+++ b/packages/nodes-base/nodes/Github/Github.node.ts
@@ -136,27 +136,27 @@ export class Github implements INodeType {
{
name: 'Create',
value: 'create',
- description: 'Create a new issue.',
+ description: 'Create a new issue',
},
{
name: 'Create Comment',
value: 'createComment',
- description: 'Create a new comment on an issue.',
+ description: 'Create a new comment on an issue',
},
{
name: 'Edit',
value: 'edit',
- description: 'Edit an issue.',
+ description: 'Edit an issue',
},
{
name: 'Get',
value: 'get',
- description: 'Get the data of a single issue.',
+ description: 'Get the data of a single issue',
},
{
name: 'Lock',
value: 'lock',
- description: 'Lock an issue.',
+ description: 'Lock an issue',
},
],
default: 'create',
@@ -178,27 +178,27 @@ export class Github implements INodeType {
{
name: 'Create',
value: 'create',
- description: 'Create a new file in repository.',
+ description: 'Create a new file in repository',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete a file in repository.',
+ description: 'Delete a file in repository',
},
{
name: 'Edit',
value: 'edit',
- description: 'Edit a file in repository.',
+ description: 'Edit a file in repository',
},
{
name: 'Get',
value: 'get',
- description: 'Get the data of a single file.',
+ description: 'Get the data of a single file',
},
{
name: 'List',
value: 'list',
- description: 'List contents of a folder.',
+ description: 'List contents of a folder',
},
],
default: 'create',
@@ -220,32 +220,32 @@ export class Github implements INodeType {
{
name: 'Get',
value: 'get',
- description: 'Get the data of a single repository.',
+ description: 'Get the data of a single repository',
},
{
name: 'Get License',
value: 'getLicense',
- description: 'Returns the contents of the repository\'s license file, if one is detected.',
+ description: 'Returns the contents of the repository\'s license file, if one is detected',
},
{
name: 'Get Issues',
value: 'getIssues',
- description: 'Returns issues of a repository.',
+ description: 'Returns issues of a repository',
},
{
name: 'Get Profile',
value: 'getProfile',
- description: 'Get the community profile of a repository with metrics, health score, description, license, etc.',
+ description: 'Get the community profile of a repository with metrics, health score, description, license, etc',
},
{
name: 'List Popular Paths',
value: 'listPopularPaths',
- description: 'Get the top 10 popular content paths over the last 14 days.',
+ description: 'Get the top 10 popular content paths over the last 14 days',
},
{
name: 'List Referrers',
value: 'listReferrers',
- description: 'Get the top 10 referrering domains over the last 14 days.',
+ description: 'Get the top 10 referrering domains over the last 14 days',
},
],
default: 'getIssues',
@@ -267,12 +267,12 @@ export class Github implements INodeType {
{
name: 'Get Repositories',
value: 'getRepositories',
- description: 'Returns the repositories of a user.',
+ description: 'Returns the repositories of a user',
},
{
name: 'Invite',
value: 'invite',
- description: 'Invites a user to an organization.',
+ description: 'Invites a user to an organization',
},
],
default: 'getRepositories',
@@ -294,27 +294,27 @@ export class Github implements INodeType {
{
name: 'Create',
value: 'create',
- description: 'Creates a new release.',
+ description: 'Creates a new release',
},
{
name: 'Get',
value: 'get',
- description: 'Get a release.',
+ description: 'Get a release',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all repository releases.',
+ description: 'Get all repository releases',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete a release.',
+ description: 'Delete a release',
},
{
name: 'Update',
value: 'update',
- description: 'Update a release.',
+ description: 'Update a release',
},
],
default: 'create',
@@ -336,22 +336,22 @@ export class Github implements INodeType {
{
name: 'Create',
value: 'create',
- description: 'Creates a new review.',
+ description: 'Creates a new review',
},
{
name: 'Get',
value: 'get',
- description: 'Get a review for a pull request.',
+ description: 'Get a review for a pull request',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all reviews for a pull request.',
+ description: 'Get all reviews for a pull request',
},
{
name: 'Update',
value: 'update',
- description: 'Update a review.',
+ description: 'Update a review',
},
],
default: 'create',
@@ -375,7 +375,7 @@ export class Github implements INodeType {
},
},
placeholder: 'n8n-io',
- description: 'Owner of the repository.',
+ description: 'Owner of the repository',
},
{
displayName: 'Repository Name',
@@ -394,7 +394,7 @@ export class Github implements INodeType {
},
},
placeholder: 'n8n',
- description: 'The name of the repository.',
+ description: 'The name of the repository',
},
@@ -448,7 +448,7 @@ export class Github implements INodeType {
},
},
placeholder: 'docs/',
- description: 'The path of the folder to list.',
+ description: 'The path of the folder to list',
},
// ----------------------------------
@@ -471,7 +471,7 @@ export class Github implements INodeType {
],
},
},
- description: 'If the data to upload should be taken from binary field.',
+ description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'File Content',
@@ -495,7 +495,7 @@ export class Github implements INodeType {
},
placeholder: '',
- description: 'The text content of the file.',
+ description: 'The text content of the file',
},
{
displayName: 'Binary Property',
@@ -519,7 +519,7 @@ export class Github implements INodeType {
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file.',
+ description: 'Name of the binary property which contains the data for the file',
},
{
displayName: 'Commit Message',
@@ -539,13 +539,13 @@ export class Github implements INodeType {
],
},
},
- description: 'The commit message.',
+ description: 'The commit message',
},
{
displayName: 'Additional Parameters',
name: 'additionalParameters',
placeholder: 'Add Parameter',
- description: 'Additional fields to add.',
+ description: 'Additional fields to add',
type: 'fixedCollection',
default: {},
displayOptions: {
@@ -570,14 +570,14 @@ export class Github implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'The name of the author of the commit.',
+ description: 'The name of the author of the commit',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'The email of the author of the commit.',
+ description: 'The email of the author of the commit',
},
],
},
@@ -603,14 +603,14 @@ export class Github implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'The name of the committer of the commit.',
+ description: 'The name of the committer of the commit',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'The email of the committer of the commit.',
+ description: 'The email of the committer of the commit',
},
],
},
@@ -635,7 +635,7 @@ export class Github implements INodeType {
],
},
},
- description: 'If set it will set the data of the file as binary property instead of returning the raw API response.',
+ description: 'If set it will set the data of the file as binary property instead of returning the raw API response',
},
{
displayName: 'Binary Property',
@@ -658,14 +658,14 @@ export class Github implements INodeType {
},
placeholder: '',
- description: 'Name of the binary property in which to save the binary data of the received file.',
+ description: 'Name of the binary property in which to save the binary data of the received file',
},
{
displayName: 'Additional Parameters',
name: 'additionalParameters',
placeholder: 'Add Parameter',
- description: 'Additional fields to add.',
+ description: 'Additional fields to add',
type: 'collection',
default: {},
displayOptions: {
@@ -713,7 +713,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The title of the issue.',
+ description: 'The title of the issue',
},
{
displayName: 'Body',
@@ -733,7 +733,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The body of the issue.',
+ description: 'The body of the issue',
},
{
displayName: 'Labels',
@@ -760,7 +760,7 @@ export class Github implements INodeType {
name: 'label',
type: 'string',
default: '',
- description: 'Label to add to issue.',
+ description: 'Label to add to issue',
},
],
},
@@ -789,7 +789,7 @@ export class Github implements INodeType {
name: 'assignee',
type: 'string',
default: '',
- description: 'User to assign issue too.',
+ description: 'User to assign issue too',
},
],
},
@@ -813,7 +813,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The number of the issue on which to create the comment on.',
+ description: 'The number of the issue on which to create the comment on',
},
{
displayName: 'Body',
@@ -833,7 +833,7 @@ export class Github implements INodeType {
},
},
default: '',
- description: 'The body of the comment.',
+ description: 'The body of the comment',
},
// ----------------------------------
@@ -855,7 +855,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The number of the issue edit.',
+ description: 'The number of the issue edit',
},
{
displayName: 'Edit Fields',
@@ -881,7 +881,7 @@ export class Github implements INodeType {
name: 'title',
type: 'string',
default: '',
- description: 'The title of the issue.',
+ description: 'The title of the issue',
},
{
displayName: 'Body',
@@ -891,7 +891,7 @@ export class Github implements INodeType {
rows: 5,
},
default: '',
- description: 'The body of the issue.',
+ description: 'The body of the issue',
},
{
displayName: 'State',
@@ -901,16 +901,16 @@ export class Github implements INodeType {
{
name: 'Closed',
value: 'closed',
- description: 'Set the state to "closed".',
+ description: 'Set the state to "closed"',
},
{
name: 'Open',
value: 'open',
- description: 'Set the state to "open".',
+ description: 'Set the state to "open"',
},
],
default: 'open',
- description: 'The state to set.',
+ description: 'The state to set',
},
{
displayName: 'Labels',
@@ -927,7 +927,7 @@ export class Github implements INodeType {
name: 'label',
type: 'string',
default: '',
- description: 'Label to add to issue.',
+ description: 'Label to add to issue',
},
],
},
@@ -946,7 +946,7 @@ export class Github implements INodeType {
name: 'assignee',
type: 'string',
default: '',
- description: 'User to assign issue to.',
+ description: 'User to assign issue to',
},
],
},
@@ -972,7 +972,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The number of the issue get data of.',
+ description: 'The number of the issue get data of',
},
// ----------------------------------
@@ -994,7 +994,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The number of the issue to lock.',
+ description: 'The number of the issue to lock',
},
{
displayName: 'Lock Reason',
@@ -1033,7 +1033,7 @@ export class Github implements INodeType {
},
],
default: 'resolved',
- description: 'The reason to lock the issue.',
+ description: 'The reason to lock the issue',
},
@@ -1061,7 +1061,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The tag of the release.',
+ description: 'The tag of the release',
},
{
displayName: 'Additional Fields',
@@ -1087,7 +1087,7 @@ export class Github implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'The name of the issue.',
+ description: 'The name of the issue',
},
{
displayName: 'Body',
@@ -1097,21 +1097,21 @@ export class Github implements INodeType {
rows: 5,
},
default: '',
- description: 'The body of the release.',
+ description: 'The body of the release',
},
{
displayName: 'Draft',
name: 'draft',
type: 'boolean',
default: false,
- description: 'Set "true" to create a draft (unpublished) release, "false" to create a published one.',
+ description: 'Set "true" to create a draft (unpublished) release, "false" to create a published one',
},
{
displayName: 'Prerelease',
name: 'prerelease',
type: 'boolean',
default: false,
- description: 'If set to "true" it will point out that the release is non-production ready.',
+ description: 'If set to "true" it will point out that the release is non-production ready',
},
{
displayName: 'Target Commitish',
@@ -1144,7 +1144,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The release ID.',
+ description: 'The release ID',
},
// ----------------------------------
@@ -1177,35 +1177,35 @@ export class Github implements INodeType {
rows: 5,
},
default: '',
- description: 'The body of the release.',
+ description: 'The body of the release',
},
{
displayName: 'Draft',
name: 'draft',
type: 'boolean',
default: false,
- description: 'Set "true" to create a draft (unpublished) release, "false" to create a published one.',
+ description: 'Set "true" to create a draft (unpublished) release, "false" to create a published one',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'The name of the release.',
+ description: 'The name of the release',
},
{
displayName: 'Prerelease',
name: 'prerelease',
type: 'boolean',
default: false,
- description: 'If set to "true" it will point out that the release is non-production ready.',
+ description: 'If set to "true" it will point out that the release is non-production ready',
},
{
displayName: 'Tag Name',
name: 'tag_name',
type: 'string',
default: '',
- description: 'The name of the tag.',
+ description: 'The name of the tag',
},
{
displayName: 'Target Commitish',
@@ -1234,7 +1234,7 @@ export class Github implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1258,7 +1258,7 @@ export class Github implements INodeType {
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
@@ -1284,7 +1284,7 @@ export class Github implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1308,7 +1308,7 @@ export class Github implements INodeType {
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -1334,21 +1334,21 @@ export class Github implements INodeType {
name: 'assignee',
type: 'string',
default: '',
- description: 'Return only issues which are assigned to a specific user.',
+ description: 'Return only issues which are assigned to a specific user',
},
{
displayName: 'Creator',
name: 'creator',
type: 'string',
default: '',
- description: 'Return only issues which were created by a specific user.',
+ description: 'Return only issues which were created by a specific user',
},
{
displayName: 'Mentioned',
name: 'mentioned',
type: 'string',
default: '',
- description: 'Return only issues in which a specific user was mentioned.',
+ description: 'Return only issues in which a specific user was mentioned',
},
{
displayName: 'Labels',
@@ -1362,7 +1362,7 @@ export class Github implements INodeType {
name: 'since',
type: 'dateTime',
default: '',
- description: 'Return only issues updated at or after this time.',
+ description: 'Return only issues updated at or after this time',
},
{
displayName: 'State',
@@ -1372,21 +1372,21 @@ export class Github implements INodeType {
{
name: 'All',
value: 'all',
- description: 'Returns issues with any state.',
+ description: 'Returns issues with any state',
},
{
name: 'Closed',
value: 'closed',
- description: 'Return issues with "closed" state.',
+ description: 'Return issues with "closed" state',
},
{
name: 'Open',
value: 'open',
- description: 'Return issues with "open" state.',
+ description: 'Return issues with "open" state',
},
],
default: 'open',
- description: 'The state to set.',
+ description: 'The state to set',
},
{
displayName: 'Sort',
@@ -1396,21 +1396,21 @@ export class Github implements INodeType {
{
name: 'Created',
value: 'created',
- description: 'Sort by created date.',
+ description: 'Sort by created date',
},
{
name: 'Updated',
value: 'updated',
- description: 'Sort by updated date.',
+ description: 'Sort by updated date',
},
{
name: 'Comments',
value: 'comments',
- description: 'Sort by comments.',
+ description: 'Sort by comments',
},
],
default: 'created',
- description: 'The order the issues should be returned in.',
+ description: 'The order the issues should be returned in',
},
{
displayName: 'Direction',
@@ -1420,16 +1420,16 @@ export class Github implements INodeType {
{
name: 'Ascending',
value: 'asc',
- description: 'Sort in ascending order.',
+ description: 'Sort in ascending order',
},
{
name: 'Descending',
value: 'desc',
- description: 'Sort in descending order.',
+ description: 'Sort in descending order',
},
],
default: 'desc',
- description: 'The sort order.',
+ description: 'The sort order',
},
],
@@ -1459,7 +1459,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The number of the pull request.',
+ description: 'The number of the pull request',
},
{
displayName: 'Review ID',
@@ -1478,7 +1478,7 @@ export class Github implements INodeType {
],
},
},
- description: 'ID of the review.',
+ description: 'ID of the review',
},
// ----------------------------------
@@ -1500,7 +1500,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The number of the pull request.',
+ description: 'The number of the pull request',
},
{
displayName: 'Return All',
@@ -1517,7 +1517,7 @@ export class Github implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1541,7 +1541,7 @@ export class Github implements INodeType {
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// ----------------------------------
// review:create
@@ -1562,7 +1562,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The number of the pull request to review.',
+ description: 'The number of the pull request to review',
},
{
displayName: 'Event',
@@ -1582,26 +1582,26 @@ export class Github implements INodeType {
{
name: 'Approve',
value: 'approve',
- description: 'Approve the pull request.',
+ description: 'Approve the pull request',
},
{
name: 'Request Change',
value: 'requestChanges',
- description: 'Request code changes.',
+ description: 'Request code changes',
},
{
name: 'Comment',
value: 'comment',
- description: 'Add a comment without approval or change requests.',
+ description: 'Add a comment without approval or change requests',
},
{
name: 'Pending',
value: 'pending',
- description: 'You will need to submit the pull request review when you are ready.',
+ description: 'You will need to submit the pull request review when you are ready',
},
],
default: 'approve',
- description: 'The review action you want to perform.',
+ description: 'The review action you want to perform',
},
{
displayName: 'Body',
@@ -1625,13 +1625,13 @@ export class Github implements INodeType {
},
},
default: '',
- description: 'The body of the review (required for events Request Changes or Comment).',
+ description: 'The body of the review (required for events Request Changes or Comment)',
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
placeholder: 'Add Field',
- description: 'Additional fields.',
+ description: 'Additional fields',
type: 'collection',
default: {},
displayOptions: {
@@ -1650,7 +1650,7 @@ export class Github implements INodeType {
name: 'commitId',
type: 'string',
default: '',
- description: 'The SHA of the commit that needs a review, if different from the latest.',
+ description: 'The SHA of the commit that needs a review, if different from the latest',
},
],
},
@@ -1695,7 +1695,7 @@ export class Github implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1719,7 +1719,7 @@ export class Github implements INodeType {
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// ----------------------------------
// user:invite
@@ -1740,7 +1740,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The GitHub organization that the user is being invited to.',
+ description: 'The GitHub organization that the user is being invited to',
},
{
displayName: 'Email',
@@ -1758,7 +1758,7 @@ export class Github implements INodeType {
],
},
},
- description: 'The email address of the invited user.',
+ description: 'The email address of the invited user',
},
],
};
diff --git a/packages/nodes-base/nodes/Github/GithubTrigger.node.ts b/packages/nodes-base/nodes/Github/GithubTrigger.node.ts
index c968364fd1..deeee9f214 100644
--- a/packages/nodes-base/nodes/Github/GithubTrigger.node.ts
+++ b/packages/nodes-base/nodes/Github/GithubTrigger.node.ts
@@ -88,7 +88,7 @@ export class GithubTrigger implements INodeType {
default: '',
required: true,
placeholder: 'n8n-io',
- description: 'Owner of the repsitory.',
+ description: 'Owner of the repsitory',
},
{
displayName: 'Repository Name',
@@ -97,7 +97,7 @@ export class GithubTrigger implements INodeType {
default: '',
required: true,
placeholder: 'n8n',
- description: 'The name of the repsitory.',
+ description: 'The name of the repsitory',
},
{
displayName: 'Events',
@@ -107,22 +107,22 @@ export class GithubTrigger implements INodeType {
{
name: '*',
value: '*',
- description: 'Any time any event is triggered (Wildcard Event).',
+ description: 'Any time any event is triggered (Wildcard Event)',
},
{
name: 'check_run',
value: 'check_run',
- description: 'Triggered when a check run is created, rerequested, completed, or has a requested_action.',
+ description: 'Triggered when a check run is created, rerequested, completed, or has a requested_action',
},
{
name: 'check_suite',
value: 'check_suite',
- description: 'Triggered when a check suite is completed, requested, or rerequested.',
+ description: 'Triggered when a check suite is completed, requested, or rerequested',
},
{
name: 'commit_comment',
value: 'commit_comment',
- description: 'Triggered when a commit comment is created.',
+ description: 'Triggered when a commit comment is created',
},
{
name: 'content_reference',
@@ -132,42 +132,42 @@ export class GithubTrigger implements INodeType {
{
name: 'create',
value: 'create',
- description: 'Represents a created repository, branch, or tag.',
+ description: 'Represents a created repository, branch, or tag',
},
{
name: 'delete',
value: 'delete',
- description: 'Represents a deleted branch or tag.',
+ description: 'Represents a deleted branch or tag',
},
{
name: 'deploy_key',
value: 'deploy_key',
- description: 'Triggered when a deploy key is added or removed from a repository.',
+ description: 'Triggered when a deploy key is added or removed from a repository',
},
{
name: 'deployment',
value: 'deployment',
- description: 'Represents a deployment.',
+ description: 'Represents a deployment',
},
{
name: 'deployment_status',
value: 'deployment_status',
- description: 'Represents a deployment status.',
+ description: 'Represents a deployment status',
},
{
name: 'fork',
value: 'fork',
- description: 'Triggered when a user forks a repository.',
+ description: 'Triggered when a user forks a repository',
},
{
name: 'github_app_authorization',
value: 'github_app_authorization',
- description: 'Triggered when someone revokes their authorization of a GitHub App.',
+ description: 'Triggered when someone revokes their authorization of a GitHub App',
},
{
name: 'gollum',
value: 'gollum',
- description: 'Triggered when a Wiki page is created or updated.',
+ description: 'Triggered when a Wiki page is created or updated',
},
{
name: 'installation',
@@ -177,32 +177,32 @@ export class GithubTrigger implements INodeType {
{
name: 'installation_repositories',
value: 'installation_repositories',
- description: 'Triggered when a repository is added or removed from an installation.',
+ description: 'Triggered when a repository is added or removed from an installation',
},
{
name: 'issue_comment',
value: 'issue_comment',
- description: 'Triggered when an issue comment is created, edited, or deleted.',
+ description: 'Triggered when an issue comment is created, edited, or deleted',
},
{
name: 'issues',
value: 'issues',
- description: 'Triggered when an issue is opened, edited, deleted, transferred, pinned, unpinned, closed, reopened, assigned, unassigned, labeled, unlabeled, locked, unlocked, milestoned, or demilestoned.',
+ description: 'Triggered when an issue is opened, edited, deleted, transferred, pinned, unpinned, closed, reopened, assigned, unassigned, labeled, unlabeled, locked, unlocked, milestoned, or demilestoned',
},
{
name: 'label',
value: 'label',
- description: 'Triggered when a repository\'s label is created, edited, or deleted.',
+ description: 'Triggered when a repository\'s label is created, edited, or deleted',
},
{
name: 'marketplace_purchase',
value: 'marketplace_purchase',
- description: 'Triggered when someone purchases a GitHub Marketplace plan, cancels their plan, upgrades their plan (effective immediately), downgrades a plan that remains pending until the end of the billing cycle, or cancels a pending plan change.',
+ description: 'Triggered when someone purchases a GitHub Marketplace plan, cancels their plan, upgrades their plan (effective immediately), downgrades a plan that remains pending until the end of the billing cycle, or cancels a pending plan change',
},
{
name: 'member',
value: 'member',
- description: 'Triggered when a user accepts an invitation or is removed as a collaborator to a repository, or has their permissions changed.',
+ description: 'Triggered when a user accepts an invitation or is removed as a collaborator to a repository, or has their permissions changed',
},
{
name: 'membership',
@@ -212,12 +212,12 @@ export class GithubTrigger implements INodeType {
{
name: 'meta',
value: 'meta',
- description: 'Triggered when the webhook that this event is configured on is deleted.',
+ description: 'Triggered when the webhook that this event is configured on is deleted',
},
{
name: 'milestone',
value: 'milestone',
- description: 'Triggered when a milestone is created, closed, opened, edited, or deleted.',
+ description: 'Triggered when a milestone is created, closed, opened, edited, or deleted',
},
{
name: 'organization',
@@ -232,43 +232,43 @@ export class GithubTrigger implements INodeType {
{
name: 'page_build',
value: 'page_build',
- description: 'Triggered on push to a GitHub Pages enabled branch (gh-pages for project pages, master for user and organization pages).',
+ description: 'Triggered on push to a GitHub Pages enabled branch (gh-pages for project pages, master for user and organization pages)',
},
{
name: 'project_card',
value: 'project_card',
- description: 'Triggered when a project card is created, edited, moved, converted to an issue, or deleted.',
+ description: 'Triggered when a project card is created, edited, moved, converted to an issue, or deleted',
},
{
name: 'project_column',
value: 'project_column',
- description: 'Triggered when a project column is created, updated, moved, or deleted.',
+ description: 'Triggered when a project column is created, updated, moved, or deleted',
},
{
name: 'project',
value: 'project',
- description: 'Triggered when a project is created, updated, closed, reopened, or deleted.',
+ description: 'Triggered when a project is created, updated, closed, reopened, or deleted',
},
{
name: 'public',
value: 'public',
- description: 'Triggered when a private repository is open sourced.',
+ description: 'Triggered when a private repository is open sourced',
},
{
name: 'pull_request',
value: 'pull_request',
- description: 'Triggered when a pull request is assigned, unassigned, labeled, unlabeled, opened, edited, closed, reopened, synchronize, ready_for_review, locked, unlocked, a pull request review is requested, or a review request is removed.',
+ description: 'Triggered when a pull request is assigned, unassigned, labeled, unlabeled, opened, edited, closed, reopened, synchronize, ready_for_review, locked, unlocked, a pull request review is requested, or a review request is removed',
},
{
name: 'pull_request_review',
value: 'pull_request_review',
- description: 'Triggered when a pull request review is submitted into a non-pending state, the body is edited, or the review is dismissed.',
+ description: 'Triggered when a pull request review is submitted into a non-pending state, the body is edited, or the review is dismissed',
},
{
name: 'pull_request_review_comment',
value: 'pull_request_review_comment',
- description: 'Triggered when a comment on a pull request\'s unified diff is created, edited, or deleted (in the Files Changed tab).',
+ description: 'Triggered when a comment on a pull request\'s unified diff is created, edited, or deleted (in the Files Changed tab)',
},
{
name: 'push',
@@ -278,7 +278,7 @@ export class GithubTrigger implements INodeType {
{
name: 'release',
value: 'release',
- description: 'Triggered when a release is published, unpublished, created, edited, deleted, or prereleased.',
+ description: 'Triggered when a release is published, unpublished, created, edited, deleted, or prereleased',
},
{
name: 'repository',
@@ -288,27 +288,27 @@ export class GithubTrigger implements INodeType {
{
name: 'repository_import',
value: 'repository_import',
- description: 'Triggered when a successful, cancelled, or failed repository import finishes for a GitHub organization or a personal repository.',
+ description: 'Triggered when a successful, cancelled, or failed repository import finishes for a GitHub organization or a personal repository',
},
{
name: 'repository_vulnerability_alert',
value: 'repository_vulnerability_alert',
- description: 'Triggered when a security alert is created, dismissed, or resolved.',
+ description: 'Triggered when a security alert is created, dismissed, or resolved',
},
{
name: 'security_advisory',
value: 'security_advisory',
- description: 'Triggered when a new security advisory is published, updated, or withdrawn.',
+ description: 'Triggered when a new security advisory is published, updated, or withdrawn',
},
{
name: 'star',
value: 'star',
- description: 'Triggered when a star is added or removed from a repository.',
+ description: 'Triggered when a star is added or removed from a repository',
},
{
name: 'status',
value: 'status',
- description: 'Triggered when the status of a Git commit changes.',
+ description: 'Triggered when the status of a Git commit changes',
},
{
name: 'team',
@@ -318,17 +318,17 @@ export class GithubTrigger implements INodeType {
{
name: 'team_add',
value: 'team_add',
- description: 'Triggered when a repository is added to a team.',
+ description: 'Triggered when a repository is added to a team',
},
{
name: 'watch',
value: 'watch',
- description: 'Triggered when someone stars a repository.',
+ description: 'Triggered when someone stars a repository',
},
],
required: true,
default: [],
- description: 'The events to listen to.',
+ description: 'The events to listen to',
},
],
};
diff --git a/packages/nodes-base/nodes/Gitlab/Gitlab.node.ts b/packages/nodes-base/nodes/Gitlab/Gitlab.node.ts
index 7211ce7893..e8602f1c53 100644
--- a/packages/nodes-base/nodes/Gitlab/Gitlab.node.ts
+++ b/packages/nodes-base/nodes/Gitlab/Gitlab.node.ts
@@ -247,7 +247,7 @@ export class Gitlab implements INodeType {
default: '',
required: true,
placeholder: 'n8n-io',
- description: 'User, group or namespace of the project.',
+ description: 'User, group or namespace of the project',
},
{
displayName: 'Project Name',
@@ -266,7 +266,7 @@ export class Gitlab implements INodeType {
},
},
placeholder: 'n8n',
- description: 'The name of the project.',
+ description: 'The name of the project',
},
// ----------------------------------
@@ -292,7 +292,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The title of the issue.',
+ description: 'The title of the issue',
},
{
displayName: 'Body',
@@ -312,7 +312,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The body of the issue.',
+ description: 'The body of the issue',
},
{
displayName: 'Due Date',
@@ -329,7 +329,7 @@ export class Gitlab implements INodeType {
},
},
default: '',
- description: 'Due Date for issue.',
+ description: 'Due Date for issue',
},
{
displayName: 'Labels',
@@ -356,7 +356,7 @@ export class Gitlab implements INodeType {
name: 'label',
type: 'string',
default: '',
- description: 'Label to add to issue.',
+ description: 'Label to add to issue',
},
],
},
@@ -385,7 +385,7 @@ export class Gitlab implements INodeType {
name: 'assignee',
type: 'number',
default: 0,
- description: 'User ID to assign issue to.',
+ description: 'User ID to assign issue to',
},
],
},
@@ -410,7 +410,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The number of the issue on which to create the comment on.',
+ description: 'The number of the issue on which to create the comment on',
},
{
displayName: 'Body',
@@ -430,7 +430,7 @@ export class Gitlab implements INodeType {
},
},
default: '',
- description: 'The body of the comment.',
+ description: 'The body of the comment',
},
// ----------------------------------
@@ -452,7 +452,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The number of the issue edit.',
+ description: 'The number of the issue edit',
},
{
displayName: 'Edit Fields',
@@ -478,7 +478,7 @@ export class Gitlab implements INodeType {
name: 'title',
type: 'string',
default: '',
- description: 'The title of the issue.',
+ description: 'The title of the issue',
},
{
displayName: 'Body',
@@ -488,7 +488,7 @@ export class Gitlab implements INodeType {
rows: 5,
},
default: '',
- description: 'The body of the issue.',
+ description: 'The body of the issue',
},
{
displayName: 'State',
@@ -507,7 +507,7 @@ export class Gitlab implements INodeType {
},
],
default: 'open',
- description: 'The state to set.',
+ description: 'The state to set',
},
{
displayName: 'Labels',
@@ -524,7 +524,7 @@ export class Gitlab implements INodeType {
name: 'label',
type: 'string',
default: '',
- description: 'Label to add to issue.',
+ description: 'Label to add to issue',
},
],
},
@@ -543,7 +543,7 @@ export class Gitlab implements INodeType {
name: 'assignee',
type: 'string',
default: '',
- description: 'User to assign issue too.',
+ description: 'User to assign issue too',
},
],
},
@@ -552,7 +552,7 @@ export class Gitlab implements INodeType {
name: 'due_date',
type: 'dateTime',
default: '',
- description: 'Due Date for issue.',
+ description: 'Due Date for issue',
},
],
},
@@ -576,7 +576,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The number of the issue get data of.',
+ description: 'The number of the issue get data of',
},
// ----------------------------------
@@ -598,7 +598,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The number of the issue to lock.',
+ description: 'The number of the issue to lock',
},
{
displayName: 'Lock Reason',
@@ -637,7 +637,7 @@ export class Gitlab implements INodeType {
},
],
default: 'resolved',
- description: 'The reason to lock the issue.',
+ description: 'The reason to lock the issue',
},
@@ -665,7 +665,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The tag of the release.',
+ description: 'The tag of the release',
},
{
displayName: 'Additional Fields',
@@ -691,7 +691,7 @@ export class Gitlab implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'The name of the release.',
+ description: 'The name of the release',
},
{
displayName: 'Description',
@@ -701,7 +701,7 @@ export class Gitlab implements INodeType {
rows: 5,
},
default: '',
- description: 'The description of the release.',
+ description: 'The description of the release',
},
{
displayName: 'Ref',
@@ -733,7 +733,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The ID or URL-encoded path of the project.',
+ description: 'The ID or URL-encoded path of the project',
},
{
displayName: 'Tag Name',
@@ -752,7 +752,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The Git tag the release is associated with.',
+ description: 'The Git tag the release is associated with',
},
// ----------------------------------
@@ -774,7 +774,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The ID or URL-encoded path of the project.',
+ description: 'The ID or URL-encoded path of the project',
},
{
displayName: 'Return All',
@@ -791,7 +791,7 @@ export class Gitlab implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -815,7 +815,7 @@ export class Gitlab implements INodeType {
maxValue: 100,
},
default: 20,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -851,7 +851,7 @@ export class Gitlab implements INodeType {
},
],
default: 'released_at',
- description: 'The field to use as order.',
+ description: 'The field to use as order',
},
{
displayName: 'Sort',
@@ -892,7 +892,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The ID or URL-encoded path of the project.',
+ description: 'The ID or URL-encoded path of the project',
},
{
displayName: 'Tag Name',
@@ -910,7 +910,7 @@ export class Gitlab implements INodeType {
],
},
},
- description: 'The Git tag the release is associated with.',
+ description: 'The Git tag the release is associated with',
},
{
displayName: 'Additional Fields',
@@ -936,7 +936,7 @@ export class Gitlab implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'The release name.',
+ description: 'The release name',
},
{
displayName: 'Description',
@@ -950,14 +950,14 @@ export class Gitlab implements INodeType {
name: 'milestones',
type: 'string',
default: '',
- description: 'The title of each milestone to associate with the release (provide a titles list spearated with comma).',
+ description: 'The title of each milestone to associate with the release (provide a titles list spearated with comma)',
},
{
displayName: 'Released At',
name: 'released_at',
type: 'dateTime',
default: '',
- description: 'The date when the release is/was ready..',
+ description: 'The date when the release is/was ready',
},
],
},
@@ -992,14 +992,14 @@ export class Gitlab implements INodeType {
name: 'assignee_username',
type: 'string',
default: '',
- description: 'Return only issues which are assigned to a specific user.',
+ description: 'Return only issues which are assigned to a specific user',
},
{
displayName: 'Creator',
name: 'author_username',
type: 'string',
default: '',
- description: 'Return only issues which were created by a specific user.',
+ description: 'Return only issues which were created by a specific user',
},
{
displayName: 'Labels',
@@ -1013,7 +1013,7 @@ export class Gitlab implements INodeType {
name: 'updated_after',
type: 'dateTime',
default: '',
- description: 'Return only issues updated at or after this time.',
+ description: 'Return only issues updated at or after this time',
},
{
displayName: 'State',
@@ -1037,7 +1037,7 @@ export class Gitlab implements INodeType {
},
],
default: 'opened',
- description: 'The state to filter by.',
+ description: 'The state to filter by',
},
{
displayName: 'Sort',
@@ -1047,21 +1047,21 @@ export class Gitlab implements INodeType {
{
name: 'Created At',
value: 'created_at',
- description: 'Sort by created date.',
+ description: 'Sort by created date',
},
{
name: 'Updated At',
value: 'updated_at',
- description: 'Sort by updated date.',
+ description: 'Sort by updated date',
},
{
name: 'Priority',
value: 'priority',
- description: 'Sort by priority.',
+ description: 'Sort by priority',
},
],
default: 'created_at',
- description: 'The order the issues should be returned in.',
+ description: 'The order the issues should be returned in',
},
{
displayName: 'Direction',
@@ -1080,7 +1080,7 @@ export class Gitlab implements INodeType {
},
],
default: 'desc',
- description: 'The sort order.',
+ description: 'The sort order',
},
],
diff --git a/packages/nodes-base/nodes/Gitlab/GitlabTrigger.node.ts b/packages/nodes-base/nodes/Gitlab/GitlabTrigger.node.ts
index f9f193bf87..737f99ac01 100644
--- a/packages/nodes-base/nodes/Gitlab/GitlabTrigger.node.ts
+++ b/packages/nodes-base/nodes/Gitlab/GitlabTrigger.node.ts
@@ -20,62 +20,62 @@ const GITLAB_EVENTS = [
{
name: 'Comment',
value: 'note',
- description: 'Triggered when a new comment is made on commits, merge requests, issues, and code snippets.',
+ description: 'Triggered when a new comment is made on commits, merge requests, issues, and code snippets',
},
{
name: 'Confidential Issues',
value: 'confidential_issues',
- description: 'Triggered on confidential issues\' events.',
+ description: 'Triggered on confidential issues\' events',
},
{
name: 'Confidential Comments',
value: 'confidential_note',
- description: 'Triggered when a confidential comment is made.',
+ description: 'Triggered when a confidential comment is made',
},
{
name: 'Deployments',
value: 'deployment',
- description: 'Triggered when a deployment starts/succeeds/fails/is cancelled.',
+ description: 'Triggered when a deployment starts/succeeds/fails/is cancelled',
},
{
name: 'Issue',
value: 'issues',
- description: 'Triggered when a new issue is created or an existing issue was updated/closed/reopened.',
+ description: 'Triggered when a new issue is created or an existing issue was updated/closed/reopened',
},
{
name: 'Job',
value: 'job',
- description: 'Triggered on status change of a job.',
+ description: 'Triggered on status change of a job',
},
{
name: 'Merge Request',
value: 'merge_requests',
- description: 'Triggered when a new merge request is created, an existing merge request was updated/merged/closed or a commit is added in the source branch.',
+ description: 'Triggered when a new merge request is created, an existing merge request was updated/merged/closed or a commit is added in the source branch',
},
{
name: 'Pipeline',
value: 'pipeline',
- description: 'Triggered on status change of Pipeline.',
+ description: 'Triggered on status change of Pipeline',
},
{
name: 'Push',
value: 'push',
- description: 'Triggered when you push to the repository except when pushing tags.',
+ description: 'Triggered when you push to the repository except when pushing tags',
},
{
name: 'Release',
value: 'releases',
- description: 'Release events are triggered when a release is created or updated.',
+ description: 'Release events are triggered when a release is created or updated',
},
{
name: 'Tag',
value: 'tag_push',
- description: 'Triggered when you create (or delete) tags to the repository.',
+ description: 'Triggered when you create (or delete) tags to the repository',
},
{
name: 'Wiki Page',
value: 'wiki_page',
- description: 'Triggered when a wiki page is created, updated or deleted.',
+ description: 'Triggered when a wiki page is created, updated or deleted',
},
];
@@ -150,7 +150,7 @@ export class GitlabTrigger implements INodeType {
default: '',
required: true,
placeholder: 'n8n-io',
- description: 'Owner of the repsitory.',
+ description: 'Owner of the repsitory',
},
{
displayName: 'Repository Name',
@@ -159,7 +159,7 @@ export class GitlabTrigger implements INodeType {
default: '',
required: true,
placeholder: 'n8n',
- description: 'The name of the repsitory.',
+ description: 'The name of the repsitory',
},
{
displayName: 'Events',
@@ -170,12 +170,12 @@ export class GitlabTrigger implements INodeType {
{
name: '*',
value: '*',
- description: 'Any time any event is triggered (Wildcard Event).',
+ description: 'Any time any event is triggered (Wildcard Event)',
},
],
required: true,
default: [],
- description: 'The events to listen to.',
+ description: 'The events to listen to',
},
],
};
diff --git a/packages/nodes-base/nodes/GoToWebinar/descriptions/AttendeeDescription.ts b/packages/nodes-base/nodes/GoToWebinar/descriptions/AttendeeDescription.ts
index fccd0b2e88..26b12ab17f 100644
--- a/packages/nodes-base/nodes/GoToWebinar/descriptions/AttendeeDescription.ts
+++ b/packages/nodes-base/nodes/GoToWebinar/descriptions/AttendeeDescription.ts
@@ -46,7 +46,7 @@ export const attendeeFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'Key of the webinar that the attendee attended.',
+ description: 'Key of the webinar that the attendee attended',
displayOptions: {
show: {
resource: [
@@ -67,7 +67,7 @@ export const attendeeFields: INodeProperties[] = [
],
},
default: '',
- description: 'Key of the session that the attendee attended.',
+ description: 'Key of the session that the attendee attended',
displayOptions: {
show: {
resource: [
@@ -86,7 +86,7 @@ export const attendeeFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Registrant key of the attendee at the webinar session.',
+ description: 'Registrant key of the attendee at the webinar session',
displayOptions: {
show: {
resource: [
@@ -108,7 +108,7 @@ export const attendeeFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Registrant key of the attendee at the webinar session.',
+ description: 'Registrant key of the attendee at the webinar session',
displayOptions: {
show: {
resource: [
@@ -126,22 +126,22 @@ export const attendeeFields: INodeProperties[] = [
type: 'options',
required: true,
default: '',
- description: 'The details to retrieve for the attendee.',
+ description: 'The details to retrieve for the attendee',
options: [
{
name: 'Polls',
value: 'polls',
- description: 'Poll answers from the attendee in a webinar session.',
+ description: 'Poll answers from the attendee in a webinar session',
},
{
name: 'Questions',
value: 'questions',
- description: 'Questions asked by the attendee in a webinar session.',
+ description: 'Questions asked by the attendee in a webinar session',
},
{
name: 'Survey Answers',
value: 'surveyAnswers',
- description: 'Survey answers from the attendee in a webinar session.',
+ description: 'Survey answers from the attendee in a webinar session',
},
],
displayOptions: {
@@ -164,7 +164,7 @@ export const attendeeFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -181,7 +181,7 @@ export const attendeeFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
diff --git a/packages/nodes-base/nodes/GoToWebinar/descriptions/CoorganizerDescription.ts b/packages/nodes-base/nodes/GoToWebinar/descriptions/CoorganizerDescription.ts
index f075715f4a..57474c4e26 100644
--- a/packages/nodes-base/nodes/GoToWebinar/descriptions/CoorganizerDescription.ts
+++ b/packages/nodes-base/nodes/GoToWebinar/descriptions/CoorganizerDescription.ts
@@ -50,7 +50,7 @@ export const coorganizerFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar that the co-organizer is hosting.',
+ description: 'Key of the webinar that the co-organizer is hosting',
displayOptions: {
show: {
resource: [
@@ -68,7 +68,7 @@ export const coorganizerFields: INodeProperties[] = [
type: 'boolean',
required: true,
default: false,
- description: 'Whether the co-organizer has no GoToWebinar account.',
+ description: 'Whether the co-organizer has no GoToWebinar account',
displayOptions: {
show: {
resource: [
@@ -85,7 +85,7 @@ export const coorganizerFields: INodeProperties[] = [
name: 'organizerKey',
type: 'string',
default: '',
- description: 'The co-organizer\'s organizer key for the webinar.',
+ description: 'The co-organizer\'s organizer key for the webinar',
displayOptions: {
show: {
resource: [
@@ -105,7 +105,7 @@ export const coorganizerFields: INodeProperties[] = [
name: 'givenName',
type: 'string',
default: '',
- description: 'The co-organizer\'s given name.',
+ description: 'The co-organizer\'s given name',
displayOptions: {
show: {
resource: [
@@ -125,7 +125,7 @@ export const coorganizerFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'The co-organizer\'s email address.',
+ description: 'The co-organizer\'s email address',
displayOptions: {
show: {
resource: [
@@ -153,7 +153,7 @@ export const coorganizerFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar to delete.',
+ description: 'Key of the webinar to delete',
displayOptions: {
show: {
resource: [
@@ -170,7 +170,7 @@ export const coorganizerFields: INodeProperties[] = [
name: 'coorganizerKey',
type: 'string',
default: '',
- description: 'Key of the co-organizer to delete.',
+ description: 'Key of the co-organizer to delete',
displayOptions: {
show: {
resource: [
@@ -213,7 +213,7 @@ export const coorganizerFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar to retrieve all co-organizers from.',
+ description: 'Key of the webinar to retrieve all co-organizers from',
displayOptions: {
show: {
resource: [
@@ -230,7 +230,7 @@ export const coorganizerFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -247,7 +247,7 @@ export const coorganizerFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
@@ -293,7 +293,7 @@ export const coorganizerFields: INodeProperties[] = [
name: 'coorganizerKey',
type: 'string',
default: '',
- description: 'Key of the co-organizer to reinvite.',
+ description: 'Key of the co-organizer to reinvite',
displayOptions: {
show: {
resource: [
@@ -311,7 +311,7 @@ export const coorganizerFields: INodeProperties[] = [
type: 'boolean',
required: true,
default: false,
- description: 'Whether the co-organizer has no GoToWebinar account.',
+ description: 'Whether the co-organizer has no GoToWebinar account',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/GoToWebinar/descriptions/PanelistDescription.ts b/packages/nodes-base/nodes/GoToWebinar/descriptions/PanelistDescription.ts
index 79e5a2c80c..4b677dd25d 100644
--- a/packages/nodes-base/nodes/GoToWebinar/descriptions/PanelistDescription.ts
+++ b/packages/nodes-base/nodes/GoToWebinar/descriptions/PanelistDescription.ts
@@ -47,7 +47,7 @@ export const panelistFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Name of the panelist to create.',
+ description: 'Name of the panelist to create',
displayOptions: {
show: {
resource: [
@@ -65,7 +65,7 @@ export const panelistFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Email address of the panelist to create.',
+ description: 'Email address of the panelist to create',
displayOptions: {
show: {
resource: [
@@ -86,7 +86,7 @@ export const panelistFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar that the panelist will present at.',
+ description: 'Key of the webinar that the panelist will present at',
displayOptions: {
show: {
resource: [
@@ -111,7 +111,7 @@ export const panelistFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar to retrieve all panelists from.',
+ description: 'Key of the webinar to retrieve all panelists from',
displayOptions: {
show: {
resource: [
@@ -128,7 +128,7 @@ export const panelistFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -145,7 +145,7 @@ export const panelistFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
@@ -177,7 +177,7 @@ export const panelistFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar to delete the panelist from.',
+ description: 'Key of the webinar to delete the panelist from',
displayOptions: {
show: {
resource: [
@@ -195,7 +195,7 @@ export const panelistFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Key of the panelist to delete.',
+ description: 'Key of the panelist to delete',
displayOptions: {
show: {
resource: [
@@ -220,7 +220,7 @@ export const panelistFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar to reinvite the panelist to.',
+ description: 'Key of the webinar to reinvite the panelist to',
displayOptions: {
show: {
resource: [
@@ -238,7 +238,7 @@ export const panelistFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Key of the panelist to reinvite.',
+ description: 'Key of the panelist to reinvite',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/GoToWebinar/descriptions/RegistrantDescription.ts b/packages/nodes-base/nodes/GoToWebinar/descriptions/RegistrantDescription.ts
index 93c2347055..9c91cf3f5a 100644
--- a/packages/nodes-base/nodes/GoToWebinar/descriptions/RegistrantDescription.ts
+++ b/packages/nodes-base/nodes/GoToWebinar/descriptions/RegistrantDescription.ts
@@ -50,7 +50,7 @@ export const registrantFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar of the registrant to create.',
+ description: 'Key of the webinar of the registrant to create',
displayOptions: {
show: {
resource: [
@@ -67,7 +67,7 @@ export const registrantFields: INodeProperties[] = [
name: 'firstName',
type: 'string',
default: '',
- description: 'First name of the registrant to create.',
+ description: 'First name of the registrant to create',
displayOptions: {
show: {
resource: [
@@ -84,7 +84,7 @@ export const registrantFields: INodeProperties[] = [
name: 'lastName',
type: 'string',
default: '',
- description: 'Last name of the registrant to create.',
+ description: 'Last name of the registrant to create',
displayOptions: {
show: {
resource: [
@@ -101,7 +101,7 @@ export const registrantFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email address of the registrant to create.',
+ description: 'Email address of the registrant to create',
displayOptions: {
show: {
resource: [
@@ -135,7 +135,7 @@ export const registrantFields: INodeProperties[] = [
name: 'fullAddress',
placeholder: 'Add Address Fields',
type: 'fixedCollection',
- description: 'Full address of the registrant to create.',
+ description: 'Full address of the registrant to create',
default: {},
options: [
{
@@ -181,7 +181,7 @@ export const registrantFields: INodeProperties[] = [
name: 'industry',
type: 'string',
default: '',
- description: 'The type of industry the registrant\'s organization belongs to.',
+ description: 'The type of industry the registrant\'s organization belongs to',
},
{
displayName: 'Job Title',
@@ -197,7 +197,7 @@ export const registrantFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'Set the answers to all questions.',
+ description: 'Set the answers to all questions',
default: {},
options: [
{
@@ -221,7 +221,7 @@ export const registrantFields: INodeProperties[] = [
name: 'AnswerKey',
type: 'string',
default: '',
- description: 'Answer ID of the question.',
+ description: 'Answer ID of the question',
},
],
},
@@ -232,7 +232,7 @@ export const registrantFields: INodeProperties[] = [
name: 'numberOfEmployees',
type: 'string',
default: '',
- description: 'The size in employees of the registrant\'s organization.',
+ description: 'The size in employees of the registrant\'s organization',
},
{
displayName: 'Organization',
@@ -251,21 +251,21 @@ export const registrantFields: INodeProperties[] = [
name: 'purchasingRole',
type: 'string',
default: '',
- description: 'Registrant\'s role in purchasing the product.',
+ description: 'Registrant\'s role in purchasing the product',
},
{
displayName: 'Purchasing Time Frame',
name: 'purchasingTimeFrame',
type: 'string',
default: '',
- description: 'Time frame within which the product will be purchased.',
+ description: 'Time frame within which the product will be purchased',
},
{
displayName: 'Questions and Comments',
name: 'questionsAndComments',
type: 'string',
default: '',
- description: 'Questions or comments made by the registrant during registration.',
+ description: 'Questions or comments made by the registrant during registration',
},
{
displayName: 'Resend Confirmation',
@@ -281,7 +281,7 @@ export const registrantFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'Set the answers to all questions.',
+ description: 'Set the answers to all questions',
default: {},
options: [
{
@@ -305,7 +305,7 @@ export const registrantFields: INodeProperties[] = [
name: 'responseText',
type: 'string',
default: '',
- description: 'Text of the response to the question.',
+ description: 'Text of the response to the question',
},
],
},
@@ -316,7 +316,7 @@ export const registrantFields: INodeProperties[] = [
name: 'source',
type: 'string',
default: '',
- description: 'The source that led to the registration.',
+ description: 'The source that led to the registration',
},
],
},
@@ -333,7 +333,7 @@ export const registrantFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'The key of the webinar to retrieve registrants from.',
+ description: 'The key of the webinar to retrieve registrants from',
displayOptions: {
show: {
resource: [
@@ -350,7 +350,7 @@ export const registrantFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -367,7 +367,7 @@ export const registrantFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
@@ -399,7 +399,7 @@ export const registrantFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar of the registrant to delete.',
+ description: 'Key of the webinar of the registrant to delete',
displayOptions: {
show: {
resource: [
@@ -417,7 +417,7 @@ export const registrantFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Key of the registrant to delete.',
+ description: 'Key of the registrant to delete',
displayOptions: {
show: {
resource: [
@@ -442,7 +442,7 @@ export const registrantFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar of the registrant to retrieve.',
+ description: 'Key of the webinar of the registrant to retrieve',
displayOptions: {
show: {
resource: [
@@ -460,7 +460,7 @@ export const registrantFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Key of the registrant to retrieve.',
+ description: 'Key of the registrant to retrieve',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/GoToWebinar/descriptions/SessionDescription.ts b/packages/nodes-base/nodes/GoToWebinar/descriptions/SessionDescription.ts
index 053049c0c0..9846c7ad8c 100644
--- a/packages/nodes-base/nodes/GoToWebinar/descriptions/SessionDescription.ts
+++ b/packages/nodes-base/nodes/GoToWebinar/descriptions/SessionDescription.ts
@@ -42,7 +42,7 @@ export const sessionFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -59,7 +59,7 @@ export const sessionFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
@@ -111,14 +111,14 @@ export const sessionFields: INodeProperties[] = [
displayName: 'Start Time',
name: 'fromTime',
type: 'dateTime',
- description: 'Start of the datetime range for the session.',
+ description: 'Start of the datetime range for the session',
default: '',
},
{
displayName: 'End Time',
name: 'toTime',
type: 'dateTime',
- description: 'End of the datetime range for the session.',
+ description: 'End of the datetime range for the session',
default: '',
},
],
@@ -133,7 +133,7 @@ export const sessionFields: INodeProperties[] = [
loadOptionsMethod: 'getWebinars',
},
default: {},
- description: 'Webinar by which to filter the sessions to retrieve.',
+ description: 'Webinar by which to filter the sessions to retrieve',
},
],
},
@@ -150,7 +150,7 @@ export const sessionFields: INodeProperties[] = [
},
required: true,
default: [],
- description: 'Key of the webinar to which the session belongs.',
+ description: 'Key of the webinar to which the session belongs',
displayOptions: {
show: {
resource: [
@@ -194,22 +194,22 @@ export const sessionFields: INodeProperties[] = [
{
name: 'Performance',
value: 'performance',
- description: 'Performance details for a webinar session.',
+ description: 'Performance details for a webinar session',
},
{
name: 'Polls',
value: 'polls',
- description: 'Questions and answers for polls from a webinar session.',
+ description: 'Questions and answers for polls from a webinar session',
},
{
name: 'Questions',
value: 'questions',
- description: 'Questions and answers for a past webinar session.',
+ description: 'Questions and answers for a past webinar session',
},
{
name: 'Surveys',
value: 'surveys',
- description: 'Surveys for a past webinar session.',
+ description: 'Surveys for a past webinar session',
},
],
displayOptions: {
diff --git a/packages/nodes-base/nodes/GoToWebinar/descriptions/WebinarDescription.ts b/packages/nodes-base/nodes/GoToWebinar/descriptions/WebinarDescription.ts
index 57c47c63cb..912d276450 100644
--- a/packages/nodes-base/nodes/GoToWebinar/descriptions/WebinarDescription.ts
+++ b/packages/nodes-base/nodes/GoToWebinar/descriptions/WebinarDescription.ts
@@ -184,17 +184,17 @@ export const webinarFields: INodeProperties[] = [
{
name: 'Single Session',
value: 'single_session',
- description: 'Webinar with one single meeting.',
+ description: 'Webinar with one single meeting',
},
{
name: 'Series',
value: 'series',
- description: 'Webinar with multiple meetings times where attendees choose only one to attend.',
+ description: 'Webinar with multiple meetings times where attendees choose only one to attend',
},
{
name: 'Sequence',
value: 'sequence',
- description: 'Webinar with multiple meeting times where attendees are expected to be the same for all sessions.',
+ description: 'Webinar with multiple meeting times where attendees are expected to be the same for all sessions',
},
],
},
@@ -210,7 +210,7 @@ export const webinarFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Key of the webinar to delete.',
+ description: 'Key of the webinar to delete',
displayOptions: {
show: {
resource: [
@@ -257,7 +257,7 @@ export const webinarFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Key of the webinar to retrieve.',
+ description: 'Key of the webinar to retrieve',
displayOptions: {
show: {
resource: [
@@ -278,7 +278,7 @@ export const webinarFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -295,7 +295,7 @@ export const webinarFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 10,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
@@ -347,14 +347,14 @@ export const webinarFields: INodeProperties[] = [
displayName: 'Start Time',
name: 'fromTime',
type: 'dateTime',
- description: 'Start of the datetime range for the webinar.',
+ description: 'Start of the datetime range for the webinar',
default: '',
},
{
displayName: 'End Time',
name: 'toTime',
type: 'dateTime',
- description: 'End of the datetime range for the webinar.',
+ description: 'End of the datetime range for the webinar',
default: '',
},
],
@@ -373,7 +373,7 @@ export const webinarFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Key of the webinar to update.',
+ description: 'Key of the webinar to update',
displayOptions: {
show: {
resource: [
@@ -453,14 +453,14 @@ export const webinarFields: INodeProperties[] = [
name: 'isOnDemand',
type: 'boolean',
default: false,
- description: 'Whether the webinar may be watched anytime.',
+ description: 'Whether the webinar may be watched anytime',
},
{
displayName: 'Is Password Protected',
name: 'isPasswordProtected',
type: 'boolean',
default: false,
- description: 'Whether the webinar requires a password for attendees to join.',
+ description: 'Whether the webinar requires a password for attendees to join',
},
{
displayName: 'Times',
@@ -498,7 +498,7 @@ export const webinarFields: INodeProperties[] = [
name: 'subject',
type: 'string',
default: '',
- description: 'Name or topic of the webinar.',
+ description: 'Name or topic of the webinar',
typeOptions: {
alwaysOpenEditWindow: true,
},
@@ -510,7 +510,7 @@ export const webinarFields: INodeProperties[] = [
required: true,
default: '',
placeholder: '2020-12-11T09:00:00Z',
- description: 'Timezone where the webinar is to take place.',
+ description: 'Timezone where the webinar is to take place',
typeOptions: {
alwaysOpenEditWindow: true,
loadOptionsMethod: 'getTimezones',
@@ -525,17 +525,17 @@ export const webinarFields: INodeProperties[] = [
{
name: 'Single Session',
value: 'single_session',
- description: 'Webinar with one single meeting.',
+ description: 'Webinar with one single meeting',
},
{
name: 'Series',
value: 'series',
- description: 'Webinar with multiple meetings times where attendees choose only one to attend.',
+ description: 'Webinar with multiple meetings times where attendees choose only one to attend',
},
{
name: 'Sequence',
value: 'sequence',
- description: 'Webinar with multiple meeting times where attendees are expected to be the same for all sessions.',
+ description: 'Webinar with multiple meeting times where attendees are expected to be the same for all sessions',
},
],
},
diff --git a/packages/nodes-base/nodes/Google/Analytics/ReportDescription.ts b/packages/nodes-base/nodes/Google/Analytics/ReportDescription.ts
index d70bcfadd4..5fec11b1a7 100644
--- a/packages/nodes-base/nodes/Google/Analytics/ReportDescription.ts
+++ b/packages/nodes-base/nodes/Google/Analytics/ReportDescription.ts
@@ -64,7 +64,7 @@ export const reportFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -88,7 +88,7 @@ export const reportFields: INodeProperties[] = [
maxValue: 1000,
},
default: 1000,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Simplify Response',
@@ -105,7 +105,7 @@ export const reportFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Additional Fields',
@@ -177,7 +177,7 @@ export const reportFields: INodeProperties[] = [
loadOptionsMethod: 'getDimensions',
},
default: '',
- description: 'Name of the dimension to fetch, for example ga:browser.',
+ description: 'Name of the dimension to fetch, for example ga:browser',
},
],
},
@@ -206,7 +206,7 @@ export const reportFields: INodeProperties[] = [
loadOptionsMethod: 'getDimensions',
},
default: '',
- description: 'Name of the dimension to filter by.',
+ description: 'Name of the dimension to filter by',
},
// https://developers.google.com/analytics/devguides/reporting/core/v4/rest/v4/reports/batchGet#Operator
{
@@ -214,7 +214,7 @@ export const reportFields: INodeProperties[] = [
name: 'operator',
type: 'options',
default: 'EXACT',
- description: 'Operator to use in combination with value.',
+ description: 'Operator to use in combination with value',
options: [
{
name: 'Begins With',
@@ -256,7 +256,7 @@ export const reportFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'ga:newUsers',
- description: `String or regular expression to match against.`,
+ description: 'String or regular expression to match against',
},
],
},
@@ -267,21 +267,21 @@ export const reportFields: INodeProperties[] = [
name: 'hideTotals',
type: 'boolean',
default: false,
- description: 'If set to true, hides the total of all metrics for all the matching rows, for every date range.',
+ description: 'If set to true, hides the total of all metrics for all the matching rows, for every date range',
},
{
displayName: 'Hide Value Ranges',
name: 'hideValueRanges',
type: 'boolean',
default: false,
- description: 'If set to true, hides the minimum and maximum across all matching rows.',
+ description: 'If set to true, hides the minimum and maximum across all matching rows',
},
{
displayName: 'Include Empty Rows',
name: 'includeEmptyRows',
type: 'boolean',
default: false,
- description: 'If set to false, the response exclude rows if all the retrieved metrics are equal to zero.',
+ description: 'If set to false, the response exclude rows if all the retrieved metrics are equal to zero',
},
{
displayName: 'Metrics',
@@ -317,7 +317,7 @@ export const reportFields: INodeProperties[] = [
name: 'formattingType',
type: 'options',
default: 'INTEGER',
- description: 'Specifies how the metric expression should be formatted.',
+ description: 'Specifies how the metric expression should be formatted',
options: [
{
name: 'Currency',
@@ -350,7 +350,7 @@ export const reportFields: INodeProperties[] = [
name: 'useResourceQuotas',
type: 'boolean',
default: false,
- description: 'Enables resource based quotas.',
+ description: 'Enables resource based quotas',
},
],
},
diff --git a/packages/nodes-base/nodes/Google/Analytics/UserActivityDescription.ts b/packages/nodes-base/nodes/Google/Analytics/UserActivityDescription.ts
index d3cec1afe9..c19e7f1957 100644
--- a/packages/nodes-base/nodes/Google/Analytics/UserActivityDescription.ts
+++ b/packages/nodes-base/nodes/Google/Analytics/UserActivityDescription.ts
@@ -18,7 +18,7 @@ export const userActivityOperations: INodeProperties[] = [
{
name: 'Search',
value: 'search',
- description: 'Return user activity data.',
+ description: 'Return user activity data',
},
],
default: 'search',
@@ -47,7 +47,7 @@ export const userActivityFields: INodeProperties[] = [
},
},
placeholder: '123456',
- description: 'The View ID of Google Analytics.',
+ description: 'The View ID of Google Analytics',
},
{
displayName: 'User ID',
@@ -66,7 +66,7 @@ export const userActivityFields: INodeProperties[] = [
},
},
placeholder: '123456',
- description: 'ID of a user.',
+ description: 'ID of a user',
},
{
displayName: 'Return All',
@@ -83,7 +83,7 @@ export const userActivityFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -107,7 +107,7 @@ export const userActivityFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -152,7 +152,7 @@ export const userActivityFields: INodeProperties[] = [
value: 'SCREENVIEW',
},
],
- description: 'Type of activites requested.',
+ description: 'Type of activites requested',
default: [],
},
],
diff --git a/packages/nodes-base/nodes/Google/Books/GoogleBooks.node.ts b/packages/nodes-base/nodes/Google/Books/GoogleBooks.node.ts
index bfae98ad66..14bfb7ed8f 100644
--- a/packages/nodes-base/nodes/Google/Books/GoogleBooks.node.ts
+++ b/packages/nodes-base/nodes/Google/Books/GoogleBooks.node.ts
@@ -216,7 +216,7 @@ export class GoogleBooks implements INodeType {
displayName: 'Search Query',
name: 'searchQuery',
type: 'string',
- description: 'Full-text search query string.',
+ description: 'Full-text search query string',
default: '',
required: true,
displayOptions: {
@@ -259,7 +259,7 @@ export class GoogleBooks implements INodeType {
displayName: 'Bookshelf ID',
name: 'shelfId',
type: 'string',
- description: 'ID of the bookshelf.',
+ description: 'ID of the bookshelf',
default: '',
required: true,
displayOptions: {
@@ -282,7 +282,7 @@ export class GoogleBooks implements INodeType {
displayName: 'Bookshelf ID',
name: 'shelfId',
type: 'string',
- description: 'ID of the bookshelf.',
+ description: 'ID of the bookshelf',
default: '',
required: true,
displayOptions: {
@@ -300,7 +300,7 @@ export class GoogleBooks implements INodeType {
displayName: 'Volume ID',
name: 'volumeId',
type: 'string',
- description: 'ID of the volume.',
+ description: 'ID of the volume',
default: '',
required: true,
displayOptions: {
@@ -322,7 +322,7 @@ export class GoogleBooks implements INodeType {
displayName: 'Volume Position',
name: 'volumePosition',
type: 'string',
- description: 'Position on shelf to move the item (0 puts the item before the current first item, 1 puts it between the first and the second and so on).',
+ description: 'Position on shelf to move the item (0 puts the item before the current first item, 1 puts it between the first and the second and so on)',
default: '',
required: true,
displayOptions: {
@@ -348,7 +348,7 @@ export class GoogleBooks implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -369,7 +369,7 @@ export class GoogleBooks implements INodeType {
maxValue: 40,
},
default: 40,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
],
};
diff --git a/packages/nodes-base/nodes/Google/Calendar/CalendarDescription.ts b/packages/nodes-base/nodes/Google/Calendar/CalendarDescription.ts
index 58842b9562..b4f7e3af88 100644
--- a/packages/nodes-base/nodes/Google/Calendar/CalendarDescription.ts
+++ b/packages/nodes-base/nodes/Google/Calendar/CalendarDescription.ts
@@ -108,21 +108,21 @@ export const calendarFields: INodeProperties[] = [
{
name: 'Availability',
value: 'availability',
- description: 'Returns if there are any events in the given time or not.',
+ description: 'Returns if there are any events in the given time or not',
},
{
name: 'Booked Slots',
value: 'bookedSlots',
- description: 'Returns the booked slots.',
+ description: 'Returns the booked slots',
},
{
name: 'RAW',
value: 'raw',
- description: 'Returns the RAW data from the API.',
+ description: 'Returns the RAW data from the API',
},
],
default: 'availability',
- description: 'The format to return the data in.',
+ description: 'The format to return the data in',
},
{
displayName: 'Timezone',
diff --git a/packages/nodes-base/nodes/Google/Calendar/EventDescription.ts b/packages/nodes-base/nodes/Google/Calendar/EventDescription.ts
index c2c3b1b143..c59ce0cc9a 100644
--- a/packages/nodes-base/nodes/Google/Calendar/EventDescription.ts
+++ b/packages/nodes-base/nodes/Google/Calendar/EventDescription.ts
@@ -87,7 +87,7 @@ export const eventFields: INodeProperties[] = [
},
},
default: '',
- description: 'Start time of the event.',
+ description: 'Start time of the event',
},
{
displayName: 'End',
@@ -105,7 +105,7 @@ export const eventFields: INodeProperties[] = [
},
},
default: '',
- description: 'End time of the event.',
+ description: 'End time of the event',
},
{
displayName: 'Use Default Reminders',
@@ -176,7 +176,7 @@ export const eventFields: INodeProperties[] = [
loadOptionsMethod: 'getColors',
},
default: '',
- description: 'The color of the event.',
+ description: 'The color of the event',
},
{
displayName: 'Conference Data',
@@ -237,7 +237,7 @@ export const eventFields: INodeProperties[] = [
name: 'guestsCanSeeOtherGuests',
type: 'boolean',
default: true,
- description: `Whether attendees other than the organizer can see who the event's attendees are.`,
+ description: 'Whether attendees other than the organizer can see who the event\'s attendees are',
},
{
displayName: 'ID',
@@ -251,7 +251,7 @@ export const eventFields: INodeProperties[] = [
name: 'location',
type: 'string',
default: '',
- description: 'Geographic location of the event as free-form text.',
+ description: 'Geographic location of the event as free-form text',
},
{
displayName: 'Max Attendees',
@@ -335,7 +335,7 @@ export const eventFields: INodeProperties[] = [
name: 'summary',
type: 'string',
default: '',
- description: 'Title of the event.',
+ description: 'Title of the event',
},
{
displayName: 'Show Me As',
@@ -350,7 +350,7 @@ export const eventFields: INodeProperties[] = [
{
name: 'Busy',
value: 'opaque',
- description: ' The event does block time on the calendar.',
+ description: ' The event does block time on the calendar',
},
],
default: 'opaque',
@@ -369,21 +369,21 @@ export const eventFields: INodeProperties[] = [
{
name: 'Default',
value: 'default',
- description: 'Uses the default visibility for events on the calendar.',
+ description: 'Uses the default visibility for events on the calendar',
},
{
name: 'Private',
value: 'private',
- description: 'The event is private and only event attendees may view event details.',
+ description: 'The event is private and only event attendees may view event details',
},
{
name: 'Public',
value: 'public',
- description: 'The event is public and event details are visible to all readers of the calendar.',
+ description: 'The event is public and event details are visible to all readers of the calendar',
},
],
default: 'default',
- description: 'Visibility of the event.',
+ description: 'Visibility of the event',
},
],
},
@@ -585,7 +585,7 @@ export const eventFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -609,7 +609,7 @@ export const eventFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -655,39 +655,39 @@ export const eventFields: INodeProperties[] = [
{
name: 'Updated',
value: 'updated',
- description: 'Order by last modification time (ascending).',
+ description: 'Order by last modification time (ascending)',
},
],
default: '',
- description: 'The order of the events returned in the result.',
+ description: 'The order of the events returned in the result',
},
{
displayName: 'Query',
name: 'query',
type: 'string',
default: '',
- description: 'Free text search terms to find events that match these terms in any field, except for extended properties.',
+ description: 'Free text search terms to find events that match these terms in any field, except for extended properties',
},
{
displayName: 'Show Deleted',
name: 'showDeleted',
type: 'boolean',
default: false,
- description: 'Whether to include deleted events (with status equals "cancelled") in the result.',
+ description: 'Whether to include deleted events (with status equals "cancelled") in the result',
},
{
displayName: 'Show Hidden Invitations',
name: 'showHiddenInvitations',
type: 'boolean',
default: false,
- description: 'Whether to include hidden invitations in the result.',
+ description: 'Whether to include hidden invitations in the result',
},
{
displayName: 'Single Events',
name: 'singleEvents',
type: 'boolean',
default: false,
- description: `Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves.`,
+ description: 'Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves',
},
{
displayName: 'Start Time',
@@ -813,7 +813,7 @@ export const eventFields: INodeProperties[] = [
loadOptionsMethod: 'getColors',
},
default: '',
- description: 'The color of the event.',
+ description: 'The color of the event',
},
{
displayName: 'Description',
@@ -829,7 +829,7 @@ export const eventFields: INodeProperties[] = [
name: 'end',
type: 'dateTime',
default: '',
- description: 'End time of the event.',
+ description: 'End time of the event',
},
{
displayName: 'Guests Can Invite Others',
@@ -850,7 +850,7 @@ export const eventFields: INodeProperties[] = [
name: 'guestsCanSeeOtherGuests',
type: 'boolean',
default: true,
- description: `Whether attendees other than the organizer can see who the event's attendees are.`,
+ description: 'Whether attendees other than the organizer can see who the event\'s attendees are',
},
{
displayName: 'ID',
@@ -864,7 +864,7 @@ export const eventFields: INodeProperties[] = [
name: 'location',
type: 'string',
default: '',
- description: 'Geographic location of the event as free-form text.',
+ description: 'Geographic location of the event as free-form text',
},
{
displayName: 'Max Attendees',
@@ -924,7 +924,7 @@ export const eventFields: INodeProperties[] = [
name: 'start',
type: 'dateTime',
default: '',
- description: 'Start time of the event.',
+ description: 'Start time of the event',
},
{
displayName: 'Send Updates',
@@ -955,7 +955,7 @@ export const eventFields: INodeProperties[] = [
name: 'summary',
type: 'string',
default: '',
- description: 'Title of the event.',
+ description: 'Title of the event',
},
{
displayName: 'Show Me As',
@@ -970,7 +970,7 @@ export const eventFields: INodeProperties[] = [
{
name: 'Busy',
value: 'opaque',
- description: ' The event does block time on the calendar.',
+ description: ' The event does block time on the calendar',
},
],
default: 'opaque',
@@ -989,21 +989,21 @@ export const eventFields: INodeProperties[] = [
{
name: 'Default',
value: 'default',
- description: 'Uses the default visibility for events on the calendar.',
+ description: 'Uses the default visibility for events on the calendar',
},
{
name: 'Public',
value: 'public',
- description: 'The event is public and event details are visible to all readers of the calendar.',
+ description: 'The event is public and event details are visible to all readers of the calendar',
},
{
name: 'Private',
value: 'private',
- description: 'The event is private and only event attendees may view event details.',
+ description: 'The event is private and only event attendees may view event details',
},
],
default: 'default',
- description: 'Visibility of the event.',
+ description: 'Visibility of the event',
},
],
},
diff --git a/packages/nodes-base/nodes/Google/CloudNaturalLanguage/GoogleCloudNaturalLanguage.node.ts b/packages/nodes-base/nodes/Google/CloudNaturalLanguage/GoogleCloudNaturalLanguage.node.ts
index ad4166317f..0f596a9321 100644
--- a/packages/nodes-base/nodes/Google/CloudNaturalLanguage/GoogleCloudNaturalLanguage.node.ts
+++ b/packages/nodes-base/nodes/Google/CloudNaturalLanguage/GoogleCloudNaturalLanguage.node.ts
@@ -91,7 +91,7 @@ export class GoogleCloudNaturalLanguage implements INodeType {
},
],
default: 'content',
- description: 'The source of the document: a string containing the content or a Google Cloud Storage URI.',
+ description: 'The source of the document: a string containing the content or a Google Cloud Storage URI',
required: true,
displayOptions: {
show: {
@@ -166,7 +166,7 @@ export class GoogleCloudNaturalLanguage implements INodeType {
},
],
default: 'PLAIN_TEXT',
- description: 'The type of input document.',
+ description: 'The type of input document',
required: true,
},
{
@@ -192,7 +192,7 @@ export class GoogleCloudNaturalLanguage implements INodeType {
},
],
default: 'UTF16',
- description: 'The encoding type used by the API to calculate sentence offsets.',
+ description: 'The encoding type used by the API to calculate sentence offsets',
},
{
displayName: 'Language',
diff --git a/packages/nodes-base/nodes/Google/Contacts/ContactDescription.ts b/packages/nodes-base/nodes/Google/Contacts/ContactDescription.ts
index fef23c473d..5e7397231e 100644
--- a/packages/nodes-base/nodes/Google/Contacts/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Google/Contacts/ContactDescription.ts
@@ -233,14 +233,14 @@ export const contactFields: INodeProperties[] = [
displayName: 'Key',
name: 'key',
type: 'string',
- description: 'The end user specified key of the user defined data.',
+ description: 'The end user specified key of the user defined data',
default: '',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
- description: 'The end user specified value of the user defined data.',
+ description: 'The end user specified value of the user defined data',
default: '',
},
],
@@ -287,7 +287,7 @@ export const contactFields: INodeProperties[] = [
name: 'value',
type: 'string',
default: '',
- description: 'The email address.',
+ description: 'The email address',
},
],
},
@@ -299,7 +299,7 @@ export const contactFields: INodeProperties[] = [
type: 'fixedCollection',
default: {},
placeholder: 'Add Event',
- description: 'An event related to the person.',
+ description: 'An event related to the person',
typeOptions: {
multipleValues: true,
},
@@ -313,7 +313,7 @@ export const contactFields: INodeProperties[] = [
name: 'date',
type: 'dateTime',
default: '',
- description: 'The date of the event.',
+ description: 'The date of the event',
},
{
displayName: 'Type',
@@ -341,7 +341,7 @@ export const contactFields: INodeProperties[] = [
name: 'fileAs',
type: 'string',
default: '',
- description: 'The name that should be used to sort the person in a list.',
+ description: 'The name that should be used to sort the person in a list',
},
{
displayName: 'Group',
@@ -454,7 +454,7 @@ export const contactFields: INodeProperties[] = [
name: 'value',
type: 'string',
default: '',
- description: 'The phone number.',
+ description: 'The phone number',
},
],
},
@@ -479,7 +479,7 @@ export const contactFields: INodeProperties[] = [
name: 'person',
type: 'string',
default: '',
- description: 'The name of the other person this relation refers to.',
+ description: 'The name of the other person this relation refers to',
},
{
displayName: 'Type',
@@ -722,7 +722,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
/* -------------------------------------------------------------------------- */
/* contact:getAll */
@@ -742,7 +742,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -766,7 +766,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Fields',
@@ -939,7 +939,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
{
displayName: 'Options',
@@ -969,26 +969,26 @@ export const contactFields: INodeProperties[] = [
{
name: 'Last Modified Ascending',
value: 'LAST_MODIFIED_ASCENDING',
- description: 'Sort people by when they were changed; older entries first.',
+ description: 'Sort people by when they were changed; older entries first',
},
{
name: 'Last Modified Descending',
value: 'LAST_MODIFIED_DESCENDING',
- description: 'Sort people by when they were changed; newer entries first.',
+ description: 'Sort people by when they were changed; newer entries first',
},
{
name: 'First Name Ascending',
value: 'FIRST_NAME_ASCENDING',
- description: 'Sort people by first name.',
+ description: 'Sort people by first name',
},
{
name: 'Last Name Ascending',
value: 'LAST_NAME_ASCENDING',
- description: 'Sort people by last name.',
+ description: 'Sort people by last name',
},
],
default: '',
- description: 'The order of the contacts returned in the result.',
+ description: 'The order of the contacts returned in the result',
},
],
},
@@ -1301,14 +1301,14 @@ export const contactFields: INodeProperties[] = [
displayName: 'Key',
name: 'key',
type: 'string',
- description: 'The end user specified key of the user defined data.',
+ description: 'The end user specified key of the user defined data',
default: '',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
- description: 'The end user specified value of the user defined data.',
+ description: 'The end user specified value of the user defined data',
default: '',
},
],
@@ -1355,7 +1355,7 @@ export const contactFields: INodeProperties[] = [
name: 'value',
type: 'string',
default: '',
- description: 'The email address.',
+ description: 'The email address',
},
],
},
@@ -1367,7 +1367,7 @@ export const contactFields: INodeProperties[] = [
type: 'fixedCollection',
default: {},
placeholder: 'Add Event',
- description: 'An event related to the person.',
+ description: 'An event related to the person',
typeOptions: {
multipleValues: true,
},
@@ -1381,7 +1381,7 @@ export const contactFields: INodeProperties[] = [
name: 'date',
type: 'dateTime',
default: '',
- description: 'The date of the event.',
+ description: 'The date of the event',
},
{
displayName: 'Type',
@@ -1409,7 +1409,7 @@ export const contactFields: INodeProperties[] = [
name: 'fileAs',
type: 'string',
default: '',
- description: 'The name that should be used to sort the person in a list.',
+ description: 'The name that should be used to sort the person in a list',
},
{
displayName: 'Group',
@@ -1522,7 +1522,7 @@ export const contactFields: INodeProperties[] = [
name: 'value',
type: 'string',
default: '',
- description: 'The phone number.',
+ description: 'The phone number',
},
],
},
@@ -1547,7 +1547,7 @@ export const contactFields: INodeProperties[] = [
name: 'person',
type: 'string',
default: '',
- description: 'The name of the other person this relation refers to.',
+ description: 'The name of the other person this relation refers to',
},
{
displayName: 'Type',
diff --git a/packages/nodes-base/nodes/Google/Docs/DocumentDescription.ts b/packages/nodes-base/nodes/Google/Docs/DocumentDescription.ts
index 6bcaa56ea9..58df8f9fb5 100644
--- a/packages/nodes-base/nodes/Google/Docs/DocumentDescription.ts
+++ b/packages/nodes-base/nodes/Google/Docs/DocumentDescription.ts
@@ -117,7 +117,7 @@ export const documentFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID in the document URL (or just paste the whole URL).',
+ description: 'The ID in the document URL (or just paste the whole URL)',
},
{
displayName: 'Simple',
@@ -134,7 +134,7 @@ export const documentFields: INodeProperties[] = [
},
},
default: true,
- description: 'When set to true the document text content will be used else the raw data.',
+ description: 'When set to true the document text content will be used else the raw data',
},
/* -------------------------------------------------------------------------- */
@@ -156,7 +156,7 @@ export const documentFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID in the document URL (or just paste the whole URL).',
+ description: 'The ID in the document URL (or just paste the whole URL)',
},
{
displayName: 'Simple',
@@ -173,12 +173,12 @@ export const documentFields: INodeProperties[] = [
},
},
default: true,
- description: 'When set to true a simplified version of the response will be used else the raw data.',
+ description: 'When set to true a simplified version of the response will be used else the raw data',
},
{
displayName: 'Actions',
name: 'actionsUi',
- description: 'Actions applied to update the document.',
+ description: 'Actions applied to update the document',
type: 'fixedCollection',
placeholder: 'Add Action',
typeOptions: {
@@ -257,7 +257,7 @@ export const documentFields: INodeProperties[] = [
value: 'text',
},
],
- description: 'The update object.',
+ description: 'The update object',
default: 'text',
},
// Action fields (depend on the Object field)
@@ -282,7 +282,7 @@ export const documentFields: INodeProperties[] = [
],
},
},
- description: 'The update action.',
+ description: 'The update action',
default: '',
},
{
@@ -309,7 +309,7 @@ export const documentFields: INodeProperties[] = [
],
},
},
- description: 'The update action.',
+ description: 'The update action',
default: '',
},
{
@@ -334,7 +334,7 @@ export const documentFields: INodeProperties[] = [
],
},
},
- description: 'The update action.',
+ description: 'The update action',
default: '',
},
{
@@ -355,7 +355,7 @@ export const documentFields: INodeProperties[] = [
],
},
},
- description: 'The update action.',
+ description: 'The update action',
default: '',
},
{
@@ -375,7 +375,7 @@ export const documentFields: INodeProperties[] = [
],
},
},
- description: 'The update action.',
+ description: 'The update action',
default: '',
},
// Shared Segment inputs for Create action (moved up for display purposes)
@@ -397,7 +397,7 @@ export const documentFields: INodeProperties[] = [
value: 'footer',
},
],
- description: 'The location where to create the object.',
+ description: 'The location where to create the object',
default: 'body',
displayOptions: {
show: {
@@ -445,7 +445,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Index',
name: 'index',
type: 'number',
- description: 'The zero-based index, relative to the beginning of the specified segment.',
+ description: 'The zero-based index, relative to the beginning of the specified segment',
default: 0,
displayOptions: {
show: {
@@ -481,7 +481,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Start Index',
name: 'startIndex',
type: 'number',
- description: 'The zero-based start index of this range.',
+ description: 'The zero-based start index of this range',
default: 0,
displayOptions: {
show: {
@@ -498,7 +498,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'End Index',
name: 'endIndex',
type: 'number',
- description: 'The zero-based end index of this range.',
+ description: 'The zero-based end index of this range',
default: 0,
displayOptions: {
show: {
@@ -520,12 +520,12 @@ export const documentFields: INodeProperties[] = [
{
name: 'Bullet List',
value: 'BULLET_DISC_CIRCLE_SQUARE',
- description: 'A bulleted list with a DISC
, CIRCLE
and SQUARE
bullet glyph for the first 3 list nesting levels.',
+ description: 'A bulleted list with a DISC
, CIRCLE
and SQUARE
bullet glyph for the first 3 list nesting levels',
},
{
name: 'Checkbox List',
value: 'BULLET_CHECKBOX',
- description: 'A bulleted list with CHECKBOX bullet glyphs for all list nesting levels.',
+ description: 'A bulleted list with CHECKBOX bullet glyphs for all list nesting levels',
},
{
name: 'Numbered List',
@@ -533,7 +533,7 @@ export const documentFields: INodeProperties[] = [
description: 'A numbered list with DECIMAL
numeric glyphs separated by periods, where each nesting level uses the previous nesting level\'s glyph as a prefix. For example: 1., 1.1., 2., 2.2 .',
},
],
- description: 'The Preset pattern of bullet glyphs for list.',
+ description: 'The Preset pattern of bullet glyphs for list',
default: 'BULLET_DISC_CIRCLE_SQUARE',
displayOptions: {
show: {
@@ -597,7 +597,7 @@ export const documentFields: INodeProperties[] = [
value: 'name',
},
],
- description: 'The value determines which range or ranges to delete.',
+ description: 'The value determines which range or ranges to delete',
default: 'namedRangeId',
displayOptions: {
show: {
@@ -614,7 +614,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'ID',
name: 'value',
type: 'string',
- description: 'The ID of the range.',
+ description: 'The ID of the range',
default: '',
displayOptions: {
show: {
@@ -634,7 +634,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Name',
name: 'value',
type: 'string',
- description: 'The name of the range.',
+ description: 'The name of the range',
default: '',
displayOptions: {
show: {
@@ -656,7 +656,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Object ID',
name: 'objectId',
type: 'string',
- description: 'The ID of the positioned object to delete (An object that is tied to a paragraph and positioned relative to its beginning), See the Google documentation.',
+ description: 'The ID of the positioned object to delete (An object that is tied to a paragraph and positioned relative to its beginning), See the Google documentation',
default: '',
displayOptions: {
show: {
@@ -690,7 +690,7 @@ export const documentFields: INodeProperties[] = [
value: 'footer',
},
],
- description: 'The location where to create the object.',
+ description: 'The location where to create the object',
default: 'body',
displayOptions: {
show: {
@@ -742,14 +742,14 @@ export const documentFields: INodeProperties[] = [
{
name: 'At end of specific position',
value: 'endOfSegmentLocation',
- description: 'Inserts the text at the end of a header, footer, footnote, or document body.',
+ description: 'Inserts the text at the end of a header, footer, footnote, or document body',
},
{
name: 'At index',
value: 'location',
},
],
- description: 'The location where the text will be inserted.',
+ description: 'The location where the text will be inserted',
default: 'endOfSegmentLocation',
displayOptions: {
show: {
@@ -766,7 +766,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Index',
name: 'index',
type: 'number',
- description: 'The zero-based index, relative to the beginning of the specified segment.',
+ description: 'The zero-based index, relative to the beginning of the specified segment',
displayOptions: {
show: {
locationChoice: [
@@ -794,14 +794,14 @@ export const documentFields: INodeProperties[] = [
{
name: 'At end of specific position',
value: 'endOfSegmentLocation',
- description: 'Inserts the text at the end of a header, footer, footnote, or document body.',
+ description: 'Inserts the text at the end of a header, footer, footnote, or document body',
},
{
name: 'At index',
value: 'location',
},
],
- description: 'The location where the text will be inserted.',
+ description: 'The location where the text will be inserted',
default: 'endOfSegmentLocation',
displayOptions: {
show: {
@@ -818,7 +818,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Index',
name: 'index',
type: 'number',
- description: 'The zero-based index, relative to the beginning of the specified segment (use index + 1 to refer to a table).',
+ description: 'The zero-based index, relative to the beginning of the specified segment (use index + 1 to refer to a table)',
displayOptions: {
show: {
locationChoice: [
@@ -841,7 +841,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Rows',
name: 'rows',
type: 'number',
- description: 'The number of rows in the table.',
+ description: 'The number of rows in the table',
default: 0,
displayOptions: {
show: {
@@ -858,7 +858,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Columns',
name: 'columns',
type: 'number',
- description: 'The number of columns in the table.',
+ description: 'The number of columns in the table',
default: 0,
displayOptions: {
show: {
@@ -880,14 +880,14 @@ export const documentFields: INodeProperties[] = [
{
name: 'At end of specific position',
value: 'endOfSegmentLocation',
- description: 'Inserts the text at the end of a header, footer, footnote, or document body.',
+ description: 'Inserts the text at the end of a header, footer, footnote, or document body',
},
{
name: 'At index',
value: 'location',
},
],
- description: 'The location where the text will be inserted.',
+ description: 'The location where the text will be inserted',
default: 'endOfSegmentLocation',
displayOptions: {
show: {
@@ -907,7 +907,7 @@ export const documentFields: INodeProperties[] = [
typeOptions: {
minValue: 1,
},
- description: 'The zero-based index, relative to the beginning of the specified segment.',
+ description: 'The zero-based index, relative to the beginning of the specified segment',
displayOptions: {
show: {
locationChoice: [
@@ -927,7 +927,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Text',
name: 'text',
type: 'string',
- description: 'The text to insert in the document.',
+ description: 'The text to insert in the document',
default: '',
displayOptions: {
show: {
@@ -945,7 +945,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Old Text',
name: 'text',
type: 'string',
- description: 'The text to search for in the document.',
+ description: 'The text to search for in the document',
default: '',
displayOptions: {
show: {
@@ -962,7 +962,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'New Text',
name: 'replaceText',
type: 'string',
- description: 'The text that will replace the matched text.',
+ description: 'The text that will replace the matched text',
default: '',
displayOptions: {
show: {
@@ -979,7 +979,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Match Case',
name: 'matchCase',
type: 'boolean',
- description: 'Indicates whether the search should respect case sensitivity.',
+ description: 'Indicates whether the search should respect case sensitivity',
default: false,
displayOptions: {
show: {
@@ -1011,7 +1011,7 @@ export const documentFields: INodeProperties[] = [
value: 'footer',
},
],
- description: 'The location where to create the object.',
+ description: 'The location where to create the object',
default: 'body',
displayOptions: {
show: {
@@ -1055,7 +1055,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Start Index',
name: 'startIndex',
type: 'number',
- description: 'The zero-based start index of this range.',
+ description: 'The zero-based start index of this range',
default: 0,
displayOptions: {
show: {
@@ -1069,7 +1069,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'End Index',
name: 'endIndex',
type: 'number',
- description: 'The zero-based end index of this range.',
+ description: 'The zero-based end index of this range',
default: 0,
displayOptions: {
show: {
@@ -1111,7 +1111,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Index',
name: 'index',
type: 'number',
- description: 'The zero-based index, relative to the beginning of the specified segment (use index + 1 to refer to a table).',
+ description: 'The zero-based index, relative to the beginning of the specified segment (use index + 1 to refer to a table)',
default: 1,
typeOptions: {
minValue: 1,
@@ -1129,7 +1129,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Row Index',
name: 'rowIndex',
type: 'number',
- description: 'The zero-based row index.',
+ description: 'The zero-based row index',
default: 0,
displayOptions: {
show: {
@@ -1144,7 +1144,7 @@ export const documentFields: INodeProperties[] = [
displayName: 'Column Index',
name: 'columnIndex',
type: 'number',
- description: 'The zero-based column index.',
+ description: 'The zero-based column index',
default: 0,
displayOptions: {
show: {
@@ -1197,7 +1197,7 @@ export const documentFields: INodeProperties[] = [
},
],
default: 'requiredRevisionId',
- description: 'Determines how the changes are applied to the revision.',
+ description: 'Determines how the changes are applied to the revision',
},
{
displayName: 'Revision ID',
diff --git a/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts b/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts
index 1d5069a2c9..f4cdc45fec 100644
--- a/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts
+++ b/packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts
@@ -204,7 +204,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The ID of the file to copy.',
+ description: 'The ID of the file to copy',
},
// ----------------------------------
@@ -227,7 +227,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The ID of the file/folder to delete.',
+ description: 'The ID of the file/folder to delete',
},
@@ -250,7 +250,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The ID of the file to download.',
+ description: 'The ID of the file to download',
},
{
displayName: 'Binary Property',
@@ -268,7 +268,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
{
displayName: 'Options',
@@ -434,7 +434,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'If a query string should be used to filter results.',
+ description: 'If a query string should be used to filter results',
},
{
displayName: 'Query String',
@@ -455,7 +455,7 @@ export class GoogleDrive implements INodeType {
},
},
placeholder: 'name contains \'invoice\'',
- description: 'Query to use to return only specific files.',
+ description: 'Query to use to return only specific files',
},
{
displayName: 'Limit',
@@ -476,13 +476,13 @@ export class GoogleDrive implements INodeType {
maxValue: 1000,
},
default: 100,
- description: 'How many files to return.',
+ description: 'How many files to return',
},
{
displayName: 'Filters',
name: 'queryFilters',
placeholder: 'Add Filter',
- description: 'Filters to use to return only specific files.',
+ description: 'Filters to use to return only specific files',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -533,7 +533,7 @@ export class GoogleDrive implements INodeType {
name: 'value',
type: 'string',
default: '',
- description: 'The value for operation.',
+ description: 'The value for operation',
},
],
},
@@ -618,7 +618,7 @@ export class GoogleDrive implements INodeType {
],
default: 'application/vnd.google-apps.file',
- description: 'The Mime-Type of the files to return.',
+ description: 'The Mime-Type of the files to return',
},
{
displayName: 'Custom Mime Type',
@@ -660,7 +660,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The ID of the file or shared drive.',
+ description: 'The ID of the file or shared drive',
},
{
displayName: 'Permissions',
@@ -742,7 +742,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',
@@ -808,7 +808,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'If the data to upload should be taken from binary field.',
+ description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'File Content',
@@ -830,7 +830,7 @@ export class GoogleDrive implements INodeType {
},
placeholder: '',
- description: 'The text content of the file to upload.',
+ description: 'The text content of the file to upload',
},
{
displayName: 'Binary Property',
@@ -853,7 +853,7 @@ export class GoogleDrive implements INodeType {
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
// ----------------------------------
@@ -875,7 +875,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The ID of the file to update.',
+ description: 'The ID of the file to update',
},
{
displayName: 'Update Fields',
@@ -913,21 +913,21 @@ export class GoogleDrive implements INodeType {
name: 'ocrLanguage',
type: 'string',
default: '',
- description: `A language hint for OCR processing during image import (ISO 639-1 code).`,
+ description: 'A language hint for OCR processing during image import (ISO 639-1 code)',
},
{
displayName: 'Parent ID',
name: 'parentId',
type: 'string',
default: '',
- description: `The ID of the parent to set.`,
+ description: 'The ID of the parent to set',
},
{
displayName: 'Use Content As Indexable Text',
name: 'useContentAsIndexableText',
type: 'boolean',
default: false,
- description: `Whether to use the uploaded content as indexable text.`,
+ description: 'Whether to use the uploaded content as indexable text',
},
],
},
@@ -956,7 +956,7 @@ export class GoogleDrive implements INodeType {
{
name: '*',
value: '*',
- description: 'All fields.',
+ description: 'All fields',
},
{
name: 'explicitlyTrashed',
@@ -1025,7 +1025,7 @@ export class GoogleDrive implements INodeType {
],
required: true,
default: [],
- description: 'The fields to return.',
+ description: 'The fields to return',
},
],
},
@@ -1049,7 +1049,7 @@ export class GoogleDrive implements INodeType {
},
},
placeholder: 'invoice_1.pdf',
- description: 'The name the file should be saved as.',
+ description: 'The name the file should be saved as',
},
// ----------------------------------
{
@@ -1087,7 +1087,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The IDs of the parent folders which contain the file.',
+ description: 'The IDs of the parent folders which contain the file',
},
// ----------------------------------
@@ -1114,7 +1114,7 @@ export class GoogleDrive implements INodeType {
},
},
placeholder: 'invoices',
- description: 'The name of folder to create.',
+ description: 'The name of folder to create',
},
{
displayName: 'Options',
@@ -1153,7 +1153,7 @@ export class GoogleDrive implements INodeType {
},
},
default: '',
- description: 'A plain text custom message to include in the notification email.',
+ description: 'A plain text custom message to include in the notification email',
},
{
displayName: 'Enforce Single Parent',
@@ -1189,7 +1189,7 @@ export class GoogleDrive implements INodeType {
{
name: '*',
value: '*',
- description: 'All fields.',
+ description: 'All fields',
},
{
name: 'explicitlyTrashed',
@@ -1258,7 +1258,7 @@ export class GoogleDrive implements INodeType {
],
required: true,
default: [],
- description: 'The fields to return.',
+ description: 'The fields to return',
},
{
displayName: 'Move To New Owners Root',
@@ -1330,7 +1330,7 @@ export class GoogleDrive implements INodeType {
},
},
default: false,
- description: 'Whether to transfer ownership to the specified user and downgrade the current owner to a writer.',
+ description: 'Whether to transfer ownership to the specified user and downgrade the current owner to a writer',
},
{
displayName: 'Use Domain Admin Access',
@@ -1367,7 +1367,7 @@ export class GoogleDrive implements INodeType {
},
default: '',
placeholder: 'invoice_1.pdf',
- description: 'The name the file should be saved as.',
+ description: 'The name the file should be saved as',
},
{
displayName: 'Parents',
@@ -1389,7 +1389,7 @@ export class GoogleDrive implements INodeType {
multipleValues: true,
},
default: [],
- description: 'The IDs of the parent folders the file/folder should be saved in.',
+ description: 'The IDs of the parent folders the file/folder should be saved in',
},
{
displayName: 'Spaces',
@@ -1409,7 +1409,7 @@ export class GoogleDrive implements INodeType {
{
name: '*',
value: '*',
- description: 'All spaces.',
+ description: 'All spaces',
},
{
name: 'appDataFolder',
@@ -1426,7 +1426,7 @@ export class GoogleDrive implements INodeType {
],
required: true,
default: [],
- description: 'The spaces to operate on.',
+ description: 'The spaces to operate on',
},
{
displayName: 'Corpora',
@@ -1466,7 +1466,7 @@ export class GoogleDrive implements INodeType {
],
required: true,
default: '',
- description: 'The corpora to operate on.',
+ description: 'The corpora to operate on',
},
{
displayName: 'Drive ID',
@@ -1554,7 +1554,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The name of this shared drive.',
+ description: 'The name of this shared drive',
},
{
displayName: 'Options',
@@ -1585,56 +1585,56 @@ export class GoogleDrive implements INodeType {
name: 'canAddChildren',
type: 'boolean',
default: false,
- description: `Whether the current user can add children to folders in this shared drive.`,
+ description: 'Whether the current user can add children to folders in this shared drive',
},
{
displayName: 'Can Change Copy Requires Writer Permission Restriction',
name: 'canChangeCopyRequiresWriterPermissionRestriction',
type: 'boolean',
default: false,
- description: `Whether the current user can change the copyRequiresWriterPermission restriction of this shared drive.`,
+ description: 'Whether the current user can change the copyRequiresWriterPermission restriction of this shared drive',
},
{
displayName: 'Can Change Domain Users Only Restriction',
name: 'canChangeDomainUsersOnlyRestriction',
type: 'boolean',
default: false,
- description: `Whether the current user can change the domainUsersOnly restriction of this shared drive.`,
+ description: 'Whether the current user can change the domainUsersOnly restriction of this shared drive',
},
{
displayName: 'Can Change Drive Background',
name: 'canChangeDriveBackground',
type: 'boolean',
default: false,
- description: `Whether the current user can change the background of this shared drive.`,
+ description: 'Whether the current user can change the background of this shared drive',
},
{
displayName: 'Can Change Drive Members Only Restriction',
name: 'canChangeDriveMembersOnlyRestriction',
type: 'boolean',
default: false,
- description: `Whether the current user can change the driveMembersOnly restriction of this shared drive.`,
+ description: 'Whether the current user can change the driveMembersOnly restriction of this shared drive',
},
{
displayName: 'Can Comment',
name: 'canComment',
type: 'boolean',
default: false,
- description: `Whether the current user can comment on files in this shared drive.`,
+ description: 'Whether the current user can comment on files in this shared drive',
},
{
displayName: 'Can Copy',
name: 'canCopy',
type: 'boolean',
default: false,
- description: `Whether the current user can copy files in this shared drive.`,
+ description: 'Whether the current user can copy files in this shared drive',
},
{
displayName: 'Can Delete Children',
name: 'canDeleteChildren',
type: 'boolean',
default: false,
- description: `Whether the current user can delete children from folders in this shared drive.`,
+ description: 'Whether the current user can delete children from folders in this shared drive',
},
{
displayName: 'Can Delete Drive',
@@ -1648,7 +1648,7 @@ export class GoogleDrive implements INodeType {
name: 'canDownload',
type: 'boolean',
default: false,
- description: `Whether the current user can download files in this shared drive.`,
+ description: 'Whether the current user can download files in this shared drive',
},
{
displayName: 'Can Edit',
@@ -1662,49 +1662,49 @@ export class GoogleDrive implements INodeType {
name: 'canListChildren',
type: 'boolean',
default: false,
- description: `Whether the current user can list the children of folders in this shared drive.`,
+ description: 'Whether the current user can list the children of folders in this shared drive',
},
{
displayName: 'Can Manage Members',
name: 'canManageMembers',
type: 'boolean',
default: false,
- description: `Whether the current user can add members to this shared drive or remove them or change their role.`,
+ description: 'Whether the current user can add members to this shared drive or remove them or change their role',
},
{
displayName: 'Can Read Revisions',
name: 'canReadRevisions',
type: 'boolean',
default: false,
- description: `Whether the current user can read the revisions resource of files in this shared drive.`,
+ description: 'Whether the current user can read the revisions resource of files in this shared drive',
},
{
displayName: 'Can Rename',
name: 'canRename',
type: 'boolean',
default: false,
- description: `Whether the current user can rename files or folders in this shared drive.`,
+ description: 'Whether the current user can rename files or folders in this shared drive',
},
{
displayName: 'Can Rename Drive',
name: 'canRenameDrive',
type: 'boolean',
default: false,
- description: `Whether the current user can rename this shared drive.`,
+ description: 'Whether the current user can rename this shared drive',
},
{
displayName: 'Can Share',
name: 'canShare',
type: 'boolean',
default: false,
- description: `Whether the current user can rename this shared drive.`,
+ description: 'Whether the current user can rename this shared drive',
},
{
displayName: 'Can Trash Children',
name: 'canTrashChildren',
type: 'boolean',
default: false,
- description: `Whether the current user can trash children from folders in this shared drive.`,
+ description: 'Whether the current user can trash children from folders in this shared drive',
},
],
},
@@ -1720,14 +1720,14 @@ export class GoogleDrive implements INodeType {
name: 'createdTime',
type: 'dateTime',
default: '',
- description: 'The time at which the shared drive was created (RFC 3339 date-time).',
+ description: 'The time at which the shared drive was created (RFC 3339 date-time)',
},
{
displayName: 'Hidden',
name: 'hidden',
type: 'boolean',
default: false,
- description: 'Whether the shared drive is hidden from default view.',
+ description: 'Whether the shared drive is hidden from default view',
},
{
displayName: 'Restrictions',
@@ -1762,7 +1762,7 @@ export class GoogleDrive implements INodeType {
name: 'driveMembersOnly',
type: 'boolean',
default: false,
- description: `Whether access to items inside this shared drive is restricted to its members.`,
+ description: 'Whether access to items inside this shared drive is restricted to its members',
},
],
},
@@ -1787,7 +1787,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The ID of the shared drive.',
+ description: 'The ID of the shared drive',
},
// ----------------------------------
// drive:get
@@ -1808,7 +1808,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The ID of the shared drive.',
+ description: 'The ID of the shared drive',
},
{
displayName: 'Options',
@@ -1854,7 +1854,7 @@ export class GoogleDrive implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1878,7 +1878,7 @@ export class GoogleDrive implements INodeType {
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -1932,7 +1932,7 @@ export class GoogleDrive implements INodeType {
],
},
},
- description: 'The ID of the shared drive.',
+ description: 'The ID of the shared drive',
},
{
displayName: 'Update Fields',
@@ -1963,7 +1963,7 @@ export class GoogleDrive implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'The name of this shared drive.',
+ description: 'The name of this shared drive',
},
{
displayName: 'Restrictions',
@@ -1998,7 +1998,7 @@ export class GoogleDrive implements INodeType {
name: 'driveMembersOnly',
type: 'boolean',
default: false,
- description: `Whether access to items inside this shared drive is restricted to its members.`,
+ description: 'Whether access to items inside this shared drive is restricted to its members',
},
],
},
@@ -2041,14 +2041,14 @@ export class GoogleDrive implements INodeType {
name: 'key',
type: 'string',
default: '',
- description: 'Name of the key to add.',
+ description: 'Name of the key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the key.',
+ description: 'Value to set for the key',
},
],
},
@@ -2063,7 +2063,7 @@ export class GoogleDrive implements INodeType {
typeOptions: {
multipleValues: true,
},
- description: 'A collection of arbitrary key-value pairs which are visible to all apps.',
+ description: 'A collection of arbitrary key-value pairs which are visible to all apps',
options: [
{
name: 'propertyValues',
@@ -2074,14 +2074,14 @@ export class GoogleDrive implements INodeType {
name: 'key',
type: 'string',
default: '',
- description: 'Name of the key to add.',
+ description: 'Name of the key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the key.',
+ description: 'Value to set for the key',
},
],
},
diff --git a/packages/nodes-base/nodes/Google/Firebase/CloudFirestore/CollectionDescription.ts b/packages/nodes-base/nodes/Google/Firebase/CloudFirestore/CollectionDescription.ts
index c5db0ae57c..8ffd1ff442 100644
--- a/packages/nodes-base/nodes/Google/Firebase/CloudFirestore/CollectionDescription.ts
+++ b/packages/nodes-base/nodes/Google/Firebase/CloudFirestore/CollectionDescription.ts
@@ -84,7 +84,7 @@ export const collectionFields: INodeProperties[] = [
],
},
},
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
required: true,
},
{
@@ -109,6 +109,6 @@ export const collectionFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Google/Firebase/CloudFirestore/DocumentDescription.ts b/packages/nodes-base/nodes/Google/Firebase/CloudFirestore/DocumentDescription.ts
index 8487a841d0..13803dd790 100644
--- a/packages/nodes-base/nodes/Google/Firebase/CloudFirestore/DocumentDescription.ts
+++ b/packages/nodes-base/nodes/Google/Firebase/CloudFirestore/DocumentDescription.ts
@@ -78,7 +78,7 @@ export const documentFields: INodeProperties[] = [
],
},
},
- description: 'As displayed in firebase console URL.',
+ description: 'As displayed in firebase console URL',
required: true,
},
{
@@ -151,7 +151,7 @@ export const documentFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
/* -------------------------------------------------------------------------- */
@@ -247,7 +247,7 @@ export const documentFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
/* -------------------------------------------------------------------------- */
@@ -325,7 +325,7 @@ export const documentFields: INodeProperties[] = [
],
},
},
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
required: true,
},
{
@@ -350,7 +350,7 @@ export const documentFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Simplify Response',
@@ -367,7 +367,7 @@ export const documentFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
/* -------------------------------------------------------------------------- */
@@ -740,6 +740,6 @@ export const documentFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
];
diff --git a/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts b/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts
index 5f94961cd4..018e65ce0e 100644
--- a/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts
+++ b/packages/nodes-base/nodes/Google/GSuiteAdmin/GroupDescripion.ts
@@ -161,7 +161,7 @@ export const groupFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -185,7 +185,7 @@ export const groupFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -229,7 +229,7 @@ export const groupFields: INodeProperties[] = [
},
],
default: '',
- description: 'Property to use for sorting results.',
+ description: 'Property to use for sorting results',
},
{
displayName: 'Query',
diff --git a/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts b/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts
index a881da4531..382e32ad88 100644
--- a/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts
+++ b/packages/nodes-base/nodes/Google/GSuiteAdmin/UserDescription.ts
@@ -182,7 +182,7 @@ export const userFields: INodeProperties[] = [
name: 'changePasswordAtNextLogin',
type: 'boolean',
default: false,
- description: 'Indicates if the user is forced to change their password at next login.',
+ description: 'Indicates if the user is forced to change their password at next login',
},
{
displayName: 'Phones',
@@ -374,7 +374,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: `The value can be the user's primary email address, alias email address, or unique user ID.`,
+ description: 'The value can be the user\'s primary email address, alias email address, or unique user ID',
},
/* -------------------------------------------------------------------------- */
/* user:get */
@@ -395,7 +395,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: `The value can be the user's primary email address, alias email address, or unique user ID.`,
+ description: 'The value can be the user\'s primary email address, alias email address, or unique user ID',
},
{
displayName: 'Projection',
@@ -505,7 +505,7 @@ export const userFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -529,7 +529,7 @@ export const userFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Projection',
@@ -633,7 +633,7 @@ export const userFields: INodeProperties[] = [
},
],
default: '',
- description: 'Property to use for sorting results.',
+ description: 'Property to use for sorting results',
},
{
displayName: 'Query',
@@ -647,7 +647,7 @@ export const userFields: INodeProperties[] = [
name: 'showDeleted',
type: 'boolean',
default: false,
- description: 'If set to true, retrieves the list of deleted users.',
+ description: 'If set to true, retrieves the list of deleted users',
},
{
displayName: 'Sort Order',
@@ -706,7 +706,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: `The value can be the user's primary email address, alias email address, or unique user ID.`,
+ description: 'The value can be the user\'s primary email address, alias email address, or unique user ID',
},
{
displayName: 'Update Fields',
@@ -730,14 +730,14 @@ export const userFields: INodeProperties[] = [
name: 'archived',
type: 'boolean',
default: false,
- description: 'Indicates if user is archived.',
+ description: 'Indicates if user is archived',
},
{
displayName: 'Change Password At Next Login',
name: 'changePasswordAtNextLogin',
type: 'boolean',
default: false,
- description: 'Indicates if the user is forced to change their password at next login.',
+ description: 'Indicates if the user is forced to change their password at next login',
},
{
displayName: 'First Name',
diff --git a/packages/nodes-base/nodes/Google/Gmail/DraftDescription.ts b/packages/nodes-base/nodes/Google/Gmail/DraftDescription.ts
index 0f63664cbc..eced584051 100644
--- a/packages/nodes-base/nodes/Google/Gmail/DraftDescription.ts
+++ b/packages/nodes-base/nodes/Google/Gmail/DraftDescription.ts
@@ -60,7 +60,7 @@ export const draftFields: INodeProperties[] = [
},
},
placeholder: 'r-3254521568507167962',
- description: 'The ID of the draft to operate on.',
+ description: 'The ID of the draft to operate on',
},
{
displayName: 'Subject',
@@ -79,7 +79,7 @@ export const draftFields: INodeProperties[] = [
},
},
placeholder: 'Hello World!',
- description: 'The message subject.',
+ description: 'The message subject',
},
{
displayName: 'HTML',
@@ -96,7 +96,7 @@ export const draftFields: INodeProperties[] = [
},
},
default: false,
- description: 'Switch ON if the message should also be included as HTML.',
+ description: 'Switch ON if the message should also be included as HTML',
},
{
displayName: 'HTML Message',
@@ -117,7 +117,7 @@ export const draftFields: INodeProperties[] = [
],
},
},
- description: 'The HTML message body.',
+ description: 'The HTML message body',
},
{
displayName: 'Message',
@@ -165,13 +165,13 @@ export const draftFields: INodeProperties[] = [
multipleValueButtonText: 'Add To Email',
},
placeholder: 'info@example.com',
- description: 'The email addresses of the recipients.',
+ description: 'The email addresses of the recipients',
},
{
displayName: 'CC Email',
name: 'ccList',
type: 'string',
- description: 'The email addresses of the copy recipients.',
+ description: 'The email addresses of the copy recipients',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add CC Email',
@@ -183,7 +183,7 @@ export const draftFields: INodeProperties[] = [
displayName: 'BCC Email',
name: 'bccList',
type: 'string',
- description: 'The email addresses of the blind copy recipients.',
+ description: 'The email addresses of the blind copy recipients',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add BCC Email',
@@ -215,7 +215,7 @@ export const draftFields: INodeProperties[] = [
},
],
default: {},
- description: 'Array of supported attachments to add to the message.',
+ description: 'Array of supported attachments to add to the message',
},
],
},
@@ -266,7 +266,7 @@ export const draftFields: INodeProperties[] = [
{
name: 'Metadata',
value: 'metadata',
- description: 'Returns only email message ID, labels, and email headers.',
+ description: 'Returns only email message ID, labels, and email headers',
},
{
name: 'Minimal',
@@ -276,12 +276,12 @@ export const draftFields: INodeProperties[] = [
{
name: 'RAW',
value: 'raw',
- description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used.',
+ description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used',
},
{
name: 'Resolved',
value: 'resolved',
- description: 'Returns the full email with all data resolved and attachments saved as binary data.',
+ description: 'Returns the full email with all data resolved and attachments saved as binary data',
},
],
default: 'resolved',
@@ -308,7 +308,7 @@ export const draftFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -332,7 +332,7 @@ export const draftFields: INodeProperties[] = [
maxValue: 500,
},
default: 10,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -387,7 +387,7 @@ export const draftFields: INodeProperties[] = [
{
name: 'Metadata',
value: 'metadata',
- description: 'Returns only email message ID, labels, and email headers.',
+ description: 'Returns only email message ID, labels, and email headers',
},
{
name: 'Minimal',
@@ -397,12 +397,12 @@ export const draftFields: INodeProperties[] = [
{
name: 'RAW',
value: 'raw',
- description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used.',
+ description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used',
},
{
name: 'Resolved',
value: 'resolved',
- description: 'Returns the full email with all data resolved and attachments saved as binary data.',
+ description: 'Returns the full email with all data resolved and attachments saved as binary data',
},
],
default: 'resolved',
@@ -413,7 +413,7 @@ export const draftFields: INodeProperties[] = [
name: 'includeSpamTrash',
type: 'boolean',
default: false,
- description: 'Include messages from SPAM and TRASH in the results.',
+ description: 'Include messages from SPAM and TRASH in the results',
},
],
},
diff --git a/packages/nodes-base/nodes/Google/Gmail/LabelDescription.ts b/packages/nodes-base/nodes/Google/Gmail/LabelDescription.ts
index b9104a3267..ef716c939c 100644
--- a/packages/nodes-base/nodes/Google/Gmail/LabelDescription.ts
+++ b/packages/nodes-base/nodes/Google/Gmail/LabelDescription.ts
@@ -110,7 +110,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The visibility of the label in the label list in the Gmail web interface.',
+ description: 'The visibility of the label in the label list in the Gmail web interface',
},
{
displayName: 'Message List Visibility',
@@ -138,7 +138,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The visibility of messages with this label in the message list in the Gmail web interface.',
+ description: 'The visibility of messages with this label in the message list in the Gmail web interface',
},
/* -------------------------------------------------------------------------- */
/* label:getAll */
@@ -158,7 +158,7 @@ export const labelFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -182,6 +182,6 @@ export const labelFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Google/Gmail/MessageDescription.ts b/packages/nodes-base/nodes/Google/Gmail/MessageDescription.ts
index c3acf8302e..40c0474832 100644
--- a/packages/nodes-base/nodes/Google/Gmail/MessageDescription.ts
+++ b/packages/nodes-base/nodes/Google/Gmail/MessageDescription.ts
@@ -65,7 +65,7 @@ export const messageFields: INodeProperties[] = [
},
},
placeholder: '172ce2c4a72cc243',
- description: 'The ID of the message you are operating on.',
+ description: 'The ID of the message you are operating on',
},
{
displayName: 'Thread ID',
@@ -84,7 +84,7 @@ export const messageFields: INodeProperties[] = [
},
},
placeholder: '172ce2c4a72cc243',
- description: 'The ID of the thread you are replying to.',
+ description: 'The ID of the thread you are replying to',
},
{
displayName: 'Message ID',
@@ -103,7 +103,7 @@ export const messageFields: INodeProperties[] = [
},
},
placeholder: 'CAHNQoFsC6JMMbOBJgtjsqN0eEc+gDg2a=SQj-tWUebQeHMDgqQ@mail.gmail.com',
- description: 'The ID of the message you are replying to.',
+ description: 'The ID of the message you are replying to',
},
{
displayName: 'Subject',
@@ -123,7 +123,7 @@ export const messageFields: INodeProperties[] = [
},
},
placeholder: 'Hello World!',
- description: 'The message subject.',
+ description: 'The message subject',
},
{
displayName: 'HTML',
@@ -141,7 +141,7 @@ export const messageFields: INodeProperties[] = [
},
},
default: false,
- description: 'Switch ON if the message should also be included as HTML.',
+ description: 'Switch ON if the message should also be included as HTML',
},
{
displayName: 'HTML Message',
@@ -163,7 +163,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'The HTML message body.',
+ description: 'The HTML message body',
},
{
displayName: 'Message',
@@ -182,7 +182,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'Plain text message body.',
+ description: 'Plain text message body',
},
{
displayName: 'To Email',
@@ -206,7 +206,7 @@ export const messageFields: INodeProperties[] = [
},
},
placeholder: 'info@example.com',
- description: 'The email addresses of the recipients.',
+ description: 'The email addresses of the recipients',
},
{
displayName: 'Additional Fields',
@@ -250,13 +250,13 @@ export const messageFields: INodeProperties[] = [
},
],
default: {},
- description: 'Array of supported attachments to add to the message.',
+ description: 'Array of supported attachments to add to the message',
},
{
displayName: 'BCC Email',
name: 'bccList',
type: 'string',
- description: 'The email addresses of the blind copy recipients.',
+ description: 'The email addresses of the blind copy recipients',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add BCC Email',
@@ -268,7 +268,7 @@ export const messageFields: INodeProperties[] = [
displayName: 'CC Email',
name: 'ccList',
type: 'string',
- description: 'The email addresses of the copy recipients.',
+ description: 'The email addresses of the copy recipients',
typeOptions: {
multipleValues: true,
multipleValueButtonText: 'Add CC Email',
@@ -316,7 +316,7 @@ export const messageFields: INodeProperties[] = [
{
name: 'Metadata',
value: 'metadata',
- description: 'Returns only email message ID, labels, and email headers.',
+ description: 'Returns only email message ID, labels, and email headers',
},
{
name: 'Minimal',
@@ -326,12 +326,12 @@ export const messageFields: INodeProperties[] = [
{
name: 'RAW',
value: 'raw',
- description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used.',
+ description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used',
},
{
name: 'Resolved',
value: 'resolved',
- description: 'Returns the full email with all data resolved and attachments saved as binary data.',
+ description: 'Returns the full email with all data resolved and attachments saved as binary data',
},
],
default: 'resolved',
@@ -375,7 +375,7 @@ export const messageFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -399,7 +399,7 @@ export const messageFields: INodeProperties[] = [
maxValue: 500,
},
default: 10,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -454,7 +454,7 @@ export const messageFields: INodeProperties[] = [
{
name: 'Metadata',
value: 'metadata',
- description: 'Returns only email message ID, labels, and email headers.',
+ description: 'Returns only email message ID, labels, and email headers',
},
{
name: 'Minimal',
@@ -464,12 +464,12 @@ export const messageFields: INodeProperties[] = [
{
name: 'RAW',
value: 'raw',
- description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used.',
+ description: 'Returns the full email message data with body content in the raw field as a base64url encoded string; the payload field is not used',
},
{
name: 'Resolved',
value: 'resolved',
- description: 'Returns the full email with all data resolved and attachments saved as binary data.',
+ description: 'Returns the full email with all data resolved and attachments saved as binary data',
},
],
default: 'resolved',
@@ -480,7 +480,7 @@ export const messageFields: INodeProperties[] = [
name: 'includeSpamTrash',
type: 'boolean',
default: false,
- description: 'Include messages from SPAM and TRASH in the results.',
+ description: 'Include messages from SPAM and TRASH in the results',
},
{
displayName: 'Label IDs',
@@ -490,7 +490,7 @@ export const messageFields: INodeProperties[] = [
loadOptionsMethod: 'getLabels',
},
default: [],
- description: 'Only return messages with labels that match all of the specified label IDs.',
+ description: 'Only return messages with labels that match all of the specified label IDs',
},
{
displayName: 'Query',
diff --git a/packages/nodes-base/nodes/Google/Gmail/MessageLabelDescription.ts b/packages/nodes-base/nodes/Google/Gmail/MessageLabelDescription.ts
index d220571101..4c7a9b680c 100644
--- a/packages/nodes-base/nodes/Google/Gmail/MessageLabelDescription.ts
+++ b/packages/nodes-base/nodes/Google/Gmail/MessageLabelDescription.ts
@@ -50,7 +50,7 @@ export const messageLabelFields: INodeProperties[] = [
},
},
placeholder: '172ce2c4a72cc243',
- description: 'The message ID of your email.',
+ description: 'The message ID of your email',
},
{
displayName: 'Label IDs',
diff --git a/packages/nodes-base/nodes/Google/Sheet/GoogleSheets.node.ts b/packages/nodes-base/nodes/Google/Sheet/GoogleSheets.node.ts
index d893fb292d..57a62bee1a 100644
--- a/packages/nodes-base/nodes/Google/Sheet/GoogleSheets.node.ts
+++ b/packages/nodes-base/nodes/Google/Sheet/GoogleSheets.node.ts
@@ -211,7 +211,7 @@ export class GoogleSheets implements INodeType {
displayName: 'To Delete',
name: 'toDelete',
placeholder: 'Add Columns/Rows to delete',
- description: 'Deletes columns and rows from a sheet.',
+ description: 'Deletes columns and rows from a sheet',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -252,7 +252,7 @@ export class GoogleSheets implements INodeType {
minValue: 0,
},
default: 0,
- description: 'The start index (0 based and inclusive) of column to delete.',
+ description: 'The start index (0 based and inclusive) of column to delete',
},
{
displayName: 'Amount',
@@ -262,7 +262,7 @@ export class GoogleSheets implements INodeType {
minValue: 1,
},
default: 1,
- description: 'Number of columns to delete.',
+ description: 'Number of columns to delete',
},
],
},
@@ -290,7 +290,7 @@ export class GoogleSheets implements INodeType {
minValue: 0,
},
default: 0,
- description: 'The start index (0 based and inclusive) of row to delete.',
+ description: 'The start index (0 based and inclusive) of row to delete',
},
{
displayName: 'Amount',
@@ -300,7 +300,7 @@ export class GoogleSheets implements INodeType {
minValue: 1,
},
default: 1,
- description: 'Number of rows to delete.',
+ description: 'Number of rows to delete',
},
],
},
@@ -326,7 +326,7 @@ export class GoogleSheets implements INodeType {
},
},
default: false,
- description: 'If the data should be returned RAW instead of parsed into keys according to their header.',
+ description: 'If the data should be returned RAW instead of parsed into keys according to their header',
},
{
displayName: 'Data Property',
@@ -346,7 +346,7 @@ export class GoogleSheets implements INodeType {
],
},
},
- description: 'The name of the property into which to write the RAW data.',
+ description: 'The name of the property into which to write the RAW data',
},
// ----------------------------------
@@ -367,7 +367,7 @@ export class GoogleSheets implements INodeType {
},
},
default: false,
- description: 'If the data supplied is RAW instead of parsed into keys.',
+ description: 'If the data supplied is RAW instead of parsed into keys',
},
{
displayName: 'Data Property',
@@ -387,7 +387,7 @@ export class GoogleSheets implements INodeType {
],
},
},
- description: 'The name of the property from which to read the RAW data.',
+ description: 'The name of the property from which to read the RAW data',
},
// ----------------------------------
@@ -476,7 +476,7 @@ export class GoogleSheets implements INodeType {
],
},
},
- description: 'The name of the column in which to look for value.',
+ description: 'The name of the column in which to look for value',
},
{
displayName: 'Lookup Value',
@@ -494,7 +494,7 @@ export class GoogleSheets implements INodeType {
],
},
},
- description: 'The value to look for in column.',
+ description: 'The value to look for in column',
},
// ----------------------------------
@@ -518,7 +518,7 @@ export class GoogleSheets implements INodeType {
],
},
},
- description: 'The name of the key to identify which data should be updated in the sheet.',
+ description: 'The name of the key to identify which data should be updated in the sheet',
},
{
@@ -554,7 +554,7 @@ export class GoogleSheets implements INodeType {
],
},
},
- description: 'By default, the workflow stops executing if the lookup/read does not return values.',
+ description: 'By default, the workflow stops executing if the lookup/read does not return values',
},
{
displayName: 'Return All Matches',
@@ -586,7 +586,7 @@ export class GoogleSheets implements INodeType {
{
name: 'RAW',
value: 'RAW',
- description: 'The values will not be parsed and will be stored as-is.',
+ description: 'The values will not be parsed and will be stored as-is',
},
{
name: 'User Entered',
@@ -595,7 +595,7 @@ export class GoogleSheets implements INodeType {
},
],
default: 'RAW',
- description: 'Determines how data should be interpreted.',
+ description: 'Determines how data should be interpreted',
},
{
displayName: 'Value Render Mode',
@@ -613,7 +613,7 @@ export class GoogleSheets implements INodeType {
{
name: 'Formatted Value',
value: 'FORMATTED_VALUE',
- description: 'Values will be calculated & formatted in the reply according to the cell\'s formatting.Formatting is based on the spreadsheet\'s locale, not the requesting user\'s locale.For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return "$1.23".',
+ description: 'Values will be calculated & formatted in the reply according to the cell\'s formatting.Formatting is based on the spreadsheet\'s locale, not the requesting user\'s locale.For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return "$1.23"',
},
{
name: 'Formula',
@@ -627,7 +627,7 @@ export class GoogleSheets implements INodeType {
},
],
default: 'UNFORMATTED_VALUE',
- description: 'Determines how values should be rendered in the output.',
+ description: 'Determines how values should be rendered in the output',
},
{
displayName: 'Value Render Mode',
@@ -647,7 +647,7 @@ export class GoogleSheets implements INodeType {
{
name: 'Formatted Value',
value: 'FORMATTED_VALUE',
- description: 'Values will be calculated & formatted in the reply according to the cell\'s formatting.Formatting is based on the spreadsheet\'s locale, not the requesting user\'s locale.For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return "$1.23".',
+ description: 'Values will be calculated & formatted in the reply according to the cell\'s formatting.Formatting is based on the spreadsheet\'s locale, not the requesting user\'s locale.For example, if A1 is 1.23 and A2 is =A1 and formatted as currency, then A2 would return "$1.23"',
},
{
name: 'Formula',
@@ -661,7 +661,7 @@ export class GoogleSheets implements INodeType {
},
],
default: 'UNFORMATTED_VALUE',
- description: 'Determines how values should be rendered in the output.',
+ description: 'Determines how values should be rendered in the output',
},
],
@@ -706,7 +706,7 @@ export class GoogleSheets implements INodeType {
],
},
},
- description: 'The title of the spreadsheet.',
+ description: 'The title of the spreadsheet',
},
{
displayName: 'Sheets',
@@ -802,21 +802,21 @@ export class GoogleSheets implements INodeType {
{
name: 'On Change',
value: 'ON_CHANGE',
- description: 'Volatile functions are updated on every change.',
+ description: 'Volatile functions are updated on every change',
},
{
name: 'Minute',
value: 'MINUTE',
- description: 'Volatile functions are updated on every change and every minute.',
+ description: 'Volatile functions are updated on every change and every minute',
},
{
name: 'Hour',
value: 'HOUR',
- description: ' Volatile functions are updated on every change and hourly.',
+ description: ' Volatile functions are updated on every change and hourly',
},
],
default: '',
- description: 'Cell recalculation interval options.',
+ description: 'Cell recalculation interval options',
},
],
},
@@ -839,7 +839,7 @@ export class GoogleSheets implements INodeType {
],
},
},
- description: 'When set to true a simplify version of the response will be used else the raw data.',
+ description: 'When set to true a simplify version of the response will be used else the raw data',
},
{
displayName: 'Options',
@@ -870,67 +870,67 @@ export class GoogleSheets implements INodeType {
name: 'columnCount',
type: 'number',
default: 0,
- description: 'The number of columns in the grid.',
+ description: 'The number of columns in the grid',
},
{
displayName: 'Column Group Control After',
name: 'columnGroupControlAfter',
type: 'boolean',
default: false,
- description: 'True if the column grouping control toggle is shown after the group.',
+ description: 'True if the column grouping control toggle is shown after the group',
},
{
displayName: 'Frozen Column Count',
name: 'frozenColumnCount',
type: 'number',
default: 0,
- description: 'The number of columns that are frozen in the grid.',
+ description: 'The number of columns that are frozen in the grid',
},
{
displayName: 'Frozen Row Count',
name: 'frozenRowCount',
type: 'number',
default: 0,
- description: 'The number of rows that are frozen in the grid.',
+ description: 'The number of rows that are frozen in the grid',
},
{
displayName: 'Hide Gridlines',
name: 'hideGridlines',
type: 'boolean',
default: false,
- description: 'True if the grid isn\'t showing gridlines in the UI.',
+ description: 'True if the grid isn\'t showing gridlines in the UI',
},
{
displayName: 'Row Count',
name: 'rowCount',
type: 'number',
default: 0,
- description: 'The number of rows in the grid.',
+ description: 'The number of rows in the grid',
},
{
displayName: 'Row Group Control After',
name: 'rowGroupControlAfter',
type: 'boolean',
default: false,
- description: 'True if the row grouping control toggle is shown after the group.',
+ description: 'True if the row grouping control toggle is shown after the group',
},
],
- description: 'The type of the sheet.',
+ description: 'The type of the sheet',
},
{
displayName: 'Hidden',
name: 'hidden',
type: 'boolean',
default: false,
- description: 'True if the sheet is hidden in the UI, false if it\'s visible.',
+ description: 'True if the sheet is hidden in the UI, false if it\'s visible',
},
{
displayName: 'Right To Left',
name: 'rightToLeft',
type: 'boolean',
default: false,
- description: 'True if the sheet is an RTL sheet instead of an LTR sheet.',
+ description: 'True if the sheet is an RTL sheet instead of an LTR sheet',
},
{
displayName: 'Sheet ID',
@@ -944,21 +944,21 @@ export class GoogleSheets implements INodeType {
name: 'index',
type: 'number',
default: 0,
- description: 'The index of the sheet within the spreadsheet.',
+ description: 'The index of the sheet within the spreadsheet',
},
{
displayName: 'Tab Color',
name: 'tabColor',
type: 'color',
default: '0aa55c',
- description: 'The color of the tab in the UI.',
+ description: 'The color of the tab in the UI',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'The Sheet name.',
+ description: 'The Sheet name',
},
],
},
@@ -982,7 +982,7 @@ export class GoogleSheets implements INodeType {
],
},
},
- description: 'The ID of the sheet to delete.',
+ description: 'The ID of the sheet to delete',
},
],
};
diff --git a/packages/nodes-base/nodes/Google/Slides/GoogleSlides.node.ts b/packages/nodes-base/nodes/Google/Slides/GoogleSlides.node.ts
index 64cc3574f8..4d96ca25fa 100644
--- a/packages/nodes-base/nodes/Google/Slides/GoogleSlides.node.ts
+++ b/packages/nodes-base/nodes/Google/Slides/GoogleSlides.node.ts
@@ -152,7 +152,7 @@ export class GoogleSlides implements INodeType {
{
displayName: 'Title',
name: 'title',
- description: 'Title of the presentation to create.',
+ description: 'Title of the presentation to create',
type: 'string',
default: '',
required: true,
@@ -205,7 +205,7 @@ export class GoogleSlides implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -229,12 +229,12 @@ export class GoogleSlides implements INodeType {
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Page Object ID',
name: 'pageObjectId',
- description: 'ID of the page object to retrieve.',
+ description: 'ID of the page object to retrieve',
type: 'string',
default: '',
required: true,
@@ -292,21 +292,21 @@ export class GoogleSlides implements INodeType {
'presentationId',
],
},
- description: 'If non-empty, limits the matches to page elements only on the given pages.',
+ description: 'If non-empty, limits the matches to page elements only on the given pages',
},
{
displayName: 'Replace Text',
name: 'replaceText',
type: 'string',
default: '',
- description: 'The text that will replace the matched text.',
+ description: 'The text that will replace the matched text',
},
{
displayName: 'Text',
name: 'text',
type: 'string',
default: '',
- description: 'The text to search for in the shape or table.',
+ description: 'The text to search for in the shape or table',
},
],
},
@@ -354,7 +354,7 @@ export class GoogleSlides implements INodeType {
],
},
},
- description: 'Name of the binary property to which to write the data of the read page.',
+ description: 'Name of the binary property to which to write the data of the read page',
},
{
displayName: 'Binary Property',
@@ -362,7 +362,7 @@ export class GoogleSlides implements INodeType {
type: 'string',
required: true,
default: 'data',
- description: 'Name of the binary property to which to write to.',
+ description: 'Name of the binary property to which to write to',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/Google/Task/TaskDescription.ts b/packages/nodes-base/nodes/Google/Task/TaskDescription.ts
index 87fd42e828..e5b9f38024 100644
--- a/packages/nodes-base/nodes/Google/Task/TaskDescription.ts
+++ b/packages/nodes-base/nodes/Google/Task/TaskDescription.ts
@@ -75,7 +75,7 @@ export const taskFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of the task.',
+ description: 'Title of the task',
displayOptions: {
show: {
operation: [
@@ -116,21 +116,21 @@ export const taskFields: INodeProperties[] = [
name: 'deleted',
type: 'boolean',
default: false,
- description: 'Flag indicating whether the task has been deleted.',
+ description: 'Flag indicating whether the task has been deleted',
},
{
displayName: 'Due Date',
name: 'dueDate',
type: 'dateTime',
default: '',
- description: 'Due date of the task.',
+ description: 'Due date of the task',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
- description: 'Additional Notes.',
+ description: 'Additional Notes',
},
{
displayName: 'Parent',
@@ -161,7 +161,7 @@ export const taskFields: INodeProperties[] = [
},
],
default: '',
- description: 'Current status of the task.',
+ description: 'Current status of the task',
},
],
@@ -284,7 +284,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -308,7 +308,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 100,
},
default: 20,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -332,28 +332,28 @@ export const taskFields: INodeProperties[] = [
name: 'completedMax',
type: 'dateTime',
default: '',
- description: 'Upper bound for a task completion date (as a RFC 3339 timestamp) to filter by.',
+ description: 'Upper bound for a task completion date (as a RFC 3339 timestamp) to filter by',
},
{
displayName: 'Completed Min',
name: 'completedMin',
type: 'dateTime',
default: '',
- description: 'Lower bound for a task completion date (as a RFC 3339 timestamp) to filter by.',
+ description: 'Lower bound for a task completion date (as a RFC 3339 timestamp) to filter by',
},
{
displayName: 'Due Min',
name: 'dueMin',
type: 'dateTime',
default: '',
- description: 'Lower bound for a task due date (as a RFC 3339 timestamp) to filter by.',
+ description: 'Lower bound for a task due date (as a RFC 3339 timestamp) to filter by',
},
{
displayName: 'Due Max',
name: 'dueMax',
type: 'dateTime',
default: '',
- description: 'Upper bound for a task due date (as a RFC 3339 timestamp) to filter by.',
+ description: 'Upper bound for a task due date (as a RFC 3339 timestamp) to filter by',
},
{
displayName: 'Show Completed',
@@ -367,21 +367,21 @@ export const taskFields: INodeProperties[] = [
name: 'showDeleted',
type: 'boolean',
default: false,
- description: 'Flag indicating whether deleted tasks are returned in the result.',
+ description: 'Flag indicating whether deleted tasks are returned in the result',
},
{
displayName: 'Show Hidden',
name: 'showHidden',
type: 'boolean',
default: false,
- description: 'Flag indicating whether hidden tasks are returned in the result.',
+ description: 'Flag indicating whether hidden tasks are returned in the result',
},
{
displayName: 'Updated Min',
name: 'updatedMin',
type: 'dateTime',
default: '',
- description: 'Lower bound for a task last modification time (as a RFC 3339 timestamp) to filter by.',
+ description: 'Lower bound for a task last modification time (as a RFC 3339 timestamp) to filter by',
},
],
},
@@ -455,14 +455,14 @@ export const taskFields: INodeProperties[] = [
name: 'deleted',
type: 'boolean',
default: false,
- description: 'Flag indicating whether the task has been deleted.',
+ description: 'Flag indicating whether the task has been deleted',
},
{
displayName: 'Due Date',
name: 'dueDate',
type: 'dateTime',
default: '',
- description: 'Due date of the task.',
+ description: 'Due date of the task',
},
{
displayName: 'Notes',
@@ -472,7 +472,7 @@ export const taskFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Additional Notes.',
+ description: 'Additional Notes',
},
{
displayName: 'Previous',
@@ -496,14 +496,14 @@ export const taskFields: INodeProperties[] = [
},
],
default: '',
- description: 'Current status of the task.',
+ description: 'Current status of the task',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'Title of the task.',
+ description: 'Title of the task',
},
],
},
diff --git a/packages/nodes-base/nodes/Google/YouTube/ChannelDescription.ts b/packages/nodes-base/nodes/Google/YouTube/ChannelDescription.ts
index 0e527e51ff..a11c952a9f 100644
--- a/packages/nodes-base/nodes/Google/YouTube/ChannelDescription.ts
+++ b/packages/nodes-base/nodes/Google/YouTube/ChannelDescription.ts
@@ -102,7 +102,7 @@ export const channelFields: INodeProperties[] = [
],
},
},
- description: 'The fields parameter specifies a comma-separated list of one or more channel resource properties that the API response will include.',
+ description: 'The fields parameter specifies a comma-separated list of one or more channel resource properties that the API response will include',
default: ['*'],
},
{
@@ -120,7 +120,7 @@ export const channelFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -144,7 +144,7 @@ export const channelFields: INodeProperties[] = [
maxValue: 50,
},
default: 25,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -168,14 +168,14 @@ export const channelFields: INodeProperties[] = [
name: 'categoryId',
type: 'string',
default: '',
- description: 'The categoryId parameter specifies a YouTube guide category, thereby requesting YouTube channels associated with that category.',
+ description: 'The categoryId parameter specifies a YouTube guide category, thereby requesting YouTube channels associated with that category',
},
{
displayName: 'For Username',
name: 'forUsername',
type: 'string',
default: '',
- description: `The forUsername parameter specifies a YouTube username, thereby requesting the channel associated with that username.`,
+ description: 'The forUsername parameter specifies a YouTube username, thereby requesting the channel associated with that username',
},
{
displayName: 'ID',
@@ -218,7 +218,7 @@ export const channelFields: INodeProperties[] = [
loadOptionsMethod: 'getLanguages',
},
default: '',
- description: `The hl parameter instructs the API to retrieve localized resource metadata for a specific application language that the YouTube website supports.`,
+ description: 'The hl parameter instructs the API to retrieve localized resource metadata for a specific application language that the YouTube website supports',
},
{
displayName: 'On Behalf Of Content Owner',
@@ -307,7 +307,7 @@ export const channelFields: INodeProperties[] = [
],
},
},
- description: 'The fields parameter specifies a comma-separated list of one or more channel resource properties that the API response will include.',
+ description: 'The fields parameter specifies a comma-separated list of one or more channel resource properties that the API response will include',
default: ['*'],
},
/* -------------------------------------------------------------------------- */
@@ -352,7 +352,7 @@ export const channelFields: INodeProperties[] = [
name: 'brandingSettingsUi',
type: 'fixedCollection',
default: {},
- description: 'Encapsulates information about the branding of the channel.',
+ description: 'Encapsulates information about the branding of the channel',
placeholder: 'Add Branding Settings',
typeOptions: {
multipleValues: false,
@@ -391,7 +391,7 @@ export const channelFields: INodeProperties[] = [
name: 'defaultLanguage',
type: 'string',
default: '',
- description: 'The content tab that users should display by default when viewers arrive at your channel page.',
+ description: 'The content tab that users should display by default when viewers arrive at your channel page',
},
{
displayName: 'Default Tab',
@@ -431,7 +431,7 @@ export const channelFields: INodeProperties[] = [
displayName: 'Moderate Comments',
name: 'moderateComments',
type: 'boolean',
- description: 'This setting determines whether user-submitted comments left on the channel page need to be approved by the channel owner to be publicly visible.',
+ description: 'This setting determines whether user-submitted comments left on the channel page need to be approved by the channel owner to be publicly visible',
default: false,
},
{
@@ -439,34 +439,34 @@ export const channelFields: INodeProperties[] = [
name: 'profileColor',
type: 'string',
default: '',
- description: `A prominent color that complements the channel's content.`,
+ description: 'A prominent color that complements the channel\'s content',
},
{
displayName: 'Show Related Channels',
name: 'showRelatedChannels',
type: 'boolean',
- description: 'This setting indicates whether YouTube should show an algorithmically generated list of related channels on your channel page.',
+ description: 'This setting indicates whether YouTube should show an algorithmically generated list of related channels on your channel page',
default: false,
},
{
displayName: 'Show Browse View',
name: 'showBrowseView',
type: 'boolean',
- description: 'This setting indicates whether the channel page should display content in a browse or feed view.',
+ description: 'This setting indicates whether the channel page should display content in a browse or feed view',
default: false,
},
{
displayName: 'Tracking Analytics AccountId',
name: 'trackingAnalyticsAccountId',
type: 'string',
- description: 'The ID for a Google Analytics account that you want to use to track and measure traffic to your channel.',
+ description: 'The ID for a Google Analytics account that you want to use to track and measure traffic to your channel',
default: '',
},
{
displayName: 'Unsubscribed Trailer',
name: 'unsubscribedTrailer',
type: 'string',
- description: `The video that should play in the featured video module in the channel page's browse view for unsubscribed viewers.`,
+ description: 'The video that should play in the featured video module in the channel page\'s browse view for unsubscribed viewers',
default: '',
},
],
@@ -484,7 +484,7 @@ export const channelFields: INodeProperties[] = [
type: 'collection',
default: {},
placeholder: 'Add Channel Settings',
- description: `The image object encapsulates information about images that display on the channel's channel page or video watch pages.`,
+ description: 'The image object encapsulates information about images that display on the channel\'s channel page or video watch pages',
typeOptions: {
multipleValues: false,
},
diff --git a/packages/nodes-base/nodes/Google/YouTube/PlaylistDescription.ts b/packages/nodes-base/nodes/Google/YouTube/PlaylistDescription.ts
index 987a83ccc2..e0e81afa94 100644
--- a/packages/nodes-base/nodes/Google/YouTube/PlaylistDescription.ts
+++ b/packages/nodes-base/nodes/Google/YouTube/PlaylistDescription.ts
@@ -66,7 +66,7 @@ export const playlistFields: INodeProperties[] = [
},
},
default: '',
- description: `The playlist's title.`,
+ description: 'The playlist\'s title',
},
{
displayName: 'Options',
@@ -90,7 +90,7 @@ export const playlistFields: INodeProperties[] = [
name: 'description',
type: 'string',
default: '',
- description: `The playlist's description.`,
+ description: 'The playlist\'s description',
},
{
displayName: 'Privacy Status',
@@ -111,7 +111,7 @@ export const playlistFields: INodeProperties[] = [
},
],
default: '',
- description: `The playlist's privacy status.`,
+ description: 'The playlist\'s privacy status',
},
{
displayName: 'Tags',
@@ -128,7 +128,7 @@ export const playlistFields: INodeProperties[] = [
loadOptionsMethod: 'getLanguages',
},
default: '',
- description: `The language of the text in the playlist resource's title and description properties.`,
+ description: 'The language of the text in the playlist resource\'s title and description properties',
},
{
displayName: 'On Behalf Of Content Owner Channel',
@@ -211,7 +211,7 @@ export const playlistFields: INodeProperties[] = [
],
},
},
- description: 'The fields parameter specifies a comma-separated list of one or more playlist resource properties that the API response will include.',
+ description: 'The fields parameter specifies a comma-separated list of one or more playlist resource properties that the API response will include',
default: ['*'],
},
{
@@ -341,7 +341,7 @@ export const playlistFields: INodeProperties[] = [
],
},
},
- description: 'The fields parameter specifies a comma-separated list of one or more playlist resource properties that the API response will include.',
+ description: 'The fields parameter specifies a comma-separated list of one or more playlist resource properties that the API response will include',
default: ['*'],
},
{
@@ -359,7 +359,7 @@ export const playlistFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -383,7 +383,7 @@ export const playlistFields: INodeProperties[] = [
maxValue: 50,
},
default: 25,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -407,7 +407,7 @@ export const playlistFields: INodeProperties[] = [
name: 'channelId',
type: 'string',
default: '',
- description: `This value indicates that the API should only return the specified channel's playlists.`,
+ description: 'This value indicates that the API should only return the specified channel\'s playlists',
},
{
displayName: 'ID',
@@ -470,7 +470,7 @@ export const playlistFields: INodeProperties[] = [
},
},
default: '',
- description: `The playlist's title.`,
+ description: 'The playlist\'s title',
},
{
displayName: 'Title',
@@ -488,7 +488,7 @@ export const playlistFields: INodeProperties[] = [
},
},
default: '',
- description: `The playlist's title.`,
+ description: 'The playlist\'s title',
},
{
displayName: 'Update Fields',
@@ -515,14 +515,14 @@ export const playlistFields: INodeProperties[] = [
loadOptionsMethod: 'getLanguages',
},
default: '',
- description: `The language of the text in the playlist resource's title and description properties.`,
+ description: 'The language of the text in the playlist resource\'s title and description properties',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: `The playlist's description.`,
+ description: 'The playlist\'s description',
},
{
displayName: 'On Behalf Of Content Owner',
@@ -550,7 +550,7 @@ export const playlistFields: INodeProperties[] = [
},
],
default: '',
- description: `The playlist's privacy status.`,
+ description: 'The playlist\'s privacy status',
},
{
displayName: 'Tags',
diff --git a/packages/nodes-base/nodes/Google/YouTube/PlaylistItemDescription.ts b/packages/nodes-base/nodes/Google/YouTube/PlaylistItemDescription.ts
index a37381f9f3..dd0d8a2364 100644
--- a/packages/nodes-base/nodes/Google/YouTube/PlaylistItemDescription.ts
+++ b/packages/nodes-base/nodes/Google/YouTube/PlaylistItemDescription.ts
@@ -104,7 +104,7 @@ export const playlistItemFields: INodeProperties[] = [
name: 'endAt',
type: 'dateTime',
default: '',
- description: `The time, measured in seconds from the start of the video, when the video should stop playing.`,
+ description: 'The time, measured in seconds from the start of the video, when the video should stop playing',
},
{
displayName: 'Note',
@@ -135,7 +135,7 @@ export const playlistItemFields: INodeProperties[] = [
name: 'startAt',
type: 'dateTime',
default: '',
- description: `The time, measured in seconds from the start of the video, when the video should start playing.`,
+ description: 'The time, measured in seconds from the start of the video, when the video should start playing',
},
],
},
@@ -196,7 +196,7 @@ export const playlistItemFields: INodeProperties[] = [
],
},
},
- description: 'The fields parameter specifies a comma-separated list of one or more playlistItem resource properties that the API response will include.',
+ description: 'The fields parameter specifies a comma-separated list of one or more playlistItem resource properties that the API response will include',
default: ['*'],
},
{
@@ -331,7 +331,7 @@ export const playlistItemFields: INodeProperties[] = [
],
},
},
- description: 'The fields parameter specifies a comma-separated list of one or more playlistItem resource properties that the API response will include.',
+ description: 'The fields parameter specifies a comma-separated list of one or more playlistItem resource properties that the API response will include',
default: ['*'],
},
{
@@ -349,7 +349,7 @@ export const playlistItemFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -373,7 +373,7 @@ export const playlistItemFields: INodeProperties[] = [
maxValue: 50,
},
default: 25,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Google/YouTube/VideoCategoryDescription.ts b/packages/nodes-base/nodes/Google/YouTube/VideoCategoryDescription.ts
index 42af674ff3..e8f7febf4f 100644
--- a/packages/nodes-base/nodes/Google/YouTube/VideoCategoryDescription.ts
+++ b/packages/nodes-base/nodes/Google/YouTube/VideoCategoryDescription.ts
@@ -66,7 +66,7 @@ export const videoCategoryFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -90,6 +90,6 @@ export const videoCategoryFields: INodeProperties[] = [
maxValue: 50,
},
default: 25,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Google/YouTube/VideoDescription.ts b/packages/nodes-base/nodes/Google/YouTube/VideoDescription.ts
index 3df9d6dc4e..f7cba8ff0c 100644
--- a/packages/nodes-base/nodes/Google/YouTube/VideoDescription.ts
+++ b/packages/nodes-base/nodes/Google/YouTube/VideoDescription.ts
@@ -155,21 +155,21 @@ export const videoFields: INodeProperties[] = [
loadOptionsMethod: 'getLanguages',
},
default: '',
- description: `The language of the text in the playlist resource's title and description properties.`,
+ description: 'The language of the text in the playlist resource\'s title and description properties',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: `The playlist's description.`,
+ description: 'The playlist\'s description',
},
{
displayName: 'Embeddable',
name: 'embeddable',
type: 'boolean',
default: false,
- description: `This value indicates whether the video can be embedded on another website.`,
+ description: 'This value indicates whether the video can be embedded on another website',
},
{
displayName: 'License',
@@ -186,7 +186,7 @@ export const videoFields: INodeProperties[] = [
},
],
default: '',
- description: `The video's license.`,
+ description: 'The video\'s license',
},
{
displayName: 'Notify Subscribers',
@@ -214,21 +214,21 @@ export const videoFields: INodeProperties[] = [
},
],
default: '',
- description: `The playlist's privacy status.`,
+ description: 'The playlist\'s privacy status',
},
{
displayName: 'Public Stats Viewable',
name: 'publicStatsViewable',
type: 'boolean',
default: true,
- description: `This value indicates whether the extended video statistics on the video's watch page are publicly viewable.`,
+ description: 'This value indicates whether the extended video statistics on the video\'s watch page are publicly viewable',
},
{
displayName: 'Publish At',
name: 'publishAt',
type: 'dateTime',
default: '',
- description: `If you set a value for this property, you must also set the status.privacyStatus property to private.`,
+ description: 'If you set a value for this property, you must also set the status.privacyStatus property to private',
},
{
displayName: 'Recording Date',
@@ -381,7 +381,7 @@ export const videoFields: INodeProperties[] = [
],
},
},
- description: 'The fields parameter specifies a comma-separated list of one or more video resource properties that the API response will include.',
+ description: 'The fields parameter specifies a comma-separated list of one or more video resource properties that the API response will include',
default: ['*'],
},
{
@@ -428,7 +428,7 @@ export const videoFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -452,7 +452,7 @@ export const videoFields: INodeProperties[] = [
maxValue: 50,
},
default: 25,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -476,7 +476,7 @@ export const videoFields: INodeProperties[] = [
name: 'channelId',
type: 'string',
default: '',
- description: `The channelId parameter indicates that the API response should only contain resources created by the channel.`,
+ description: 'The channelId parameter indicates that the API response should only contain resources created by the channel',
},
{
displayName: 'For Developer',
@@ -490,21 +490,21 @@ export const videoFields: INodeProperties[] = [
name: 'publishedAfter',
type: 'dateTime',
default: '',
- description: `The publishedAfter parameter indicates that the API response should only contain resources created at or after the specified time.`,
+ description: 'The publishedAfter parameter indicates that the API response should only contain resources created at or after the specified time',
},
{
displayName: 'Published Before',
name: 'publishedBefore',
type: 'dateTime',
default: '',
- description: `The publishedBefore parameter indicates that the API response should only contain resources created before or at the specified time.`,
+ description: 'The publishedBefore parameter indicates that the API response should only contain resources created before or at the specified time',
},
{
displayName: 'Query',
name: 'q',
type: 'string',
default: '',
- description: `The q parameter specifies the query term to search for.`,
+ description: 'The q parameter specifies the query term to search for',
},
{
displayName: 'Region Code',
@@ -514,7 +514,7 @@ export const videoFields: INodeProperties[] = [
loadOptionsMethod: 'getCountriesCodes',
},
default: '',
- description: `The regionCode parameter instructs the API to select a video chart available in the specified region.`,
+ description: 'The regionCode parameter instructs the API to select a video chart available in the specified region',
},
{
displayName: 'Related To Video ID',
@@ -528,14 +528,14 @@ export const videoFields: INodeProperties[] = [
name: 'videoCategoryId',
type: 'string',
default: '',
- description: `The videoCategoryId parameter identifies the video category for which the chart should be retrieved.`,
+ description: 'The videoCategoryId parameter identifies the video category for which the chart should be retrieved',
},
{
displayName: 'Video Syndicated ',
name: 'videoSyndicated',
type: 'boolean',
default: false,
- description: `The videoSyndicated parameter lets you to restrict a search to only videos that can be played outside youtube.com.`,
+ description: 'The videoSyndicated parameter lets you to restrict a search to only videos that can be played outside youtube.com',
},
{
displayName: 'Video Type',
@@ -656,17 +656,17 @@ export const videoFields: INodeProperties[] = [
{
name: 'Dislike',
value: 'dislike',
- description: 'Records that the authenticated user disliked the video.',
+ description: 'Records that the authenticated user disliked the video',
},
{
name: 'Like',
value: 'like',
- description: 'Records that the authenticated user liked the video.',
+ description: 'Records that the authenticated user liked the video',
},
{
name: 'None',
value: 'none',
- description: 'Removes any rating that the authenticated user had previously set for the video.',
+ description: 'Removes any rating that the authenticated user had previously set for the video',
},
],
default: '',
@@ -774,21 +774,21 @@ export const videoFields: INodeProperties[] = [
loadOptionsMethod: 'getLanguages',
},
default: '',
- description: `The language of the text in the playlist resource's title and description properties.`,
+ description: 'The language of the text in the playlist resource\'s title and description properties',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: `The playlist's description.`,
+ description: 'The playlist\'s description',
},
{
displayName: 'Embeddable',
name: 'embeddable',
type: 'boolean',
default: false,
- description: `This value indicates whether the video can be embedded on another website.`,
+ description: 'This value indicates whether the video can be embedded on another website',
},
{
displayName: 'License',
@@ -805,7 +805,7 @@ export const videoFields: INodeProperties[] = [
},
],
default: '',
- description: `The video's license.`,
+ description: 'The video\'s license',
},
{
displayName: 'Notify Subscribers',
@@ -833,21 +833,21 @@ export const videoFields: INodeProperties[] = [
},
],
default: '',
- description: `The playlist's privacy status.`,
+ description: 'The playlist\'s privacy status',
},
{
displayName: 'Public Stats Viewable',
name: 'publicStatsViewable',
type: 'boolean',
default: true,
- description: `This value indicates whether the extended video statistics on the video's watch page are publicly viewable.`,
+ description: 'This value indicates whether the extended video statistics on the video\'s watch page are publicly viewable',
},
{
displayName: 'Publish At',
name: 'publishAt',
type: 'dateTime',
default: '',
- description: `If you set a value for this property, you must also set the status.privacyStatus property to private.`,
+ description: 'If you set a value for this property, you must also set the status.privacyStatus property to private',
},
{
displayName: 'Recording Date',
diff --git a/packages/nodes-base/nodes/Gotify/Gotify.node.ts b/packages/nodes-base/nodes/Gotify/Gotify.node.ts
index 888b2cf1a0..19eb96188e 100644
--- a/packages/nodes-base/nodes/Gotify/Gotify.node.ts
+++ b/packages/nodes-base/nodes/Gotify/Gotify.node.ts
@@ -116,14 +116,14 @@ export class Gotify implements INodeType {
name: 'priority',
type: 'number',
default: 1,
- description: 'The priority of the message.',
+ description: 'The priority of the message',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: `The title of the message.`,
+ description: 'The title of the message',
},
],
},
@@ -143,7 +143,7 @@ export class Gotify implements INodeType {
},
},
default: '',
- description: `The message id.`,
+ description: 'The message id',
},
{
displayName: 'Return All',
@@ -160,7 +160,7 @@ export class Gotify implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
diff --git a/packages/nodes-base/nodes/GraphQL/GraphQL.node.ts b/packages/nodes-base/nodes/GraphQL/GraphQL.node.ts
index 0f50e5a628..511979fd36 100644
--- a/packages/nodes-base/nodes/GraphQL/GraphQL.node.ts
+++ b/packages/nodes-base/nodes/GraphQL/GraphQL.node.ts
@@ -129,7 +129,7 @@ export class GraphQL implements INodeType {
},
],
default: 'none',
- description: 'The way to authenticate.',
+ description: 'The way to authenticate',
},
{
displayName: 'HTTP Request Method',
@@ -146,7 +146,7 @@ export class GraphQL implements INodeType {
},
],
default: 'POST',
- description: 'The underlying HTTP request method to use.',
+ description: 'The underlying HTTP request method to use',
},
{
displayName: 'Endpoint',
@@ -154,7 +154,7 @@ export class GraphQL implements INodeType {
type: 'string',
default: '',
placeholder: 'http://example.com/graphql',
- description: 'The GraphQL endpoint.',
+ description: 'The GraphQL endpoint',
required: true,
},
{
@@ -162,7 +162,7 @@ export class GraphQL implements INodeType {
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
- description: 'Still fetch the response even if SSL certificate validation is not possible.',
+ description: 'Still fetch the response even if SSL certificate validation is not possible',
},
{
displayName: 'Request Format',
@@ -246,7 +246,7 @@ export class GraphQL implements INodeType {
},
],
default: 'json',
- description: 'The format in which the data gets returned from the URL.',
+ description: 'The format in which the data gets returned from the URL',
},
{
displayName: 'Response Data Property Name',
@@ -261,7 +261,7 @@ export class GraphQL implements INodeType {
],
},
},
- description: 'Name of the property to which to write the response data.',
+ description: 'Name of the property to which to write the response data',
},
// Header Parameters
@@ -273,7 +273,7 @@ export class GraphQL implements INodeType {
typeOptions: {
multipleValues: true,
},
- description: 'The headers to send.',
+ description: 'The headers to send',
default: {},
options: [
{
@@ -285,14 +285,14 @@ export class GraphQL implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the header.',
+ description: 'Name of the header',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the header.',
+ description: 'Value to set for the header',
},
],
},
diff --git a/packages/nodes-base/nodes/HackerNews/HackerNews.node.ts b/packages/nodes-base/nodes/HackerNews/HackerNews.node.ts
index acdbccb279..73733aa54f 100644
--- a/packages/nodes-base/nodes/HackerNews/HackerNews.node.ts
+++ b/packages/nodes-base/nodes/HackerNews/HackerNews.node.ts
@@ -166,7 +166,7 @@ export class HackerNews implements INodeType {
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Whether to return all results for the query or only up to a limit.',
+ description: 'Whether to return all results for the query or only up to a limit',
displayOptions: {
show: {
resource: [
@@ -183,7 +183,7 @@ export class HackerNews implements INodeType {
name: 'limit',
type: 'number',
default: 100,
- description: 'Limit of Hacker News articles to be returned for the query.',
+ description: 'Limit of Hacker News articles to be returned for the query',
displayOptions: {
show: {
resource: [
@@ -220,7 +220,7 @@ export class HackerNews implements INodeType {
name: 'includeComments',
type: 'boolean',
default: false,
- description: 'Whether to include all the comments in a Hacker News article.',
+ description: 'Whether to include all the comments in a Hacker News article',
},
],
},
@@ -246,7 +246,7 @@ export class HackerNews implements INodeType {
name: 'keyword',
type: 'string',
default: '',
- description: 'The keyword for filtering the results of the query.',
+ description: 'The keyword for filtering the results of the query',
},
{
displayName: 'Tags',
@@ -285,7 +285,7 @@ export class HackerNews implements INodeType {
},
],
default: [],
- description: 'Tags for filtering the results of the query.',
+ description: 'Tags for filtering the results of the query',
},
],
},
diff --git a/packages/nodes-base/nodes/Harvest/ClientDescription.ts b/packages/nodes-base/nodes/Harvest/ClientDescription.ts
index bc12cf4866..21e0bf521a 100644
--- a/packages/nodes-base/nodes/Harvest/ClientDescription.ts
+++ b/packages/nodes-base/nodes/Harvest/ClientDescription.ts
@@ -69,7 +69,7 @@ export const clientFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your clients.',
+ description: 'Returns a list of your clients',
},
{
displayName: 'Limit',
@@ -91,7 +91,7 @@ export const clientFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -113,14 +113,14 @@ export const clientFields: INodeProperties[] = [
name: 'is_active',
type: 'boolean',
default: true,
- description: 'Pass true to only return active clients and false to return inactive clients.',
+ description: 'Pass true to only return active clients and false to return inactive clients',
},
{
displayName: 'Updated Since',
name: 'updated_since',
type: 'dateTime',
default: '',
- description: 'Only return clients that have been updated since the given date and time.',
+ description: 'Only return clients that have been updated since the given date and time',
},
],
},
@@ -142,7 +142,7 @@ export const clientFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the client you are retrieving.',
+ description: 'The ID of the client you are retrieving',
},
/* -------------------------------------------------------------------------- */
@@ -162,7 +162,7 @@ export const clientFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the client you want to delete.',
+ description: 'The ID of the client you want to delete',
},
/* -------------------------------------------------------------------------- */
@@ -182,7 +182,7 @@ export const clientFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The name of the client.',
+ description: 'The name of the client',
},
{
displayName: 'Additional Fields',
@@ -240,7 +240,7 @@ export const clientFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the client want to update.',
+ description: 'The ID of the client want to update',
},
{
displayName: 'Update Fields',
diff --git a/packages/nodes-base/nodes/Harvest/ContactDescription.ts b/packages/nodes-base/nodes/Harvest/ContactDescription.ts
index e968da1e71..3763baca07 100644
--- a/packages/nodes-base/nodes/Harvest/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Harvest/ContactDescription.ts
@@ -68,7 +68,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your user contacts.',
+ description: 'Returns a list of your user contacts',
},
{
displayName: 'Limit',
@@ -90,7 +90,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -112,14 +112,14 @@ export const contactFields: INodeProperties[] = [
name: 'is_active',
type: 'boolean',
default: true,
- description: 'Pass true to only return active clients and false to return inactive clients.',
+ description: 'Pass true to only return active clients and false to return inactive clients',
},
{
displayName: 'Updated Since',
name: 'updated_since',
type: 'dateTime',
default: '',
- description: 'Only return clients that have been updated since the given date and time.',
+ description: 'Only return clients that have been updated since the given date and time',
},
],
},
@@ -141,7 +141,7 @@ export const contactFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the contact you are retrieving.',
+ description: 'The ID of the contact you are retrieving',
},
/* -------------------------------------------------------------------------- */
@@ -161,7 +161,7 @@ export const contactFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the contact you want to delete.',
+ description: 'The ID of the contact you want to delete',
},
/* -------------------------------------------------------------------------- */
@@ -181,7 +181,7 @@ export const contactFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The first name of the contact.',
+ description: 'The first name of the contact',
},
{
displayName: 'Client Id',
@@ -197,7 +197,7 @@ export const contactFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the client associated with this contact.',
+ description: 'The ID of the client associated with this contact',
},
{
displayName: 'Additional Fields',
@@ -219,35 +219,35 @@ export const contactFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'The contact’s email address.',
+ description: 'The contact’s email address',
},
{
displayName: 'Fax',
name: 'fax',
type: 'string',
default: '',
- description: 'The contact’s fax number.',
+ description: 'The contact’s fax number',
},
{
displayName: 'Last Name',
name: 'last_name',
type: 'string',
default: '',
- description: 'The last name of the contact.',
+ description: 'The last name of the contact',
},
{
displayName: 'Phone Mobile',
name: 'phone_mobile',
type: 'string',
default: '',
- description: 'The contact’s mobile phone number.',
+ description: 'The contact’s mobile phone number',
},
{
displayName: 'Phone Office',
name: 'phone_office',
type: 'string',
default: '',
- description: 'The contact’s office phone number.',
+ description: 'The contact’s office phone number',
},
{
@@ -255,7 +255,7 @@ export const contactFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'The title of the contact.',
+ description: 'The title of the contact',
},
],
},
@@ -277,7 +277,7 @@ export const contactFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the contact want to update.',
+ description: 'The ID of the contact want to update',
},
{
displayName: 'Update Fields',
@@ -299,56 +299,56 @@ export const contactFields: INodeProperties[] = [
name: 'client_id',
type: 'string',
default: '',
- description: 'The ID of the client associated with this contact.',
+ description: 'The ID of the client associated with this contact',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'The contact’s email address.',
+ description: 'The contact’s email address',
},
{
displayName: 'Fax',
name: 'fax',
type: 'string',
default: '',
- description: 'The contact’s fax number.',
+ description: 'The contact’s fax number',
},
{
displayName: 'First Name',
name: 'first_name',
type: 'string',
default: '',
- description: 'The first name of the contact.',
+ description: 'The first name of the contact',
},
{
displayName: 'Last Name',
name: 'last_name',
type: 'string',
default: '',
- description: 'The last name of the contact.',
+ description: 'The last name of the contact',
},
{
displayName: 'Phone Mobile',
name: 'phone_mobile',
type: 'string',
default: '',
- description: 'The contact’s mobile phone number.',
+ description: 'The contact’s mobile phone number',
},
{
displayName: 'Phone Office',
name: 'phone_office',
type: 'string',
default: '',
- description: 'The contact’s office phone number.',
+ description: 'The contact’s office phone number',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'The title of the contact.',
+ description: 'The title of the contact',
},
],
},
diff --git a/packages/nodes-base/nodes/Harvest/EstimateDescription.ts b/packages/nodes-base/nodes/Harvest/EstimateDescription.ts
index d4c22e2bcb..61d662e173 100644
--- a/packages/nodes-base/nodes/Harvest/EstimateDescription.ts
+++ b/packages/nodes-base/nodes/Harvest/EstimateDescription.ts
@@ -68,7 +68,7 @@ export const estimateFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your estimates.',
+ description: 'Returns a list of your estimates',
},
{
displayName: 'Limit',
@@ -90,7 +90,7 @@ export const estimateFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -112,14 +112,14 @@ export const estimateFields: INodeProperties[] = [
name: 'client_id',
type: 'string',
default: '',
- description: 'Only return time entries belonging to the client with the given ID.',
+ description: 'Only return time entries belonging to the client with the given ID',
},
{
displayName: 'From',
name: 'from',
type: 'dateTime',
default: '',
- description: 'Only return time entries with a spent_date on or after the given date.',
+ description: 'Only return time entries with a spent_date on or after the given date',
},
{
displayName: 'State',
@@ -133,14 +133,14 @@ export const estimateFields: INodeProperties[] = [
name: 'to',
type: 'dateTime',
default: '',
- description: 'Only return time entries with a spent_date on or before the given date.',
+ description: 'Only return time entries with a spent_date on or before the given date',
},
{
displayName: 'Updated Since',
name: 'updated_since',
type: 'dateTime',
default: '',
- description: 'Only return time entries that have been updated since the given date and time.',
+ description: 'Only return time entries that have been updated since the given date and time',
},
{
displayName: 'Page',
@@ -172,7 +172,7 @@ export const estimateFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the estimate you are retrieving.',
+ description: 'The ID of the estimate you are retrieving',
},
/* -------------------------------------------------------------------------- */
@@ -192,7 +192,7 @@ export const estimateFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the estimate want to delete.',
+ description: 'The ID of the estimate want to delete',
},
/* -------------------------------------------------------------------------- */
@@ -212,7 +212,7 @@ export const estimateFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the client this estimate belongs to.',
+ description: 'The ID of the client this estimate belongs to',
},
{
displayName: 'Additional Fields',
@@ -255,28 +255,28 @@ export const estimateFields: INodeProperties[] = [
name: 'notes',
type: 'string',
default: '',
- description: 'Any additional notes to include on the estimate.',
+ description: 'Any additional notes to include on the estimate',
},
{
displayName: 'Number',
name: 'number',
type: 'string',
default: '',
- description: 'If no value is set, the number will be automatically generated.',
+ description: 'If no value is set, the number will be automatically generated',
},
{
displayName: 'Purchase Order',
name: 'purchase_order',
type: 'string',
default: '',
- description: 'The purchase order number.',
+ description: 'The purchase order number',
},
{
displayName: 'Subject',
name: 'subject',
type: 'string',
default: '',
- description: 'The estimate subject.',
+ description: 'The estimate subject',
},
{
displayName: 'Tax',
@@ -312,7 +312,7 @@ export const estimateFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the invoice want to update.',
+ description: 'The ID of the invoice want to update',
},
{
displayName: 'Update Fields',
@@ -334,7 +334,7 @@ export const estimateFields: INodeProperties[] = [
name: 'client_id',
type: 'string',
default: '',
- description: 'The ID of the retainer associated with this invoice..',
+ description: 'The ID of the retainer associated with this invoice',
},
{
displayName: 'Currency',
@@ -362,28 +362,28 @@ export const estimateFields: INodeProperties[] = [
name: 'number',
type: 'string',
default: '',
- description: 'If no value is set, the number will be automatically generated.',
+ description: 'If no value is set, the number will be automatically generated',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
- description: 'Any additional notes to include on the estimate.',
+ description: 'Any additional notes to include on the estimate',
},
{
displayName: 'Purchase Order',
name: 'purchase_order',
type: 'string',
default: '',
- description: 'The purchase order number.',
+ description: 'The purchase order number',
},
{
displayName: 'Subject',
name: 'subject',
type: 'string',
default: '',
- description: 'The estimate subject.',
+ description: 'The estimate subject',
},
{
displayName: 'Tax',
diff --git a/packages/nodes-base/nodes/Harvest/ExpenseDescription.ts b/packages/nodes-base/nodes/Harvest/ExpenseDescription.ts
index 784d9913f6..bd317605e1 100644
--- a/packages/nodes-base/nodes/Harvest/ExpenseDescription.ts
+++ b/packages/nodes-base/nodes/Harvest/ExpenseDescription.ts
@@ -68,7 +68,7 @@ export const expenseFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your expenses.',
+ description: 'Returns a list of your expenses',
},
{
displayName: 'Limit',
@@ -90,7 +90,7 @@ export const expenseFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -112,21 +112,21 @@ export const expenseFields: INodeProperties[] = [
name: 'client_id',
type: 'string',
default: '',
- description: 'Only return time entries belonging to the client with the given ID.',
+ description: 'Only return time entries belonging to the client with the given ID',
},
{
displayName: 'From',
name: 'from',
type: 'dateTime',
default: '',
- description: 'Only return time entries with a spent_date on or after the given date.',
+ description: 'Only return time entries with a spent_date on or after the given date',
},
{
displayName: 'Is Billed',
name: 'is_billed',
type: 'boolean',
default: false,
- description: 'Pass true to only return time entries that have been invoiced and false to return time entries that have not been invoiced.',
+ description: 'Pass true to only return time entries that have been invoiced and false to return time entries that have not been invoiced',
},
{
displayName: 'Page',
@@ -143,28 +143,28 @@ export const expenseFields: INodeProperties[] = [
name: 'project_id',
type: 'string',
default: '',
- description: 'Only return time entries belonging to the client with the given ID.',
+ description: 'Only return time entries belonging to the client with the given ID',
},
{
displayName: 'To',
name: 'to',
type: 'dateTime',
default: '',
- description: 'Only return time entries with a spent_date on or before the given date.',
+ description: 'Only return time entries with a spent_date on or before the given date',
},
{
displayName: 'Updated Since',
name: 'updated_since',
type: 'dateTime',
default: '',
- description: 'Only return time entries that have been updated since the given date and time.',
+ description: 'Only return time entries that have been updated since the given date and time',
},
{
displayName: 'User ID',
name: 'user_id',
type: 'string',
default: '',
- description: 'Only return time entries belonging to the user with the given ID.',
+ description: 'Only return time entries belonging to the user with the given ID',
},
],
},
@@ -186,7 +186,7 @@ export const expenseFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the expense you are retrieving.',
+ description: 'The ID of the expense you are retrieving',
},
/* -------------------------------------------------------------------------- */
@@ -206,7 +206,7 @@ export const expenseFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the expense you want to delete.',
+ description: 'The ID of the expense you want to delete',
},
/* -------------------------------------------------------------------------- */
@@ -226,7 +226,7 @@ export const expenseFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the project associated with this expense.',
+ description: 'The ID of the project associated with this expense',
},
{
displayName: 'Expense Category Id',
@@ -242,7 +242,7 @@ export const expenseFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the expense category this expense is being tracked against.',
+ description: 'The ID of the expense category this expense is being tracked against',
},
{
displayName: 'Spent Date',
@@ -258,7 +258,7 @@ export const expenseFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'Date the expense occurred.',
+ description: 'Date the expense occurred',
},
{
displayName: 'Additional Fields',
@@ -287,21 +287,21 @@ export const expenseFields: INodeProperties[] = [
name: 'notes',
type: 'string',
default: '',
- description: 'Notes about the expense.',
+ description: 'Notes about the expense',
},
{
displayName: 'Total Cost',
name: 'total_cost',
type: 'string',
default: '',
- description: 'The total amount of the expense.',
+ description: 'The total amount of the expense',
},
{
displayName: 'Units',
name: 'units',
type: 'string',
default: '',
- description: 'The quantity of units to use in calculating the total_cost of the expense.',
+ description: 'The quantity of units to use in calculating the total_cost of the expense',
},
{
displayName: 'User Id',
@@ -330,7 +330,7 @@ export const expenseFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the invoice want to update.',
+ description: 'The ID of the invoice want to update',
},
{
displayName: 'Update Fields',
@@ -359,42 +359,42 @@ export const expenseFields: INodeProperties[] = [
name: 'expense_category_id',
type: 'string',
default: '',
- description: 'The ID of the expense category this expense is being tracked against.',
+ description: 'The ID of the expense category this expense is being tracked against',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
- description: 'Notes about the expense.',
+ description: 'Notes about the expense',
},
{
displayName: 'Project Id',
name: 'project_id',
type: 'string',
default: '',
- description: 'The ID of the project associated with this expense.',
+ description: 'The ID of the project associated with this expense',
},
{
displayName: 'Spent Date',
name: 'spent_date',
type: 'dateTime',
default: '',
- description: 'Date the expense occurred.',
+ description: 'Date the expense occurred',
},
{
displayName: 'Total Cost',
name: 'total_cost',
type: 'string',
default: '',
- description: 'The total amount of the expense.',
+ description: 'The total amount of the expense',
},
{
displayName: 'Units',
name: 'units',
type: 'string',
default: '',
- description: 'The quantity of units to use in calculating the total_cost of the expense.',
+ description: 'The quantity of units to use in calculating the total_cost of the expense',
},
{
displayName: 'User Id',
diff --git a/packages/nodes-base/nodes/Harvest/InvoiceDescription.ts b/packages/nodes-base/nodes/Harvest/InvoiceDescription.ts
index 9a3ed00c49..4b027b089b 100644
--- a/packages/nodes-base/nodes/Harvest/InvoiceDescription.ts
+++ b/packages/nodes-base/nodes/Harvest/InvoiceDescription.ts
@@ -68,7 +68,7 @@ export const invoiceFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your invoices.',
+ description: 'Returns a list of your invoices',
},
{
displayName: 'Limit',
@@ -90,7 +90,7 @@ export const invoiceFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -112,14 +112,14 @@ export const invoiceFields: INodeProperties[] = [
name: 'client_id',
type: 'string',
default: '',
- description: 'Only return time entries belonging to the client with the given ID.',
+ description: 'Only return time entries belonging to the client with the given ID',
},
{
displayName: 'From',
name: 'from',
type: 'dateTime',
default: '',
- description: 'Only return time entries with a spent_date on or after the given date.',
+ description: 'Only return time entries with a spent_date on or after the given date',
},
{
displayName: 'Page',
@@ -136,7 +136,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'project_id',
type: 'string',
default: '',
- description: 'Only return time entries belonging to the client with the given ID.',
+ description: 'Only return time entries belonging to the client with the given ID',
},
{
displayName: 'State',
@@ -168,7 +168,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'to',
type: 'dateTime',
default: '',
- description: 'Only return time entries with a spent_date on or before the given date.',
+ description: 'Only return time entries with a spent_date on or before the given date',
},
{
@@ -176,7 +176,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'updated_since',
type: 'dateTime',
default: '',
- description: 'Only return time entries that have been updated since the given date and time.',
+ description: 'Only return time entries that have been updated since the given date and time',
},
],
},
@@ -198,7 +198,7 @@ export const invoiceFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the invoice you are retrieving.',
+ description: 'The ID of the invoice you are retrieving',
},
/* -------------------------------------------------------------------------- */
@@ -218,7 +218,7 @@ export const invoiceFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the invoice want to delete.',
+ description: 'The ID of the invoice want to delete',
},
/* -------------------------------------------------------------------------- */
@@ -238,7 +238,7 @@ export const invoiceFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the retainer associated with this invoice..',
+ description: 'The ID of the retainer associated with this invoice',
},
{
displayName: 'Additional Fields',
@@ -281,7 +281,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'estimate_id',
type: 'string',
default: '',
- description: 'The ID of the estimate associated with this invoice.',
+ description: 'The ID of the estimate associated with this invoice',
},
{
displayName: 'Issue Date',
@@ -295,14 +295,14 @@ export const invoiceFields: INodeProperties[] = [
name: 'notes',
type: 'string',
default: '',
- description: 'Notes about the project.',
+ description: 'Notes about the project',
},
{
displayName: 'Number',
name: 'number',
type: 'string',
default: '',
- description: 'If no value is set, the number will be automatically generated.',
+ description: 'If no value is set, the number will be automatically generated',
},
{
displayName: 'Payment Term',
@@ -316,21 +316,21 @@ export const invoiceFields: INodeProperties[] = [
name: 'purchase_order',
type: 'string',
default: '',
- description: 'The purchase order number.',
+ description: 'The purchase order number',
},
{
displayName: 'Retainer Id',
name: 'retainer_id',
type: 'boolean',
default: true,
- description: 'The ID of the retainer associated with this invoice.',
+ description: 'The ID of the retainer associated with this invoice',
},
{
displayName: 'Subject',
name: 'subject',
type: 'string',
default: '',
- description: 'The invoice subject.',
+ description: 'The invoice subject',
},
{
displayName: 'Tax',
@@ -366,7 +366,7 @@ export const invoiceFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the invoice want to update.',
+ description: 'The ID of the invoice want to update',
},
{
displayName: 'Update Fields',
@@ -388,7 +388,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'client_id',
type: 'string',
default: '',
- description: 'The ID of the retainer associated with this invoice..',
+ description: 'The ID of the retainer associated with this invoice',
},
{
displayName: 'Currency',
@@ -416,7 +416,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'estimate_id',
type: 'string',
default: '',
- description: 'The ID of the estimate associated with this invoice.',
+ description: 'The ID of the estimate associated with this invoice',
},
{
displayName: 'Issue Date',
@@ -430,14 +430,14 @@ export const invoiceFields: INodeProperties[] = [
name: 'notes',
type: 'string',
default: '',
- description: 'Notes about the project.',
+ description: 'Notes about the project',
},
{
displayName: 'Number',
name: 'number',
type: 'string',
default: '',
- description: 'If no value is set, the number will be automatically generated.',
+ description: 'If no value is set, the number will be automatically generated',
},
{
displayName: 'Payment Term',
@@ -451,21 +451,21 @@ export const invoiceFields: INodeProperties[] = [
name: 'purchase_order',
type: 'string',
default: '',
- description: 'The purchase order number.',
+ description: 'The purchase order number',
},
{
displayName: 'Retainer Id',
name: 'retainer_id',
type: 'boolean',
default: true,
- description: 'The ID of the retainer associated with this invoice.',
+ description: 'The ID of the retainer associated with this invoice',
},
{
displayName: 'Subject',
name: 'subject',
type: 'string',
default: '',
- description: 'The invoice subject.',
+ description: 'The invoice subject',
},
{
displayName: 'Tax',
diff --git a/packages/nodes-base/nodes/Harvest/ProjectDescription.ts b/packages/nodes-base/nodes/Harvest/ProjectDescription.ts
index d8e2949788..0d5cdeac9a 100644
--- a/packages/nodes-base/nodes/Harvest/ProjectDescription.ts
+++ b/packages/nodes-base/nodes/Harvest/ProjectDescription.ts
@@ -68,7 +68,7 @@ export const projectFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your projects.',
+ description: 'Returns a list of your projects',
},
{
displayName: 'Limit',
@@ -90,7 +90,7 @@ export const projectFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -112,14 +112,14 @@ export const projectFields: INodeProperties[] = [
name: 'client_id',
type: 'string',
default: '',
- description: 'Only return projects belonging to the client with the given ID.',
+ description: 'Only return projects belonging to the client with the given ID',
},
{
displayName: 'Is Active',
name: 'is_active',
type: 'boolean',
default: true,
- description: 'Pass true to only return active projects and false to return inactive projects.',
+ description: 'Pass true to only return active projects and false to return inactive projects',
},
{
displayName: 'Page',
@@ -129,14 +129,14 @@ export const projectFields: INodeProperties[] = [
minValue: 1,
},
default: 1,
- description: 'The page number to use in pagination.',
+ description: 'The page number to use in pagination',
},
{
displayName: 'Updated Since',
name: 'updated_since',
type: 'dateTime',
default: '',
- description: 'Only return projects by updated_since.',
+ description: 'Only return projects by updated_since',
},
],
},
@@ -158,7 +158,7 @@ export const projectFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the project you are retrieving.',
+ description: 'The ID of the project you are retrieving',
},
/* -------------------------------------------------------------------------- */
@@ -178,7 +178,7 @@ export const projectFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the project want to delete.',
+ description: 'The ID of the project want to delete',
},
/* -------------------------------------------------------------------------- */
@@ -198,7 +198,7 @@ export const projectFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The name of the project.',
+ description: 'The name of the project',
},
{
displayName: 'Client Id',
@@ -214,7 +214,7 @@ export const projectFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the client to associate this project with.',
+ description: 'The ID of the client to associate this project with',
},
{
displayName: 'Is Billable',
@@ -230,7 +230,7 @@ export const projectFields: INodeProperties[] = [
},
default: true,
required: true,
- description: 'Whether the project is billable or not.',
+ description: 'Whether the project is billable or not',
},
{
displayName: 'Bill By',
@@ -264,7 +264,7 @@ export const projectFields: INodeProperties[] = [
],
default: 'none',
required: true,
- description: 'The method by which the project is invoiced.',
+ description: 'The method by which the project is invoiced',
},
{
displayName: 'Budget By',
@@ -281,7 +281,7 @@ export const projectFields: INodeProperties[] = [
default: 'none',
placeholder: '',
required: true,
- description: 'The email of the user or "none".',
+ description: 'The email of the user or "none"',
},
{
displayName: 'Additional Fields',
@@ -306,7 +306,7 @@ export const projectFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'The budget in hours for the project when budgeting by time.',
+ description: 'The budget in hours for the project when budgeting by time',
},
{
displayName: 'Budget Is Monthly',
@@ -320,7 +320,7 @@ export const projectFields: INodeProperties[] = [
name: 'cost_budget',
type: 'string',
default: '',
- description: 'The monetary budget for the project when budgeting by money.',
+ description: 'The monetary budget for the project when budgeting by money',
},
{
displayName: 'Cost Budget Include Expenses',
@@ -334,7 +334,7 @@ export const projectFields: INodeProperties[] = [
name: 'ends_on',
type: 'dateTime',
default: '',
- description: 'Date the project will end.',
+ description: 'Date the project will end',
},
{
displayName: 'Fee',
@@ -348,7 +348,7 @@ export const projectFields: INodeProperties[] = [
name: 'hourly_rate',
type: 'string',
default: '',
- description: 'Rate for projects billed by Project Hourly Rate.',
+ description: 'Rate for projects billed by Project Hourly Rate',
},
{
displayName: 'Is Active',
@@ -362,14 +362,14 @@ export const projectFields: INodeProperties[] = [
name: 'is_fixed_fee',
type: 'boolean',
default: false,
- description: 'Whether the project is a fixed-fee project or not.',
+ description: 'Whether the project is a fixed-fee project or not',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
- description: 'Notes about the project.',
+ description: 'Notes about the project',
},
{
displayName: 'Notify When Over Budget',
@@ -397,7 +397,7 @@ export const projectFields: INodeProperties[] = [
name: 'starts_on',
type: 'dateTime',
default: '',
- description: 'Date the project was started.',
+ description: 'Date the project was started',
},
],
},
@@ -419,7 +419,7 @@ export const projectFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the project want to update.',
+ description: 'The ID of the project want to update',
},
{
displayName: 'Update Fields',
@@ -459,21 +459,21 @@ export const projectFields: INodeProperties[] = [
},
],
default: 'none',
- description: 'The method by which the project is invoiced.',
+ description: 'The method by which the project is invoiced',
},
{
displayName: 'Budget',
name: 'budget',
type: 'string',
default: '',
- description: 'The budget in hours for the project when budgeting by time.',
+ description: 'The budget in hours for the project when budgeting by time',
},
{
displayName: 'Budget By',
name: 'budget_by',
type: 'string',
default: '',
- description: 'The email of the user or "none".',
+ description: 'The email of the user or "none"',
},
{
displayName: 'Budget Is Monthly',
@@ -487,14 +487,14 @@ export const projectFields: INodeProperties[] = [
name: 'client_id',
type: 'string',
default: '',
- description: 'The ID of the client to associate this project with.',
+ description: 'The ID of the client to associate this project with',
},
{
displayName: 'Cost Budget',
name: 'cost_budget',
type: 'string',
default: '',
- description: 'The monetary budget for the project when budgeting by money.',
+ description: 'The monetary budget for the project when budgeting by money',
},
{
displayName: 'Cost Budget Include Expenses',
@@ -508,7 +508,7 @@ export const projectFields: INodeProperties[] = [
name: 'ends_on',
type: 'dateTime',
default: '',
- description: 'Date the project will end.',
+ description: 'Date the project will end',
},
{
displayName: 'Fee',
@@ -522,7 +522,7 @@ export const projectFields: INodeProperties[] = [
name: 'hourly_rate',
type: 'string',
default: '',
- description: 'Rate for projects billed by Project Hourly Rate.',
+ description: 'Rate for projects billed by Project Hourly Rate',
},
{
displayName: 'Is Active',
@@ -536,28 +536,28 @@ export const projectFields: INodeProperties[] = [
name: 'is_billable',
type: 'boolean',
default: true,
- description: 'Whether the project is billable or not.',
+ description: 'Whether the project is billable or not',
},
{
displayName: 'Is Fixed Fee',
name: 'is_fixed_fee',
type: 'boolean',
default: false,
- description: 'Whether the project is a fixed-fee project or not.',
+ description: 'Whether the project is a fixed-fee project or not',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'The name of the project.',
+ description: 'The name of the project',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
- description: 'Notes about the project.',
+ description: 'Notes about the project',
},
{
displayName: 'Notify When Over Budget',
@@ -585,7 +585,7 @@ export const projectFields: INodeProperties[] = [
name: 'starts_on',
type: 'dateTime',
default: '',
- description: 'Date the project was started.',
+ description: 'Date the project was started',
},
],
},
diff --git a/packages/nodes-base/nodes/Harvest/TaskDescription.ts b/packages/nodes-base/nodes/Harvest/TaskDescription.ts
index a8538c30d5..b35e6c7650 100644
--- a/packages/nodes-base/nodes/Harvest/TaskDescription.ts
+++ b/packages/nodes-base/nodes/Harvest/TaskDescription.ts
@@ -67,7 +67,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your tasks.',
+ description: 'Returns a list of your tasks',
},
{
displayName: 'Limit',
@@ -89,7 +89,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -111,7 +111,7 @@ export const taskFields: INodeProperties[] = [
name: 'is_active',
type: 'boolean',
default: true,
- description: 'Pass true to only return active tasks and false to return inactive tasks.',
+ description: 'Pass true to only return active tasks and false to return inactive tasks',
},
{
displayName: 'Page',
@@ -121,14 +121,14 @@ export const taskFields: INodeProperties[] = [
minValue: 1,
},
default: 1,
- description: 'The page number to use in pagination.',
+ description: 'The page number to use in pagination',
},
{
displayName: 'Updated Since',
name: 'updated_since',
type: 'dateTime',
default: '',
- description: 'Only return tasks belonging to the task with the given ID.',
+ description: 'Only return tasks belonging to the task with the given ID',
},
],
},
@@ -150,7 +150,7 @@ export const taskFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the task you are retrieving.',
+ description: 'The ID of the task you are retrieving',
},
/* -------------------------------------------------------------------------- */
@@ -170,7 +170,7 @@ export const taskFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the task you want to delete.',
+ description: 'The ID of the task you want to delete',
},
/* -------------------------------------------------------------------------- */
@@ -190,7 +190,7 @@ export const taskFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The name of the task.',
+ description: 'The name of the task',
},
{
displayName: 'Additional Fields',
@@ -255,7 +255,7 @@ export const taskFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the task you want to update.',
+ description: 'The ID of the task you want to update',
},
{
displayName: 'Update Fields',
@@ -306,7 +306,7 @@ export const taskFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the task.',
+ description: 'Name of the task',
},
],
},
diff --git a/packages/nodes-base/nodes/Harvest/TimeEntryDescription.ts b/packages/nodes-base/nodes/Harvest/TimeEntryDescription.ts
index c93ac5c9f4..3375636eab 100644
--- a/packages/nodes-base/nodes/Harvest/TimeEntryDescription.ts
+++ b/packages/nodes-base/nodes/Harvest/TimeEntryDescription.ts
@@ -35,7 +35,7 @@ export const timeEntryOperations: INodeProperties[] = [
{
name: 'Delete External Reference',
value: 'deleteExternal',
- description: `Delete a time entry’s external reference.`,
+ description: 'Delete a time entry’s external reference',
},
{
name: 'Get',
@@ -86,7 +86,7 @@ export const timeEntryFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your time entries.',
+ description: 'Returns a list of your time entries',
},
{
displayName: 'Limit',
@@ -108,7 +108,7 @@ export const timeEntryFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -130,28 +130,28 @@ export const timeEntryFields: INodeProperties[] = [
name: 'client_id',
type: 'string',
default: '',
- description: 'Only return time entries belonging to the client with the given ID.',
+ description: 'Only return time entries belonging to the client with the given ID',
},
{
displayName: 'From',
name: 'from',
type: 'dateTime',
default: '',
- description: 'Only return time entries with a spent_date on or after the given date.',
+ description: 'Only return time entries with a spent_date on or after the given date',
},
{
displayName: 'Is Billed',
name: 'is_billed',
type: 'boolean',
default: true,
- description: 'Pass true to only return time entries that have been invoiced and false to return time entries that have not been invoiced.',
+ description: 'Pass true to only return time entries that have been invoiced and false to return time entries that have not been invoiced',
},
{
displayName: 'Is Running',
name: 'is_running',
type: 'boolean',
default: true,
- description: 'Pass true to only return running time entries and false to return non-running time entries.',
+ description: 'Pass true to only return running time entries and false to return non-running time entries',
},
{
displayName: 'Page',
@@ -168,21 +168,21 @@ export const timeEntryFields: INodeProperties[] = [
name: 'to',
type: 'dateTime',
default: '',
- description: 'Only return time entries with a spent_date on or before the given date.',
+ description: 'Only return time entries with a spent_date on or before the given date',
},
{
displayName: 'Updated Since',
name: 'updated_since',
type: 'dateTime',
default: '',
- description: 'Only return time entries that have been updated since the given date and time.',
+ description: 'Only return time entries that have been updated since the given date and time',
},
{
displayName: 'User ID',
name: 'user_id',
type: 'string',
default: '',
- description: 'Only return time entries belonging to the user with the given ID.',
+ description: 'Only return time entries belonging to the user with the given ID',
},
],
},
@@ -204,7 +204,7 @@ export const timeEntryFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the time entry you are retrieving.',
+ description: 'The ID of the time entry you are retrieving',
},
/* -------------------------------------------------------------------------- */
@@ -224,7 +224,7 @@ export const timeEntryFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the time entry you are deleting.',
+ description: 'The ID of the time entry you are deleting',
},
/* -------------------------------------------------------------------------- */
@@ -244,7 +244,7 @@ export const timeEntryFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the time entry whose external reference you are deleting.',
+ description: 'The ID of the time entry whose external reference you are deleting',
},
/* -------------------------------------------------------------------------- */
@@ -304,7 +304,7 @@ export const timeEntryFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the time entry to update.',
+ description: 'The ID of the time entry to update',
},
{
displayName: 'Update Fields',
@@ -327,7 +327,7 @@ export const timeEntryFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: '3:00pm',
- description: 'The time the entry ended.',
+ description: 'The time the entry ended',
},
{
displayName: 'Hours',
@@ -337,14 +337,14 @@ export const timeEntryFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'The current amount of time tracked.',
+ description: 'The current amount of time tracked',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
- description: 'These are notes about the time entry..',
+ description: 'These are notes about the time entry',
},
{
displayName: 'Started Time',
@@ -374,7 +374,7 @@ export const timeEntryFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the project to associate with the time entry.',
+ description: 'The ID of the project to associate with the time entry',
},
{
displayName: 'Task Id',
@@ -390,7 +390,7 @@ export const timeEntryFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the task to associate with the time entry.',
+ description: 'The ID of the task to associate with the time entry',
},
{
displayName: 'Spent Date',
@@ -406,7 +406,7 @@ export const timeEntryFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ISO 8601 formatted date the time entry was spent.',
+ description: 'The ISO 8601 formatted date the time entry was spent',
},
{
displayName: 'Additional Fields',
@@ -431,14 +431,14 @@ export const timeEntryFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'The current amount of time tracked.',
+ description: 'The current amount of time tracked',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
- description: 'These are notes about the time entry..',
+ description: 'These are notes about the time entry',
},
{
displayName: 'User ID',
@@ -467,7 +467,7 @@ export const timeEntryFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the project to associate with the time entry.',
+ description: 'The ID of the project to associate with the time entry',
},
{
displayName: 'Task Id',
@@ -483,7 +483,7 @@ export const timeEntryFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the task to associate with the time entry.',
+ description: 'The ID of the task to associate with the time entry',
},
{
displayName: 'Spent Date',
@@ -499,7 +499,7 @@ export const timeEntryFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ISO 8601 formatted date the time entry was spent.',
+ description: 'The ISO 8601 formatted date the time entry was spent',
},
{
displayName: 'Additional Fields',
@@ -522,14 +522,14 @@ export const timeEntryFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: '3:00pm',
- description: 'The time the entry ended.',
+ description: 'The time the entry ended',
},
{
displayName: 'Notes',
name: 'notes',
type: 'string',
default: '',
- description: 'These are notes about the time entry..',
+ description: 'These are notes about the time entry',
},
{
displayName: 'Started Time',
diff --git a/packages/nodes-base/nodes/Harvest/UserDescription.ts b/packages/nodes-base/nodes/Harvest/UserDescription.ts
index 7a54a58d59..2e3d35def2 100644
--- a/packages/nodes-base/nodes/Harvest/UserDescription.ts
+++ b/packages/nodes-base/nodes/Harvest/UserDescription.ts
@@ -74,7 +74,7 @@ export const userFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your users.',
+ description: 'Returns a list of your users',
},
{
displayName: 'Limit',
@@ -96,7 +96,7 @@ export const userFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -118,14 +118,14 @@ export const userFields: INodeProperties[] = [
name: 'is_active',
type: 'boolean',
default: true,
- description: 'Pass true to only return active users and false to return inactive users.',
+ description: 'Pass true to only return active users and false to return inactive users',
},
{
displayName: 'Updated Since',
name: 'updated_since',
type: 'dateTime',
default: '',
- description: 'Only return users belonging to the user with the given ID.',
+ description: 'Only return users belonging to the user with the given ID',
},
{
displayName: 'Page',
@@ -135,7 +135,7 @@ export const userFields: INodeProperties[] = [
minValue: 1,
},
default: 1,
- description: 'The page number to use in pagination..',
+ description: 'The page number to use in pagination',
},
],
},
@@ -157,7 +157,7 @@ export const userFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the user you are retrieving.',
+ description: 'The ID of the user you are retrieving',
},
/* -------------------------------------------------------------------------- */
@@ -177,7 +177,7 @@ export const userFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the user you want to delete.',
+ description: 'The ID of the user you want to delete',
},
/* -------------------------------------------------------------------------- */
@@ -197,7 +197,7 @@ export const userFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The first name of the user.',
+ description: 'The first name of the user',
},
{
displayName: 'Last Name',
@@ -213,7 +213,7 @@ export const userFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The last name of the user.',
+ description: 'The last name of the user',
},
{
displayName: 'Email',
@@ -229,7 +229,7 @@ export const userFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The email of the user.',
+ description: 'The email of the user',
},
{
displayName: 'Additional Fields',
@@ -275,56 +275,56 @@ export const userFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'The cost rate to use for this user when calculating a project’s costs vs billable amount.',
+ description: 'The cost rate to use for this user when calculating a project’s costs vs billable amount',
},
{
displayName: 'Default Hourly Rate',
name: 'default_hourly_rate',
type: 'string',
default: '0',
- description: 'The billable rate to use for this user when they are added to a project.',
+ description: 'The billable rate to use for this user when they are added to a project',
},
{
displayName: 'Has Access To All Future Projects',
name: 'has_access_to_all_future_projects',
type: 'boolean',
default: false,
- description: 'Whether the user should be automatically added to future projects.',
+ description: 'Whether the user should be automatically added to future projects',
},
{
displayName: 'Is Active',
name: 'is_active',
type: 'boolean',
default: true,
- description: 'Whether the user is active or archived.',
+ description: 'Whether the user is active or archived',
},
{
displayName: 'Is Admin',
name: 'is_admin',
type: 'boolean',
default: false,
- description: 'Whether the user has Admin permissions.',
+ description: 'Whether the user has Admin permissions',
},
{
displayName: 'Is Contractor',
name: 'is_contractor',
type: 'boolean',
default: false,
- description: 'Whether the user is a contractor or an employee.',
+ description: 'Whether the user is a contractor or an employee',
},
{
displayName: 'Is Project Manager',
name: 'is_project_manager',
type: 'boolean',
default: false,
- description: 'Whether the user has Project Manager permissions.',
+ description: 'Whether the user has Project Manager permissions',
},
{
displayName: 'Roles',
name: 'roles',
type: 'string',
default: '',
- description: 'The role names assigned to this person.',
+ description: 'The role names assigned to this person',
},
{
displayName: 'Timezone',
@@ -363,7 +363,7 @@ export const userFields: INodeProperties[] = [
resource,
},
},
- description: 'The ID of the time entry to update.',
+ description: 'The ID of the time entry to update',
},
{
displayName: 'Update Fields',
@@ -409,14 +409,14 @@ export const userFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'The cost rate to use for this user when calculating a project’s costs vs billable amount.',
+ description: 'The cost rate to use for this user when calculating a project’s costs vs billable amount',
},
{
displayName: 'Default Hourly Rate',
name: 'default_hourly_rate',
type: 'string',
default: '0',
- description: 'The billable rate to use for this user when they are added to a project.',
+ description: 'The billable rate to use for this user when they are added to a project',
},
{
displayName: 'Email',
@@ -437,35 +437,35 @@ export const userFields: INodeProperties[] = [
name: 'has_access_to_all_future_projects',
type: 'boolean',
default: false,
- description: 'Whether the user should be automatically added to future projects.',
+ description: 'Whether the user should be automatically added to future projects',
},
{
displayName: 'Is Active',
name: 'is_active',
type: 'boolean',
default: true,
- description: 'Whether the user is active or archived.',
+ description: 'Whether the user is active or archived',
},
{
displayName: 'Is Admin',
name: 'is_admin',
type: 'boolean',
default: false,
- description: 'Whether the user has Admin permissions.',
+ description: 'Whether the user has Admin permissions',
},
{
displayName: 'Is Contractor',
name: 'is_contractor',
type: 'boolean',
default: false,
- description: 'Whether the user is a contractor or an employee.',
+ description: 'Whether the user is a contractor or an employee',
},
{
displayName: 'Is Project Manager',
name: 'is_project_manager',
type: 'boolean',
default: false,
- description: 'Whether the user has Project Manager permissions.',
+ description: 'Whether the user has Project Manager permissions',
},
{
displayName: 'Last Name',
@@ -479,7 +479,7 @@ export const userFields: INodeProperties[] = [
name: 'roles',
type: 'string',
default: '',
- description: 'The role names assigned to this person.',
+ description: 'The role names assigned to this person',
},
{
displayName: 'Timezone',
diff --git a/packages/nodes-base/nodes/HelpScout/ConversationDescription.ts b/packages/nodes-base/nodes/HelpScout/ConversationDescription.ts
index 8effcdf75f..d2335bce2f 100644
--- a/packages/nodes-base/nodes/HelpScout/ConversationDescription.ts
+++ b/packages/nodes-base/nodes/HelpScout/ConversationDescription.ts
@@ -188,14 +188,14 @@ export const conversationFields: INodeProperties[] = [
name: 'assignTo',
type: 'number',
default: 0,
- description: 'The Help Scout user assigned to the conversation.',
+ description: 'The Help Scout user assigned to the conversation',
},
{
displayName: 'Auto Reply',
name: 'autoReply',
type: 'boolean',
default: false,
- description: 'When autoReply is set to true, an auto reply will be sent as long as there is at least one customer thread in the conversation.',
+ description: 'When autoReply is set to true, an auto reply will be sent as long as there is at least one customer thread in the conversation',
},
{
displayName: 'Closed At',
@@ -228,7 +228,7 @@ export const conversationFields: INodeProperties[] = [
name: 'imported',
type: 'boolean',
default: false,
- description: `When imported is set to true, no outgoing emails or notifications will be generated.`,
+ description: 'When imported is set to true, no outgoing emails or notifications will be generated',
},
{
displayName: 'Tags',
@@ -245,7 +245,7 @@ export const conversationFields: INodeProperties[] = [
name: 'user',
type: 'number',
default: 0,
- description: 'ID of the user who is adding the conversation and threads.',
+ description: 'ID of the user who is adding the conversation and threads',
},
],
},
@@ -309,7 +309,7 @@ export const conversationFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'The message text.',
+ description: 'The message text',
},
{
displayName: 'Bcc',
@@ -327,7 +327,7 @@ export const conversationFields: INodeProperties[] = [
multipleValueButtonText: 'Add Email',
},
default: [],
- description: 'Email addresses.',
+ description: 'Email addresses',
},
{
displayName: 'Cc',
@@ -345,7 +345,7 @@ export const conversationFields: INodeProperties[] = [
multipleValueButtonText: 'Add Email',
},
default: [],
- description: 'Email addresses.',
+ description: 'Email addresses',
},
{
displayName: 'Draft',
@@ -425,7 +425,7 @@ export const conversationFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -448,7 +448,7 @@ export const conversationFields: INodeProperties[] = [
minValue: 1,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/HelpScout/CustomerDescription.ts b/packages/nodes-base/nodes/HelpScout/CustomerDescription.ts
index dd2afd369c..0e623e31cc 100644
--- a/packages/nodes-base/nodes/HelpScout/CustomerDescription.ts
+++ b/packages/nodes-base/nodes/HelpScout/CustomerDescription.ts
@@ -118,7 +118,7 @@ export const customerFields: INodeProperties[] = [
},
],
default: '',
- description: 'Gender of this customer.',
+ description: 'Gender of this customer',
},
{
displayName: 'Job Title',
@@ -139,7 +139,7 @@ export const customerFields: INodeProperties[] = [
name: 'location',
type: 'string',
default: '',
- description: 'Location of the customer.',
+ description: 'Location of the customer',
},
{
displayName: 'Notes',
@@ -582,7 +582,7 @@ export const customerFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -605,7 +605,7 @@ export const customerFields: INodeProperties[] = [
minValue: 1,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -799,7 +799,7 @@ export const customerFields: INodeProperties[] = [
},
],
default: '',
- description: 'Gender of this customer.',
+ description: 'Gender of this customer',
},
{
displayName: 'Job Title',
@@ -820,7 +820,7 @@ export const customerFields: INodeProperties[] = [
name: 'location',
type: 'string',
default: '',
- description: 'Location of the customer.',
+ description: 'Location of the customer',
},
{
displayName: 'Notes',
diff --git a/packages/nodes-base/nodes/HelpScout/MailboxDescription.ts b/packages/nodes-base/nodes/HelpScout/MailboxDescription.ts
index 915cb8320b..aa8d6c4ee6 100644
--- a/packages/nodes-base/nodes/HelpScout/MailboxDescription.ts
+++ b/packages/nodes-base/nodes/HelpScout/MailboxDescription.ts
@@ -69,7 +69,7 @@ export const mailboxFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -92,6 +92,6 @@ export const mailboxFields: INodeProperties[] = [
minValue: 1,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/HelpScout/ThreadDescription.ts b/packages/nodes-base/nodes/HelpScout/ThreadDescription.ts
index 9a846443de..ebabf87a8c 100644
--- a/packages/nodes-base/nodes/HelpScout/ThreadDescription.ts
+++ b/packages/nodes-base/nodes/HelpScout/ThreadDescription.ts
@@ -165,7 +165,7 @@ export const threadFields: INodeProperties[] = [
name: 'imported',
type: 'boolean',
default: false,
- description: 'When imported is set to true, no outgoing emails or notifications will be generated.',
+ description: 'When imported is set to true, no outgoing emails or notifications will be generated',
},
],
},
@@ -212,7 +212,7 @@ export const threadFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'ZXhhbXBsZSBmaWxl',
- description: 'Base64-encoded stream of data.',
+ description: 'Base64-encoded stream of data',
},
],
},
@@ -231,7 +231,7 @@ export const threadFields: INodeProperties[] = [
},
],
default: {},
- description: 'Array of supported attachments to add to the message.',
+ description: 'Array of supported attachments to add to the message',
},
/* -------------------------------------------------------------------------- */
/* thread:getAll */
@@ -269,7 +269,7 @@ export const threadFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -292,6 +292,6 @@ export const threadFields: INodeProperties[] = [
minValue: 1,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/HomeAssistant/CameraProxyDescription.ts b/packages/nodes-base/nodes/HomeAssistant/CameraProxyDescription.ts
index 302ba4b141..03307572ce 100644
--- a/packages/nodes-base/nodes/HomeAssistant/CameraProxyDescription.ts
+++ b/packages/nodes-base/nodes/HomeAssistant/CameraProxyDescription.ts
@@ -49,7 +49,7 @@ export const cameraProxyFields: INodeProperties[] = [
],
},
},
- description: 'The camera entity ID.',
+ description: 'The camera entity ID',
},
{
displayName: 'Binary Property',
@@ -67,6 +67,6 @@ export const cameraProxyFields: INodeProperties[] = [
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
];
diff --git a/packages/nodes-base/nodes/HomeAssistant/EventDescription.ts b/packages/nodes-base/nodes/HomeAssistant/EventDescription.ts
index d143edc125..3148857460 100644
--- a/packages/nodes-base/nodes/HomeAssistant/EventDescription.ts
+++ b/packages/nodes-base/nodes/HomeAssistant/EventDescription.ts
@@ -51,7 +51,7 @@ export const eventFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -75,7 +75,7 @@ export const eventFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -97,7 +97,7 @@ export const eventFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'The Entity ID for which an event will be created.',
+ description: 'The Entity ID for which an event will be created',
},
{
displayName: 'Event Attributes',
@@ -128,14 +128,14 @@ export const eventFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the attribute.',
+ description: 'Name of the attribute',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the attribute.',
+ description: 'Value of the attribute',
},
],
},
diff --git a/packages/nodes-base/nodes/HomeAssistant/HistoryDescription.ts b/packages/nodes-base/nodes/HomeAssistant/HistoryDescription.ts
index 0f58ab4056..2117539ccc 100644
--- a/packages/nodes-base/nodes/HomeAssistant/HistoryDescription.ts
+++ b/packages/nodes-base/nodes/HomeAssistant/HistoryDescription.ts
@@ -45,7 +45,7 @@ export const historyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -69,7 +69,7 @@ export const historyFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -93,35 +93,35 @@ export const historyFields: INodeProperties[] = [
name: 'endTime',
type: 'dateTime',
default: '',
- description: 'The end of the period.',
+ description: 'The end of the period',
},
{
displayName: 'Entity IDs',
name: 'entityIds',
type: 'string',
default: '',
- description: 'The entities IDs separated by comma.',
+ description: 'The entities IDs separated by comma',
},
{
displayName: 'Minimal Response',
name: 'minimalResponse',
type: 'boolean',
default: false,
- description: 'To only return last_changed
and state for states.',
+ description: 'To only return last_changed
and state for states',
},
{
displayName: 'Significant Changes Only',
name: 'significantChangesOnly',
type: 'boolean',
default: false,
- description: 'Only return significant state changes.',
+ description: 'Only return significant state changes',
},
{
displayName: 'Start Time',
name: 'startTime',
type: 'dateTime',
default: '',
- description: 'The beginning of the period.',
+ description: 'The beginning of the period',
},
],
},
diff --git a/packages/nodes-base/nodes/HomeAssistant/LogDescription.ts b/packages/nodes-base/nodes/HomeAssistant/LogDescription.ts
index ca9c31a0f8..9e606fa9a0 100644
--- a/packages/nodes-base/nodes/HomeAssistant/LogDescription.ts
+++ b/packages/nodes-base/nodes/HomeAssistant/LogDescription.ts
@@ -57,21 +57,21 @@ export const logFields: INodeProperties[] = [
name: 'endTime',
type: 'dateTime',
default: '',
- description: 'The end of the period.',
+ description: 'The end of the period',
},
{
displayName: 'Entity ID',
name: 'entityId',
type: 'string',
default: '',
- description: 'The entity ID.',
+ description: 'The entity ID',
},
{
displayName: 'Start Time',
name: 'startTime',
type: 'dateTime',
default: '',
- description: 'The beginning of the period.',
+ description: 'The beginning of the period',
},
],
},
diff --git a/packages/nodes-base/nodes/HomeAssistant/ServiceDescription.ts b/packages/nodes-base/nodes/HomeAssistant/ServiceDescription.ts
index 946eab2d2d..8087bfd02f 100644
--- a/packages/nodes-base/nodes/HomeAssistant/ServiceDescription.ts
+++ b/packages/nodes-base/nodes/HomeAssistant/ServiceDescription.ts
@@ -50,7 +50,7 @@ export const serviceFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -74,7 +74,7 @@ export const serviceFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -152,14 +152,14 @@ export const serviceFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the field.',
+ description: 'Name of the field',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the field.',
+ description: 'Value of the field',
},
],
},
diff --git a/packages/nodes-base/nodes/HomeAssistant/StateDescription.ts b/packages/nodes-base/nodes/HomeAssistant/StateDescription.ts
index dd58042eb3..6f5600bd3e 100644
--- a/packages/nodes-base/nodes/HomeAssistant/StateDescription.ts
+++ b/packages/nodes-base/nodes/HomeAssistant/StateDescription.ts
@@ -59,7 +59,7 @@ export const stateFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'The entity ID.',
+ description: 'The entity ID',
},
/* -------------------------------------------------------------------------- */
@@ -80,7 +80,7 @@ export const stateFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -104,7 +104,7 @@ export const stateFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -129,7 +129,7 @@ export const stateFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'The entity ID for which a state will be created.',
+ description: 'The entity ID for which a state will be created',
},
{
displayName: 'State',
@@ -177,14 +177,14 @@ export const stateFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the attribute.',
+ description: 'Name of the attribute',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the attribute.',
+ description: 'Value of the attribute',
},
],
},
diff --git a/packages/nodes-base/nodes/HtmlExtract/HtmlExtract.node.ts b/packages/nodes-base/nodes/HtmlExtract/HtmlExtract.node.ts
index 3a9e92348f..85477236db 100644
--- a/packages/nodes-base/nodes/HtmlExtract/HtmlExtract.node.ts
+++ b/packages/nodes-base/nodes/HtmlExtract/HtmlExtract.node.ts
@@ -74,7 +74,7 @@ export class HtmlExtract implements INodeType {
},
],
default: 'json',
- description: 'If HTML should be read from binary or json data.',
+ description: 'If HTML should be read from binary or json data',
},
{
displayName: 'Binary Property',
@@ -89,7 +89,7 @@ export class HtmlExtract implements INodeType {
},
default: 'data',
required: true,
- description: 'Name of the binary property in which the HTML to extract the data from can be found.',
+ description: 'Name of the binary property in which the HTML to extract the data from can be found',
},
{
displayName: 'JSON Property',
@@ -114,7 +114,7 @@ export class HtmlExtract implements INodeType {
typeOptions: {
multipleValues: true,
},
- description: 'The extraction values.',
+ description: 'The extraction values',
default: {},
options: [
{
@@ -126,7 +126,7 @@ export class HtmlExtract implements INodeType {
name: 'key',
type: 'string',
default: '',
- description: 'The key under which the extracted value should be saved.',
+ description: 'The key under which the extracted value should be saved',
},
{
displayName: 'CSS Selector',
@@ -134,7 +134,7 @@ export class HtmlExtract implements INodeType {
type: 'string',
default: '',
placeholder: '.price',
- description: 'The CSS selector to use.',
+ description: 'The CSS selector to use',
},
{
displayName: 'Return Value',
@@ -144,26 +144,26 @@ export class HtmlExtract implements INodeType {
{
name: 'Attribute',
value: 'attribute',
- description: 'Get an attribute value like "class" from an element.',
+ description: 'Get an attribute value like "class" from an element',
},
{
name: 'HTML',
value: 'html',
- description: 'Get the HTML the element contains.',
+ description: 'Get the HTML the element contains',
},
{
name: 'Text',
value: 'text',
- description: 'Get only the text content of the element.',
+ description: 'Get only the text content of the element',
},
{
name: 'Value',
value: 'value',
- description: 'Get value of an input, select or textarea.',
+ description: 'Get value of an input, select or textarea',
},
],
default: 'text',
- description: 'What kind of data should be returned.',
+ description: 'What kind of data should be returned',
},
{
displayName: 'Attribute',
@@ -178,7 +178,7 @@ export class HtmlExtract implements INodeType {
},
default: '',
placeholder: 'class',
- description: 'The name of the attribute to return the value off.',
+ description: 'The name of the attribute to return the value off',
},
{
displayName: 'Return Array',
@@ -204,7 +204,7 @@ export class HtmlExtract implements INodeType {
name: 'trimValues',
type: 'boolean',
default: true,
- description: 'Removes automatically all spaces and newlines from the beginning and end of the values.',
+ description: 'Removes automatically all spaces and newlines from the beginning and end of the values',
},
],
},
diff --git a/packages/nodes-base/nodes/HttpRequest/HttpRequest.node.ts b/packages/nodes-base/nodes/HttpRequest/HttpRequest.node.ts
index 17d0758dec..fb0c149046 100644
--- a/packages/nodes-base/nodes/HttpRequest/HttpRequest.node.ts
+++ b/packages/nodes-base/nodes/HttpRequest/HttpRequest.node.ts
@@ -142,7 +142,7 @@ export class HttpRequest implements INodeType {
},
],
default: 'none',
- description: 'The way to authenticate.',
+ description: 'The way to authenticate',
},
{
displayName: 'Request Method',
@@ -179,7 +179,7 @@ export class HttpRequest implements INodeType {
},
],
default: 'GET',
- description: 'The request method to use.',
+ description: 'The request method to use',
},
{
displayName: 'URL',
@@ -187,7 +187,7 @@ export class HttpRequest implements INodeType {
type: 'string',
default: '',
placeholder: 'http://example.com/index.html',
- description: 'The URL to make the request to.',
+ description: 'The URL to make the request to',
required: true,
},
{
@@ -195,7 +195,7 @@ export class HttpRequest implements INodeType {
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
- description: 'Still download the response even if SSL certificate validation is not possible.',
+ description: 'Still download the response even if SSL certificate validation is not possible',
},
{
displayName: 'Response Format',
@@ -216,7 +216,7 @@ export class HttpRequest implements INodeType {
},
],
default: 'json',
- description: 'The format in which the data gets returned from the URL.',
+ description: 'The format in which the data gets returned from the URL',
},
{
displayName: 'Property Name',
@@ -231,7 +231,7 @@ export class HttpRequest implements INodeType {
],
},
},
- description: 'Name of the property to which to write the response data.',
+ description: 'Name of the property to which to write the response data',
},
{
displayName: 'Binary Property',
@@ -246,7 +246,7 @@ export class HttpRequest implements INodeType {
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
{
@@ -254,7 +254,7 @@ export class HttpRequest implements INodeType {
name: 'jsonParameters',
type: 'boolean',
default: false,
- description: 'If the query and/or body parameter should be set via the value-key pair UI or JSON/RAW.',
+ description: 'If the query and/or body parameter should be set via the value-key pair UI or JSON/RAW',
},
{
@@ -316,35 +316,35 @@ export class HttpRequest implements INodeType {
},
],
default: 'json',
- description: 'Content-Type to use to send body parameters.',
+ description: 'Content-Type to use to send body parameters',
},
{
displayName: 'Full Response',
name: 'fullResponse',
type: 'boolean',
default: false,
- description: 'Returns the full reponse data instead of only the body.',
+ description: 'Returns the full reponse data instead of only the body',
},
{
displayName: 'Follow All Redirects',
name: 'followAllRedirects',
type: 'boolean',
default: false,
- description: 'Follow non-GET HTTP 3xx redirects.',
+ description: 'Follow non-GET HTTP 3xx redirects',
},
{
displayName: 'Follow GET Redirect',
name: 'followRedirect',
type: 'boolean',
default: true,
- description: 'Follow GET HTTP 3xx redirects.',
+ description: 'Follow GET HTTP 3xx redirects',
},
{
displayName: 'Ignore Response Code',
name: 'ignoreResponseCode',
type: 'boolean',
default: false,
- description: 'Succeeds also when status code is not 2xx.',
+ description: 'Succeeds also when status code is not 2xx',
},
{
displayName: 'MIME Type',
@@ -352,7 +352,7 @@ export class HttpRequest implements INodeType {
type: 'string',
default: '',
placeholder: 'text/xml',
- description: 'Specify the mime type for raw/custom body type.',
+ description: 'Specify the mime type for raw/custom body type',
required: false,
displayOptions: {
show: {
@@ -370,14 +370,14 @@ export class HttpRequest implements INodeType {
type: 'string',
default: '',
placeholder: 'http://myproxy:3128',
- description: 'HTTP proxy to use.',
+ description: 'HTTP proxy to use',
},
{
displayName: 'Split Into Items',
name: 'splitIntoItems',
type: 'boolean',
default: false,
- description: 'Outputs each element of an array as own item.',
+ description: 'Outputs each element of an array as own item',
displayOptions: {
show: {
'/responseFormat': [
@@ -394,14 +394,14 @@ export class HttpRequest implements INodeType {
minValue: 1,
},
default: 10000,
- description: 'Time in ms to wait for the server to send response headers (and start the response body) before aborting the request.',
+ description: 'Time in ms to wait for the server to send response headers (and start the response body) before aborting the request',
},
{
displayName: 'Use Querystring',
name: 'useQueryString',
type: 'boolean',
default: false,
- description: 'Set this option to true if you need arrays to be serialized as foo=bar&foo=baz instead of the default foo[0]=bar&foo[1]=baz.',
+ description: 'Set this option to true if you need arrays to be serialized as foo=bar&foo=baz instead of the default foo[0]=bar&foo[1]=baz',
},
],
},
@@ -429,7 +429,7 @@ export class HttpRequest implements INodeType {
},
},
default: false,
- description: 'If binary data should be send as body.',
+ description: 'If binary data should be send as body',
},
{
displayName: 'Binary Property',
@@ -479,7 +479,7 @@ export class HttpRequest implements INodeType {
},
},
default: '',
- description: 'Body parameters as JSON or RAW.',
+ description: 'Body parameters as JSON or RAW',
},
{
displayName: 'Body Parameters',
@@ -502,7 +502,7 @@ export class HttpRequest implements INodeType {
],
},
},
- description: 'The body parameter to send.',
+ description: 'The body parameter to send',
default: {},
options: [
{
@@ -514,14 +514,14 @@ export class HttpRequest implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the parameter.',
+ description: 'Name of the parameter',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the parameter.',
+ description: 'Value of the parameter',
},
],
},
@@ -541,7 +541,7 @@ export class HttpRequest implements INodeType {
},
},
default: '',
- description: 'Header parameters as JSON or RAW.',
+ description: 'Header parameters as JSON or RAW',
},
{
displayName: 'Headers',
@@ -558,7 +558,7 @@ export class HttpRequest implements INodeType {
],
},
},
- description: 'The headers to send.',
+ description: 'The headers to send',
default: {},
options: [
{
@@ -570,14 +570,14 @@ export class HttpRequest implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the header.',
+ description: 'Name of the header',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the header.',
+ description: 'Value to set for the header',
},
],
},
@@ -597,7 +597,7 @@ export class HttpRequest implements INodeType {
},
},
default: '',
- description: 'Query parameters as JSON (flat object).',
+ description: 'Query parameters as JSON (flat object)',
},
{
displayName: 'Query Parameters',
@@ -614,7 +614,7 @@ export class HttpRequest implements INodeType {
],
},
},
- description: 'The query parameter to send.',
+ description: 'The query parameter to send',
default: {},
options: [
{
@@ -626,14 +626,14 @@ export class HttpRequest implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the parameter.',
+ description: 'Name of the parameter',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the parameter.',
+ description: 'Value of the parameter',
},
],
},
diff --git a/packages/nodes-base/nodes/Hubspot/CompanyDescription.ts b/packages/nodes-base/nodes/Hubspot/CompanyDescription.ts
index 871e6a3e11..1f0949e9e9 100644
--- a/packages/nodes-base/nodes/Hubspot/CompanyDescription.ts
+++ b/packages/nodes-base/nodes/Hubspot/CompanyDescription.ts
@@ -124,7 +124,7 @@ export const companyFields: INodeProperties[] = [
name: 'city',
type: 'string',
default: '',
- description: 'The city where the company is located.',
+ description: 'The city where the company is located',
},
{
displayName: 'Close Date',
@@ -155,7 +155,7 @@ export const companyFields: INodeProperties[] = [
name: 'countryRegion',
type: 'string',
default: '',
- description: 'The country/region in which the company or organization is located.',
+ description: 'The country/region in which the company or organization is located',
},
{
displayName: 'Custom Properties',
@@ -179,7 +179,7 @@ export const companyFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanyCustomProperties',
},
default: '',
- description: 'Name of the property.',
+ description: 'Name of the property',
},
{
displayName: 'Value',
@@ -197,7 +197,7 @@ export const companyFields: INodeProperties[] = [
name: 'description',
type: 'string',
default: '',
- description: `A short statement about the company's mission and goals.`,
+ description: 'A short statement about the company\'s mission and goals',
},
{
displayName: 'Facebook Fans',
@@ -224,14 +224,14 @@ export const companyFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanyIndustries',
},
default: '',
- description: 'The type of business the company performs.',
+ description: 'The type of business the company performs',
},
{
displayName: 'Is Public',
name: 'isPublic',
type: 'boolean',
default: false,
- description: 'Indicates that the company is publicly traded.',
+ description: 'Indicates that the company is publicly traded',
},
{
displayName: 'Lead Status',
@@ -385,7 +385,7 @@ export const companyFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanyTypes',
},
default: '',
- description: 'The optional classification of this company record - prospect, partner, etc.',
+ description: 'The optional classification of this company record - prospect, partner, etc',
},
{
displayName: 'Web Technologies',
@@ -476,7 +476,7 @@ export const companyFields: INodeProperties[] = [
name: 'city',
type: 'string',
default: '',
- description: 'The city where the company is located.',
+ description: 'The city where the company is located',
},
{
displayName: 'Close Date',
@@ -507,7 +507,7 @@ export const companyFields: INodeProperties[] = [
name: 'countryRegion',
type: 'string',
default: '',
- description: 'The country/region in which the company or organization is located.',
+ description: 'The country/region in which the company or organization is located',
},
{
displayName: 'Custom Properties',
@@ -531,7 +531,7 @@ export const companyFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanyCustomProperties',
},
default: '',
- description: 'Name of the property.',
+ description: 'Name of the property',
},
{
displayName: 'Value',
@@ -549,7 +549,7 @@ export const companyFields: INodeProperties[] = [
name: 'description',
type: 'string',
default: '',
- description: `A short statement about the company's mission and goals.`,
+ description: 'A short statement about the company\'s mission and goals',
},
{
displayName: 'Facebook Fans',
@@ -576,14 +576,14 @@ export const companyFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanyIndustries',
},
default: '',
- description: 'The type of business the company performs.',
+ description: 'The type of business the company performs',
},
{
displayName: 'Is Public',
name: 'isPublic',
type: 'boolean',
default: false,
- description: 'Indicates that the company is publicly traded.',
+ description: 'Indicates that the company is publicly traded',
},
{
displayName: 'Lead Status',
@@ -743,7 +743,7 @@ export const companyFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanyTypes',
},
default: '',
- description: 'The optional classification of this company record - prospect, partner, etc.',
+ description: 'The optional classification of this company record - prospect, partner, etc',
},
{
displayName: 'Web Technologies',
@@ -838,7 +838,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -862,7 +862,7 @@ export const companyFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -949,7 +949,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -974,7 +974,7 @@ export const companyFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -1045,7 +1045,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1069,7 +1069,7 @@ export const companyFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Hubspot/ContactDescription.ts b/packages/nodes-base/nodes/Hubspot/ContactDescription.ts
index e6d35a4795..46a490568c 100644
--- a/packages/nodes-base/nodes/Hubspot/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Hubspot/ContactDescription.ts
@@ -193,7 +193,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getContactCustomProperties',
},
default: '',
- description: 'Name of the property.',
+ description: 'Name of the property',
},
{
displayName: 'Value',
@@ -336,7 +336,7 @@ export const contactFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: `The notes relating to the contact's content membership.`,
+ description: 'The notes relating to the contact\'s content membership',
},
{
displayName: 'Message',
@@ -346,7 +346,7 @@ export const contactFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'A default property to be used for any message or comments a contact may want to leave on a form.',
+ description: 'A default property to be used for any message or comments a contact may want to leave on a form',
},
{
displayName: 'Mobile Phone Number',
@@ -466,7 +466,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getContactStatuses',
},
default: '',
- description: `The status of the contact's content membership.`,
+ description: 'The status of the contact\'s content membership',
},
{
displayName: 'Street Address',
@@ -560,14 +560,14 @@ export const contactFields: INodeProperties[] = [
},
],
default: 'all',
- description: `Specify which form submissions should be fetched.`,
+ description: 'Specify which form submissions should be fetched',
},
{
displayName: 'List Memberships',
name: 'listMerberships',
type: 'boolean',
default: true,
- description: 'Whether current list memberships should be fetched for the contact.',
+ description: 'Whether current list memberships should be fetched for the contact',
},
{
displayName: 'Properties',
@@ -594,7 +594,7 @@ export const contactFields: INodeProperties[] = [
},
],
default: 'valueAndHistory',
- description: `Specify if the current value for a property should be fetched, or the value and all the historical values for that property.`,
+ description: 'Specify if the current value for a property should be fetched, or the value and all the historical values for that property',
},
],
},
@@ -617,7 +617,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -641,7 +641,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -683,14 +683,14 @@ export const contactFields: INodeProperties[] = [
},
],
default: 'all',
- description: `Specify which form submissions should be fetched.`,
+ description: 'Specify which form submissions should be fetched',
},
{
displayName: 'List Memberships',
name: 'listMerberships',
type: 'boolean',
default: true,
- description: 'Whether current list memberships should be fetched for the contact.',
+ description: 'Whether current list memberships should be fetched for the contact',
},
{
displayName: 'Properties',
@@ -717,7 +717,7 @@ export const contactFields: INodeProperties[] = [
},
],
default: 'valueAndHistory',
- description: `Specify if the current value for a property should be fetched, or the value and all the historical values for that property.`,
+ description: 'Specify if the current value for a property should be fetched, or the value and all the historical values for that property',
},
],
},
@@ -762,7 +762,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -786,7 +786,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -828,14 +828,14 @@ export const contactFields: INodeProperties[] = [
},
],
default: 'all',
- description: `Specify which form submissions should be fetched.`,
+ description: 'Specify which form submissions should be fetched',
},
{
displayName: 'List Memberships',
name: 'listMerberships',
type: 'boolean',
default: true,
- description: 'Whether current list memberships should be fetched for the contact.',
+ description: 'Whether current list memberships should be fetched for the contact',
},
{
displayName: 'Properties',
@@ -862,7 +862,7 @@ export const contactFields: INodeProperties[] = [
},
],
default: 'valueAndHistory',
- description: `Specify if the current value for a property should be fetched, or the value and all the historical values for that property.`,
+ description: 'Specify if the current value for a property should be fetched, or the value and all the historical values for that property',
},
],
},
@@ -885,7 +885,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -909,7 +909,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filter Groups',
diff --git a/packages/nodes-base/nodes/Hubspot/DealDescription.ts b/packages/nodes-base/nodes/Hubspot/DealDescription.ts
index a6e440d466..f44c2951fe 100644
--- a/packages/nodes-base/nodes/Hubspot/DealDescription.ts
+++ b/packages/nodes-base/nodes/Hubspot/DealDescription.ts
@@ -157,7 +157,7 @@ export const dealFields: INodeProperties[] = [
loadOptionsMethod: 'getDealCustomProperties',
},
default: '',
- description: 'Name of the property.',
+ description: 'Name of the property',
},
{
displayName: 'Value',
@@ -272,7 +272,7 @@ export const dealFields: INodeProperties[] = [
loadOptionsMethod: 'getDealCustomProperties',
},
default: '',
- description: 'Name of the property.',
+ description: 'Name of the property',
},
{
displayName: 'Value',
@@ -392,7 +392,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -416,7 +416,7 @@ export const dealFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -507,7 +507,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -532,7 +532,7 @@ export const dealFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -587,7 +587,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -611,7 +611,7 @@ export const dealFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filter Groups',
diff --git a/packages/nodes-base/nodes/Hubspot/FormDescription.ts b/packages/nodes-base/nodes/Hubspot/FormDescription.ts
index 8f5af57407..46dbcbd5d0 100644
--- a/packages/nodes-base/nodes/Hubspot/FormDescription.ts
+++ b/packages/nodes-base/nodes/Hubspot/FormDescription.ts
@@ -55,7 +55,7 @@ export const formFields: INodeProperties[] = [
},
},
default: '',
- description: `The ID of the form you're sending data to.`,
+ description: 'The ID of the form you\'re sending data to',
},
{
displayName: 'Additional Fields',
@@ -79,14 +79,14 @@ export const formFields: INodeProperties[] = [
name: 'skipValidation',
type: 'boolean',
default: false,
- description: `Whether or not to skip validation based on the form settings.`,
+ description: 'Whether or not to skip validation based on the form settings',
},
{
displayName: 'Submitted At',
name: 'submittedAt',
type: 'dateTime',
default: '',
- description: 'Time of the form submission.',
+ description: 'Time of the form submission',
},
],
},
@@ -126,42 +126,42 @@ export const formFields: INodeProperties[] = [
name: 'ipAddress',
type: 'string',
default: '',
- description: 'The IP address of the visitor filling out the form.',
+ description: 'The IP address of the visitor filling out the form',
},
{
displayName: 'Page URI',
name: 'pageUri',
type: 'string',
default: '',
- description: 'The URI of the page the submission happened on.',
+ description: 'The URI of the page the submission happened on',
},
{
displayName: 'Page Name',
name: 'pageName',
type: 'string',
default: '',
- description: 'The name or title of the page the submission happened on.',
+ description: 'The name or title of the page the submission happened on',
},
{
displayName: 'Page ID',
name: 'pageId',
type: 'string',
default: '',
- description: 'The ID of a page created on the HubSpot CMS.',
+ description: 'The ID of a page created on the HubSpot CMS',
},
{
displayName: 'SFDC campaign ID',
name: 'sfdcCampaignId',
type: 'string',
default: '',
- description: `If the form is for an account using the HubSpot Salesforce Integration, you can include the ID of a Salesforce campaign to add the contact to the specified campaign.`,
+ description: 'If the form is for an account using the HubSpot Salesforce Integration, you can include the ID of a Salesforce campaign to add the contact to the specified campaign',
},
{
displayName: 'Go to Webinar Webinar ID',
name: 'goToWebinarWebinarKey',
type: 'string',
default: '',
- description: `If the form is for an account using the HubSpot GoToWebinar Integration, you can include the ID of a webinar to enroll the contact in that webinar when they submit the form.`,
+ description: 'If the form is for an account using the HubSpot GoToWebinar Integration, you can include the ID of a webinar to enroll the contact in that webinar when they submit the form',
},
],
},
@@ -234,7 +234,7 @@ export const formFields: INodeProperties[] = [
name: 'value',
type: 'boolean',
default: false,
- description: ' Whether or not the visitor checked the checkbox for this subscription type.',
+ description: ' Whether or not the visitor checked the checkbox for this subscription type',
},
{
displayName: 'Text',
@@ -261,7 +261,7 @@ export const formFields: INodeProperties[] = [
loadOptionsMethod: 'getSubscriptionTypes',
},
default: '',
- description: 'The ID of the specific subscription type that this forms indicates interest to.',
+ description: 'The ID of the specific subscription type that this forms indicates interest to',
},
{
displayName: 'Value',
@@ -285,14 +285,14 @@ export const formFields: INodeProperties[] = [
},
],
default: '',
- description: 'The privacy text displayed to the visitor.',
+ description: 'The privacy text displayed to the visitor',
},
{
displayName: 'Text',
name: 'text',
type: 'string',
default: '',
- description: 'The privacy text displayed to the visitor.',
+ description: 'The privacy text displayed to the visitor',
},
],
},
diff --git a/packages/nodes-base/nodes/Hubspot/HubspotTrigger.node.ts b/packages/nodes-base/nodes/Hubspot/HubspotTrigger.node.ts
index eae01dfa8f..d5a191c4ef 100644
--- a/packages/nodes-base/nodes/Hubspot/HubspotTrigger.node.ts
+++ b/packages/nodes-base/nodes/Hubspot/HubspotTrigger.node.ts
@@ -86,12 +86,12 @@ export class HubspotTrigger implements INodeType {
{
name: 'Contact Created',
value: 'contact.creation',
- description: `To get notified if any contact is created in a customer's account.`,
+ description: 'To get notified if any contact is created in a customer\'s account',
},
{
name: 'Contact Deleted',
value: 'contact.deletion',
- description: `To get notified if any contact is deleted in a customer's account.`,
+ description: 'To get notified if any contact is deleted in a customer\'s account',
},
{
name: 'Contact Privacy Deleted',
@@ -106,32 +106,32 @@ export class HubspotTrigger implements INodeType {
{
name: 'Company Created',
value: 'company.creation',
- description: `To get notified if any company is created in a customer's account.`,
+ description: 'To get notified if any company is created in a customer\'s account',
},
{
name: 'Company Deleted',
value: 'company.deletion',
- description: `To get notified if any company is deleted in a customer's account.`,
+ description: 'To get notified if any company is deleted in a customer\'s account',
},
{
name: 'Company Property Changed',
value: 'company.propertyChange',
- description: `To get notified if a specified property is changed for any company in a customer's account.`,
+ description: 'To get notified if a specified property is changed for any company in a customer\'s account',
},
{
name: 'Deal Created',
value: 'deal.creation',
- description: `To get notified if any deal is created in a customer's account.`,
+ description: 'To get notified if any deal is created in a customer\'s account',
},
{
name: 'Deal Deleted',
value: 'deal.deletion',
- description: `To get notified if any deal is deleted in a customer's account.`,
+ description: 'To get notified if any deal is deleted in a customer\'s account',
},
{
name: 'Deal Property Changed',
value: 'deal.propertyChange',
- description: `To get notified if a specified property is changed for any deal in a customer's account.`,
+ description: 'To get notified if a specified property is changed for any deal in a customer\'s account',
},
],
default: 'contact.creation',
diff --git a/packages/nodes-base/nodes/Hubspot/TicketDescription.ts b/packages/nodes-base/nodes/Hubspot/TicketDescription.ts
index b8448f4423..66bb133e98 100644
--- a/packages/nodes-base/nodes/Hubspot/TicketDescription.ts
+++ b/packages/nodes-base/nodes/Hubspot/TicketDescription.ts
@@ -70,7 +70,7 @@ export const ticketFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the pipeline the ticket is in.',
+ description: 'The ID of the pipeline the ticket is in',
},
{
displayName: 'Stage ID',
@@ -94,7 +94,7 @@ export const ticketFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the pipeline the ticket is in.',
+ description: 'The ID of the pipeline the ticket is in',
},
{
displayName: 'Ticket Name',
@@ -112,7 +112,7 @@ export const ticketFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the pipeline the ticket is in.',
+ description: 'The ID of the pipeline the ticket is in',
},
{
displayName: 'Additional Fields',
@@ -246,7 +246,7 @@ export const ticketFields: INodeProperties[] = [
},
},
default: '',
- description: 'Unique identifier for a particular ticket.',
+ description: 'Unique identifier for a particular ticket',
},
{
displayName: 'Update Fields',
@@ -273,7 +273,7 @@ export const ticketFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanies',
},
default: [],
- description: 'Companies associated with the ticket.',
+ description: 'Companies associated with the ticket',
},
{
displayName: 'Contact Ids',
@@ -283,7 +283,7 @@ export const ticketFields: INodeProperties[] = [
loadOptionsMethod: 'getContacts',
},
default: [],
- description: 'Contact associated with the ticket.',
+ description: 'Contact associated with the ticket',
},
{
displayName: 'Category',
@@ -293,21 +293,21 @@ export const ticketFields: INodeProperties[] = [
loadOptionsMethod: 'getTicketCategories',
},
default: '',
- description: 'Main reason customer reached out for help.',
+ description: 'Main reason customer reached out for help',
},
{
displayName: 'Close Date',
name: 'closeDate',
type: 'dateTime',
default: '',
- description: 'The date the ticket was closed.',
+ description: 'The date the ticket was closed',
},
{
displayName: 'Create Date',
name: 'createDate',
type: 'dateTime',
default: '',
- description: 'The date the ticket was created.',
+ description: 'The date the ticket was created',
},
{
displayName: 'Description',
@@ -327,7 +327,7 @@ export const ticketFields: INodeProperties[] = [
loadOptionsMethod: 'getTicketPipelines',
},
default: '',
- description: 'The ID of the pipeline the ticket is in.',
+ description: 'The ID of the pipeline the ticket is in',
},
{
displayName: 'Priority',
@@ -357,7 +357,7 @@ export const ticketFields: INodeProperties[] = [
loadOptionsMethod: 'getTicketSources',
},
default: '',
- description: 'Channel where ticket was originally submitted.',
+ description: 'Channel where ticket was originally submitted',
},
{
displayName: 'Ticket Name',
@@ -461,7 +461,7 @@ export const ticketFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -485,7 +485,7 @@ export const ticketFields: INodeProperties[] = [
maxValue: 250,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
diff --git a/packages/nodes-base/nodes/HumanticAI/ProfileDescription.ts b/packages/nodes-base/nodes/HumanticAI/ProfileDescription.ts
index 8da1fa129d..5e467be191 100644
--- a/packages/nodes-base/nodes/HumanticAI/ProfileDescription.ts
+++ b/packages/nodes-base/nodes/HumanticAI/ProfileDescription.ts
@@ -73,7 +73,7 @@ export const profileFields: INodeProperties[] = [
],
},
},
- description: `Send a resume for a resume based analysis.`,
+ description: 'Send a resume for a resume based analysis',
},
{
displayName: 'Binary Property',
@@ -93,7 +93,7 @@ export const profileFields: INodeProperties[] = [
],
},
},
- description: `The resume in PDF or DOCX format.`,
+ description: 'The resume in PDF or DOCX format',
},
/* -------------------------------------------------------------------------- */
@@ -192,7 +192,7 @@ export const profileFields: INodeProperties[] = [
],
},
},
- description: `Send a resume for a resume of the user.`,
+ description: 'Send a resume for a resume of the user',
},
{
displayName: 'Text',
@@ -212,7 +212,7 @@ export const profileFields: INodeProperties[] = [
],
},
},
- description: `Additional text written by the user.`,
+ description: 'Additional text written by the user',
},
{
displayName: 'Binary Property',
@@ -232,6 +232,6 @@ export const profileFields: INodeProperties[] = [
],
},
},
- description: `The resume in PDF or DOCX format.`,
+ description: 'The resume in PDF or DOCX format',
},
];
diff --git a/packages/nodes-base/nodes/Hunter/Hunter.node.ts b/packages/nodes-base/nodes/Hunter/Hunter.node.ts
index eddb3a8d3d..b5fb649fb8 100644
--- a/packages/nodes-base/nodes/Hunter/Hunter.node.ts
+++ b/packages/nodes-base/nodes/Hunter/Hunter.node.ts
@@ -55,7 +55,7 @@ export class Hunter implements INodeType {
},
],
default: 'domainSearch',
- description: 'operation to consume.',
+ description: 'operation to consume',
},
{
displayName: 'Domain',
@@ -84,7 +84,7 @@ export class Hunter implements INodeType {
},
},
default: true,
- description: 'Return only the the found emails.',
+ description: 'Return only the the found emails',
},
{
displayName: 'Return All',
@@ -98,7 +98,7 @@ export class Hunter implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -119,7 +119,7 @@ export class Hunter implements INodeType {
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -279,7 +279,7 @@ export class Hunter implements INodeType {
},
default: '',
required: true,
- description: 'The email address you want to verify.',
+ description: 'The email address you want to verify',
},
],
};
diff --git a/packages/nodes-base/nodes/ICalendar/ICalendar.node.ts b/packages/nodes-base/nodes/ICalendar/ICalendar.node.ts
index 54aa988fcf..f48ff8d568 100644
--- a/packages/nodes-base/nodes/ICalendar/ICalendar.node.ts
+++ b/packages/nodes-base/nodes/ICalendar/ICalendar.node.ts
@@ -75,7 +75,7 @@ export class ICalendar implements INodeType {
name: 'allDay',
type: 'boolean',
default: false,
- description: 'Whether the event lasts all day or not.',
+ description: 'Whether the event lasts all day or not',
},
{
displayName: 'Binary Property',
@@ -83,7 +83,7 @@ export class ICalendar implements INodeType {
type: 'string',
default: 'data',
required: true,
- description: 'The field that your iCalendar file will be available under in the output.',
+ description: 'The field that your iCalendar file will be available under in the output',
},
{
displayName: 'Additional Fields',
@@ -132,7 +132,7 @@ export class ICalendar implements INodeType {
name: 'rsvp',
type: 'boolean',
default: false,
- description: `Whether the attendee has to confirm attendance or not.`,
+ description: 'Whether the attendee has to confirm attendance or not',
},
],
},
@@ -153,7 +153,7 @@ export class ICalendar implements INodeType {
},
],
default: '',
- description: 'Used to specify busy status for Microsoft applications, like Outlook.',
+ description: 'Used to specify busy status for Microsoft applications, like Outlook',
},
{
displayName: 'Calendar Name',
@@ -210,7 +210,7 @@ export class ICalendar implements INodeType {
name: 'location',
type: 'string',
default: '',
- description: 'The intended venue.',
+ description: 'The intended venue',
},
{
displayName: 'Recurrence Rule',
@@ -256,7 +256,7 @@ export class ICalendar implements INodeType {
name: 'sequence',
type: 'number',
default: 0,
- description: 'When sending an update for an event (with the same uid), defines the revision sequence number.',
+ description: 'When sending an update for an event (with the same uid), defines the revision sequence number',
},
{
displayName: 'Status',
@@ -290,7 +290,7 @@ export class ICalendar implements INodeType {
name: 'url',
type: 'string',
default: '',
- description: 'URL associated with event.',
+ description: 'URL associated with event',
},
],
},
diff --git a/packages/nodes-base/nodes/If/If.node.ts b/packages/nodes-base/nodes/If/If.node.ts
index bc570b0c60..b076716112 100644
--- a/packages/nodes-base/nodes/If/If.node.ts
+++ b/packages/nodes-base/nodes/If/If.node.ts
@@ -36,7 +36,7 @@ export class If implements INodeType {
multipleValues: true,
sortable: true,
},
- description: 'The type of values to compare.',
+ description: 'The type of values to compare',
default: {},
options: [
{
@@ -48,7 +48,7 @@ export class If implements INodeType {
name: 'value1',
type: 'boolean',
default: false,
- description: 'The value to compare with the second one.',
+ description: 'The value to compare with the second one',
},
{
displayName: 'Operation',
@@ -65,14 +65,14 @@ export class If implements INodeType {
},
],
default: 'equal',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Value 2',
name: 'value2',
type: 'boolean',
default: false,
- description: 'The value to compare with the first one.',
+ description: 'The value to compare with the first one',
},
],
},
@@ -85,7 +85,7 @@ export class If implements INodeType {
name: 'value1',
type: 'dateTime',
default: '',
- description: 'The value to compare with the second one.',
+ description: 'The value to compare with the second one',
},
{
displayName: 'Operation',
@@ -102,14 +102,14 @@ export class If implements INodeType {
},
],
default: 'after',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Value 2',
name: 'value2',
type: 'dateTime',
default: '',
- description: 'The value to compare with the first one.',
+ description: 'The value to compare with the first one',
},
],
},
@@ -122,7 +122,7 @@ export class If implements INodeType {
name: 'value1',
type: 'number',
default: 0,
- description: 'The value to compare with the second one.',
+ description: 'The value to compare with the second one',
},
{
displayName: 'Operation',
@@ -163,7 +163,7 @@ export class If implements INodeType {
},
],
default: 'smaller',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Value 2',
@@ -178,7 +178,7 @@ export class If implements INodeType {
},
},
default: 0,
- description: 'The value to compare with the first one.',
+ description: 'The value to compare with the first one',
},
],
},
@@ -191,7 +191,7 @@ export class If implements INodeType {
name: 'value1',
type: 'string',
default: '',
- description: 'The value to compare with the second one.',
+ description: 'The value to compare with the second one',
},
{
displayName: 'Operation',
@@ -248,7 +248,7 @@ export class If implements INodeType {
},
],
default: 'equal',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Value 2',
@@ -265,7 +265,7 @@ export class If implements INodeType {
},
},
default: '',
- description: 'The value to compare with the first one.',
+ description: 'The value to compare with the first one',
},
{
displayName: 'Regex',
@@ -281,7 +281,7 @@ export class If implements INodeType {
},
default: '',
placeholder: '/text/i',
- description: 'The regex which has to match.',
+ description: 'The regex which has to match',
},
],
},
@@ -294,17 +294,17 @@ export class If implements INodeType {
options: [
{
name: 'ALL',
- description: 'Only if all conditions are meet it goes into "true" branch.',
+ description: 'Only if all conditions are meet it goes into "true" branch',
value: 'all',
},
{
name: 'ANY',
- description: 'If any of the conditions is meet it goes into "true" branch.',
+ description: 'If any of the conditions is meet it goes into "true" branch',
value: 'any',
},
],
default: 'all',
- description: 'If multiple rules got set this settings decides if it is true as soon as ANY condition matches or only if ALL get meet.',
+ description: 'If multiple rules got set this settings decides if it is true as soon as ANY condition matches or only if ALL get meet',
},
],
};
diff --git a/packages/nodes-base/nodes/Intercom/CompanyDescription.ts b/packages/nodes-base/nodes/Intercom/CompanyDescription.ts
index 3610e3a4f2..f4147b546a 100644
--- a/packages/nodes-base/nodes/Intercom/CompanyDescription.ts
+++ b/packages/nodes-base/nodes/Intercom/CompanyDescription.ts
@@ -111,7 +111,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -135,7 +135,7 @@ export const companyFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -156,7 +156,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -180,7 +180,7 @@ export const companyFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -251,7 +251,7 @@ export const companyFields: INodeProperties[] = [
},
],
default: '',
- description: 'What property to use to query the company.',
+ description: 'What property to use to query the company',
},
{
displayName: 'Value',
@@ -397,7 +397,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: '',
- description: 'A hash of key/value pairs to represent custom data you want to attribute to a user.',
+ description: 'A hash of key/value pairs to represent custom data you want to attribute to a user',
},
{
displayName: 'Custom Attributes',
@@ -443,6 +443,6 @@ export const companyFields: INodeProperties[] = [
],
},
],
- description: 'A hash of key/value pairs to represent custom data you want to attribute to a user.',
+ description: 'A hash of key/value pairs to represent custom data you want to attribute to a user',
},
];
diff --git a/packages/nodes-base/nodes/Intercom/Intercom.node.ts b/packages/nodes-base/nodes/Intercom/Intercom.node.ts
index fc4e11c947..df569efec8 100644
--- a/packages/nodes-base/nodes/Intercom/Intercom.node.ts
+++ b/packages/nodes-base/nodes/Intercom/Intercom.node.ts
@@ -68,12 +68,12 @@ export class Intercom implements INodeType {
{
name: 'Company',
value: 'company',
- description: 'Companies allow you to represent commercial organizations using your product.',
+ description: 'Companies allow you to represent commercial organizations using your product',
},
{
name: 'Lead',
value: 'lead',
- description: 'Leads are useful for representing logged-out users of your application.',
+ description: 'Leads are useful for representing logged-out users of your application',
},
{
name: 'User',
diff --git a/packages/nodes-base/nodes/Intercom/LeadDescription.ts b/packages/nodes-base/nodes/Intercom/LeadDescription.ts
index 7e09e02b8b..06c412bd54 100644
--- a/packages/nodes-base/nodes/Intercom/LeadDescription.ts
+++ b/packages/nodes-base/nodes/Intercom/LeadDescription.ts
@@ -137,7 +137,7 @@ export const leadFields: INodeProperties[] = [
},
],
default: '',
- description: 'The property to select the lead by.',
+ description: 'The property to select the lead by',
},
{
displayName: 'Value',
@@ -176,7 +176,7 @@ export const leadFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -200,7 +200,7 @@ export const leadFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -266,7 +266,7 @@ export const leadFields: INodeProperties[] = [
},
],
default: 'id',
- description: 'The property via which to query the lead.',
+ description: 'The property via which to query the lead',
},
{
displayName: 'Value',
@@ -306,7 +306,7 @@ export const leadFields: INodeProperties[] = [
],
},
},
- description: 'The email of the user.',
+ description: 'The email of the user',
},
{
displayName: 'JSON Parameters',
@@ -358,7 +358,7 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanies',
},
default: [],
- description: 'Identifies the companies this user belongs to.',
+ description: 'Identifies the companies this user belongs to',
},
{
displayName: 'Email',
@@ -375,7 +375,7 @@ export const leadFields: INodeProperties[] = [
],
},
},
- description: 'The email of the user.',
+ description: 'The email of the user',
},
{
displayName: 'Name',
@@ -465,7 +465,7 @@ export const leadFields: INodeProperties[] = [
},
},
default: '',
- description: 'A hash of key/value pairs to represent custom data you want to attribute to a user.',
+ description: 'A hash of key/value pairs to represent custom data you want to attribute to a user',
},
{
displayName: 'Custom Attributes',
@@ -511,6 +511,6 @@ export const leadFields: INodeProperties[] = [
],
},
],
- description: 'A hash of key/value pairs to represent custom data you want to attribute to a user.',
+ description: 'A hash of key/value pairs to represent custom data you want to attribute to a user',
},
];
diff --git a/packages/nodes-base/nodes/Intercom/UserDescription.ts b/packages/nodes-base/nodes/Intercom/UserDescription.ts
index 6baadb3d11..e792abe992 100644
--- a/packages/nodes-base/nodes/Intercom/UserDescription.ts
+++ b/packages/nodes-base/nodes/Intercom/UserDescription.ts
@@ -86,7 +86,7 @@ export const userFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -110,7 +110,7 @@ export const userFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -193,7 +193,7 @@ export const userFields: INodeProperties[] = [
},
],
default: '',
- description: 'The property to select the user by.',
+ description: 'The property to select the user by',
},
{
displayName: 'Value',
@@ -250,7 +250,7 @@ export const userFields: INodeProperties[] = [
],
default: 'id',
- description: 'The property via which to query the user.',
+ description: 'The property via which to query the user',
},
{
displayName: 'Value',
@@ -371,7 +371,7 @@ export const userFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanies',
},
default: [],
- description: 'Identifies the companies this user belongs to.',
+ description: 'Identifies the companies this user belongs to',
},
{
displayName: 'Email',
@@ -455,7 +455,7 @@ export const userFields: INodeProperties[] = [
type: 'boolean',
default: false,
options: [],
- description: 'A boolean value, which if true, instructs Intercom to update the users last_request_at value to the current API service time in UTC.',
+ description: 'A boolean value, which if true, instructs Intercom to update the users last_request_at value to the current API service time in UTC',
},
{
displayName: 'UTM Campaign',
@@ -517,7 +517,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: 'A hash of key/value pairs to represent custom data you want to attribute to a user.',
+ description: 'A hash of key/value pairs to represent custom data you want to attribute to a user',
},
{
displayName: 'Custom Attributes',
@@ -563,6 +563,6 @@ export const userFields: INodeProperties[] = [
],
},
],
- description: 'A hash of key/value pairs to represent custom data you want to attribute to a user.',
+ description: 'A hash of key/value pairs to represent custom data you want to attribute to a user',
},
];
diff --git a/packages/nodes-base/nodes/Interval/Interval.node.ts b/packages/nodes-base/nodes/Interval/Interval.node.ts
index cb5fce2b4c..31144a9108 100644
--- a/packages/nodes-base/nodes/Interval/Interval.node.ts
+++ b/packages/nodes-base/nodes/Interval/Interval.node.ts
@@ -33,7 +33,7 @@ export class Interval implements INodeType {
minValue: 1,
},
default: 1,
- description: 'Interval value.',
+ description: 'Interval value',
},
{
displayName: 'Unit',
@@ -54,7 +54,7 @@ export class Interval implements INodeType {
},
],
default: 'seconds',
- description: 'Unit of the interval value.',
+ description: 'Unit of the interval value',
},
],
};
diff --git a/packages/nodes-base/nodes/InvoiceNinja/ClientDescription.ts b/packages/nodes-base/nodes/InvoiceNinja/ClientDescription.ts
index 5d7ca55a04..eb69a40bb8 100644
--- a/packages/nodes-base/nodes/InvoiceNinja/ClientDescription.ts
+++ b/packages/nodes-base/nodes/InvoiceNinja/ClientDescription.ts
@@ -376,7 +376,7 @@ export const clientFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -400,7 +400,7 @@ export const clientFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/InvoiceNinja/ExpenseDescription.ts b/packages/nodes-base/nodes/InvoiceNinja/ExpenseDescription.ts
index 4f9d3248bb..36a7777d8f 100644
--- a/packages/nodes-base/nodes/InvoiceNinja/ExpenseDescription.ts
+++ b/packages/nodes-base/nodes/InvoiceNinja/ExpenseDescription.ts
@@ -375,7 +375,7 @@ export const expenseFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -399,6 +399,6 @@ export const expenseFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/InvoiceNinja/InvoiceDescription.ts b/packages/nodes-base/nodes/InvoiceNinja/InvoiceDescription.ts
index 27d6e9d444..22e3029734 100644
--- a/packages/nodes-base/nodes/InvoiceNinja/InvoiceDescription.ts
+++ b/packages/nodes-base/nodes/InvoiceNinja/InvoiceDescription.ts
@@ -418,7 +418,7 @@ export const invoiceFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -442,7 +442,7 @@ export const invoiceFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/InvoiceNinja/PaymentDescription.ts b/packages/nodes-base/nodes/InvoiceNinja/PaymentDescription.ts
index 13bad32b5f..a90e731ce1 100644
--- a/packages/nodes-base/nodes/InvoiceNinja/PaymentDescription.ts
+++ b/packages/nodes-base/nodes/InvoiceNinja/PaymentDescription.ts
@@ -349,7 +349,7 @@ export const paymentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -373,7 +373,7 @@ export const paymentFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/InvoiceNinja/QuoteDescription.ts b/packages/nodes-base/nodes/InvoiceNinja/QuoteDescription.ts
index 82a01bf423..20adc8c943 100644
--- a/packages/nodes-base/nodes/InvoiceNinja/QuoteDescription.ts
+++ b/packages/nodes-base/nodes/InvoiceNinja/QuoteDescription.ts
@@ -418,7 +418,7 @@ export const quoteFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -442,7 +442,7 @@ export const quoteFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/InvoiceNinja/TaskDescription.ts b/packages/nodes-base/nodes/InvoiceNinja/TaskDescription.ts
index cb34f7de53..3a9b87c7d5 100644
--- a/packages/nodes-base/nodes/InvoiceNinja/TaskDescription.ts
+++ b/packages/nodes-base/nodes/InvoiceNinja/TaskDescription.ts
@@ -239,7 +239,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -263,7 +263,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 60,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Iterable/EventDescription.ts b/packages/nodes-base/nodes/Iterable/EventDescription.ts
index 0ca15d1740..6b11a9f7a2 100644
--- a/packages/nodes-base/nodes/Iterable/EventDescription.ts
+++ b/packages/nodes-base/nodes/Iterable/EventDescription.ts
@@ -46,7 +46,7 @@ export const eventFields: INodeProperties[] = [
],
},
},
- description: 'The name of the event to track.',
+ description: 'The name of the event to track',
default: '',
},
{
@@ -78,7 +78,7 @@ export const eventFields: INodeProperties[] = [
name: 'createdAt',
type: 'dateTime',
default: '',
- description: `Time event happened.`,
+ description: 'Time event happened',
},
{
displayName: 'Data Fields',
@@ -99,14 +99,14 @@ export const eventFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'The end event specified key of the event defined data.',
+ description: 'The end event specified key of the event defined data',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The end event specified value of the event defined data.',
+ description: 'The end event specified value of the event defined data',
},
],
},
diff --git a/packages/nodes-base/nodes/Iterable/UserDescription.ts b/packages/nodes-base/nodes/Iterable/UserDescription.ts
index ae4505fe61..ded5ebd375 100644
--- a/packages/nodes-base/nodes/Iterable/UserDescription.ts
+++ b/packages/nodes-base/nodes/Iterable/UserDescription.ts
@@ -105,7 +105,7 @@ export const userFields: INodeProperties[] = [
},
},
default: true,
- description: 'Create a new user if the idetifier does not exist.',
+ description: 'Create a new user if the idetifier does not exist',
},
{
displayName: 'Additional Fields',
@@ -143,14 +143,14 @@ export const userFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'The end user specified key of the user defined data.',
+ description: 'The end user specified key of the user defined data',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The end user specified value of the user defined data.',
+ description: 'The end user specified value of the user defined data',
},
],
},
diff --git a/packages/nodes-base/nodes/Jira/IssueAttachmentDescription.ts b/packages/nodes-base/nodes/Jira/IssueAttachmentDescription.ts
index cee1ba02ff..d3791bbea7 100644
--- a/packages/nodes-base/nodes/Jira/IssueAttachmentDescription.ts
+++ b/packages/nodes-base/nodes/Jira/IssueAttachmentDescription.ts
@@ -79,7 +79,7 @@ export const issueAttachmentFields: INodeProperties[] = [
name: 'binaryPropertyName',
type: 'string',
default: 'data',
- description: 'Object property name which holds binary data.',
+ description: 'Object property name which holds binary data',
required: true,
},
@@ -102,7 +102,7 @@ export const issueAttachmentFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the attachment.',
+ description: 'The ID of the attachment',
},
{
displayName: 'Download',
@@ -139,7 +139,7 @@ export const issueAttachmentFields: INodeProperties[] = [
],
},
},
- description: 'Object property name which holds binary data.',
+ description: 'Object property name which holds binary data',
required: true,
},
/* -------------------------------------------------------------------------- */
@@ -178,7 +178,7 @@ export const issueAttachmentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -202,7 +202,7 @@ export const issueAttachmentFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Download',
@@ -239,7 +239,7 @@ export const issueAttachmentFields: INodeProperties[] = [
],
},
},
- description: 'Object property name which holds binary data.',
+ description: 'Object property name which holds binary data',
required: true,
},
/* -------------------------------------------------------------------------- */
@@ -261,6 +261,6 @@ export const issueAttachmentFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the attachment.',
+ description: 'The ID of the attachment',
},
];
\ No newline at end of file
diff --git a/packages/nodes-base/nodes/Jira/IssueCommentDescription.ts b/packages/nodes-base/nodes/Jira/IssueCommentDescription.ts
index d648bf1c28..fafd802455 100644
--- a/packages/nodes-base/nodes/Jira/IssueCommentDescription.ts
+++ b/packages/nodes-base/nodes/Jira/IssueCommentDescription.ts
@@ -177,7 +177,7 @@ export const issueCommentFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID or key of the issue.',
+ description: 'The ID or key of the issue',
},
{
displayName: 'Comment ID',
@@ -249,7 +249,7 @@ export const issueCommentFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID or key of the issue.',
+ description: 'The ID or key of the issue',
},
{
displayName: 'Return All',
@@ -266,7 +266,7 @@ export const issueCommentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -290,7 +290,7 @@ export const issueCommentFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -344,7 +344,7 @@ export const issueCommentFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID or key of the issue.',
+ description: 'The ID or key of the issue',
},
{
displayName: 'Comment ID',
@@ -362,7 +362,7 @@ export const issueCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the comment.',
+ description: 'The ID of the comment',
},
/* -------------------------------------------------------------------------- */
@@ -384,7 +384,7 @@ export const issueCommentFields: INodeProperties[] = [
},
},
default: '',
- description: 'The Issue Comment key.',
+ description: 'The Issue Comment key',
},
{
displayName: 'Comment ID',
@@ -402,7 +402,7 @@ export const issueCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the comment.',
+ description: 'The ID of the comment',
},
{
displayName: 'JSON Parameters',
@@ -438,7 +438,7 @@ export const issueCommentFields: INodeProperties[] = [
],
},
},
- description: `Comment's text.`,
+ description: 'Comment\'s text',
},
{
displayName: 'Document Format (JSON)',
diff --git a/packages/nodes-base/nodes/Jira/IssueDescription.ts b/packages/nodes-base/nodes/Jira/IssueDescription.ts
index efc9a688ab..184f98ab9e 100644
--- a/packages/nodes-base/nodes/Jira/IssueDescription.ts
+++ b/packages/nodes-base/nodes/Jira/IssueDescription.ts
@@ -202,14 +202,14 @@ export const issueFields: INodeProperties[] = [
'project',
],
},
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
default: '',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
default: '',
},
],
@@ -282,7 +282,7 @@ export const issueFields: INodeProperties[] = [
name: 'updateHistory',
type: 'boolean',
default: false,
- description: 'Whether the project in which the issue is created is added to the user\'s Recently viewed project list, as shown under Projects in Jira.',
+ description: 'Whether the project in which the issue is created is added to the user\'s Recently viewed project list, as shown under Projects in Jira',
},
],
},
@@ -366,14 +366,14 @@ export const issueFields: INodeProperties[] = [
'issueKey',
],
},
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
default: '',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
default: '',
},
],
@@ -463,7 +463,7 @@ export const issueFields: INodeProperties[] = [
loadOptionsMethod: 'getTransitions',
},
default: '',
- description: 'The ID of the issue status.',
+ description: 'The ID of the issue status',
},
],
},
@@ -546,7 +546,7 @@ export const issueFields: INodeProperties[] = [
},
// eslint-disable-next-line n8n-nodes-base/node-param-default-wrong-for-simplify
default: false,
- description: `Return a simplified output of the issues fields.`,
+ description: 'Return a simplified output of the issues fields',
},
{
displayName: 'Additional Fields',
@@ -630,7 +630,7 @@ export const issueFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -654,7 +654,7 @@ export const issueFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -682,7 +682,7 @@ export const issueFields: INodeProperties[] = [
{
name: 'Changelog',
value: 'changelog',
- description: 'Returns a list of recent updates to an issue, sorted by date, starting from the most recent.',
+ description: 'Returns a list of recent updates to an issue, sorted by date, starting from the most recent',
},
{
name: 'Editmeta',
@@ -697,22 +697,22 @@ export const issueFields: INodeProperties[] = [
{
name: 'Operations',
value: 'operations',
- description: 'Returns all possible operations for the issue.',
+ description: 'Returns all possible operations for the issue',
},
{
name: 'Rendered Fields',
value: 'renderedFields',
- description: ' Returns field values rendered in HTML format.',
+ description: ' Returns field values rendered in HTML format',
},
{
name: 'Schema',
value: 'schema',
- description: 'Returns the schema describing a field type.',
+ description: 'Returns the schema describing a field type',
},
{
name: 'Transitions',
value: 'transitions',
- description: ' Returns all possible transitions for the issue.',
+ description: ' Returns all possible transitions for the issue',
},
{
name: 'Versioned Representations',
@@ -744,7 +744,7 @@ export const issueFields: INodeProperties[] = [
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'A JQL expression.',
+ description: 'A JQL expression',
},
],
},
@@ -784,7 +784,7 @@ export const issueFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -808,7 +808,7 @@ export const issueFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* issue:notify */
@@ -872,7 +872,7 @@ export const issueFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'The HTML body of the email notification for the issue.',
+ description: 'The HTML body of the email notification for the issue',
},
{
displayName: 'Subject',
@@ -901,7 +901,7 @@ export const issueFields: INodeProperties[] = [
typeOptions: {
multipleValues: false,
},
- description: 'The recipients of the email notification for the issue.',
+ description: 'The recipients of the email notification for the issue',
default: {},
displayOptions: {
show: {
@@ -925,7 +925,7 @@ export const issueFields: INodeProperties[] = [
displayName: 'Reporter',
name: 'reporter',
type: 'boolean',
- description: `Indicates whether the notification should be sent to the issue's reporter.`,
+ description: 'Indicates whether the notification should be sent to the issue\'s reporter',
default: false,
},
{
@@ -933,21 +933,21 @@ export const issueFields: INodeProperties[] = [
name: 'assignee',
type: 'boolean',
default: false,
- description: `Indicates whether the notification should be sent to the issue's assignees.`,
+ description: 'Indicates whether the notification should be sent to the issue\'s assignees',
},
{
displayName: 'Watchers',
name: 'watchers',
type: 'boolean',
default: false,
- description: `Indicates whether the notification should be sent to the issue's assignees.`,
+ description: 'Indicates whether the notification should be sent to the issue\'s assignees',
},
{
displayName: 'Voters',
name: 'voters',
type: 'boolean',
default: false,
- description: `Indicates whether the notification should be sent to the issue's voters.`,
+ description: 'Indicates whether the notification should be sent to the issue\'s voters',
},
{
displayName: 'Users',
@@ -957,7 +957,7 @@ export const issueFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: [],
- description: `List of users to receive the notification.`,
+ description: 'List of users to receive the notification',
},
{
displayName: 'Groups',
@@ -967,7 +967,7 @@ export const issueFields: INodeProperties[] = [
loadOptionsMethod: 'getGroups',
},
default: [],
- description: `List of groups to receive the notification.`,
+ description: 'List of groups to receive the notification',
},
],
@@ -995,7 +995,7 @@ export const issueFields: INodeProperties[] = [
},
},
default: '',
- description: 'The recipients of the email notification for the issue.',
+ description: 'The recipients of the email notification for the issue',
},
{
displayName: 'Notification Recipients Restrictions',
@@ -1005,7 +1005,7 @@ export const issueFields: INodeProperties[] = [
typeOptions: {
multipleValues: false,
},
- description: 'Restricts the notifications to users with the specified permissions.',
+ description: 'Restricts the notifications to users with the specified permissions',
default: {},
displayOptions: {
show: {
@@ -1033,7 +1033,7 @@ export const issueFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: [],
- description: `List of users to receive the notification.`,
+ description: 'List of users to receive the notification',
},
{
displayName: 'Groups',
@@ -1043,7 +1043,7 @@ export const issueFields: INodeProperties[] = [
loadOptionsMethod: 'getGroups',
},
default: [],
- description: `List of groups to receive the notification.`,
+ description: 'List of groups to receive the notification',
},
],
@@ -1071,7 +1071,7 @@ export const issueFields: INodeProperties[] = [
},
},
default: '',
- description: 'Restricts the notifications to users with the specified permissions.',
+ description: 'Restricts the notifications to users with the specified permissions',
},
/* -------------------------------------------------------------------------- */
@@ -1124,14 +1124,14 @@ export const issueFields: INodeProperties[] = [
name: 'transitionId',
type: 'string',
default: '',
- description: 'The ID of the transition.',
+ description: 'The ID of the transition',
},
{
displayName: 'Skip Remote Only Condition',
name: 'skipRemoteOnlyCondition',
type: 'boolean',
default: false,
- description: 'Indicates whether transitions with the condition Hide From User Condition are included in the response.',
+ description: 'Indicates whether transitions with the condition Hide From User Condition are included in the response',
},
],
},
diff --git a/packages/nodes-base/nodes/Jira/Jira.node.ts b/packages/nodes-base/nodes/Jira/Jira.node.ts
index bca7655806..3bf656deef 100644
--- a/packages/nodes-base/nodes/Jira/Jira.node.ts
+++ b/packages/nodes-base/nodes/Jira/Jira.node.ts
@@ -127,17 +127,17 @@ export class Jira implements INodeType {
{
name: 'Issue Attachment',
value: 'issueAttachment',
- description: 'Add, remove, and get an attachment from an issue.',
+ description: 'Add, remove, and get an attachment from an issue',
},
{
name: 'Issue Comment',
value: 'issueComment',
- description: 'Get, create, update, and delete a comment from an issue.',
+ description: 'Get, create, update, and delete a comment from an issue',
},
{
name: 'User',
value: 'user',
- description: 'Get, create and delete a user.',
+ description: 'Get, create and delete a user',
},
],
default: 'issue',
diff --git a/packages/nodes-base/nodes/Jira/JiraTrigger.node.ts b/packages/nodes-base/nodes/Jira/JiraTrigger.node.ts
index 17e25bad21..62e45d96bb 100644
--- a/packages/nodes-base/nodes/Jira/JiraTrigger.node.ts
+++ b/packages/nodes-base/nodes/Jira/JiraTrigger.node.ts
@@ -249,7 +249,7 @@ export class JiraTrigger implements INodeType {
],
required: true,
default: [],
- description: 'The events to listen to.',
+ description: 'The events to listen to',
},
{
displayName: 'Additional Fields',
diff --git a/packages/nodes-base/nodes/Jira/UserDescription.ts b/packages/nodes-base/nodes/Jira/UserDescription.ts
index e788e37b5d..29bc3bdfac 100644
--- a/packages/nodes-base/nodes/Jira/UserDescription.ts
+++ b/packages/nodes-base/nodes/Jira/UserDescription.ts
@@ -18,17 +18,17 @@ export const userOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
- description: 'Create a new user.',
+ description: 'Create a new user',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete a user.',
+ description: 'Delete a user',
},
{
name: 'Get',
value: 'get',
- description: 'Retrieve a user.',
+ description: 'Retrieve a user',
},
],
default: 'create',
@@ -124,7 +124,7 @@ export const userFields: INodeProperties[] = [
name: 'notification',
type: 'boolean',
default: false,
- description: 'Send the user an email confirmation that they have been added to Jira.',
+ description: 'Send the user an email confirmation that they have been added to Jira',
},
],
},
@@ -136,7 +136,7 @@ export const userFields: INodeProperties[] = [
name: 'accountId',
type: 'string',
default: '',
- description: 'Account ID of the user to delete.',
+ description: 'Account ID of the user to delete',
displayOptions: {
show: {
resource: [
@@ -156,7 +156,7 @@ export const userFields: INodeProperties[] = [
name: 'accountId',
type: 'string',
default: '',
- description: 'Account ID of the user to retrieve.',
+ description: 'Account ID of the user to retrieve',
displayOptions: {
show: {
resource: [
@@ -190,17 +190,17 @@ export const userFields: INodeProperties[] = [
name: 'expand',
type: 'multiOptions',
default: [],
- description: 'Include more information about the user.',
+ description: 'Include more information about the user',
options: [
{
name: 'Groups',
value: 'groups',
- description: 'Include all groups to which the user belongs.',
+ description: 'Include all groups to which the user belongs',
},
{
name: 'Application Roles',
value: 'applicationRoles',
- description: 'Include details of all the applications the user can access.',
+ description: 'Include details of all the applications the user can access',
},
],
},
diff --git a/packages/nodes-base/nodes/JotForm/JotFormTrigger.node.ts b/packages/nodes-base/nodes/JotForm/JotFormTrigger.node.ts
index 308bef68a8..df947ec878 100644
--- a/packages/nodes-base/nodes/JotForm/JotFormTrigger.node.ts
+++ b/packages/nodes-base/nodes/JotForm/JotFormTrigger.node.ts
@@ -75,7 +75,7 @@ export class JotFormTrigger implements INodeType {
name: 'onlyAnswers',
type: 'boolean',
default: true,
- description: 'Returns only the answers of the form and not any of the other data.',
+ description: 'Returns only the answers of the form and not any of the other data',
},
],
diff --git a/packages/nodes-base/nodes/Kafka/Kafka.node.ts b/packages/nodes-base/nodes/Kafka/Kafka.node.ts
index fdabddec69..e89bef7065 100644
--- a/packages/nodes-base/nodes/Kafka/Kafka.node.ts
+++ b/packages/nodes-base/nodes/Kafka/Kafka.node.ts
@@ -46,14 +46,14 @@ export class Kafka implements INodeType {
type: 'string',
default: '',
placeholder: 'topic-name',
- description: 'Name of the queue of topic to publish to.',
+ description: 'Name of the queue of topic to publish to',
},
{
displayName: 'Send Input Data',
name: 'sendInputData',
type: 'boolean',
default: true,
- description: 'Send the the data the node receives as JSON to Kafka.',
+ description: 'Send the the data the node receives as JSON to Kafka',
},
{
displayName: 'Message',
@@ -67,7 +67,7 @@ export class Kafka implements INodeType {
},
},
default: '',
- description: 'The message to be sent.',
+ description: 'The message to be sent',
},
{
displayName: 'JSON Parameters',
@@ -80,7 +80,7 @@ export class Kafka implements INodeType {
name: 'useSchemaRegistry',
type: 'boolean',
default: false,
- description: 'Use Confluent Schema Registry.',
+ description: 'Use Confluent Schema Registry',
},
{
displayName: 'Schema Registry URL',
@@ -96,7 +96,7 @@ export class Kafka implements INodeType {
},
placeholder: 'https://schema-registry-domain:8081',
default: '',
- description: 'URL of the schema registry.',
+ description: 'URL of the schema registry',
},
{
displayName: 'Event Name',
@@ -111,7 +111,7 @@ export class Kafka implements INodeType {
},
},
default: '',
- description: 'Namespace and Name of Schema in Schema Registry (namespace.name).',
+ description: 'Namespace and Name of Schema in Schema Registry (namespace.name)',
},
{
displayName: 'Headers',
@@ -162,7 +162,7 @@ export class Kafka implements INodeType {
},
},
default: '',
- description: 'Header parameters as JSON (flat object).',
+ description: 'Header parameters as JSON (flat object)',
},
{
displayName: 'Options',
@@ -176,21 +176,21 @@ export class Kafka implements INodeType {
name: 'acks',
type: 'boolean',
default: false,
- description: 'Whether or not producer must wait for acknowledgement from all replicas.',
+ description: 'Whether or not producer must wait for acknowledgement from all replicas',
},
{
displayName: 'Compression',
name: 'compression',
type: 'boolean',
default: false,
- description: 'Send the data in a compressed format using the GZIP codec.',
+ description: 'Send the data in a compressed format using the GZIP codec',
},
{
displayName: 'Timeout',
name: 'timeout',
type: 'number',
default: 30000,
- description: 'The time to await a response in ms.',
+ description: 'The time to await a response in ms',
},
],
},
diff --git a/packages/nodes-base/nodes/Kafka/KafkaTrigger.node.ts b/packages/nodes-base/nodes/Kafka/KafkaTrigger.node.ts
index 5a0260e9e2..8313319bee 100644
--- a/packages/nodes-base/nodes/Kafka/KafkaTrigger.node.ts
+++ b/packages/nodes-base/nodes/Kafka/KafkaTrigger.node.ts
@@ -46,7 +46,7 @@ export class KafkaTrigger implements INodeType {
default: '',
required: true,
placeholder: 'topic-name',
- description: 'Name of the queue of topic to consume from.',
+ description: 'Name of the queue of topic to consume from',
},
{
displayName: 'Group ID',
@@ -55,14 +55,14 @@ export class KafkaTrigger implements INodeType {
default: '',
required: true,
placeholder: 'n8n-kafka',
- description: 'ID of the consumer group.',
+ description: 'ID of the consumer group',
},
{
displayName: 'Use Schema Registry',
name: 'useSchemaRegistry',
type: 'boolean',
default: false,
- description: 'Use Confluent Schema Registry.',
+ description: 'Use Confluent Schema Registry',
},
{
displayName: 'Schema Registry URL',
@@ -78,7 +78,7 @@ export class KafkaTrigger implements INodeType {
},
placeholder: 'https://schema-registry-domain:8081',
default: '',
- description: 'URL of the schema registry.',
+ description: 'URL of the schema registry',
},
{
displayName: 'Options',
@@ -92,21 +92,21 @@ export class KafkaTrigger implements INodeType {
name: 'allowAutoTopicCreation',
type: 'boolean',
default: false,
- description: 'Allow sending message to a previously non exisiting topic .',
+ description: 'Allow sending message to a previously non exisiting topic ',
},
{
displayName: 'Read messages from beginning',
name: 'fromBeginning',
type: 'boolean',
default: true,
- description: 'Read message from beginning .',
+ description: 'Read message from beginning ',
},
{
displayName: 'JSON Parse Message',
name: 'jsonParseMessage',
type: 'boolean',
default: false,
- description: 'Try to parse the message to an object.',
+ description: 'Try to parse the message to an object',
},
{
displayName: 'Only Message',
@@ -120,14 +120,14 @@ export class KafkaTrigger implements INodeType {
},
},
default: false,
- description: 'Returns only the message property.',
+ description: 'Returns only the message property',
},
{
displayName: 'Session Timeout',
name: 'sessionTimeout',
type: 'number',
default: 30000,
- description: 'The time to await a response in ms.',
+ description: 'The time to await a response in ms',
},
{
displayName: 'Return headers',
diff --git a/packages/nodes-base/nodes/Keap/CompanyDescription.ts b/packages/nodes-base/nodes/Keap/CompanyDescription.ts
index 8f7711a552..4a7ee28b05 100644
--- a/packages/nodes-base/nodes/Keap/CompanyDescription.ts
+++ b/packages/nodes-base/nodes/Keap/CompanyDescription.ts
@@ -274,7 +274,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -298,7 +298,7 @@ export const companyFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Keap/ContactDescription.ts b/packages/nodes-base/nodes/Keap/ContactDescription.ts
index 7843f760b4..a5c2ea9ee0 100644
--- a/packages/nodes-base/nodes/Keap/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Keap/ContactDescription.ts
@@ -637,7 +637,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -661,7 +661,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Keap/ContactNoteDescription.ts b/packages/nodes-base/nodes/Keap/ContactNoteDescription.ts
index 8e80f45671..12b3e6d95f 100644
--- a/packages/nodes-base/nodes/Keap/ContactNoteDescription.ts
+++ b/packages/nodes-base/nodes/Keap/ContactNoteDescription.ts
@@ -211,7 +211,7 @@ export const contactNoteFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -235,7 +235,7 @@ export const contactNoteFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/Keap/ContactTagDescription.ts b/packages/nodes-base/nodes/Keap/ContactTagDescription.ts
index c6b6c4d8fa..c1ef8effd8 100644
--- a/packages/nodes-base/nodes/Keap/ContactTagDescription.ts
+++ b/packages/nodes-base/nodes/Keap/ContactTagDescription.ts
@@ -150,7 +150,7 @@ export const contactTagFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -174,6 +174,6 @@ export const contactTagFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Keap/EcommerceOrderDescripion.ts b/packages/nodes-base/nodes/Keap/EcommerceOrderDescripion.ts
index 443bbd1a7d..033fc7476c 100644
--- a/packages/nodes-base/nodes/Keap/EcommerceOrderDescripion.ts
+++ b/packages/nodes-base/nodes/Keap/EcommerceOrderDescripion.ts
@@ -309,7 +309,7 @@ export const ecommerceOrderFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: `Overridable price of the product, if not specified, the default will be used.`,
+ description: 'Overridable price of the product, if not specified, the default will be used',
},
{
displayName: 'Product ID',
@@ -391,7 +391,7 @@ export const ecommerceOrderFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -415,7 +415,7 @@ export const ecommerceOrderFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Keap/EcommerceProductDescription.ts b/packages/nodes-base/nodes/Keap/EcommerceProductDescription.ts
index b71fdfe0f0..1bc0445290 100644
--- a/packages/nodes-base/nodes/Keap/EcommerceProductDescription.ts
+++ b/packages/nodes-base/nodes/Keap/EcommerceProductDescription.ts
@@ -182,7 +182,7 @@ export const ecommerceProductFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -206,7 +206,7 @@ export const ecommerceProductFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/Keap/EmailDescription.ts b/packages/nodes-base/nodes/Keap/EmailDescription.ts
index ccec96dd4f..cc59ad239a 100644
--- a/packages/nodes-base/nodes/Keap/EmailDescription.ts
+++ b/packages/nodes-base/nodes/Keap/EmailDescription.ts
@@ -227,7 +227,7 @@ export const emailFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -251,7 +251,7 @@ export const emailFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/Keap/FileDescription.ts b/packages/nodes-base/nodes/Keap/FileDescription.ts
index ad3cc19ab6..c68ebf3ecb 100644
--- a/packages/nodes-base/nodes/Keap/FileDescription.ts
+++ b/packages/nodes-base/nodes/Keap/FileDescription.ts
@@ -55,7 +55,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'If the data to upload should be taken from binary field.',
+ description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'Binary Property',
@@ -76,7 +76,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
{
displayName: 'File Association',
@@ -228,7 +228,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -252,7 +252,7 @@ export const fileFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -279,14 +279,14 @@ export const fileFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'Filter based on Contact Id, if user has permission to see Contact files.',
+ description: 'Filter based on Contact Id, if user has permission to see Contact files',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: `Filter files based on name, with '*' preceding or following to indicate LIKE queries.`,
+ description: 'Filter files based on name, with \'*\' preceding or following to indicate LIKE queries',
},
{
displayName: 'Permission',
@@ -376,7 +376,7 @@ export const fileFields: INodeProperties[] = [
},
],
default: '',
- description: 'Filter based on the type of file.',
+ description: 'Filter based on the type of file',
},
{
displayName: 'Viewable',
diff --git a/packages/nodes-base/nodes/Keap/KeapTrigger.node.ts b/packages/nodes-base/nodes/Keap/KeapTrigger.node.ts
index f76559dab6..89734f199a 100644
--- a/packages/nodes-base/nodes/Keap/KeapTrigger.node.ts
+++ b/packages/nodes-base/nodes/Keap/KeapTrigger.node.ts
@@ -64,7 +64,7 @@ export class KeapTrigger implements INodeType {
name: 'rawData',
type: 'boolean',
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
],
};
diff --git a/packages/nodes-base/nodes/Kitemaker/descriptions/OrganizationDescription.ts b/packages/nodes-base/nodes/Kitemaker/descriptions/OrganizationDescription.ts
index 37120ee8e5..cc1556f2a0 100644
--- a/packages/nodes-base/nodes/Kitemaker/descriptions/OrganizationDescription.ts
+++ b/packages/nodes-base/nodes/Kitemaker/descriptions/OrganizationDescription.ts
@@ -13,7 +13,7 @@ export const organizationOperations: INodeProperties[] = [
{
name: 'Get',
value: 'get',
- description: 'Retrieve data on the logged-in user\'s organization.',
+ description: 'Retrieve data on the logged-in user\'s organization',
},
],
displayOptions: {
diff --git a/packages/nodes-base/nodes/Kitemaker/descriptions/SpaceDescription.ts b/packages/nodes-base/nodes/Kitemaker/descriptions/SpaceDescription.ts
index a8067d9a9c..bd4b7ef234 100644
--- a/packages/nodes-base/nodes/Kitemaker/descriptions/SpaceDescription.ts
+++ b/packages/nodes-base/nodes/Kitemaker/descriptions/SpaceDescription.ts
@@ -13,7 +13,7 @@ export const spaceOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
- description: `Retrieve data on all the spaces in the logged-in user's organization.`,
+ description: 'Retrieve data on all the spaces in the logged-in user\'s organization',
},
],
displayOptions: {
@@ -32,7 +32,7 @@ export const spaceFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -49,7 +49,7 @@ export const spaceFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
diff --git a/packages/nodes-base/nodes/Kitemaker/descriptions/UserDescription.ts b/packages/nodes-base/nodes/Kitemaker/descriptions/UserDescription.ts
index a789f11d6c..7af18317aa 100644
--- a/packages/nodes-base/nodes/Kitemaker/descriptions/UserDescription.ts
+++ b/packages/nodes-base/nodes/Kitemaker/descriptions/UserDescription.ts
@@ -13,7 +13,7 @@ export const userOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
- description: `Retrieve data on all the users in the logged-in user's organization.`,
+ description: 'Retrieve data on all the users in the logged-in user\'s organization',
},
],
displayOptions: {
@@ -32,7 +32,7 @@ export const userFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -49,7 +49,7 @@ export const userFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
diff --git a/packages/nodes-base/nodes/Kitemaker/descriptions/WorkItemDescription.ts b/packages/nodes-base/nodes/Kitemaker/descriptions/WorkItemDescription.ts
index 7c643dbb91..050a2fd08d 100644
--- a/packages/nodes-base/nodes/Kitemaker/descriptions/WorkItemDescription.ts
+++ b/packages/nodes-base/nodes/Kitemaker/descriptions/WorkItemDescription.ts
@@ -47,7 +47,7 @@ export const workItemFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'Title of the work item to create.',
+ description: 'Title of the work item to create',
displayOptions: {
show: {
resource: [
@@ -68,7 +68,7 @@ export const workItemFields: INodeProperties[] = [
},
default: [],
required: true,
- description: 'ID of the space to retrieve the work items from.',
+ description: 'ID of the space to retrieve the work items from',
displayOptions: {
show: {
resource: [
@@ -90,7 +90,7 @@ export const workItemFields: INodeProperties[] = [
},
default: [],
required: true,
- description: 'ID of the status to set on the item to create.',
+ description: 'ID of the status to set on the item to create',
displayOptions: {
show: {
resource: [
@@ -134,7 +134,7 @@ export const workItemFields: INodeProperties[] = [
name: 'effort',
type: 'options',
default: 'SMALL',
- description: 'Effort to set for the item to create.',
+ description: 'Effort to set for the item to create',
options: [
{
name: 'Small',
@@ -155,7 +155,7 @@ export const workItemFields: INodeProperties[] = [
name: 'impact',
type: 'options',
default: 'SMALL',
- description: 'Impact to set for the item to create.',
+ description: 'Impact to set for the item to create',
options: [
{
name: 'Small',
@@ -179,7 +179,7 @@ export const workItemFields: INodeProperties[] = [
loadOptionsMethod: 'getLabels',
},
default: [],
- description: 'ID of the label to set on the item to create.',
+ description: 'ID of the label to set on the item to create',
},
{
displayName: 'Member IDs',
@@ -189,7 +189,7 @@ export const workItemFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: [],
- description: 'ID of the user to assign to the item to create.',
+ description: 'ID of the user to assign to the item to create',
},
],
},
@@ -203,7 +203,7 @@ export const workItemFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'ID of the work item to retrieve.',
+ description: 'ID of the work item to retrieve',
displayOptions: {
show: {
resource: [
@@ -228,7 +228,7 @@ export const workItemFields: INodeProperties[] = [
},
default: [],
required: true,
- description: 'ID of the space to retrieve the work items from.',
+ description: 'ID of the space to retrieve the work items from',
displayOptions: {
show: {
resource: [
@@ -245,7 +245,7 @@ export const workItemFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -262,7 +262,7 @@ export const workItemFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -291,7 +291,7 @@ export const workItemFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'ID of the work item to update.',
+ description: 'ID of the work item to update',
displayOptions: {
show: {
resource: [
@@ -335,7 +335,7 @@ export const workItemFields: INodeProperties[] = [
name: 'effort',
type: 'options',
default: 'SMALL',
- description: 'Effort to set for the item to update.',
+ description: 'Effort to set for the item to update',
options: [
{
name: 'Small',
@@ -356,7 +356,7 @@ export const workItemFields: INodeProperties[] = [
name: 'impact',
type: 'options',
default: 'SMALL',
- description: 'Impact to set for the item to update.',
+ description: 'Impact to set for the item to update',
options: [
{
name: 'Small',
@@ -380,14 +380,14 @@ export const workItemFields: INodeProperties[] = [
loadOptionsMethod: 'getStatuses',
},
default: [],
- description: 'ID of the status to set on the item to update.',
+ description: 'ID of the status to set on the item to update',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'Title to set for the work item to update.',
+ description: 'Title to set for the work item to update',
},
],
},
diff --git a/packages/nodes-base/nodes/Lemlist/LemlistTrigger.node.ts b/packages/nodes-base/nodes/Lemlist/LemlistTrigger.node.ts
index 1e47644e06..79551a6e98 100644
--- a/packages/nodes-base/nodes/Lemlist/LemlistTrigger.node.ts
+++ b/packages/nodes-base/nodes/Lemlist/LemlistTrigger.node.ts
@@ -70,14 +70,14 @@ export class LemlistTrigger implements INodeType {
loadOptionsMethod: 'getCampaigns',
},
default: '',
- description: ` We'll call this hook only for this campaignId.`,
+ description: ' We\'ll call this hook only for this campaignId',
},
{
displayName: 'Is First',
name: 'isFirst',
type: 'boolean',
default: false,
- description: `We'll call this hook only the first time this activity happened.`,
+ description: 'We\'ll call this hook only the first time this activity happened',
},
],
},
diff --git a/packages/nodes-base/nodes/Lemlist/descriptions/ActivityDescription.ts b/packages/nodes-base/nodes/Lemlist/descriptions/ActivityDescription.ts
index 047a4a362a..7001d33ac7 100644
--- a/packages/nodes-base/nodes/Lemlist/descriptions/ActivityDescription.ts
+++ b/packages/nodes-base/nodes/Lemlist/descriptions/ActivityDescription.ts
@@ -34,7 +34,7 @@ export const activityFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -51,7 +51,7 @@ export const activityFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -96,14 +96,14 @@ export const activityFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCampaigns',
},
- description: 'ID of the campaign to retrieve activity for.',
+ description: 'ID of the campaign to retrieve activity for',
},
{
displayName: 'Type',
name: 'type',
type: 'options',
default: 'emailsOpened',
- description: 'Type of activity to retrieve.',
+ description: 'Type of activity to retrieve',
options: [
{
name: 'Emails Bounced',
diff --git a/packages/nodes-base/nodes/Lemlist/descriptions/CampaignDescription.ts b/packages/nodes-base/nodes/Lemlist/descriptions/CampaignDescription.ts
index b686886b22..d2456c38f6 100644
--- a/packages/nodes-base/nodes/Lemlist/descriptions/CampaignDescription.ts
+++ b/packages/nodes-base/nodes/Lemlist/descriptions/CampaignDescription.ts
@@ -34,7 +34,7 @@ export const campaignFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -51,7 +51,7 @@ export const campaignFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
diff --git a/packages/nodes-base/nodes/Lemlist/descriptions/LeadDescription.ts b/packages/nodes-base/nodes/Lemlist/descriptions/LeadDescription.ts
index d6d4233940..611e25896d 100644
--- a/packages/nodes-base/nodes/Lemlist/descriptions/LeadDescription.ts
+++ b/packages/nodes-base/nodes/Lemlist/descriptions/LeadDescription.ts
@@ -50,7 +50,7 @@ export const leadFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCampaigns',
},
- description: 'ID of the campaign to create the lead under.',
+ description: 'ID of the campaign to create the lead under',
displayOptions: {
show: {
resource: [
@@ -67,7 +67,7 @@ export const leadFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email of the lead to create.',
+ description: 'Email of the lead to create',
displayOptions: {
show: {
resource: [
@@ -101,56 +101,56 @@ export const leadFields: INodeProperties[] = [
name: 'companyName',
type: 'string',
default: '',
- description: 'Company name of the lead to create.',
+ description: 'Company name of the lead to create',
},
{
displayName: 'Deduplicate',
name: 'deduplicate',
type: 'boolean',
default: false,
- description: 'Do not insert if this email is already present in another campaign.',
+ description: 'Do not insert if this email is already present in another campaign',
},
{
displayName: 'First Name',
name: 'firstName',
type: 'string',
default: '',
- description: 'First name of the lead to create.',
+ description: 'First name of the lead to create',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
default: '',
- description: 'Last name of the lead to create.',
+ description: 'Last name of the lead to create',
},
{
displayName: 'Icebreaker',
name: 'icebreaker',
type: 'string',
default: '',
- description: 'Icebreaker of the lead to create.',
+ description: 'Icebreaker of the lead to create',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number of the lead to create.',
+ description: 'Phone number of the lead to create',
},
{
displayName: 'Picture URL',
name: 'picture',
type: 'string',
default: '',
- description: 'Picture url of the lead to create.',
+ description: 'Picture url of the lead to create',
},
{
displayName: 'LinkedIn URL',
name: 'linkedinUrl',
type: 'string',
default: '',
- description: 'LinkedIn url of the lead to create.',
+ description: 'LinkedIn url of the lead to create',
},
],
},
@@ -167,7 +167,7 @@ export const leadFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCampaigns',
},
- description: 'ID of the campaign to remove the lead from.',
+ description: 'ID of the campaign to remove the lead from',
displayOptions: {
show: {
resource: [
@@ -184,7 +184,7 @@ export const leadFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email of the lead to delete.',
+ description: 'Email of the lead to delete',
displayOptions: {
show: {
resource: [
@@ -205,7 +205,7 @@ export const leadFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email of the lead to retrieve.',
+ description: 'Email of the lead to retrieve',
displayOptions: {
show: {
resource: [
@@ -230,7 +230,7 @@ export const leadFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCampaigns',
},
- description: 'ID of the campaign to unsubscribe the lead from.',
+ description: 'ID of the campaign to unsubscribe the lead from',
displayOptions: {
show: {
resource: [
@@ -247,7 +247,7 @@ export const leadFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email of the lead to unsubscribe.',
+ description: 'Email of the lead to unsubscribe',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/Lemlist/descriptions/UnsubscribeDescription.ts b/packages/nodes-base/nodes/Lemlist/descriptions/UnsubscribeDescription.ts
index 1bb91207d2..5cc5c6aae6 100644
--- a/packages/nodes-base/nodes/Lemlist/descriptions/UnsubscribeDescription.ts
+++ b/packages/nodes-base/nodes/Lemlist/descriptions/UnsubscribeDescription.ts
@@ -42,7 +42,7 @@ export const unsubscribeFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email to add to the unsubscribes.',
+ description: 'Email to add to the unsubscribes',
displayOptions: {
show: {
resource: [
@@ -63,7 +63,7 @@ export const unsubscribeFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email to delete from the unsubscribes.',
+ description: 'Email to delete from the unsubscribes',
displayOptions: {
show: {
resource: [
@@ -84,7 +84,7 @@ export const unsubscribeFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -101,7 +101,7 @@ export const unsubscribeFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
diff --git a/packages/nodes-base/nodes/Line/NotificationDescription.ts b/packages/nodes-base/nodes/Line/NotificationDescription.ts
index 1481641153..82f38b72bc 100644
--- a/packages/nodes-base/nodes/Line/NotificationDescription.ts
+++ b/packages/nodes-base/nodes/Line/NotificationDescription.ts
@@ -125,7 +125,7 @@ export const notificationFields: INodeProperties[] = [
},
},
default: 'data',
- description: `Name of the property that holds the binary data.`,
+ description: 'Name of the property that holds the binary data',
},
],
},
diff --git a/packages/nodes-base/nodes/LingvaNex/ActivityDescription.ts b/packages/nodes-base/nodes/LingvaNex/ActivityDescription.ts
index 7ef55dd98e..6328afc7ea 100644
--- a/packages/nodes-base/nodes/LingvaNex/ActivityDescription.ts
+++ b/packages/nodes-base/nodes/LingvaNex/ActivityDescription.ts
@@ -193,7 +193,7 @@ export const activityFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -217,7 +217,7 @@ export const activityFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -241,7 +241,7 @@ export const activityFields: INodeProperties[] = [
name: 'memberId',
type: 'string',
default: '',
- description: 'When set the post will be filtered by the member id.',
+ description: 'When set the post will be filtered by the member id',
},
],
},
diff --git a/packages/nodes-base/nodes/LinkedIn/PostDescription.ts b/packages/nodes-base/nodes/LinkedIn/PostDescription.ts
index 0cd26572dd..4cc8a03cf9 100644
--- a/packages/nodes-base/nodes/LinkedIn/PostDescription.ts
+++ b/packages/nodes-base/nodes/LinkedIn/PostDescription.ts
@@ -33,7 +33,7 @@ export const postFields: INodeProperties[] = [
name: 'postAs',
type: 'options',
default: '',
- description: 'If to post on behalf of a user or an organization.',
+ description: 'If to post on behalf of a user or an organization',
options: [
{
name: 'Person',
@@ -54,7 +54,7 @@ export const postFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'Person as which the post should be posted as.',
+ description: 'Person as which the post should be posted as',
displayOptions: {
show: {
operation: [
@@ -75,7 +75,7 @@ export const postFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: '1234567',
- description: 'URN of Organization as which the post should be posted as.',
+ description: 'URN of Organization as which the post should be posted as',
displayOptions: {
show: {
operation: [
@@ -95,7 +95,7 @@ export const postFields: INodeProperties[] = [
name: 'text',
type: 'string',
default: '',
- description: 'The primary content of the post.',
+ description: 'The primary content of the post',
displayOptions: {
show: {
operation: [
@@ -183,7 +183,7 @@ export const postFields: INodeProperties[] = [
name: 'description',
type: 'string',
default: '',
- description: 'Provide a short description for your image or article.',
+ description: 'Provide a short description for your image or article',
displayOptions: {
show: {
'/shareMediaCategory': [
@@ -198,7 +198,7 @@ export const postFields: INodeProperties[] = [
name: 'originalUrl',
type: 'string',
default: '',
- description: 'Provide the URL of the article you would like to share here.',
+ description: 'Provide the URL of the article you would like to share here',
displayOptions: {
show: {
'/shareMediaCategory': [
@@ -212,7 +212,7 @@ export const postFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Customize the title of your image or article.',
+ description: 'Customize the title of your image or article',
displayOptions: {
show: {
'/shareMediaCategory': [
@@ -227,7 +227,7 @@ export const postFields: INodeProperties[] = [
name: 'visibility',
type: 'options',
default: 'PUBLIC',
- description: 'Dictate if post will be seen by the public or only connections.',
+ description: 'Dictate if post will be seen by the public or only connections',
displayOptions: {
show: {
'/postAs': [
diff --git a/packages/nodes-base/nodes/MQTT/Mqtt.node.ts b/packages/nodes-base/nodes/MQTT/Mqtt.node.ts
index a5b371927b..a3435ee536 100644
--- a/packages/nodes-base/nodes/MQTT/Mqtt.node.ts
+++ b/packages/nodes-base/nodes/MQTT/Mqtt.node.ts
@@ -48,7 +48,7 @@ export class Mqtt implements INodeType {
name: 'sendInputData',
type: 'boolean',
default: true,
- description: 'Send the the data the node receives as JSON.',
+ description: 'Send the the data the node receives as JSON',
},
{
displayName: 'Message',
diff --git a/packages/nodes-base/nodes/MQTT/MqttTrigger.node.ts b/packages/nodes-base/nodes/MQTT/MqttTrigger.node.ts
index 5e2f8e1a70..74f7670779 100644
--- a/packages/nodes-base/nodes/MQTT/MqttTrigger.node.ts
+++ b/packages/nodes-base/nodes/MQTT/MqttTrigger.node.ts
@@ -55,14 +55,14 @@ export class MqttTrigger implements INodeType {
name: 'jsonParseBody',
type: 'boolean',
default: false,
- description: 'Try to parse the message to an object.',
+ description: 'Try to parse the message to an object',
},
{
displayName: 'Only Message',
name: 'onlyMessage',
type: 'boolean',
default: false,
- description: 'Returns only the message property.',
+ description: 'Returns only the message property',
},
],
},
diff --git a/packages/nodes-base/nodes/Mailcheck/Mailcheck.node.ts b/packages/nodes-base/nodes/Mailcheck/Mailcheck.node.ts
index 6f5060b519..8ec615b77b 100644
--- a/packages/nodes-base/nodes/Mailcheck/Mailcheck.node.ts
+++ b/packages/nodes-base/nodes/Mailcheck/Mailcheck.node.ts
@@ -80,7 +80,7 @@ export class Mailcheck implements INodeType {
},
},
default: '',
- description: 'Email address to check.',
+ description: 'Email address to check',
},
],
};
diff --git a/packages/nodes-base/nodes/Mailchimp/Mailchimp.node.ts b/packages/nodes-base/nodes/Mailchimp/Mailchimp.node.ts
index 5d5c0b5f1f..827de4eb72 100644
--- a/packages/nodes-base/nodes/Mailchimp/Mailchimp.node.ts
+++ b/packages/nodes-base/nodes/Mailchimp/Mailchimp.node.ts
@@ -314,7 +314,7 @@ export class Mailchimp implements INodeType {
},
},
default: '',
- description: 'Email address for a subscriber.',
+ description: 'Email address for a subscriber',
},
{
displayName: 'Status',
@@ -354,7 +354,7 @@ export class Mailchimp implements INodeType {
},
],
default: '',
- description: `Subscriber's current status.`,
+ description: 'Subscriber\'s current status',
},
{
displayName: 'JSON Parameters',
@@ -411,35 +411,35 @@ export class Mailchimp implements INodeType {
name: 'language',
type: 'string',
default: '',
- description: `If set/detected, the subscriber's language.`,
+ description: 'If set/detected, the subscriber\'s language',
},
{
displayName: 'Opt-in IP',
name: 'ipOptIn',
type: 'string',
default: '',
- description: 'The IP address the subscriber used to confirm their opt-in status.',
+ description: 'The IP address the subscriber used to confirm their opt-in status',
},
{
displayName: 'Signup IP',
name: 'ipSignup',
type: 'string',
default: '',
- description: 'IP address the subscriber signed up from.',
+ description: 'IP address the subscriber signed up from',
},
{
displayName: 'Signup Timestamp',
name: 'timestampSignup',
type: 'dateTime',
default: '',
- description: 'The date and time the subscriber signed up for the list in ISO 8601 format.',
+ description: 'The date and time the subscriber signed up for the list in ISO 8601 format',
},
{
displayName: 'Tags',
name: 'tags',
type: 'string',
default: '',
- description: `The tags that are associated with a member separeted by ,.`,
+ description: 'The tags that are associated with a member separeted by ,',
},
{
displayName: 'Vip',
@@ -453,7 +453,7 @@ export class Mailchimp implements INodeType {
name: 'timestampOpt',
type: 'dateTime',
default: '',
- description: `The date and time the subscribe confirmed their opt-in status in ISO 8601 format.`,
+ description: 'The date and time the subscribe confirmed their opt-in status in ISO 8601 format',
},
],
},
@@ -487,7 +487,7 @@ export class Mailchimp implements INodeType {
name: 'latitude',
type: 'string',
required: true,
- description: 'The location latitude.',
+ description: 'The location latitude',
default: '',
},
{
@@ -495,7 +495,7 @@ export class Mailchimp implements INodeType {
name: 'longitude',
type: 'string',
required: true,
- description: 'The location longitude.',
+ description: 'The location longitude',
default: '',
},
],
@@ -524,7 +524,7 @@ export class Mailchimp implements INodeType {
],
},
},
- description: 'An individual merge var and value for a member.',
+ description: 'An individual merge var and value for a member',
options: [
{
name: 'mergeFieldsValues',
@@ -553,7 +553,7 @@ export class Mailchimp implements INodeType {
required: true,
type: 'string',
default: '',
- description: 'Merge field value.',
+ description: 'Merge field value',
},
],
},
@@ -791,14 +791,14 @@ export class Mailchimp implements INodeType {
name: 'fields',
type: 'string',
default: '',
- description: 'A comma-separated list of fields to return.',
+ description: 'A comma-separated list of fields to return',
},
{
displayName: 'Exclude Fields',
name: 'excludeFields',
type: 'string',
default: '',
- description: 'A comma-separated list of fields to exclude.',
+ description: 'A comma-separated list of fields to exclude',
},
],
},
@@ -842,7 +842,7 @@ export class Mailchimp implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -866,7 +866,7 @@ export class Mailchimp implements INodeType {
maxValue: 1000,
},
default: 500,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -890,7 +890,7 @@ export class Mailchimp implements INodeType {
name: 'beforeLastChanged',
type: 'dateTime',
default: '',
- description: 'Restrict results to subscribers whose information changed before the set timeframe.',
+ description: 'Restrict results to subscribers whose information changed before the set timeframe',
},
{
displayName: 'Before Timestamp Opt',
@@ -957,14 +957,14 @@ export class Mailchimp implements INodeType {
},
],
default: '',
- description: `Subscriber's current status.`,
+ description: 'Subscriber\'s current status',
},
{
displayName: 'Since Last Changed',
name: 'sinceLastChanged',
type: 'dateTime',
default: '',
- description: 'Restrict results to subscribers whose information changed after the set timeframe.',
+ description: 'Restrict results to subscribers whose information changed after the set timeframe',
},
],
},
@@ -1009,7 +1009,7 @@ export class Mailchimp implements INodeType {
},
},
default: '',
- description: 'Email address of the subscriber.',
+ description: 'Email address of the subscriber',
},
{
displayName: 'JSON Parameters',
@@ -1124,7 +1124,7 @@ export class Mailchimp implements INodeType {
name: 'language',
type: 'string',
default: '',
- description: `If set/detected, the subscriber's language.`,
+ description: 'If set/detected, the subscriber\'s language',
},
{
displayName: 'Merge Fields',
@@ -1148,7 +1148,7 @@ export class Mailchimp implements INodeType {
],
},
},
- description: 'An individual merge var and value for a member.',
+ description: 'An individual merge var and value for a member',
options: [
{
name: 'mergeFieldsValues',
@@ -1177,7 +1177,7 @@ export class Mailchimp implements INodeType {
required: true,
type: 'string',
default: '',
- description: 'Merge field value.',
+ description: 'Merge field value',
},
],
},
@@ -1188,21 +1188,21 @@ export class Mailchimp implements INodeType {
name: 'ipOptIn',
type: 'string',
default: '',
- description: 'The IP address the subscriber used to confirm their opt-in status.',
+ description: 'The IP address the subscriber used to confirm their opt-in status',
},
{
displayName: 'Signup IP',
name: 'ipSignup',
type: 'string',
default: '',
- description: 'IP address the subscriber signed up from.',
+ description: 'IP address the subscriber signed up from',
},
{
displayName: 'Signup Timestamp',
name: 'timestampSignup',
type: 'dateTime',
default: '',
- description: 'The date and time the subscriber signed up for the list in ISO 8601 format.',
+ description: 'The date and time the subscriber signed up for the list in ISO 8601 format',
},
{
displayName: 'Skip Merge Validation',
@@ -1239,7 +1239,7 @@ export class Mailchimp implements INodeType {
},
],
default: '',
- description: `Subscriber's current status.`,
+ description: 'Subscriber\'s current status',
},
{
displayName: 'Vip',
@@ -1278,7 +1278,7 @@ export class Mailchimp implements INodeType {
name: 'latitude',
type: 'string',
required: true,
- description: 'The location latitude.',
+ description: 'The location latitude',
default: '',
},
{
@@ -1286,7 +1286,7 @@ export class Mailchimp implements INodeType {
name: 'longitude',
type: 'string',
required: true,
- description: 'The location longitude.',
+ description: 'The location longitude',
default: '',
},
],
@@ -1298,7 +1298,7 @@ export class Mailchimp implements INodeType {
name: 'timestampOpt',
type: 'dateTime',
default: '',
- description: `The date and time the subscribe confirmed their opt-in status in ISO 8601 format.`,
+ description: 'The date and time the subscribe confirmed their opt-in status in ISO 8601 format',
},
],
},
@@ -1411,7 +1411,7 @@ export class Mailchimp implements INodeType {
},
},
default: '',
- description: 'Email address of the subscriber.',
+ description: 'Email address of the subscriber',
},
{
displayName: 'Tags',
@@ -1525,7 +1525,7 @@ export class Mailchimp implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1549,7 +1549,7 @@ export class Mailchimp implements INodeType {
maxValue: 1000,
},
default: 500,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* campaign:getAll */
@@ -1569,7 +1569,7 @@ export class Mailchimp implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1593,7 +1593,7 @@ export class Mailchimp implements INodeType {
maxValue: 1000,
},
default: 10,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -1617,14 +1617,14 @@ export class Mailchimp implements INodeType {
name: 'beforeCreateTime',
type: 'dateTime',
default: '',
- description: 'Restrict the response to campaigns created before the set time.',
+ description: 'Restrict the response to campaigns created before the set time',
},
{
displayName: 'Before Send Time',
name: 'beforeSendTime',
type: 'dateTime',
default: '',
- description: 'Restrict the response to campaigns sent before the set time.',
+ description: 'Restrict the response to campaigns sent before the set time',
},
{
displayName: 'Exclude Fields',
@@ -1634,7 +1634,7 @@ export class Mailchimp implements INodeType {
loadOptionsMethod: 'getCampaignsFields',
},
default: [],
- description: 'A comma-separated list of fields to exclude.',
+ description: 'A comma-separated list of fields to exclude',
},
{
displayName: 'Fields',
@@ -1651,7 +1651,7 @@ export class Mailchimp implements INodeType {
'campaigns.settings.reply_to',
'campaigns.settings.title',
],
- description: 'A comma-separated list of fields to return.',
+ description: 'A comma-separated list of fields to return',
},
{
displayName: 'List ID',
@@ -1668,14 +1668,14 @@ export class Mailchimp implements INodeType {
name: 'sinceCreateTime',
type: 'dateTime',
default: '',
- description: 'Restrict the response to campaigns created after the set time.',
+ description: 'Restrict the response to campaigns created after the set time',
},
{
displayName: 'Since Send Time',
name: 'sinceSendTime',
type: 'dateTime',
default: '',
- description: 'Restrict the response to campaigns sent after the set time.',
+ description: 'Restrict the response to campaigns sent after the set time',
},
{
displayName: 'Sort Direction',
@@ -1692,7 +1692,7 @@ export class Mailchimp implements INodeType {
},
],
default: '',
- description: 'Determines the order direction for sorted results.',
+ description: 'Determines the order direction for sorted results',
},
{
displayName: 'Sort Field',
@@ -1709,7 +1709,7 @@ export class Mailchimp implements INodeType {
},
],
default: '',
- description: 'Returns files sorted by the specified field.',
+ description: 'Returns files sorted by the specified field',
},
{
displayName: 'Status',
@@ -1734,7 +1734,7 @@ export class Mailchimp implements INodeType {
},
],
default: '',
- description: 'The status of the campaign.',
+ description: 'The status of the campaign',
},
],
},
diff --git a/packages/nodes-base/nodes/Mailchimp/MailchimpTrigger.node.ts b/packages/nodes-base/nodes/Mailchimp/MailchimpTrigger.node.ts
index 119d63265b..04e05790f6 100644
--- a/packages/nodes-base/nodes/Mailchimp/MailchimpTrigger.node.ts
+++ b/packages/nodes-base/nodes/Mailchimp/MailchimpTrigger.node.ts
@@ -92,7 +92,7 @@ export class MailchimpTrigger implements INodeType {
type: 'options',
required: true,
default: '',
- description: 'The list that is gonna fire the event.',
+ description: 'The list that is gonna fire the event',
typeOptions: {
loadOptionsMethod: 'getLists',
},
@@ -104,37 +104,37 @@ export class MailchimpTrigger implements INodeType {
type: 'multiOptions',
required: true,
default: [],
- description: 'The events that can trigger the webhook and whether they are enabled.',
+ description: 'The events that can trigger the webhook and whether they are enabled',
options: [
{
name: 'Subscribe',
value: 'subscribe',
- description: 'Whether the webhook is triggered when a list subscriber is added.',
+ description: 'Whether the webhook is triggered when a list subscriber is added',
},
{
name: 'Unsubscribe',
value: 'unsubscribe',
- description: 'Whether the webhook is triggered when a list member unsubscribes.',
+ description: 'Whether the webhook is triggered when a list member unsubscribes',
},
{
name: 'Profile Updated',
value: 'profile',
- description: `Whether the webhook is triggered when a subscriber's profile is updated.`,
+ description: 'Whether the webhook is triggered when a subscriber\'s profile is updated',
},
{
name: 'Cleaned',
value: 'cleaned',
- description: `Whether the webhook is triggered when a subscriber's email address is cleaned from the list.`,
+ description: 'Whether the webhook is triggered when a subscriber\'s email address is cleaned from the list',
},
{
name: 'Email Address Updated',
value: 'upemail',
- description: `Whether the webhook is triggered when a subscriber's email address is changed.`,
+ description: 'Whether the webhook is triggered when a subscriber\'s email address is changed',
},
{
name: 'Campaign Sent',
value: 'campaign',
- description: `Whether the webhook is triggered when a campaign is sent or cancelled.`,
+ description: 'Whether the webhook is triggered when a campaign is sent or cancelled',
},
],
},
@@ -144,22 +144,22 @@ export class MailchimpTrigger implements INodeType {
type: 'multiOptions',
required: true,
default: [],
- description: 'The possible sources of any events that can trigger the webhook and whether they are enabled.',
+ description: 'The possible sources of any events that can trigger the webhook and whether they are enabled',
options: [
{
name: 'User',
value: 'user',
- description: 'Whether the webhook is triggered by subscriber-initiated actions.',
+ description: 'Whether the webhook is triggered by subscriber-initiated actions',
},
{
name: 'Admin',
value: 'admin',
- description: 'Whether the webhook is triggered by admin-initiated actions in the web interface.',
+ description: 'Whether the webhook is triggered by admin-initiated actions in the web interface',
},
{
name: 'API',
value: 'api',
- description: `Whether the webhook is triggered by actions initiated via the API.`,
+ description: 'Whether the webhook is triggered by actions initiated via the API',
},
],
},
diff --git a/packages/nodes-base/nodes/MailerLite/MailerLiteTrigger.node.ts b/packages/nodes-base/nodes/MailerLite/MailerLiteTrigger.node.ts
index ac3c227621..e4815ab2b0 100644
--- a/packages/nodes-base/nodes/MailerLite/MailerLiteTrigger.node.ts
+++ b/packages/nodes-base/nodes/MailerLite/MailerLiteTrigger.node.ts
@@ -50,62 +50,62 @@ export class MailerLiteTrigger implements INodeType {
{
name: 'Campaign Sent',
value: 'campaign.sent',
- description: `Fired when campaign is sent.`,
+ description: 'Fired when campaign is sent',
},
{
name: 'Subscriber Added to Group',
value: 'subscriber.add_to_group',
- description: `Fired when a subscriber is added to a group.`,
+ description: 'Fired when a subscriber is added to a group',
},
{
name: 'Subscriber Added Throught Webform',
value: 'subscriber.added_through_webform',
- description: `Fired when a subscriber is added though a form.`,
+ description: 'Fired when a subscriber is added though a form',
},
{
name: 'Subscriber Autonomation Completed',
value: 'subscriber.automation_complete',
- description: `Fired when subscriber finishes automation.`,
+ description: 'Fired when subscriber finishes automation',
},
{
name: 'Subscriber Autonomation Triggered',
value: 'subscriber.automation_triggered',
- description: `Fired when subscriber starts automation.`,
+ description: 'Fired when subscriber starts automation',
},
{
name: 'Subscriber Bounced',
value: 'subscriber.bounced',
- description: `Fired when an email address bounces.`,
+ description: 'Fired when an email address bounces',
},
{
name: 'Subscriber Created',
value: 'subscriber.create',
- description: 'Fired when a new subscriber is added to an account.',
+ description: 'Fired when a new subscriber is added to an account',
},
{
name: 'Subscriber Complained',
value: 'subscriber.complaint',
- description: `Fired when subscriber marks a campaign as a spam.`,
+ description: 'Fired when subscriber marks a campaign as a spam',
},
{
name: 'Subscriber Removed from Group',
value: 'subscriber.remove_from_group',
- description: `Fired when a subscriber is removed from a group.`,
+ description: 'Fired when a subscriber is removed from a group',
},
{
name: 'Subscriber Unsubscribe',
value: 'subscriber.unsubscribe',
- description: `Fired when a subscriber becomes unsubscribed.`,
+ description: 'Fired when a subscriber becomes unsubscribed',
},
{
name: 'Subscriber Updated',
value: 'subscriber.update',
- description: `Fired when any of the subscriber's custom fields are updated.`,
+ description: 'Fired when any of the subscriber\'s custom fields are updated',
},
],
required: true,
default: [],
- description: 'The events to listen to.',
+ description: 'The events to listen to',
},
],
};
diff --git a/packages/nodes-base/nodes/MailerLite/SubscriberDescription.ts b/packages/nodes-base/nodes/MailerLite/SubscriberDescription.ts
index fb48d97cbe..4f802bdded 100644
--- a/packages/nodes-base/nodes/MailerLite/SubscriberDescription.ts
+++ b/packages/nodes-base/nodes/MailerLite/SubscriberDescription.ts
@@ -62,7 +62,7 @@ export const subscriberFields: INodeProperties[] = [
],
},
},
- description: 'Email of new subscriber.',
+ description: 'Email of new subscriber',
},
{
displayName: 'Additional Fields',
@@ -116,14 +116,14 @@ export const subscriberFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -140,7 +140,7 @@ export const subscriberFields: INodeProperties[] = [
name: 'resubscribe',
type: 'boolean',
default: false,
- description: 'Reactivate subscriber if value is true.',
+ description: 'Reactivate subscriber if value is true',
},
{
displayName: 'Signup IP',
@@ -196,7 +196,7 @@ export const subscriberFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email of subscriber.',
+ description: 'Email of subscriber',
},
{
displayName: 'Update Fields',
@@ -238,14 +238,14 @@ export const subscriberFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -262,7 +262,7 @@ export const subscriberFields: INodeProperties[] = [
name: 'resend_autoresponders',
type: 'boolean',
default: false,
- description: 'Defines if it is needed to resend autoresponders.',
+ description: 'Defines if it is needed to resend autoresponders',
},
{
displayName: 'Type',
@@ -306,7 +306,7 @@ export const subscriberFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email of subscriber to delete.',
+ description: 'Email of subscriber to delete',
},
/* -------------------------------------------------------------------------- */
@@ -328,7 +328,7 @@ export const subscriberFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email of subscriber to get.',
+ description: 'Email of subscriber to get',
},
/* -------------------------------------------------------------------------- */
/* subscriber:getAll */
@@ -348,7 +348,7 @@ export const subscriberFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -372,7 +372,7 @@ export const subscriberFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/Mailgun/Mailgun.node.ts b/packages/nodes-base/nodes/Mailgun/Mailgun.node.ts
index 62b4ab38d2..9a191ee9e0 100644
--- a/packages/nodes-base/nodes/Mailgun/Mailgun.node.ts
+++ b/packages/nodes-base/nodes/Mailgun/Mailgun.node.ts
@@ -36,7 +36,7 @@ export class Mailgun implements INodeType {
default: '',
required: true,
placeholder: 'Admin ',
- description: 'Email address of the sender optional with name.',
+ description: 'Email address of the sender optional with name',
},
{
displayName: 'To Email',
@@ -69,7 +69,7 @@ export class Mailgun implements INodeType {
type: 'string',
default: '',
placeholder: 'My subject line',
- description: 'Subject line of the email.',
+ description: 'Subject line of the email',
},
{
displayName: 'Text',
@@ -80,7 +80,7 @@ export class Mailgun implements INodeType {
rows: 5,
},
default: '',
- description: 'Plain text message of email.',
+ description: 'Plain text message of email',
},
{
displayName: 'HTML',
@@ -90,7 +90,7 @@ export class Mailgun implements INodeType {
rows: 5,
},
default: '',
- description: 'HTML text message of email.',
+ description: 'HTML text message of email',
},
{
displayName: 'Attachments',
diff --git a/packages/nodes-base/nodes/Mailjet/EmailDescription.ts b/packages/nodes-base/nodes/Mailjet/EmailDescription.ts
index c0721f5144..cc887b162e 100644
--- a/packages/nodes-base/nodes/Mailjet/EmailDescription.ts
+++ b/packages/nodes-base/nodes/Mailjet/EmailDescription.ts
@@ -79,7 +79,7 @@ export const emailFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'My subject line',
- description: 'Subject line of the email.',
+ description: 'Subject line of the email',
},
{
displayName: 'Text',
@@ -99,7 +99,7 @@ export const emailFields: INodeProperties[] = [
},
},
default: '',
- description: 'Plain text message of email.',
+ description: 'Plain text message of email',
},
{
displayName: 'HTML',
@@ -119,7 +119,7 @@ export const emailFields: INodeProperties[] = [
},
},
default: '',
- description: 'HTML text message of email.',
+ description: 'HTML text message of email',
},
{
displayName: 'JSON Parameters',
@@ -214,7 +214,7 @@ export const emailFields: INodeProperties[] = [
description: 'Enable tracking for this message',
},
],
- description: 'Enable or disable open tracking on this message.',
+ description: 'Enable or disable open tracking on this message',
default: 'account_default',
},
{
@@ -238,7 +238,7 @@ export const emailFields: INodeProperties[] = [
description: 'Enable tracking for this message',
},
],
- description: 'Enable or disable open tracking on this message.',
+ description: 'Enable or disable open tracking on this message',
default: 'account_default',
},
],
@@ -264,7 +264,7 @@ export const emailFields: INodeProperties[] = [
},
},
default: '',
- description: 'HTML text message of email.',
+ description: 'HTML text message of email',
},
{
displayName: 'Variables',
@@ -407,14 +407,14 @@ export const emailFields: INodeProperties[] = [
displayName: 'Bcc Email',
name: 'bccEmail',
type: 'string',
- description: 'BCC Recipients of the email separated by ,.',
+ description: 'BCC Recipients of the email separated by ,',
default: '',
},
{
displayName: 'Cc Email',
name: 'ccEmail',
type: 'string',
- description: 'Cc recipients of the email separated by ,.',
+ description: 'Cc recipients of the email separated by ,',
default: '',
},
{
@@ -446,14 +446,14 @@ export const emailFields: INodeProperties[] = [
displayName: 'Track Opens',
name: 'trackOpens',
type: 'string',
- description: 'Enable or disable open tracking on this message.',
+ description: 'Enable or disable open tracking on this message',
default: '',
},
{
displayName: 'Track Clicks',
name: 'trackClicks',
type: 'string',
- description: 'Enable or disable open tracking on this message.',
+ description: 'Enable or disable open tracking on this message',
default: '',
},
{
@@ -528,6 +528,6 @@ export const emailFields: INodeProperties[] = [
},
},
default: '',
- description: 'HTML text message of email.',
+ description: 'HTML text message of email',
},
];
diff --git a/packages/nodes-base/nodes/Mailjet/MailjetTrigger.node.ts b/packages/nodes-base/nodes/Mailjet/MailjetTrigger.node.ts
index 70f67dcd18..c352ca731f 100644
--- a/packages/nodes-base/nodes/Mailjet/MailjetTrigger.node.ts
+++ b/packages/nodes-base/nodes/Mailjet/MailjetTrigger.node.ts
@@ -74,7 +74,7 @@ export class MailjetTrigger implements INodeType {
value: 'unsub',
},
],
- description: 'Determines which resource events the webhook is triggered for.',
+ description: 'Determines which resource events the webhook is triggered for',
},
],
diff --git a/packages/nodes-base/nodes/Mandrill/Mandrill.node.ts b/packages/nodes-base/nodes/Mandrill/Mandrill.node.ts
index b556af02e7..3bfe234287 100644
--- a/packages/nodes-base/nodes/Mandrill/Mandrill.node.ts
+++ b/packages/nodes-base/nodes/Mandrill/Mandrill.node.ts
@@ -126,7 +126,7 @@ export class Mandrill implements INodeType {
{
name: 'Message',
value: 'message',
- description: 'Send a message.',
+ description: 'Send a message',
},
],
default: 'message',
@@ -147,12 +147,12 @@ export class Mandrill implements INodeType {
{
name: 'Send template',
value: 'sendTemplate',
- description: 'Send message based on template.',
+ description: 'Send message based on template',
},
{
name: 'Send HTML',
value: 'sendHtml',
- description: 'Send message based on HTML.',
+ description: 'Send message based on HTML',
},
],
default: 'sendTemplate',
@@ -184,7 +184,7 @@ export class Mandrill implements INodeType {
default: '',
required: true,
placeholder: 'Admin ',
- description: 'Email address of the sender optional with name.',
+ description: 'Email address of the sender optional with name',
displayOptions: {
show: {
operation: [
@@ -252,14 +252,14 @@ export class Mandrill implements INodeType {
name: 'autoText',
type: 'boolean',
default: false,
- description: 'Whether or not to automatically generate a text part for messages that are not given text.',
+ description: 'Whether or not to automatically generate a text part for messages that are not given text',
},
{
displayName: 'Auto HTML',
name: 'autoHtml',
type: 'boolean',
default: false,
- description: 'Whether or not to automatically generate an HTML part for messages that are not given HTML.',
+ description: 'Whether or not to automatically generate an HTML part for messages that are not given HTML',
},
{
displayName: 'BCC Address',
@@ -267,7 +267,7 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: 'message.bcc_address@example.com',
- description: `An optional address to receive an exact copy of each recipient's email.`,
+ description: 'An optional address to receive an exact copy of each recipient\'s email',
},
{
displayName: 'From name',
@@ -275,7 +275,7 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: 'John Doe',
- description: 'Optional from name to be used.',
+ description: 'Optional from name to be used',
},
{
displayName: 'Google Analytics Campaign',
@@ -291,7 +291,7 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: '',
- description: `An array of strings separated by a comma (,) indicating for which any matching URLs will automatically have Google Analytics parameters appended to their query string automatically.`,
+ description: 'An array of strings separated by a comma (,) indicating for which any matching URLs will automatically have Google Analytics parameters appended to their query string automatically',
},
{
displayName: 'HTML',
@@ -302,21 +302,21 @@ export class Mandrill implements INodeType {
rows: 5,
},
options: [],
- description: 'The html you want to send.',
+ description: 'The html you want to send',
},
{
displayName: 'Important',
name: 'important',
type: 'boolean',
default: false,
- description: 'Whether or not this message is important, and should be delivered ahead of non-important messages.',
+ description: 'Whether or not this message is important, and should be delivered ahead of non-important messages',
},
{
displayName: 'Inline CSS',
name: 'inlineCss',
type: 'boolean',
default: false,
- description: 'Whether or not to automatically inline all CSS styles provided in the message HTML - only for HTML documents less than 256KB in size.',
+ description: 'Whether or not to automatically inline all CSS styles provided in the message HTML - only for HTML documents less than 256KB in size',
},
{
displayName: 'Ip Pool',
@@ -331,7 +331,7 @@ export class Mandrill implements INodeType {
name: 'preserveRecipients',
type: 'boolean',
default: false,
- description: 'Whether or not to expose all recipients in to "To" header for each email.',
+ description: 'Whether or not to expose all recipients in to "To" header for each email',
},
{
displayName: 'Return Path Domain',
@@ -339,7 +339,7 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: '',
- description: `A custom domain to use for the messages's return-path.`,
+ description: 'A custom domain to use for the messages\'s return-path',
},
{
displayName: 'Sent At',
@@ -355,7 +355,7 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: '',
- description: `A custom domain to use for SPF/DKIM signing instead of mandrill(for "via" or "on behalf of" in email clients).`,
+ description: 'A custom domain to use for SPF/DKIM signing instead of mandrill(for "via" or "on behalf of" in email clients)',
},
{
displayName: 'Subaccount',
@@ -371,7 +371,7 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: 'My subject line',
- description: 'Subject line of the email.',
+ description: 'Subject line of the email',
},
{
displayName: 'Tags',
@@ -390,21 +390,21 @@ export class Mandrill implements INodeType {
rows: 5,
},
options: [],
- description: 'Example text content.',
+ description: 'Example text content',
},
{
displayName: 'Track Clicks',
name: 'trackClicks',
type: 'boolean',
default: false,
- description: 'Whether or not to turn on click tracking for the message.',
+ description: 'Whether or not to turn on click tracking for the message',
},
{
displayName: 'Track Opens',
name: 'trackOpens',
type: 'boolean',
default: false,
- description: 'Whether or not to turn on open tracking for the message.',
+ description: 'Whether or not to turn on open tracking for the message',
},
{
displayName: 'Tracking Domain',
@@ -412,21 +412,21 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: '',
- description: `A custom domain to use for tracking opens and clicks instead of mandrillapp.com .`,
+ description: 'A custom domain to use for tracking opens and clicks instead of mandrillapp.com ',
},
{
displayName: 'Url Strip Qs',
name: 'urlStripQs',
type: 'boolean',
default: false,
- description: 'Whether or not to strip the query string from URLs when aggregating tracked URL data.',
+ description: 'Whether or not to strip the query string from URLs when aggregating tracked URL data',
},
{
displayName: 'View Content Link',
name: 'viewContentLink',
type: 'boolean',
default: false,
- description: 'Set to false to remove content logging for sensitive emails.',
+ description: 'Set to false to remove content logging for sensitive emails',
},
],
},
@@ -523,7 +523,7 @@ export class Mandrill implements INodeType {
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -599,7 +599,7 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: 'text/plain',
- description: 'The MIME type of the attachment.',
+ description: 'The MIME type of the attachment',
},
{
displayName: 'Name',
@@ -607,7 +607,7 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: 'myfile.txt',
- description: 'The file name of the attachment.',
+ description: 'The file name of the attachment',
},
{
displayName: 'Content',
@@ -615,7 +615,7 @@ export class Mandrill implements INodeType {
type: 'string',
default: '',
placeholder: 'ZXhhbXBsZSBmaWxl',
- description: 'The content of the attachment as a base64-encoded string.',
+ description: 'The content of the attachment as a base64-encoded string',
},
],
},
@@ -634,7 +634,7 @@ export class Mandrill implements INodeType {
},
],
default: {},
- description: 'Array of supported attachments to add to the message.',
+ description: 'Array of supported attachments to add to the message',
},
{
displayName: 'Headers',
@@ -654,7 +654,7 @@ export class Mandrill implements INodeType {
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'Optional extra headers to add to the message (most headers are allowed).',
+ description: 'Optional extra headers to add to the message (most headers are allowed)',
},
{
displayName: 'Headers',
@@ -692,7 +692,7 @@ export class Mandrill implements INodeType {
],
},
],
- description: 'Optional extra headers to add to the message (most headers are allowed).',
+ description: 'Optional extra headers to add to the message (most headers are allowed)',
},
],
};
diff --git a/packages/nodes-base/nodes/Markdown/Markdown.node.ts b/packages/nodes-base/nodes/Markdown/Markdown.node.ts
index 9cb2dd9e06..4bc6e6e0c0 100644
--- a/packages/nodes-base/nodes/Markdown/Markdown.node.ts
+++ b/packages/nodes-base/nodes/Markdown/Markdown.node.ts
@@ -176,8 +176,7 @@ export class Markdown implements INodeType {
name: 'keepDataImages',
type: 'boolean',
default: false,
- description:
- 'Whether to keep images with data: URI (Note: These can be up to 1MB each), e.g. .',
+ description: 'Whether to keep images with data: URI (Note: These can be up to 1MB each), e.g. ',
},
{
displayName: 'Line Start Escape Pattern',
diff --git a/packages/nodes-base/nodes/Matrix/MessageDescription.ts b/packages/nodes-base/nodes/Matrix/MessageDescription.ts
index 3b98e822bd..7cf380c4f6 100644
--- a/packages/nodes-base/nodes/Matrix/MessageDescription.ts
+++ b/packages/nodes-base/nodes/Matrix/MessageDescription.ts
@@ -56,7 +56,7 @@ export const messageFields: INodeProperties[] = [
},
},
required: true,
- description: 'The channel to send the message to.',
+ description: 'The channel to send the message to',
},
{
displayName: 'Text',
@@ -77,7 +77,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'The text to send.',
+ description: 'The text to send',
},
{
displayName: 'Message Type',
@@ -97,21 +97,21 @@ export const messageFields: INodeProperties[] = [
{
name: 'Emote',
value: 'm.emote',
- description: 'Perform an action (similar to /me in IRC).',
+ description: 'Perform an action (similar to /me in IRC)',
},
{
name: 'Notice',
value: 'm.notice',
- description: 'Send a notice.',
+ description: 'Send a notice',
},
{
name: 'Text',
value: 'm.text',
- description: 'Send a text message.',
+ description: 'Send a text message',
},
],
default: 'm.text',
- description: 'The type of message to send.',
+ description: 'The type of message to send',
},
{
displayName: 'Message Format',
@@ -140,7 +140,7 @@ export const messageFields: INodeProperties[] = [
},
],
default: 'plain',
- description: `The format of the message's body.`,
+ description: 'The format of the message\'s body',
},
{
displayName: 'Fallback Text',
@@ -163,7 +163,7 @@ export const messageFields: INodeProperties[] = [
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'A plain text message to display in case the HTML cannot be rendered by the Matrix client.',
+ description: 'A plain text message to display in case the HTML cannot be rendered by the Matrix client',
},
@@ -206,7 +206,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
required: true,
},
{
@@ -231,7 +231,7 @@ export const messageFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Other Options',
diff --git a/packages/nodes-base/nodes/Matrix/RoomDescription.ts b/packages/nodes-base/nodes/Matrix/RoomDescription.ts
index a08821e9c0..432a09828d 100644
--- a/packages/nodes-base/nodes/Matrix/RoomDescription.ts
+++ b/packages/nodes-base/nodes/Matrix/RoomDescription.ts
@@ -207,7 +207,7 @@ export const roomFields: INodeProperties[] = [
},
},
default: '',
- description: 'The fully qualified user ID of the invitee.',
+ description: 'The fully qualified user ID of the invitee',
placeholder: '@cheeky_monkey:matrix.org',
required: true,
},
@@ -252,7 +252,7 @@ export const roomFields: INodeProperties[] = [
},
},
default: '',
- description: 'The fully qualified user ID.',
+ description: 'The fully qualified user ID',
placeholder: '@cheeky_monkey:matrix.org',
required: true,
},
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/addUser/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/addUser/description.ts
index f1309232a4..e8f6a5ea51 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/addUser/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/addUser/description.ts
@@ -23,7 +23,7 @@ export const channelAddUserDescription: ChannelProperties = [
],
},
},
- description: 'The ID of the channel to invite user to.',
+ description: 'The ID of the channel to invite user to',
},
{
displayName: 'User ID',
@@ -45,6 +45,6 @@ export const channelAddUserDescription: ChannelProperties = [
],
},
},
- description: 'The ID of the user to invite into channel.',
+ description: 'The ID of the user to invite into channel',
},
];
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/create/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/create/description.ts
index 4eff6cf050..c0499ed21a 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/create/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/create/description.ts
@@ -23,7 +23,7 @@ export const channelCreateDescription: ChannelProperties = [
],
},
},
- description: 'The Mattermost Team.',
+ description: 'The Mattermost Team',
},
{
displayName: 'Display Name',
@@ -88,6 +88,6 @@ export const channelCreateDescription: ChannelProperties = [
},
],
default: 'public',
- description: 'The type of channel to create.',
+ description: 'The type of channel to create',
},
];
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/members/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/members/description.ts
index 46390a44b1..73c83bec16 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/members/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/members/description.ts
@@ -23,7 +23,7 @@ export const channelMembersDescription: ChannelProperties = [
],
},
},
- description: 'The Mattermost Team.',
+ description: 'The Mattermost Team',
},
{
displayName: 'Channel ID',
@@ -48,7 +48,7 @@ export const channelMembersDescription: ChannelProperties = [
],
},
},
- description: 'The Mattermost Team.',
+ description: 'The Mattermost Team',
},
{
displayName: 'Resolve Data',
@@ -82,7 +82,7 @@ export const channelMembersDescription: ChannelProperties = [
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -106,7 +106,7 @@ export const channelMembersDescription: ChannelProperties = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/restore/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/restore/description.ts
index 488d31e805..485a436676 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/restore/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/restore/description.ts
@@ -19,6 +19,6 @@ export const channelRestoreDescription: ChannelProperties = [
],
},
},
- description: 'The ID of the channel to restore.',
+ description: 'The ID of the channel to restore',
},
];
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/search/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/search/description.ts
index 29569d9d48..34469ca39b 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/search/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/search/description.ts
@@ -23,7 +23,7 @@ export const channelSearchDescription: ChannelProperties = [
],
},
},
- description: 'The Mattermost Team.',
+ description: 'The Mattermost Team',
},
{
displayName: 'Search Term',
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/statistics/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/statistics/description.ts
index 3e6e27d867..40e4be8cfe 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/channel/statistics/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/channel/statistics/description.ts
@@ -23,7 +23,7 @@ export const channelStatisticsDescription: ChannelProperties = [
],
},
},
- description: 'The ID of the channel to get the statistics from.',
+ description: 'The ID of the channel to get the statistics from',
},
];
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/message/post/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/message/post/description.ts
index ea00997f49..09856c24ec 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/message/post/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/message/post/description.ts
@@ -23,7 +23,7 @@ export const messagePostDescription: MessageProperties = [
],
},
},
- description: 'The ID of the channel to post to.',
+ description: 'The ID of the channel to post to',
},
{
displayName: 'Message',
@@ -43,7 +43,7 @@ export const messagePostDescription: MessageProperties = [
],
},
},
- description: 'The text to send.',
+ description: 'The text to send',
},
{
displayName: 'Attachments',
@@ -97,7 +97,7 @@ export const messagePostDescription: MessageProperties = [
},
],
default: 'button',
- description: 'The type of the action.',
+ description: 'The type of the action',
},
{
displayName: 'Data Source',
@@ -126,13 +126,13 @@ export const messagePostDescription: MessageProperties = [
],
default: 'custom',
- description: 'The type of the action.',
+ description: 'The type of the action',
},
{
displayName: 'Options',
name: 'options',
placeholder: 'Add Option',
- description: 'Adds a new option to select field.',
+ description: 'Adds a new option to select field',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -159,14 +159,14 @@ export const messagePostDescription: MessageProperties = [
name: 'text',
type: 'string',
default: '',
- description: 'Text of the option.',
+ description: 'Text of the option',
},
{
displayName: 'Option Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the option.',
+ description: 'Value of the option',
},
],
},
@@ -177,13 +177,13 @@ export const messagePostDescription: MessageProperties = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the Action.',
+ description: 'Name of the Action',
},
{
displayName: 'Integration',
name: 'integration',
placeholder: 'Add Integration',
- description: 'Integration to add to message.',
+ description: 'Integration to add to message',
type: 'fixedCollection',
typeOptions: {
multipleValues: false,
@@ -200,13 +200,13 @@ export const messagePostDescription: MessageProperties = [
name: 'url',
type: 'string',
default: '',
- description: 'URL of the Integration.',
+ description: 'URL of the Integration',
},
{
displayName: 'Context',
name: 'context',
placeholder: 'Add Context to Integration',
- description: 'Adds a Context values set.',
+ description: 'Adds a Context values set',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -223,14 +223,14 @@ export const messagePostDescription: MessageProperties = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -252,7 +252,7 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Icon which should appear for the user.',
+ description: 'Icon which should appear for the user',
},
{
displayName: 'Author Link',
@@ -262,21 +262,21 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Link for the author.',
+ description: 'Link for the author',
},
{
displayName: 'Author Name',
name: 'author_name',
type: 'string',
default: '',
- description: 'Name that should appear.',
+ description: 'Name that should appear',
},
{
displayName: 'Color',
name: 'color',
type: 'color',
default: '#ff0000',
- description: 'Color of the line left of text.',
+ description: 'Color of the line left of text',
},
{
displayName: 'Fallback Text',
@@ -286,13 +286,13 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Required plain-text summary of the attachment.',
+ description: 'Required plain-text summary of the attachment',
},
{
displayName: 'Fields',
name: 'fields',
placeholder: 'Add Fields',
- description: 'Fields to add to message.',
+ description: 'Fields to add to message',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -308,21 +308,21 @@ export const messagePostDescription: MessageProperties = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of the item.',
+ description: 'Title of the item',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the item.',
+ description: 'Value of the item',
},
{
displayName: 'Short',
name: 'short',
type: 'boolean',
default: true,
- description: 'If items can be displayed next to each other.',
+ description: 'If items can be displayed next to each other',
},
],
},
@@ -336,7 +336,7 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Text of footer to add.',
+ description: 'Text of footer to add',
},
{
displayName: 'Footer Icon',
@@ -346,7 +346,7 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Icon which should appear next to footer.',
+ description: 'Icon which should appear next to footer',
},
{
displayName: 'Image URL',
@@ -356,7 +356,7 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'URL of image.',
+ description: 'URL of image',
},
{
displayName: 'Pretext',
@@ -366,7 +366,7 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Text which appears before the message block.',
+ description: 'Text which appears before the message block',
},
{
displayName: 'Text',
@@ -376,7 +376,7 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Text to send.',
+ description: 'Text to send',
},
{
displayName: 'Thumbnail URL',
@@ -386,7 +386,7 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'URL of thumbnail.',
+ description: 'URL of thumbnail',
},
{
displayName: 'Title',
@@ -396,7 +396,7 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Title of the message.',
+ description: 'Title of the message',
},
{
displayName: 'Title Link',
@@ -406,7 +406,7 @@ export const messagePostDescription: MessageProperties = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Link of the title.',
+ description: 'Link of the title',
},
],
},
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/message/postEphemeral/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/message/postEphemeral/description.ts
index cd0e89da94..b5da062852 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/message/postEphemeral/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/message/postEphemeral/description.ts
@@ -23,7 +23,7 @@ export const messagePostEphemeralDescription: MessageProperties = [
],
},
},
- description: 'ID of the user to send the ephemeral message to.',
+ description: 'ID of the user to send the ephemeral message to',
},
{
displayName: 'Channel ID',
@@ -44,7 +44,7 @@ export const messagePostEphemeralDescription: MessageProperties = [
],
},
},
- description: 'ID of the channel to send the ephemeral message in.',
+ description: 'ID of the channel to send the ephemeral message in',
},
{
displayName: 'Message',
@@ -64,6 +64,6 @@ export const messagePostEphemeralDescription: MessageProperties = [
],
},
},
- description: 'Text to send in the ephemeral message.',
+ description: 'Text to send in the ephemeral message',
},
];
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/create/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/create/description.ts
index aaed772039..209ba90d3a 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/create/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/create/description.ts
@@ -23,7 +23,7 @@ export const reactionCreateDescription: ReactionProperties = [
],
},
},
- description: 'ID of the user sending the reaction.',
+ description: 'ID of the user sending the reaction',
},
{
displayName: 'Post ID',
@@ -60,6 +60,6 @@ export const reactionCreateDescription: ReactionProperties = [
],
},
},
- description: 'Emoji to use for this reaction.',
+ description: 'Emoji to use for this reaction',
},
];
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/del/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/del/description.ts
index 20e854c442..edb567ce2e 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/del/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/del/description.ts
@@ -23,7 +23,7 @@ export const reactionDeleteDescription: ReactionProperties = [
],
},
},
- description: 'ID of the user whose reaction to delete.',
+ description: 'ID of the user whose reaction to delete',
},
{
displayName: 'Post ID',
@@ -60,6 +60,6 @@ export const reactionDeleteDescription: ReactionProperties = [
],
},
},
- description: 'Name of the emoji to delete.',
+ description: 'Name of the emoji to delete',
},
];
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/getAll/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/getAll/description.ts
index 2e318927dd..fd2c4f80b2 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/getAll/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/getAll/description.ts
@@ -19,7 +19,7 @@ export const reactionGetAllDescription: ReactionProperties = [
],
},
},
- description: 'One or more (comma-separated) posts to retrieve reactions from.',
+ description: 'One or more (comma-separated) posts to retrieve reactions from',
},
{
displayName: 'Return All',
@@ -36,7 +36,7 @@ export const reactionGetAllDescription: ReactionProperties = [
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -60,6 +60,6 @@ export const reactionGetAllDescription: ReactionProperties = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/index.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/index.ts
index e163c1c598..3f244a58e4 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/index.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/reaction/index.ts
@@ -27,7 +27,7 @@ export const descriptions: INodeProperties[] = [
{
name: 'Create',
value: 'create',
- description: 'Add a reaction to a post.',
+ description: 'Add a reaction to a post',
},
{
name: 'Delete',
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/user/create/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/user/create/description.ts
index f9e71c0e9f..7506e1a1c4 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/user/create/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/user/create/description.ts
@@ -123,7 +123,7 @@ export const userCreateDescription: UserProperties = [
},
},
default: '',
- description: 'The password used for email authentication.',
+ description: 'The password used for email authentication',
},
{
displayName: 'Additional Fields',
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/user/getAll/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/user/getAll/description.ts
index 4b704dd93e..bc1dc09656 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/user/getAll/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/user/getAll/description.ts
@@ -18,7 +18,7 @@ export const userGetAllDescription: UserProperties = [
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -42,7 +42,7 @@ export const userGetAllDescription: UserProperties = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -66,28 +66,28 @@ export const userGetAllDescription: UserProperties = [
name: 'inChannel',
type: 'string',
default: '',
- description: 'The ID of the channel to get users for.',
+ description: 'The ID of the channel to get users for',
},
{
displayName: 'In Team',
name: 'inTeam',
type: 'string',
default: '',
- description: 'The ID of the team to get users for.',
+ description: 'The ID of the team to get users for',
},
{
displayName: 'Not In Team',
name: 'notInTeam',
type: 'string',
default: '',
- description: 'The ID of the team to exclude users for.',
+ description: 'The ID of the team to exclude users for',
},
{
displayName: 'Not In Channel',
name: 'notInChannel',
type: 'string',
default: '',
- description: 'The ID of the channel to exclude users for.',
+ description: 'The ID of the channel to exclude users for',
},
{
displayName: 'Sort',
@@ -112,7 +112,7 @@ export const userGetAllDescription: UserProperties = [
},
],
default: 'username',
- description: 'The ID of the channel to exclude users for.',
+ description: 'The ID of the channel to exclude users for',
},
],
},
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/user/getById/description.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/user/getById/description.ts
index 8f0f8e0368..1bfb7dcaa9 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/user/getById/description.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/user/getById/description.ts
@@ -43,7 +43,7 @@ export const userGetByIdDescription: UserProperties = [
name: 'since',
type: 'dateTime',
default: '',
- description: 'Only return users that have been modified since the given Unix timestamp (in milliseconds).',
+ description: 'Only return users that have been modified since the given Unix timestamp (in milliseconds)',
},
],
},
diff --git a/packages/nodes-base/nodes/Mattermost/v1/actions/user/index.ts b/packages/nodes-base/nodes/Mattermost/v1/actions/user/index.ts
index 59dfd8be5d..65c392d12f 100644
--- a/packages/nodes-base/nodes/Mattermost/v1/actions/user/index.ts
+++ b/packages/nodes-base/nodes/Mattermost/v1/actions/user/index.ts
@@ -38,7 +38,7 @@ export const descriptions: INodeProperties[] = [
{
name: 'Deactive',
value: 'deactive',
- description: 'Deactivates the user and revokes all its sessions by archiving its user object.',
+ description: 'Deactivates the user and revokes all its sessions by archiving its user object',
},
{
name: 'Get All',
diff --git a/packages/nodes-base/nodes/Mautic/CompanyContactDescription.ts b/packages/nodes-base/nodes/Mautic/CompanyContactDescription.ts
index be69fe84c9..5385df5794 100644
--- a/packages/nodes-base/nodes/Mautic/CompanyContactDescription.ts
+++ b/packages/nodes-base/nodes/Mautic/CompanyContactDescription.ts
@@ -52,7 +52,7 @@ export const companyContactFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the contact.',
+ description: 'The ID of the contact',
},
{
displayName: 'Company ID',
@@ -70,6 +70,6 @@ export const companyContactFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the company.',
+ description: 'The ID of the company',
},
];
diff --git a/packages/nodes-base/nodes/Mautic/CompanyDescription.ts b/packages/nodes-base/nodes/Mautic/CompanyDescription.ts
index 4eae5da1be..65cc4e81b9 100644
--- a/packages/nodes-base/nodes/Mautic/CompanyDescription.ts
+++ b/packages/nodes-base/nodes/Mautic/CompanyDescription.ts
@@ -66,7 +66,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: '',
- description: 'The name of the company to create.',
+ description: 'The name of the company to create',
},
{
displayName: 'Simplify Response',
@@ -83,7 +83,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Additional Fields',
@@ -172,7 +172,7 @@ export const companyFields: INodeProperties[] = [
displayName: 'Custom Fields',
name: 'customFieldsUi',
placeholder: 'Add Custom Fields',
- description: 'Adds a custom fields to set also values which have not been predefined.',
+ description: 'Adds a custom fields to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -191,14 +191,14 @@ export const companyFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanyFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -278,7 +278,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the company to update.',
+ description: 'The ID of the company to update',
},
{
displayName: 'Simplify Response',
@@ -295,7 +295,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Update Fields',
@@ -390,7 +390,7 @@ export const companyFields: INodeProperties[] = [
displayName: 'Custom Fields',
name: 'customFieldsUi',
placeholder: 'Add Custom Fields',
- description: 'Adds a custom fields to set also values which have not been predefined.',
+ description: 'Adds a custom fields to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -409,14 +409,14 @@ export const companyFields: INodeProperties[] = [
loadOptionsMethod: 'getCompanyFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -496,7 +496,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the company to return.',
+ description: 'The ID of the company to return',
},
{
displayName: 'Simplify Response',
@@ -513,7 +513,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
/* -------------------------------------------------------------------------- */
@@ -534,7 +534,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -558,7 +558,7 @@ export const companyFields: INodeProperties[] = [
maxValue: 30,
},
default: 30,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Simplify Response',
@@ -575,7 +575,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Additional Fields',
@@ -609,7 +609,7 @@ export const companyFields: INodeProperties[] = [
},
],
default: '',
- description: 'Sort direction: asc or desc.',
+ description: 'Sort direction: asc or desc',
},
{
displayName: 'Order By',
@@ -626,7 +626,7 @@ export const companyFields: INodeProperties[] = [
name: 'search',
type: 'string',
default: '',
- description: 'String or search command to filter entities by.',
+ description: 'String or search command to filter entities by',
},
],
},
@@ -648,7 +648,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the company to delete.',
+ description: 'The ID of the company to delete',
},
{
displayName: 'Simplify Response',
@@ -665,6 +665,6 @@ export const companyFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
];
diff --git a/packages/nodes-base/nodes/Mautic/ContactDescription.ts b/packages/nodes-base/nodes/Mautic/ContactDescription.ts
index dc27fbb74d..15ef1981c9 100644
--- a/packages/nodes-base/nodes/Mautic/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Mautic/ContactDescription.ts
@@ -100,7 +100,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email address of the contact.',
+ description: 'Email address of the contact',
},
{
displayName: 'First Name',
@@ -322,7 +322,7 @@ export const contactFields: INodeProperties[] = [
displayName: 'Custom Fields',
name: 'customFieldsUi',
placeholder: 'Add Custom Fields',
- description: 'Adds a custom fields to set also values which have not been predefined.',
+ description: 'Adds a custom fields to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -341,14 +341,14 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getContactFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -670,7 +670,7 @@ export const contactFields: INodeProperties[] = [
displayName: 'Custom Fields',
name: 'customFieldsUi',
placeholder: 'Add Custom Fields',
- description: 'Adds a custom fields to set also values which have not been predefined.',
+ description: 'Adds a custom fields to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -689,14 +689,14 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getContactFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -714,7 +714,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email address of the contact.',
+ description: 'Email address of the contact',
},
{
displayName: 'Fax',
@@ -1262,7 +1262,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1286,7 +1286,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 30,
},
default: 30,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -1349,7 +1349,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'String or search command to filter entities by.',
+ description: 'String or search command to filter entities by',
},
{
displayName: 'Order By',
@@ -1393,7 +1393,7 @@ export const contactFields: INodeProperties[] = [
value: 'desc',
},
],
- description: 'Sort direction: ASC or DESC.',
+ description: 'Sort direction: ASC or DESC',
},
{
displayName: 'Published Only',
@@ -1410,7 +1410,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'Only return currently published entities.',
+ description: 'Only return currently published entities',
},
{
displayName: 'Minimal',
@@ -1427,7 +1427,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'Return only array of entities without additional lists in it.',
+ description: 'Return only array of entities without additional lists in it',
},
{
displayName: 'RAW Data',
diff --git a/packages/nodes-base/nodes/Medium/Medium.node.ts b/packages/nodes-base/nodes/Medium/Medium.node.ts
index 7888b15cc0..fc70bf2946 100644
--- a/packages/nodes-base/nodes/Medium/Medium.node.ts
+++ b/packages/nodes-base/nodes/Medium/Medium.node.ts
@@ -199,7 +199,7 @@ export class Medium implements INodeType {
value: 'markdown',
},
],
- description: 'The format of the content to be posted.',
+ description: 'The format of the content to be posted',
},
{
displayName: 'Content',
@@ -221,7 +221,7 @@ export class Medium implements INodeType {
],
},
},
- description: 'The body of the post, in a valid semantic HTML fragment, or Markdown.',
+ description: 'The body of the post, in a valid semantic HTML fragment, or Markdown',
},
{
displayName: 'Additional Fields',
@@ -245,7 +245,7 @@ export class Medium implements INodeType {
name: 'canonicalUrl',
type: 'string',
default: '',
- description: 'The original home of this content, if it was originally published elsewhere.',
+ description: 'The original home of this content, if it was originally published elsewhere',
},
{
displayName: 'License',
@@ -290,14 +290,14 @@ export class Medium implements INodeType {
value: 'public-domain',
},
],
- description: 'License of the post.',
+ description: 'License of the post',
},
{
displayName: 'Notify Followers',
name: 'notifyFollowers',
type: 'boolean',
default: false,
- description: 'Whether to notify followers that the user has published.',
+ description: 'Whether to notify followers that the user has published',
},
{
displayName: 'Publish Status',
@@ -318,7 +318,7 @@ export class Medium implements INodeType {
value: 'unlisted',
},
],
- description: 'The status of the post.',
+ description: 'The status of the post',
},
{
displayName: 'Tags',
@@ -369,7 +369,7 @@ export class Medium implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -393,7 +393,7 @@ export class Medium implements INodeType {
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
],
};
diff --git a/packages/nodes-base/nodes/Merge/Merge.node.ts b/packages/nodes-base/nodes/Merge/Merge.node.ts
index 72572c1fc0..50324ef528 100644
--- a/packages/nodes-base/nodes/Merge/Merge.node.ts
+++ b/packages/nodes-base/nodes/Merge/Merge.node.ts
@@ -39,7 +39,7 @@ export class Merge implements INodeType {
{
name: 'Keep Key Matches',
value: 'keepKeyMatches',
- description: 'Keeps data of input 1 if it does find a match with data of input 2.',
+ description: 'Keeps data of input 1 if it does find a match with data of input 2',
},
{
name: 'Merge By Index',
@@ -64,7 +64,7 @@ export class Merge implements INodeType {
{
name: 'Remove Key Matches',
value: 'removeKeyMatches',
- description: 'Keeps data of input 1 if it does NOT find match with data of input 2.',
+ description: 'Keeps data of input 1 if it does NOT find match with data of input 2',
},
{
name: 'Wait',
@@ -73,7 +73,7 @@ export class Merge implements INodeType {
},
],
default: 'append',
- description: 'How data of branches should be merged.',
+ description: 'How data of branches should be merged',
},
{
displayName: 'Join',
@@ -104,7 +104,7 @@ export class Merge implements INodeType {
},
],
default: 'left',
- description: 'How many items the output will contain if inputs contain different amount of items.',
+ description: 'How many items the output will contain if inputs contain different amount of items',
},
{
displayName: 'Property Input 1',
@@ -122,7 +122,7 @@ export class Merge implements INodeType {
],
},
},
- description: 'Name of property which decides which items to merge of input 1.',
+ description: 'Name of property which decides which items to merge of input 1',
},
{
displayName: 'Property Input 2',
@@ -140,7 +140,7 @@ export class Merge implements INodeType {
],
},
},
- description: 'Name of property which decides which items to merge of input 2.',
+ description: 'Name of property which decides which items to merge of input 2',
},
{
displayName: 'Output Data',
@@ -164,7 +164,7 @@ export class Merge implements INodeType {
},
],
default: 'input1',
- description: 'Defines of which input the data should be used as output of node.',
+ description: 'Defines of which input the data should be used as output of node',
},
{
displayName: 'Overwrite',
@@ -181,21 +181,21 @@ export class Merge implements INodeType {
{
name: 'Always',
value: 'always',
- description: 'Always overwrites everything.',
+ description: 'Always overwrites everything',
},
{
name: 'If Blank',
value: 'blank',
- description: 'Overwrites only values of "null", "undefined" or empty string.',
+ description: 'Overwrites only values of "null", "undefined" or empty string',
},
{
name: 'If Missing',
value: 'undefined',
- description: 'Only adds values which do not exist yet.',
+ description: 'Only adds values which do not exist yet',
},
],
default: 'always',
- description: 'Select when to overwrite the values from Input1 with values from Input 2.',
+ description: 'Select when to overwrite the values from Input1 with values from Input 2',
},
],
};
diff --git a/packages/nodes-base/nodes/MessageBird/MessageBird.node.ts b/packages/nodes-base/nodes/MessageBird/MessageBird.node.ts
index e19286faa8..4bccb35593 100644
--- a/packages/nodes-base/nodes/MessageBird/MessageBird.node.ts
+++ b/packages/nodes-base/nodes/MessageBird/MessageBird.node.ts
@@ -115,7 +115,7 @@ export class MessageBird implements INodeType {
],
},
},
- description: 'The number from which to send the message.',
+ description: 'The number from which to send the message',
},
{
displayName: 'To',
@@ -134,7 +134,7 @@ export class MessageBird implements INodeType {
],
},
},
- description: 'All recipients separated by commas.',
+ description: 'All recipients separated by commas',
},
{
displayName: 'Message',
@@ -152,7 +152,7 @@ export class MessageBird implements INodeType {
],
},
},
- description: 'The message to be send.',
+ description: 'The message to be send',
},
{
displayName: 'Additional Fields',
@@ -176,7 +176,7 @@ export class MessageBird implements INodeType {
name: 'createdDatetime',
type: 'dateTime',
default: '',
- description: 'The date and time of the creation of the message in RFC3339 format (Y-m-dTH:i:sP).',
+ description: 'The date and time of the creation of the message in RFC3339 format (Y-m-dTH:i:sP)',
},
{
displayName: 'Datacoding',
@@ -197,14 +197,14 @@ export class MessageBird implements INodeType {
},
],
default: '',
- description: 'Using unicode will limit the maximum number of characters to 70 instead of 160.',
+ description: 'Using unicode will limit the maximum number of characters to 70 instead of 160',
},
{
displayName: 'Gateway',
name: 'gateway',
type: 'number',
default: '',
- description: 'The SMS route that is used to send the message.',
+ description: 'The SMS route that is used to send the message',
},
{
displayName: 'Group IDs',
@@ -212,7 +212,7 @@ export class MessageBird implements INodeType {
placeholder: '1,2',
type: 'string',
default: '',
- description: 'Group IDs separated by commas, If provided recipients can be omitted.',
+ description: 'Group IDs separated by commas, If provided recipients can be omitted',
},
{
displayName: 'Message Type',
@@ -237,7 +237,7 @@ export class MessageBird implements INodeType {
name: 'reference',
type: 'string',
default: '',
- description: 'A client reference.',
+ description: 'A client reference',
},
{
displayName: 'Report Url',
@@ -251,7 +251,7 @@ export class MessageBird implements INodeType {
name: 'scheduledDatetime',
type: 'dateTime',
default: '',
- description: 'The scheduled date and time of the message in RFC3339 format (Y-m-dTH:i:sP).',
+ description: 'The scheduled date and time of the message in RFC3339 format (Y-m-dTH:i:sP)',
},
{
displayName: 'Type',
@@ -289,7 +289,7 @@ export class MessageBird implements INodeType {
typeOptions: {
minValue: 1,
},
- description: 'The amount of seconds that the message is valid.',
+ description: 'The amount of seconds that the message is valid',
},
],
},
diff --git a/packages/nodes-base/nodes/Microsoft/Dynamics/descriptions/AccountDescription.ts b/packages/nodes-base/nodes/Microsoft/Dynamics/descriptions/AccountDescription.ts
index 24f49d421e..4a537ffda0 100644
--- a/packages/nodes-base/nodes/Microsoft/Dynamics/descriptions/AccountDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Dynamics/descriptions/AccountDescription.ts
@@ -127,7 +127,7 @@ export const accountFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -151,7 +151,7 @@ export const accountFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Microsoft/Excel/MicrosoftExcel.node.ts b/packages/nodes-base/nodes/Microsoft/Excel/MicrosoftExcel.node.ts
index a85db45c3f..5f336284f7 100644
--- a/packages/nodes-base/nodes/Microsoft/Excel/MicrosoftExcel.node.ts
+++ b/packages/nodes-base/nodes/Microsoft/Excel/MicrosoftExcel.node.ts
@@ -63,12 +63,12 @@ export class MicrosoftExcel implements INodeType {
{
name: 'Table',
value: 'table',
- description: 'Represents an Excel table.',
+ description: 'Represents an Excel table',
},
{
name: 'Workbook',
value: 'workbook',
- description: 'Workbook is the top level object which contains related workbook objects such as worksheets, tables, ranges, etc.',
+ description: 'Workbook is the top level object which contains related workbook objects such as worksheets, tables, ranges, etc',
},
{
name: 'Worksheet',
diff --git a/packages/nodes-base/nodes/Microsoft/Excel/TableDescription.ts b/packages/nodes-base/nodes/Microsoft/Excel/TableDescription.ts
index e8ce953453..ed9a58fc7d 100644
--- a/packages/nodes-base/nodes/Microsoft/Excel/TableDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Excel/TableDescription.ts
@@ -221,7 +221,7 @@ export const tableFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -245,7 +245,7 @@ export const tableFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'RAW Data',
@@ -262,7 +262,7 @@ export const tableFields: INodeProperties[] = [
},
},
default: false,
- description: 'If the data should be returned RAW instead of parsed into keys according to their header.',
+ description: 'If the data should be returned RAW instead of parsed into keys according to their header',
},
{
displayName: 'Data Property',
@@ -282,7 +282,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The name of the property into which to write the RAW data.',
+ description: 'The name of the property into which to write the RAW data',
},
{
displayName: 'Filters',
@@ -396,7 +396,7 @@ export const tableFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -420,7 +420,7 @@ export const tableFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'RAW Data',
@@ -437,7 +437,7 @@ export const tableFields: INodeProperties[] = [
},
},
default: false,
- description: 'If the data should be returned RAW instead of parsed into keys according to their header.',
+ description: 'If the data should be returned RAW instead of parsed into keys according to their header',
},
{
displayName: 'Data Property',
@@ -457,7 +457,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The name of the property into which to write the RAW data.',
+ description: 'The name of the property into which to write the RAW data',
},
{
displayName: 'Filters',
@@ -574,7 +574,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The name of the column in which to look for value.',
+ description: 'The name of the column in which to look for value',
},
{
displayName: 'Lookup Value',
@@ -593,7 +593,7 @@ export const tableFields: INodeProperties[] = [
],
},
},
- description: 'The value to look for in column.',
+ description: 'The value to look for in column',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Microsoft/Excel/WorkbookDescription.ts b/packages/nodes-base/nodes/Microsoft/Excel/WorkbookDescription.ts
index 87ac38c8c4..a9bcd1633c 100644
--- a/packages/nodes-base/nodes/Microsoft/Excel/WorkbookDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Excel/WorkbookDescription.ts
@@ -16,7 +16,7 @@ export const workbookOperations: INodeProperties[] = [
{
name: 'Add Worksheet',
value: 'addWorksheet',
- description: 'Adds a new worksheet to the workbook.',
+ description: 'Adds a new worksheet to the workbook',
},
{
name: 'Get All',
@@ -98,7 +98,7 @@ export const workbookFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -122,7 +122,7 @@ export const workbookFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/Microsoft/Excel/WorksheetDescription.ts b/packages/nodes-base/nodes/Microsoft/Excel/WorksheetDescription.ts
index e88d7aa42b..3e8837f02f 100644
--- a/packages/nodes-base/nodes/Microsoft/Excel/WorksheetDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Excel/WorksheetDescription.ts
@@ -68,7 +68,7 @@ export const worksheetFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -92,7 +92,7 @@ export const worksheetFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -199,7 +199,7 @@ export const worksheetFields: INodeProperties[] = [
},
},
default: false,
- description: 'If the data should be returned RAW instead of parsed into keys according to their header.',
+ description: 'If the data should be returned RAW instead of parsed into keys according to their header',
},
{
displayName: 'Data Property',
@@ -219,7 +219,7 @@ export const worksheetFields: INodeProperties[] = [
],
},
},
- description: 'The name of the property into which to write the RAW data.',
+ description: 'The name of the property into which to write the RAW data',
},
{
displayName: 'Data Start Row',
diff --git a/packages/nodes-base/nodes/Microsoft/OneDrive/FileDescription.ts b/packages/nodes-base/nodes/Microsoft/OneDrive/FileDescription.ts
index 8c960609ad..851118c771 100644
--- a/packages/nodes-base/nodes/Microsoft/OneDrive/FileDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/OneDrive/FileDescription.ts
@@ -127,28 +127,28 @@ export const fileFields: INodeProperties[] = [
name: 'driveId',
type: 'string',
default: '',
- description: 'Identifier of the drive instance that contains the item.',
+ description: 'Identifier of the drive instance that contains the item',
},
{
displayName: 'Drive Type',
name: 'driveType',
type: 'string',
default: '',
- description: 'Identifies the type of drive.',
+ description: 'Identifies the type of drive',
},
{
displayName: 'ID',
name: 'id',
type: 'string',
default: '',
- description: 'Identifier of the item in the drive.',
+ description: 'Identifier of the item in the drive',
},
{
displayName: 'List ID',
name: 'listId',
type: 'string',
default: '',
- description: 'Identifier of the list.',
+ description: 'Identifier of the list',
},
{
displayName: 'Name',
@@ -169,14 +169,14 @@ export const fileFields: INodeProperties[] = [
name: 'shareId',
type: 'string',
default: '',
- description: 'Identifier for a shared resource that can be accessed via the Shares API.',
+ description: 'Identifier for a shared resource that can be accessed via the Shares API',
},
{
displayName: 'Site ID',
name: 'siteId',
type: 'string',
default: '',
- description: 'Identifier of the site.',
+ description: 'Identifier of the site',
},
],
},
@@ -236,7 +236,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
/* -------------------------------------------------------------------------- */
/* file:get */
@@ -374,7 +374,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
- description: 'The name the file should be saved as.',
+ description: 'The name the file should be saved as',
},
{
displayName: 'Parent ID',
@@ -392,7 +392,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the parent folder that will contain the file.',
+ description: 'ID of the parent folder that will contain the file',
},
{
displayName: 'Binary Data',
@@ -410,7 +410,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'If the data to upload should be taken from binary field.',
+ description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'File Content',
@@ -433,7 +433,7 @@ export const fileFields: INodeProperties[] = [
},
placeholder: '',
- description: 'The text content of the file.',
+ description: 'The text content of the file',
},
{
displayName: 'Binary Property',
@@ -456,6 +456,6 @@ export const fileFields: INodeProperties[] = [
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file.',
+ description: 'Name of the binary property which contains the data for the file',
},
];
diff --git a/packages/nodes-base/nodes/Microsoft/Outlook/DraftDescription.ts b/packages/nodes-base/nodes/Microsoft/Outlook/DraftDescription.ts
index 202647534b..f4770bd3ba 100644
--- a/packages/nodes-base/nodes/Microsoft/Outlook/DraftDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Outlook/DraftDescription.ts
@@ -73,7 +73,7 @@ export const draftFields: INodeProperties[] = [
{
displayName: 'Subject',
name: 'subject',
- description: 'The subject of the message.',
+ description: 'The subject of the message',
displayOptions: {
show: {
resource: [
@@ -90,7 +90,7 @@ export const draftFields: INodeProperties[] = [
{
displayName: 'Body Content',
name: 'bodyContent',
- description: 'Message body content.',
+ description: 'Message body content',
type: 'string',
displayOptions: {
show: {
@@ -150,14 +150,14 @@ export const draftFields: INodeProperties[] = [
{
displayName: 'BCC Recipients',
name: 'bccRecipients',
- description: 'Email addresses of BCC recipients.',
+ description: 'Email addresses of BCC recipients',
type: 'string',
default: '',
},
{
displayName: 'Body Content Type',
name: 'bodyContentType',
- description: 'Message body content type.',
+ description: 'Message body content type',
type: 'options',
options: [
{
@@ -183,7 +183,7 @@ export const draftFields: INodeProperties[] = [
{
displayName: 'CC Recipients',
name: 'ccRecipients',
- description: 'Email addresses of CC recipients.',
+ description: 'Email addresses of CC recipients',
type: 'string',
default: '',
},
@@ -206,14 +206,14 @@ export const draftFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the header.',
+ description: 'Name of the header',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the header.',
+ description: 'Value to set for the header',
},
],
},
@@ -229,7 +229,7 @@ export const draftFields: INodeProperties[] = [
{
displayName: 'Importance',
name: 'importance',
- description: 'The importance of the message.',
+ description: 'The importance of the message',
type: 'options',
options: [
{
@@ -250,7 +250,7 @@ export const draftFields: INodeProperties[] = [
{
displayName: 'Read Receipt Requested',
name: 'isReadReceiptRequested',
- description: 'Indicates whether a read receipt is requested for the message.',
+ description: 'Indicates whether a read receipt is requested for the message',
type: 'boolean',
default: false,
},
@@ -264,7 +264,7 @@ export const draftFields: INodeProperties[] = [
{
displayName: 'Reply To',
name: 'replyTo',
- description: 'Email addresses to use when replying.',
+ description: 'Email addresses to use when replying',
type: 'string',
default: '',
},
diff --git a/packages/nodes-base/nodes/Microsoft/Outlook/DraftMessageSharedDescription.ts b/packages/nodes-base/nodes/Microsoft/Outlook/DraftMessageSharedDescription.ts
index c8ce7f0f0c..ad46d7cd84 100644
--- a/packages/nodes-base/nodes/Microsoft/Outlook/DraftMessageSharedDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Outlook/DraftMessageSharedDescription.ts
@@ -71,21 +71,21 @@ export const draftMessageSharedFields: INodeProperties[] = [
{
displayName: 'BCC Recipients',
name: 'bccRecipients',
- description: 'Email addresses of BCC recipients.',
+ description: 'Email addresses of BCC recipients',
type: 'string',
default: '',
},
{
displayName: 'Body Content',
name: 'bodyContent',
- description: 'Message body content.',
+ description: 'Message body content',
type: 'string',
default: '',
},
{
displayName: 'Body Content Type',
name: 'bodyContentType',
- description: 'Message body content type.',
+ description: 'Message body content type',
type: 'options',
options: [
{
@@ -111,7 +111,7 @@ export const draftMessageSharedFields: INodeProperties[] = [
{
displayName: 'CC Recipients',
name: 'ccRecipients',
- description: 'Email addresses of CC recipients.',
+ description: 'Email addresses of CC recipients',
type: 'string',
default: '',
},
@@ -134,14 +134,14 @@ export const draftMessageSharedFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the header.',
+ description: 'Name of the header',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the header.',
+ description: 'Value to set for the header',
},
],
},
@@ -157,7 +157,7 @@ export const draftMessageSharedFields: INodeProperties[] = [
{
displayName: 'Importance',
name: 'importance',
- description: 'The importance of the message.',
+ description: 'The importance of the message',
type: 'options',
options: [
{
@@ -178,14 +178,14 @@ export const draftMessageSharedFields: INodeProperties[] = [
{
displayName: 'Is Read',
name: 'isRead',
- description: 'Indicates whether the message has been read.',
+ description: 'Indicates whether the message has been read',
type: 'boolean',
default: false,
},
{
displayName: 'Read Receipt Requested',
name: 'isReadReceiptRequested',
- description: 'Indicates whether a read receipt is requested for the message.',
+ description: 'Indicates whether a read receipt is requested for the message',
type: 'boolean',
default: false,
},
@@ -199,14 +199,14 @@ export const draftMessageSharedFields: INodeProperties[] = [
{
displayName: 'Reply To',
name: 'replyTo',
- description: 'Email addresses to use when replying.',
+ description: 'Email addresses to use when replying',
type: 'string',
default: '',
},
{
displayName: 'Subject',
name: 'subject',
- description: 'The subject of the message.',
+ description: 'The subject of the message',
type: 'string',
default: '',
},
diff --git a/packages/nodes-base/nodes/Microsoft/Outlook/FolderDescription.ts b/packages/nodes-base/nodes/Microsoft/Outlook/FolderDescription.ts
index aa5c92befb..d08732613d 100644
--- a/packages/nodes-base/nodes/Microsoft/Outlook/FolderDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Outlook/FolderDescription.ts
@@ -85,7 +85,7 @@ export const folderFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -108,7 +108,7 @@ export const folderFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// folder:create
{
@@ -141,7 +141,7 @@ export const folderFields: INodeProperties[] = [
{
displayName: 'Display Name',
name: 'displayName',
- description: 'Name of the folder.',
+ description: 'Name of the folder',
type: 'string',
required: true,
default: '',
@@ -159,7 +159,7 @@ export const folderFields: INodeProperties[] = [
{
displayName: 'Include Nested Folders',
name: 'includeNestedFolders',
- description: 'Include child folders in the search.',
+ description: 'Include child folders in the search',
type: 'boolean',
default: false,
displayOptions: {
@@ -179,7 +179,7 @@ export const folderFields: INodeProperties[] = [
{
displayName: 'Source Folder IDs',
name: 'sourceFolderIds',
- description: 'The mailbox folders that should be mined.',
+ description: 'The mailbox folders that should be mined',
type: 'string',
typeOptions: {
multipleValues: true,
@@ -202,7 +202,7 @@ export const folderFields: INodeProperties[] = [
{
displayName: 'Filter Query',
name: 'filterQuery',
- description: 'The OData query to filter the messages.',
+ description: 'The OData query to filter the messages',
type: 'string',
default: '',
required: true,
@@ -260,7 +260,7 @@ export const folderFields: INodeProperties[] = [
{
displayName: 'Update Fields',
name: 'updateFields',
- description: 'Fields to update.',
+ description: 'Fields to update',
type: 'collection',
default: {},
displayOptions: {
@@ -277,7 +277,7 @@ export const folderFields: INodeProperties[] = [
{
displayName: 'Display Name',
name: 'displayName',
- description: 'Name of the folder.',
+ description: 'Name of the folder',
type: 'string',
default: '',
},
diff --git a/packages/nodes-base/nodes/Microsoft/Outlook/FolderMessageDecription.ts b/packages/nodes-base/nodes/Microsoft/Outlook/FolderMessageDecription.ts
index 7fe4350e8c..e3afc8afef 100644
--- a/packages/nodes-base/nodes/Microsoft/Outlook/FolderMessageDecription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Outlook/FolderMessageDecription.ts
@@ -60,7 +60,7 @@ export const folderMessageFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -84,7 +84,7 @@ export const folderMessageFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
diff --git a/packages/nodes-base/nodes/Microsoft/Outlook/MessageAttachmentDescription.ts b/packages/nodes-base/nodes/Microsoft/Outlook/MessageAttachmentDescription.ts
index 4011d81fc1..359ae45af2 100644
--- a/packages/nodes-base/nodes/Microsoft/Outlook/MessageAttachmentDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Outlook/MessageAttachmentDescription.ts
@@ -99,7 +99,7 @@ export const messageAttachmentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -123,7 +123,7 @@ export const messageAttachmentFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
@@ -133,7 +133,7 @@ export const messageAttachmentFields: INodeProperties[] = [
{
displayName: 'Binary Property',
name: 'binaryPropertyName',
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
type: 'string',
required: true,
default: 'data',
@@ -209,7 +209,7 @@ export const messageAttachmentFields: INodeProperties[] = [
name: 'filter',
type: 'string',
default: '',
- description: 'Microsoft Graph API OData $filter query.',
+ description: 'Microsoft Graph API OData $filter query',
},
],
},
diff --git a/packages/nodes-base/nodes/Microsoft/Outlook/MessageDescription.ts b/packages/nodes-base/nodes/Microsoft/Outlook/MessageDescription.ts
index 4ea67ef482..892e594461 100644
--- a/packages/nodes-base/nodes/Microsoft/Outlook/MessageDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Outlook/MessageDescription.ts
@@ -199,21 +199,21 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'BCC Recipients',
name: 'bccRecipients',
- description: 'Email addresses of BCC recipients.',
+ description: 'Email addresses of BCC recipients',
type: 'string',
default: '',
},
{
displayName: 'Body Content',
name: 'bodyContent',
- description: 'Message body content.',
+ description: 'Message body content',
type: 'string',
default: '',
},
{
displayName: 'Body Content Type',
name: 'bodyContentType',
- description: 'Message body content type.',
+ description: 'Message body content type',
type: 'options',
options: [
{
@@ -230,7 +230,7 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'CC Recipients',
name: 'ccRecipients',
- description: 'Email addresses of CC recipients.',
+ description: 'Email addresses of CC recipients',
type: 'string',
default: '',
},
@@ -253,14 +253,14 @@ export const messageFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the header.',
+ description: 'Name of the header',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the header.',
+ description: 'Value to set for the header',
},
],
},
@@ -276,7 +276,7 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'Importance',
name: 'importance',
- description: 'The importance of the message.',
+ description: 'The importance of the message',
type: 'options',
options: [
{
@@ -297,7 +297,7 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'Read Receipt Requested',
name: 'isReadReceiptRequested',
- description: 'Indicates whether a read receipt is requested for the message.',
+ description: 'Indicates whether a read receipt is requested for the message',
type: 'boolean',
default: false,
},
@@ -311,14 +311,14 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'Reply To',
name: 'replyTo',
- description: 'Email addresses to use when replying.',
+ description: 'Email addresses to use when replying',
type: 'string',
default: '',
},
{
displayName: 'Subject',
name: 'subject',
- description: 'The subject of the message.',
+ description: 'The subject of the message',
type: 'string',
default: '',
},
@@ -341,7 +341,7 @@ export const messageFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -365,14 +365,14 @@ export const messageFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// message:create, message:update, message:send
{
displayName: 'Subject',
name: 'subject',
- description: 'The subject of the message.',
+ description: 'The subject of the message',
displayOptions: {
show: {
resource: [
@@ -390,7 +390,7 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'Body Content',
name: 'bodyContent',
- description: 'Message body content.',
+ description: 'Message body content',
type: 'string',
displayOptions: {
show: {
@@ -469,14 +469,14 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'BCC Recipients',
name: 'bccRecipients',
- description: 'Email addresses of BCC recipients.',
+ description: 'Email addresses of BCC recipients',
type: 'string',
default: '',
},
{
displayName: 'Body Content Type',
name: 'bodyContentType',
- description: 'Message body content type.',
+ description: 'Message body content type',
type: 'options',
options: [
{
@@ -502,7 +502,7 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'CC Recipients',
name: 'ccRecipients',
- description: 'Email addresses of CC recipients.',
+ description: 'Email addresses of CC recipients',
type: 'string',
default: '',
},
@@ -525,14 +525,14 @@ export const messageFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the header.',
+ description: 'Name of the header',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the header.',
+ description: 'Value to set for the header',
},
],
},
@@ -548,7 +548,7 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'Importance',
name: 'importance',
- description: 'The importance of the message.',
+ description: 'The importance of the message',
type: 'options',
options: [
{
@@ -569,7 +569,7 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'Read Receipt Requested',
name: 'isReadReceiptRequested',
- description: 'Indicates whether a read receipt is requested for the message.',
+ description: 'Indicates whether a read receipt is requested for the message',
type: 'boolean',
default: false,
},
@@ -583,14 +583,14 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'Reply To',
name: 'replyTo',
- description: 'Email addresses to use when replying.',
+ description: 'Email addresses to use when replying',
type: 'string',
default: '',
},
{
displayName: 'Save To Sent Items',
name: 'saveToSentItems',
- description: 'Indicates whether to save the message in Sent Items.',
+ description: 'Indicates whether to save the message in Sent Items',
type: 'boolean',
default: true,
},
@@ -601,7 +601,7 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'Binary Property',
name: 'binaryPropertyName',
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
type: 'string',
required: true,
default: 'data',
@@ -621,7 +621,7 @@ export const messageFields: INodeProperties[] = [
{
displayName: 'Folder ID',
name: 'folderId',
- description: 'Target Folder ID.',
+ description: 'Target Folder ID',
type: 'string',
default: '',
required: true,
diff --git a/packages/nodes-base/nodes/Microsoft/Sql/MicrosoftSql.node.ts b/packages/nodes-base/nodes/Microsoft/Sql/MicrosoftSql.node.ts
index a5ea4382f0..7b0076a963 100644
--- a/packages/nodes-base/nodes/Microsoft/Sql/MicrosoftSql.node.ts
+++ b/packages/nodes-base/nodes/Microsoft/Sql/MicrosoftSql.node.ts
@@ -100,7 +100,7 @@ export class MicrosoftSql implements INodeType {
default: '',
placeholder: 'SELECT id, name FROM product WHERE id < 40',
required: true,
- description: 'The SQL query to execute.',
+ description: 'The SQL query to execute',
},
// ----------------------------------
@@ -117,7 +117,7 @@ export class MicrosoftSql implements INodeType {
},
default: '',
required: true,
- description: 'Name of the table in which to insert data to.',
+ description: 'Name of the table in which to insert data to',
},
{
displayName: 'Columns',
@@ -130,7 +130,7 @@ export class MicrosoftSql implements INodeType {
},
default: '',
placeholder: 'id,name,description',
- description: `Comma-separated list of the properties which should used as columns for the new rows.`,
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
// ----------------------------------
@@ -174,7 +174,7 @@ export class MicrosoftSql implements INodeType {
},
default: '',
placeholder: 'name,description',
- description: `Comma-separated list of the properties which should used as columns for rows to update.`,
+ description: 'Comma-separated list of the properties which should used as columns for rows to update',
},
// ----------------------------------
@@ -191,7 +191,7 @@ export class MicrosoftSql implements INodeType {
},
default: '',
required: true,
- description: 'Name of the table in which to delete data.',
+ description: 'Name of the table in which to delete data',
},
{
displayName: 'Delete Key',
diff --git a/packages/nodes-base/nodes/Microsoft/Teams/ChannelDescription.ts b/packages/nodes-base/nodes/Microsoft/Teams/ChannelDescription.ts
index c3556a4e62..461dc248f6 100644
--- a/packages/nodes-base/nodes/Microsoft/Teams/ChannelDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Teams/ChannelDescription.ts
@@ -88,7 +88,7 @@ export const channelFields: INodeProperties[] = [
},
},
default: '',
- description: 'Channel name as it will appear to the user in Microsoft Teams.',
+ description: 'Channel name as it will appear to the user in Microsoft Teams',
},
{
displayName: 'Options',
@@ -272,7 +272,7 @@ export const channelFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -296,7 +296,7 @@ export const channelFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -368,7 +368,7 @@ export const channelFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Channel name as it will appear to the user in Microsoft Teams.',
+ description: 'Channel name as it will appear to the user in Microsoft Teams',
},
{
displayName: 'Description',
diff --git a/packages/nodes-base/nodes/Microsoft/Teams/ChannelMessageDescription.ts b/packages/nodes-base/nodes/Microsoft/Teams/ChannelMessageDescription.ts
index ac48429acb..5a74b635c0 100644
--- a/packages/nodes-base/nodes/Microsoft/Teams/ChannelMessageDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Teams/ChannelMessageDescription.ts
@@ -127,7 +127,7 @@ export const channelMessageFields: INodeProperties[] = [
},
},
default: '',
- description: 'The content of the item.',
+ description: 'The content of the item',
},
{
displayName: 'Options',
@@ -151,7 +151,7 @@ export const channelMessageFields: INodeProperties[] = [
name: 'makeReply',
type: 'string',
default: '',
- description: 'An optional ID of the message you want to reply to.',
+ description: 'An optional ID of the message you want to reply to',
},
],
},
@@ -217,7 +217,7 @@ export const channelMessageFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -241,6 +241,6 @@ export const channelMessageFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Microsoft/Teams/ChatMessageDescription.ts b/packages/nodes-base/nodes/Microsoft/Teams/ChatMessageDescription.ts
index 7ad4030845..fdc7a8be23 100644
--- a/packages/nodes-base/nodes/Microsoft/Teams/ChatMessageDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Teams/ChatMessageDescription.ts
@@ -110,7 +110,7 @@ export const chatMessageFields: INodeProperties[] = [
},
},
default: '',
- description: 'The content of the item.',
+ description: 'The content of the item',
},
/* -------------------------------------------------------------------------- */
@@ -172,7 +172,7 @@ export const chatMessageFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -196,6 +196,6 @@ export const chatMessageFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Microsoft/Teams/TaskDescription.ts b/packages/nodes-base/nodes/Microsoft/Teams/TaskDescription.ts
index e3d0ed8eee..dbf1bc33db 100644
--- a/packages/nodes-base/nodes/Microsoft/Teams/TaskDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/Teams/TaskDescription.ts
@@ -94,7 +94,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the Plan.',
+ description: 'The ID of the Plan',
},
{
displayName: 'Bucket ID',
@@ -118,7 +118,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the Bucket.',
+ description: 'The ID of the Bucket',
},
{
displayName: 'Title',
@@ -136,7 +136,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: '',
- description: 'Title of the task.',
+ description: 'Title of the task',
},
{
displayName: 'Additional Fields',
@@ -309,7 +309,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -333,7 +333,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -355,7 +355,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of the Task.',
+ description: 'The ID of the Task',
},
{
displayName: 'Update Fields',
@@ -392,7 +392,7 @@ export const taskFields: INodeProperties[] = [
name: 'bucketId',
type: 'string',
default: '',
- description: 'Channel name as it will appear to the user in Microsoft Teams.',
+ description: 'Channel name as it will appear to the user in Microsoft Teams',
},
{
displayName: 'Due Date Time',
@@ -437,14 +437,14 @@ export const taskFields: INodeProperties[] = [
name: 'planId',
type: 'string',
default: '',
- description: 'Channel name as it will appear to the user in Microsoft Teams.',
+ description: 'Channel name as it will appear to the user in Microsoft Teams',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'Title of the task.',
+ description: 'Title of the task',
},
],
},
diff --git a/packages/nodes-base/nodes/Microsoft/ToDo/LinkedResourceDescription.ts b/packages/nodes-base/nodes/Microsoft/ToDo/LinkedResourceDescription.ts
index 0ccfb87707..aeb60b4b66 100644
--- a/packages/nodes-base/nodes/Microsoft/ToDo/LinkedResourceDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/ToDo/LinkedResourceDescription.ts
@@ -109,7 +109,7 @@ export const linkedResourceFields: INodeProperties[] = [
],
},
},
- description: 'Field indicating title of the linked entity.',
+ description: 'Field indicating title of the linked entity',
},
{
displayName: 'Application Name',
@@ -127,7 +127,7 @@ export const linkedResourceFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'App name of the source that is sending the linked entity.',
+ description: 'App name of the source that is sending the linked entity',
},
{
displayName: 'Additional Fields',
@@ -151,14 +151,14 @@ export const linkedResourceFields: INodeProperties[] = [
name: 'externalId',
type: 'string',
default: '',
- description: 'ID of the object that is associated with this task on the third-party/partner system.',
+ description: 'ID of the object that is associated with this task on the third-party/partner system',
},
{
displayName: 'Web URL',
name: 'webUrl',
type: 'string',
default: '',
- description: 'Deeplink to the linked entity.',
+ description: 'Deeplink to the linked entity',
},
],
},
@@ -204,7 +204,7 @@ export const linkedResourceFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -226,7 +226,7 @@ export const linkedResourceFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -254,28 +254,28 @@ export const linkedResourceFields: INodeProperties[] = [
name: 'applicationName',
type: 'string',
default: '',
- description: 'App name of the source that is sending the linked entity.',
+ description: 'App name of the source that is sending the linked entity',
},
{
displayName: 'Name',
name: 'displayName',
type: 'string',
default: '',
- description: 'Field indicating title of the linked entity.',
+ description: 'Field indicating title of the linked entity',
},
{
displayName: 'External ID',
name: 'externalId',
type: 'string',
default: '',
- description: 'ID of the object that is associated with this task on the third-party/partner system.',
+ description: 'ID of the object that is associated with this task on the third-party/partner system',
},
{
displayName: 'Web URL',
name: 'webUrl',
type: 'string',
default: '',
- description: 'Deeplink to the linked entity.',
+ description: 'Deeplink to the linked entity',
},
],
},
diff --git a/packages/nodes-base/nodes/Microsoft/ToDo/ListDescription.ts b/packages/nodes-base/nodes/Microsoft/ToDo/ListDescription.ts
index f43bd00fb4..2eee946638 100644
--- a/packages/nodes-base/nodes/Microsoft/ToDo/ListDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/ToDo/ListDescription.ts
@@ -61,7 +61,7 @@ export const listFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'List display name.',
+ description: 'List display name',
},
/* -------------------------------------------------------------------------- */
@@ -85,7 +85,7 @@ export const listFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'The identifier of the list, unique in the user\'s mailbox.',
+ description: 'The identifier of the list, unique in the user\'s mailbox',
},
/* -------------------------------------------------------------------------- */
@@ -106,7 +106,7 @@ export const listFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -128,7 +128,7 @@ export const listFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -150,6 +150,6 @@ export const listFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'List display name.',
+ description: 'List display name',
},
];
diff --git a/packages/nodes-base/nodes/Microsoft/ToDo/TaskDescription.ts b/packages/nodes-base/nodes/Microsoft/ToDo/TaskDescription.ts
index df39f19ae7..08392c39d0 100644
--- a/packages/nodes-base/nodes/Microsoft/ToDo/TaskDescription.ts
+++ b/packages/nodes-base/nodes/Microsoft/ToDo/TaskDescription.ts
@@ -64,7 +64,7 @@ export const taskFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'The identifier of the list, unique in the user\'s mailbox.',
+ description: 'The identifier of the list, unique in the user\'s mailbox',
},
{
displayName: 'Subject',
@@ -82,7 +82,7 @@ export const taskFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'A brief description of the task.',
+ description: 'A brief description of the task',
},
{
displayName: 'Additional Fields',
@@ -106,14 +106,14 @@ export const taskFields: INodeProperties[] = [
name: 'content',
type: 'string',
default: '',
- description: 'The content of the task.',
+ description: 'The content of the task',
},
{
displayName: 'Due',
name: 'dueDateTime',
type: 'dateTime',
default: '',
- description: 'The date in the specified time zone that the task is to be finished.',
+ description: 'The date in the specified time zone that the task is to be finished',
},
{
displayName: 'Importance',
@@ -134,7 +134,7 @@ export const taskFields: INodeProperties[] = [
},
],
default: 'normal',
- description: 'The importance of the task.',
+ description: 'The importance of the task',
},
{
displayName: 'Status',
@@ -163,7 +163,7 @@ export const taskFields: INodeProperties[] = [
},
],
default: 'notStarted',
- description: 'Indicates the state or progress of the task.',
+ description: 'Indicates the state or progress of the task',
},
],
},
@@ -193,7 +193,7 @@ export const taskFields: INodeProperties[] = [
},
required: true,
default: '',
- description: 'The identifier of the list, unique in the user\'s mailbox.',
+ description: 'The identifier of the list, unique in the user\'s mailbox',
},
{
displayName: 'Task ID',
@@ -233,7 +233,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -255,7 +255,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -283,14 +283,14 @@ export const taskFields: INodeProperties[] = [
name: 'content',
type: 'string',
default: '',
- description: 'The content of the task.',
+ description: 'The content of the task',
},
{
displayName: 'Due Date Time',
name: 'dueDateTime',
type: 'dateTime',
default: '',
- description: 'The date in the specified time zone that the task is to be finished.',
+ description: 'The date in the specified time zone that the task is to be finished',
},
{
displayName: 'Importance',
@@ -311,7 +311,7 @@ export const taskFields: INodeProperties[] = [
},
],
default: 'normal',
- description: 'The importance of the task.',
+ description: 'The importance of the task',
},
{
displayName: 'Status',
@@ -340,14 +340,14 @@ export const taskFields: INodeProperties[] = [
},
],
default: 'notStarted',
- description: 'Indicates the state or progress of the task.',
+ description: 'Indicates the state or progress of the task',
},
{
displayName: 'Subject',
name: 'title',
type: 'string',
default: '',
- description: 'A brief description of the task.',
+ description: 'A brief description of the task',
},
],
},
diff --git a/packages/nodes-base/nodes/Mindee/Mindee.node.ts b/packages/nodes-base/nodes/Mindee/Mindee.node.ts
index 19e9db6be8..1d0b8b6eec 100644
--- a/packages/nodes-base/nodes/Mindee/Mindee.node.ts
+++ b/packages/nodes-base/nodes/Mindee/Mindee.node.ts
@@ -103,14 +103,14 @@ export class Mindee implements INodeType {
],
},
},
- description: 'Name of the binary property which containsthe data for the file to be uploaded.',
+ description: 'Name of the binary property which containsthe data for the file to be uploaded',
},
{
displayName: 'RAW Data',
name: 'rawData',
type: 'boolean',
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
],
};
diff --git a/packages/nodes-base/nodes/MondayCom/BoardColumnDescription.ts b/packages/nodes-base/nodes/MondayCom/BoardColumnDescription.ts
index 8106cfd39e..59cd07d779 100644
--- a/packages/nodes-base/nodes/MondayCom/BoardColumnDescription.ts
+++ b/packages/nodes-base/nodes/MondayCom/BoardColumnDescription.ts
@@ -200,7 +200,7 @@ export const boardColumnFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: `The new column's defaults.`,
+ description: 'The new column\'s defaults',
},
],
},
diff --git a/packages/nodes-base/nodes/MondayCom/BoardDescription.ts b/packages/nodes-base/nodes/MondayCom/BoardDescription.ts
index c828fe0027..b3705ec7ca 100644
--- a/packages/nodes-base/nodes/MondayCom/BoardDescription.ts
+++ b/packages/nodes-base/nodes/MondayCom/BoardDescription.ts
@@ -65,7 +65,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'Board unique identifiers.',
+ description: 'Board unique identifiers',
},
/* -------------------------------------------------------------------------- */
/* board:create */
@@ -171,7 +171,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'Board unique identifiers.',
+ description: 'Board unique identifiers',
},
/* -------------------------------------------------------------------------- */
/* board:getAll */
@@ -191,7 +191,7 @@ export const boardFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -215,6 +215,6 @@ export const boardFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/MondayCom/BoardItemDescription.ts b/packages/nodes-base/nodes/MondayCom/BoardItemDescription.ts
index 7fe33861f8..1fc17ce12d 100644
--- a/packages/nodes-base/nodes/MondayCom/BoardItemDescription.ts
+++ b/packages/nodes-base/nodes/MondayCom/BoardItemDescription.ts
@@ -18,7 +18,7 @@ export const boardItemOperations: INodeProperties[] = [
{
name: 'Add Update',
value: 'addUpdate',
- description: `Add an update to an item.`,
+ description: 'Add an update to an item',
},
{
name: 'Change Column Value',
@@ -87,7 +87,7 @@ export const boardItemFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier of the item to add update to.',
+ description: 'The unique identifier of the item to add update to',
},
{
displayName: 'Update Text',
@@ -105,7 +105,7 @@ export const boardItemFields: INodeProperties[] = [
],
},
},
- description: 'The update text to add.',
+ description: 'The update text to add',
},
/* -------------------------------------------------------------------------- */
/* boardItem:changeColumnValue */
@@ -129,7 +129,7 @@ export const boardItemFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier of the board.',
+ description: 'The unique identifier of the board',
},
{
displayName: 'Item ID',
@@ -147,7 +147,7 @@ export const boardItemFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier of the item to to change column of.',
+ description: 'The unique identifier of the item to to change column of',
},
{
displayName: 'Column ID',
@@ -171,7 +171,7 @@ export const boardItemFields: INodeProperties[] = [
],
},
},
- description: `The column's unique identifier.`,
+ description: 'The column\'s unique identifier',
},
{
displayName: 'Value',
@@ -213,7 +213,7 @@ export const boardItemFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier of the board.',
+ description: 'The unique identifier of the board',
},
{
displayName: 'Item ID',
@@ -316,7 +316,7 @@ export const boardItemFields: INodeProperties[] = [
},
},
default: '',
- description: `The new item's name.`,
+ description: 'The new item\'s name',
},
{
displayName: 'Additional Fields',
@@ -450,7 +450,7 @@ export const boardItemFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -474,7 +474,7 @@ export const boardItemFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* boardItem:getByColumnValue */
@@ -498,7 +498,7 @@ export const boardItemFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier of the board.',
+ description: 'The unique identifier of the board',
},
{
displayName: 'Column ID',
@@ -522,7 +522,7 @@ export const boardItemFields: INodeProperties[] = [
],
},
},
- description: `The column's unique identifier.`,
+ description: 'The column\'s unique identifier',
},
{
displayName: 'Column Value',
@@ -540,7 +540,7 @@ export const boardItemFields: INodeProperties[] = [
],
},
},
- description: 'The column value to search items by.',
+ description: 'The column value to search items by',
},
{
displayName: 'Return All',
@@ -557,7 +557,7 @@ export const boardItemFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -581,7 +581,7 @@ export const boardItemFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* boardItem:move */
diff --git a/packages/nodes-base/nodes/MongoDb/mongo.node.options.ts b/packages/nodes-base/nodes/MongoDb/mongo.node.options.ts
index 7e7e6945ed..8ba0d3a912 100644
--- a/packages/nodes-base/nodes/MongoDb/mongo.node.options.ts
+++ b/packages/nodes-base/nodes/MongoDb/mongo.node.options.ts
@@ -32,27 +32,27 @@ export const nodeDescription: INodeTypeDescription = {
{
name: 'Aggregate',
value: 'aggregate',
- description: 'Aggregate documents.',
+ description: 'Aggregate documents',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete documents.',
+ description: 'Delete documents',
},
{
name: 'Find',
value: 'find',
- description: 'Find documents.',
+ description: 'Find documents',
},
{
name: 'Insert',
value: 'insert',
- description: 'Insert documents.',
+ description: 'Insert documents',
},
{
name: 'Update',
value: 'update',
- description: 'Update documents.',
+ description: 'Update documents',
},
],
default: 'find',
@@ -112,7 +112,7 @@ export const nodeDescription: INodeTypeDescription = {
default: '{}',
placeholder: `{ "birth": { "$gt": "1950-01-01" } }`,
required: true,
- description: 'MongoDB Delete query.',
+ description: 'MongoDB Delete query',
},
// ----------------------------------
@@ -136,14 +136,14 @@ export const nodeDescription: INodeTypeDescription = {
name: 'limit',
type: 'number',
default: 0,
- description: 'Use limit to specify the maximum number of documents or 0 for unlimited documents.',
+ description: 'Use limit to specify the maximum number of documents or 0 for unlimited documents',
},
{
displayName: 'Skip',
name: 'skip',
type: 'number',
default: 0,
- description: 'The number of documents to skip in the results set.',
+ description: 'The number of documents to skip in the results set',
},
{
displayName: 'Sort (JSON format)',
@@ -155,7 +155,7 @@ export const nodeDescription: INodeTypeDescription = {
default: '{}',
placeholder: '{ "field": -1 }',
required: true,
- description: 'A json that defines the sort order of the result set.',
+ description: 'A json that defines the sort order of the result set',
},
],
},
@@ -176,7 +176,7 @@ export const nodeDescription: INodeTypeDescription = {
default: '{}',
placeholder: `{ "birth": { "$gt": "1950-01-01" } }`,
required: true,
- description: 'MongoDB Find query.',
+ description: 'MongoDB Find query',
},
// ----------------------------------
@@ -195,7 +195,7 @@ export const nodeDescription: INodeTypeDescription = {
},
default: '',
placeholder: 'name,description',
- description: `Comma-separated list of the fields to be included into the new document.`,
+ description: 'Comma-separated list of the fields to be included into the new document',
},
// ----------------------------------
@@ -230,7 +230,7 @@ export const nodeDescription: INodeTypeDescription = {
},
default: '',
placeholder: 'name,description',
- description: `Comma-separated list of the fields to be included into the new document.`,
+ description: 'Comma-separated list of the fields to be included into the new document',
},
{
displayName: 'Upsert',
@@ -264,7 +264,7 @@ export const nodeDescription: INodeTypeDescription = {
name: 'dateFields',
type: 'string',
default: '',
- description: 'Comma separeted list of fields that will be parse as Mongo Date type.',
+ description: 'Comma separeted list of fields that will be parse as Mongo Date type',
},
],
},
diff --git a/packages/nodes-base/nodes/MoveBinaryData/MoveBinaryData.node.ts b/packages/nodes-base/nodes/MoveBinaryData/MoveBinaryData.node.ts
index 7343ba86b5..cbe3e47135 100644
--- a/packages/nodes-base/nodes/MoveBinaryData/MoveBinaryData.node.ts
+++ b/packages/nodes-base/nodes/MoveBinaryData/MoveBinaryData.node.ts
@@ -70,11 +70,11 @@ export class MoveBinaryData implements INodeType {
{
name: 'JSON to Binary',
value: 'jsonToBinary',
- description: 'Move data from JSON to Binary.',
+ description: 'Move data from JSON to Binary',
},
],
default: 'binaryToJson',
- description: 'From and to where data should be moved.',
+ description: 'From and to where data should be moved',
},
@@ -211,7 +211,7 @@ export class MoveBinaryData implements INodeType {
},
},
default: false,
- description: 'Keeps the binary data as base64 string.',
+ description: 'Keeps the binary data as base64 string',
},
{
displayName: 'Encoding',
@@ -270,7 +270,7 @@ export class MoveBinaryData implements INodeType {
},
default: '',
placeholder: 'example.json',
- description: 'The file name to set.',
+ description: 'The file name to set',
},
{
displayName: 'JSON Parse',
@@ -292,7 +292,7 @@ export class MoveBinaryData implements INodeType {
},
},
default: false,
- description: 'Run JSON parse on the data to get proper object data.',
+ description: 'Run JSON parse on the data to get proper object data',
},
{
displayName: 'Keep Source',
@@ -321,7 +321,7 @@ export class MoveBinaryData implements INodeType {
},
},
default: false,
- description: 'Keeps the binary data as base64 string.',
+ description: 'Keeps the binary data as base64 string',
},
{
displayName: 'Mime Type',
@@ -355,7 +355,7 @@ export class MoveBinaryData implements INodeType {
},
},
default: false,
- description: 'Use data as is and do not JSON.stringify it.',
+ description: 'Use data as is and do not JSON.stringify it',
},
],
},
diff --git a/packages/nodes-base/nodes/Msg91/Msg91.node.ts b/packages/nodes-base/nodes/Msg91/Msg91.node.ts
index 01651350a3..eff52bcae5 100644
--- a/packages/nodes-base/nodes/Msg91/Msg91.node.ts
+++ b/packages/nodes-base/nodes/Msg91/Msg91.node.ts
@@ -84,7 +84,7 @@ export class Msg91 implements INodeType {
],
},
},
- description: 'The number from which to send the message.',
+ description: 'The number from which to send the message',
},
{
displayName: 'To',
@@ -103,7 +103,7 @@ export class Msg91 implements INodeType {
],
},
},
- description: 'The number, with coutry code, to which to send the message.',
+ description: 'The number, with coutry code, to which to send the message',
},
{
displayName: 'Message',
diff --git a/packages/nodes-base/nodes/MySql/MySql.node.ts b/packages/nodes-base/nodes/MySql/MySql.node.ts
index 8d69ef3691..c1d81bc6ed 100644
--- a/packages/nodes-base/nodes/MySql/MySql.node.ts
+++ b/packages/nodes-base/nodes/MySql/MySql.node.ts
@@ -39,17 +39,17 @@ export class MySql implements INodeType {
{
name: 'Execute Query',
value: 'executeQuery',
- description: 'Execute an SQL query.',
+ description: 'Execute an SQL query',
},
{
name: 'Insert',
value: 'insert',
- description: 'Insert rows in database.',
+ description: 'Insert rows in database',
},
{
name: 'Update',
value: 'update',
- description: 'Update rows in database.',
+ description: 'Update rows in database',
},
],
default: 'insert',
@@ -76,7 +76,7 @@ export class MySql implements INodeType {
default: '',
placeholder: 'SELECT id, name FROM product WHERE id < 40',
required: true,
- description: 'The SQL query to execute.',
+ description: 'The SQL query to execute',
},
@@ -96,7 +96,7 @@ export class MySql implements INodeType {
},
default: '',
required: true,
- description: 'Name of the table in which to insert data to.',
+ description: 'Name of the table in which to insert data to',
},
{
displayName: 'Columns',
@@ -111,7 +111,7 @@ export class MySql implements INodeType {
},
default: '',
placeholder: 'id,name,description',
- description: 'Comma-separated list of the properties which should used as columns for the new rows.',
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
{
displayName: 'Options',
@@ -126,14 +126,14 @@ export class MySql implements INodeType {
},
default: {},
placeholder: 'Add modifiers',
- description: 'Modifiers for INSERT statement.',
+ description: 'Modifiers for INSERT statement',
options: [
{
displayName: 'Ignore',
name: 'ignore',
type: 'boolean',
default: true,
- description: 'Ignore any ignorable errors that occur while executing the INSERT statement.',
+ description: 'Ignore any ignorable errors that occur while executing the INSERT statement',
},
{
displayName: 'Priority',
@@ -143,7 +143,7 @@ export class MySql implements INodeType {
{
name: 'Low Prioirity',
value: 'LOW_PRIORITY',
- description: 'Delays execution of the INSERT until no other clients are reading from the table.',
+ description: 'Delays execution of the INSERT until no other clients are reading from the table',
},
{
name: 'High Priority',
@@ -152,7 +152,7 @@ export class MySql implements INodeType {
},
],
default: 'LOW_PRIORITY',
- description: 'Ignore any ignorable errors that occur while executing the INSERT statement.',
+ description: 'Ignore any ignorable errors that occur while executing the INSERT statement',
},
],
},
@@ -204,7 +204,7 @@ export class MySql implements INodeType {
},
default: '',
placeholder: 'name,description',
- description: 'Comma-separated list of the properties which should used as columns for rows to update.',
+ description: 'Comma-separated list of the properties which should used as columns for rows to update',
},
],
diff --git a/packages/nodes-base/nodes/N8nTrainingCustomerDatastore/N8nTrainingCustomerDatastore.node.ts b/packages/nodes-base/nodes/N8nTrainingCustomerDatastore/N8nTrainingCustomerDatastore.node.ts
index 02d0b7c779..44959e6596 100644
--- a/packages/nodes-base/nodes/N8nTrainingCustomerDatastore/N8nTrainingCustomerDatastore.node.ts
+++ b/packages/nodes-base/nodes/N8nTrainingCustomerDatastore/N8nTrainingCustomerDatastore.node.ts
@@ -98,7 +98,7 @@ export class N8nTrainingCustomerDatastore implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -119,7 +119,7 @@ export class N8nTrainingCustomerDatastore implements INodeType {
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
],
};
diff --git a/packages/nodes-base/nodes/Nasa/Nasa.node.ts b/packages/nodes-base/nodes/Nasa/Nasa.node.ts
index eb53135e50..360302c9be 100644
--- a/packages/nodes-base/nodes/Nasa/Nasa.node.ts
+++ b/packages/nodes-base/nodes/Nasa/Nasa.node.ts
@@ -895,7 +895,7 @@ export class Nasa implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
diff --git a/packages/nodes-base/nodes/NextCloud/NextCloud.node.ts b/packages/nodes-base/nodes/NextCloud/NextCloud.node.ts
index 25de2ef059..5bbf2e200a 100644
--- a/packages/nodes-base/nodes/NextCloud/NextCloud.node.ts
+++ b/packages/nodes-base/nodes/NextCloud/NextCloud.node.ts
@@ -215,22 +215,22 @@ export class NextCloud implements INodeType {
{
name: 'Delete',
value: 'delete',
- description: 'Delete a user.',
+ description: 'Delete a user',
},
{
name: 'Get',
value: 'get',
- description: 'Retrieve information about a single user.',
+ description: 'Retrieve information about a single user',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Retrieve a list of users.',
+ description: 'Retrieve a list of users',
},
{
name: 'Update',
value: 'update',
- description: 'Edit attributes related to a user.',
+ description: 'Edit attributes related to a user',
},
],
default: 'create',
@@ -391,7 +391,7 @@ export class NextCloud implements INodeType {
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
// ----------------------------------
@@ -453,7 +453,7 @@ export class NextCloud implements INodeType {
},
placeholder: '',
- description: 'The text content of the file to upload.',
+ description: 'The text content of the file to upload',
},
{
displayName: 'Binary Property',
@@ -476,7 +476,7 @@ export class NextCloud implements INodeType {
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
// ----------------------------------
@@ -663,7 +663,7 @@ export class NextCloud implements INodeType {
},
},
default: '',
- description: 'Optional search string.',
+ description: 'Optional search string',
},
{
displayName: 'Permissions',
@@ -770,7 +770,7 @@ export class NextCloud implements INodeType {
},
},
placeholder: 'john',
- description: 'Username the user will have.',
+ description: 'Username the user will have',
},
{
displayName: 'Email',
@@ -789,7 +789,7 @@ export class NextCloud implements INodeType {
},
},
placeholder: 'john@email.com',
- description: 'The email of the user to invite.',
+ description: 'The email of the user to invite',
},
{
displayName: 'Additional Fields',
@@ -813,7 +813,7 @@ export class NextCloud implements INodeType {
name: 'displayName',
type: 'string',
default: '',
- description: 'The display name of the user to invite.',
+ description: 'The display name of the user to invite',
},
],
},
@@ -839,7 +839,7 @@ export class NextCloud implements INodeType {
},
},
placeholder: 'john',
- description: 'Username the user will have.',
+ description: 'Username the user will have',
},
// ----------------------------------
// user:getAll
@@ -859,7 +859,7 @@ export class NextCloud implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -883,7 +883,7 @@ export class NextCloud implements INodeType {
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -907,14 +907,14 @@ export class NextCloud implements INodeType {
name: 'search',
type: 'string',
default: '',
- description: 'Optional search string.',
+ description: 'Optional search string',
},
{
displayName: 'Offset',
name: 'offset',
type: 'number',
default: '',
- description: 'Optional offset value.',
+ description: 'Optional offset value',
},
],
},
@@ -955,42 +955,42 @@ export class NextCloud implements INodeType {
{
name: 'Address',
value: 'address',
- description: 'The new address for the user.',
+ description: 'The new address for the user',
},
{
name: 'Display Name',
value: 'displayname',
- description: 'The new display name for the user.',
+ description: 'The new display name for the user',
},
{
name: 'Email',
value: 'email',
- description: 'The new email for the user.',
+ description: 'The new email for the user',
},
{
name: 'Password',
value: 'password',
- description: 'The new password for the user.',
+ description: 'The new password for the user',
},
{
name: 'Twitter',
value: 'twitter',
- description: 'The new twitter handle for the user.',
+ description: 'The new twitter handle for the user',
},
{
name: 'Website',
value: 'website',
- description: 'The new website for the user.',
+ description: 'The new website for the user',
},
],
- description: 'Key of the updated attribute.',
+ description: 'Key of the updated attribute',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the updated attribute.',
+ description: 'Value of the updated attribute',
},
],
},
diff --git a/packages/nodes-base/nodes/NocoDB/OperationDescription.ts b/packages/nodes-base/nodes/NocoDB/OperationDescription.ts
index dbb2331cdd..758b5e9ede 100644
--- a/packages/nodes-base/nodes/NocoDB/OperationDescription.ts
+++ b/packages/nodes-base/nodes/NocoDB/OperationDescription.ts
@@ -90,7 +90,7 @@ export const operationFields: INodeProperties[] = [
},
},
default: false,
- description: `When set to true the attachment fields define in 'Download Fields' will be downloaded.`,
+ description: 'When set to true the attachment fields define in \'Download Fields\' will be downloaded',
},
{
displayName: 'Download Fields',
@@ -222,7 +222,7 @@ export const operationFields: INodeProperties[] = [
},
},
default: false,
- description: `When set to true the attachment fields define in 'Download Fields' will be downloaded.`,
+ description: 'When set to true the attachment fields define in \'Download Fields\' will be downloaded',
},
{
displayName: 'Download Fields',
diff --git a/packages/nodes-base/nodes/Notion/GenericFunctions.ts b/packages/nodes-base/nodes/Notion/GenericFunctions.ts
index 02d6c6e024..59bce5ea6a 100644
--- a/packages/nodes-base/nodes/Notion/GenericFunctions.ts
+++ b/packages/nodes-base/nodes/Notion/GenericFunctions.ts
@@ -662,7 +662,7 @@ export function getConditions() {
} as IDisplayOptions,
options: (typeConditions[types[type]] as string[]).map((type: string) => ({ name: capitalCase(type), value: type })),
default: '',
- description: 'The value of the property to filter by.',
+ description: 'The value of the property to filter by',
} as INodeProperties,
);
}
@@ -703,7 +703,7 @@ export function getConditions() {
} as IDisplayOptions,
options: formula[key].map((key: string) => ({ name: capitalCase(key), value: key })),
default: '',
- description: 'The value of the property to filter by.',
+ description: 'The value of the property to filter by',
} as INodeProperties,
);
}
diff --git a/packages/nodes-base/nodes/OpenThesaurus/OpenThesaurus.node.ts b/packages/nodes-base/nodes/OpenThesaurus/OpenThesaurus.node.ts
index 2f04046800..f8ba2f2178 100644
--- a/packages/nodes-base/nodes/OpenThesaurus/OpenThesaurus.node.ts
+++ b/packages/nodes-base/nodes/OpenThesaurus/OpenThesaurus.node.ts
@@ -76,7 +76,7 @@ export class OpenThesaurus implements INodeType {
name: 'baseform',
type: 'boolean',
default: false,
- description: 'Specifies the basic form for the search term if it is not already a basic form.',
+ description: 'Specifies the basic form for the search term if it is not already a basic form',
},
{
displayName: 'Similar',
@@ -90,14 +90,14 @@ export class OpenThesaurus implements INodeType {
name: 'startswith',
type: 'boolean',
default: false,
- description: 'Like substring = true, but only finds words that begin with the specified search term.',
+ description: 'Like substring = true, but only finds words that begin with the specified search term',
},
{
displayName: 'Substring',
name: 'substring',
type: 'boolean',
default: false,
- description: 'With this, up to ten words are returned for each answer that only contain the search term as a partial word.',
+ description: 'With this, up to ten words are returned for each answer that only contain the search term as a partial word',
},
{
displayName: 'Substring From Results',
@@ -121,14 +121,14 @@ export class OpenThesaurus implements INodeType {
name: 'subsynsets',
type: 'boolean',
default: false,
- description: 'Indicates that each synonym group has its (optional) sub-terms supplied.',
+ description: 'Indicates that each synonym group has its (optional) sub-terms supplied',
},
{
displayName: 'Supersynsets',
name: 'supersynsets',
type: 'boolean',
default: false,
- description: 'Indicates that each synonym group is supplied with its (optional) generic terms.',
+ description: 'Indicates that each synonym group is supplied with its (optional) generic terms',
},
],
},
diff --git a/packages/nodes-base/nodes/OpenWeatherMap/OpenWeatherMap.node.ts b/packages/nodes-base/nodes/OpenWeatherMap/OpenWeatherMap.node.ts
index 3671dc3a60..e3bcb55ddc 100644
--- a/packages/nodes-base/nodes/OpenWeatherMap/OpenWeatherMap.node.ts
+++ b/packages/nodes-base/nodes/OpenWeatherMap/OpenWeatherMap.node.ts
@@ -74,7 +74,7 @@ export class OpenWeatherMap implements INodeType {
},
],
default: 'metric',
- description: 'The format in which format the data should be returned.',
+ description: 'The format in which format the data should be returned',
},
// ----------------------------------
@@ -103,7 +103,7 @@ export class OpenWeatherMap implements INodeType {
},
],
default: 'cityName',
- description: 'How to define the location for which to return the weather.',
+ description: 'How to define the location for which to return the weather',
},
{
@@ -120,7 +120,7 @@ export class OpenWeatherMap implements INodeType {
],
},
},
- description: 'The name of the city to return the weather of.',
+ description: 'The name of the city to return the weather of',
},
{
@@ -153,7 +153,7 @@ export class OpenWeatherMap implements INodeType {
],
},
},
- description: 'The latitude of the location to return the weather of.',
+ description: 'The latitude of the location to return the weather of',
},
{
@@ -170,7 +170,7 @@ export class OpenWeatherMap implements INodeType {
],
},
},
- description: 'The longitude of the location to return the weather of.',
+ description: 'The longitude of the location to return the weather of',
},
{
diff --git a/packages/nodes-base/nodes/Orbit/ActivityDescription.ts b/packages/nodes-base/nodes/Orbit/ActivityDescription.ts
index 7ef55dd98e..6328afc7ea 100644
--- a/packages/nodes-base/nodes/Orbit/ActivityDescription.ts
+++ b/packages/nodes-base/nodes/Orbit/ActivityDescription.ts
@@ -193,7 +193,7 @@ export const activityFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -217,7 +217,7 @@ export const activityFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -241,7 +241,7 @@ export const activityFields: INodeProperties[] = [
name: 'memberId',
type: 'string',
default: '',
- description: 'When set the post will be filtered by the member id.',
+ description: 'When set the post will be filtered by the member id',
},
],
},
diff --git a/packages/nodes-base/nodes/Orbit/MemberDescription.ts b/packages/nodes-base/nodes/Orbit/MemberDescription.ts
index c220f72fa9..06e809a5b1 100644
--- a/packages/nodes-base/nodes/Orbit/MemberDescription.ts
+++ b/packages/nodes-base/nodes/Orbit/MemberDescription.ts
@@ -196,7 +196,7 @@ export const memberFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -220,7 +220,7 @@ export const memberFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Resolve Identities',
@@ -261,7 +261,7 @@ export const memberFields: INodeProperties[] = [
name: 'sort',
type: 'string',
default: '',
- description: 'Name of the field the response will be sorted by.',
+ description: 'Name of the field the response will be sorted by',
},
{
displayName: 'Sort Direction',
@@ -340,7 +340,7 @@ export const memberFields: INodeProperties[] = [
],
},
},
- description: `Set to github, twitter, email, discourse or the source of any identities you've manually created.`,
+ description: 'Set to github, twitter, email, discourse or the source of any identities you\'ve manually created',
},
{
displayName: 'Search By',
@@ -398,7 +398,7 @@ export const memberFields: INodeProperties[] = [
],
},
},
- description: `The username at the source.`,
+ description: 'The username at the source',
},
{
displayName: 'Username',
@@ -424,7 +424,7 @@ export const memberFields: INodeProperties[] = [
],
},
},
- description: `The username at the source.`,
+ description: 'The username at the source',
},
{
displayName: 'Email',
@@ -445,7 +445,7 @@ export const memberFields: INodeProperties[] = [
],
},
},
- description: `The email address.`,
+ description: 'The email address',
},
{
displayName: 'Host',
@@ -679,7 +679,7 @@ export const memberFields: INodeProperties[] = [
},
],
default: '',
- description: `Set to github, twitter, email, discourse or the source of any identities you've manually created.`,
+ description: 'Set to github, twitter, email, discourse or the source of any identities you\'ve manually created',
},
{
displayName: 'Search By',
@@ -725,7 +725,7 @@ export const memberFields: INodeProperties[] = [
],
},
},
- description: `The username at the source.`,
+ description: 'The username at the source',
},
{
displayName: 'Username',
@@ -745,7 +745,7 @@ export const memberFields: INodeProperties[] = [
],
},
},
- description: `The username at the source.`,
+ description: 'The username at the source',
},
{
displayName: 'Email',
@@ -849,14 +849,14 @@ export const memberFields: INodeProperties[] = [
name: 'tagsToAdd',
type: 'string',
default: '',
- description: 'Adds tags to member; comma-separated string or array.',
+ description: 'Adds tags to member; comma-separated string or array',
},
{
displayName: 'Tag List',
name: 'tagList',
type: 'string',
default: '',
- description: 'Replaces all tags for the member; comma-separated string or array.',
+ description: 'Replaces all tags for the member; comma-separated string or array',
},
{
displayName: 'T-Shirt',
diff --git a/packages/nodes-base/nodes/Orbit/NoteDescription.ts b/packages/nodes-base/nodes/Orbit/NoteDescription.ts
index b6f425b1ef..6477d8980a 100644
--- a/packages/nodes-base/nodes/Orbit/NoteDescription.ts
+++ b/packages/nodes-base/nodes/Orbit/NoteDescription.ts
@@ -152,7 +152,7 @@ export const noteFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -176,7 +176,7 @@ export const noteFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Resolve Member',
diff --git a/packages/nodes-base/nodes/Orbit/PostDescription.ts b/packages/nodes-base/nodes/Orbit/PostDescription.ts
index f782b06e47..3d35aab860 100644
--- a/packages/nodes-base/nodes/Orbit/PostDescription.ts
+++ b/packages/nodes-base/nodes/Orbit/PostDescription.ts
@@ -94,7 +94,7 @@ export const postFields: INodeProperties[] = [
],
},
},
- description: 'Supply any URL and Orbit will do its best job to parse out a title, description, and image.',
+ description: 'Supply any URL and Orbit will do its best job to parse out a title, description, and image',
},
{
displayName: 'Additional Fields',
@@ -160,7 +160,7 @@ export const postFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -184,7 +184,7 @@ export const postFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -208,7 +208,7 @@ export const postFields: INodeProperties[] = [
name: 'memberId',
type: 'string',
default: '',
- description: 'When set the post will be filtered by the member ID.',
+ description: 'When set the post will be filtered by the member ID',
},
],
},
diff --git a/packages/nodes-base/nodes/Oura/ProfileDescription.ts b/packages/nodes-base/nodes/Oura/ProfileDescription.ts
index 3ab715ad50..b1797a8e2e 100644
--- a/packages/nodes-base/nodes/Oura/ProfileDescription.ts
+++ b/packages/nodes-base/nodes/Oura/ProfileDescription.ts
@@ -18,7 +18,7 @@ export const profileOperations: INodeProperties[] = [
{
name: 'Get',
value: 'get',
- description: 'Get the user\'s personal information.',
+ description: 'Get the user\'s personal information',
},
],
default: 'get',
diff --git a/packages/nodes-base/nodes/Oura/SummaryDescription.ts b/packages/nodes-base/nodes/Oura/SummaryDescription.ts
index 55cc5c0c68..a5b7acca15 100644
--- a/packages/nodes-base/nodes/Oura/SummaryDescription.ts
+++ b/packages/nodes-base/nodes/Oura/SummaryDescription.ts
@@ -18,17 +18,17 @@ export const summaryOperations: INodeProperties[] = [
{
name: 'Get Activity Summary',
value: 'getActivity',
- description: 'Get the user\'s activity summary.',
+ description: 'Get the user\'s activity summary',
},
{
name: 'Get Readiness Summary',
value: 'getReadiness',
- description: 'Get the user\'s readiness summary.',
+ description: 'Get the user\'s readiness summary',
},
{
name: 'Get Sleep Periods',
value: 'getSleep',
- description: 'Get the user\'s sleep summary.',
+ description: 'Get the user\'s sleep summary',
},
],
default: 'getSleep',
@@ -49,7 +49,7 @@ export const summaryFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -70,7 +70,7 @@ export const summaryFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/Paddle/CouponDescription.ts b/packages/nodes-base/nodes/Paddle/CouponDescription.ts
index 2a92fe6001..70e2d6bb3d 100644
--- a/packages/nodes-base/nodes/Paddle/CouponDescription.ts
+++ b/packages/nodes-base/nodes/Paddle/CouponDescription.ts
@@ -18,17 +18,17 @@ export const couponOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
- description: 'Create a coupon.',
+ description: 'Create a coupon',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all coupons.',
+ description: 'Get all coupons',
},
{
name: 'Update',
value: 'update',
- description: 'Update a coupon.',
+ description: 'Update a coupon',
},
],
default: 'create',
@@ -58,7 +58,7 @@ export const couponFields: INodeProperties[] = [
},
},
default: 'checkout',
- description: 'Either product (valid for specified products or subscription plans) or checkout (valid for any checkout).',
+ description: 'Either product (valid for specified products or subscription plans) or checkout (valid for any checkout)',
options: [
{
name: 'Checkout',
@@ -115,7 +115,7 @@ export const couponFields: INodeProperties[] = [
},
},
default: 'flat',
- description: 'Either flat or percentage.',
+ description: 'Either flat or percentage',
options: [
{
name: 'Flat',
@@ -132,7 +132,7 @@ export const couponFields: INodeProperties[] = [
name: 'discountAmount',
type: 'number',
default: 1,
- description: 'Discount amount in currency.',
+ description: 'Discount amount in currency',
typeOptions: {
minValue: 1,
},
@@ -158,7 +158,7 @@ export const couponFields: INodeProperties[] = [
name: 'discountAmount',
type: 'number',
default: 1,
- description: 'Discount amount in percentage.',
+ description: 'Discount amount in percentage',
typeOptions: {
minValue: 1,
maxValue: 100,
@@ -185,7 +185,7 @@ export const couponFields: INodeProperties[] = [
name: 'currency',
type: 'options',
default: 'EUR',
- description: 'The currency must match the balance currency specified in your account.',
+ description: 'The currency must match the balance currency specified in your account',
options: [
{
name: 'ARS',
@@ -346,7 +346,7 @@ export const couponFields: INodeProperties[] = [
],
},
},
- description: `Attributes in JSON form.`,
+ description: 'Attributes in JSON form',
},
{
displayName: 'Additional Fields',
@@ -380,7 +380,7 @@ export const couponFields: INodeProperties[] = [
name: 'couponCode',
type: 'string',
default: '',
- description: 'Will be randomly generated if not specified.',
+ description: 'Will be randomly generated if not specified',
},
{
displayName: 'Coupon Prefix',
@@ -401,7 +401,7 @@ export const couponFields: INodeProperties[] = [
name: 'expires',
type: 'dateTime',
default: '',
- description: 'The coupon will expire on the date at 00:00:00 UTC.',
+ description: 'The coupon will expire on the date at 00:00:00 UTC',
},
{
displayName: 'Group',
@@ -412,7 +412,7 @@ export const couponFields: INodeProperties[] = [
maxValue: 50,
},
default: '',
- description: 'The name of the coupon group this coupon should be assigned to.',
+ description: 'The name of the coupon group this coupon should be assigned to',
},
{
displayName: 'Number of Coupons',
@@ -426,7 +426,7 @@ export const couponFields: INodeProperties[] = [
name: 'recurring',
type: 'boolean',
default: false,
- description: 'If the coupon is used on subscription products, this indicates whether the discount should apply to recurring payments after the initial purchase.',
+ description: 'If the coupon is used on subscription products, this indicates whether the discount should apply to recurring payments after the initial purchase',
},
],
},
@@ -449,7 +449,7 @@ export const couponFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The specific product/subscription ID.',
+ description: 'The specific product/subscription ID',
},
{
displayName: 'Return All',
@@ -466,7 +466,7 @@ export const couponFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -490,7 +490,7 @@ export const couponFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* coupon:update */
@@ -513,7 +513,7 @@ export const couponFields: INodeProperties[] = [
},
},
default: 'couponCode',
- description: 'Either flat or percentage.',
+ description: 'Either flat or percentage',
options: [
{
name: 'Coupon Code',
@@ -569,7 +569,7 @@ export const couponFields: INodeProperties[] = [
},
},
default: '',
- description: 'The name of the group of coupons you want to update.',
+ description: 'The name of the group of coupons you want to update',
},
{
displayName: 'JSON Parameters',
@@ -608,7 +608,7 @@ export const couponFields: INodeProperties[] = [
],
},
},
- description: `Attributes in JSON form.`,
+ description: 'Attributes in JSON form',
},
{
displayName: 'Additional Fields',
@@ -652,7 +652,7 @@ export const couponFields: INodeProperties[] = [
name: 'currency',
type: 'options',
default: 'EUR',
- description: 'The currency must match the balance currency specified in your account.',
+ description: 'The currency must match the balance currency specified in your account',
displayOptions: {
show: {
discountType: [
@@ -772,7 +772,7 @@ export const couponFields: INodeProperties[] = [
name: 'discountAmount',
type: 'number',
default: '',
- description: 'Discount amount.',
+ description: 'Discount amount',
displayOptions: {
show: {
discountType: [
@@ -789,7 +789,7 @@ export const couponFields: INodeProperties[] = [
name: 'discountAmount',
type: 'number',
default: '',
- description: 'Discount amount.',
+ description: 'Discount amount',
displayOptions: {
show: {
discountType: [
@@ -807,7 +807,7 @@ export const couponFields: INodeProperties[] = [
name: 'discountType',
type: 'options',
default: 'flat',
- description: 'Either flat or percentage.',
+ description: 'Either flat or percentage',
options: [
{
name: 'Flat',
@@ -828,14 +828,14 @@ export const couponFields: INodeProperties[] = [
name: 'expires',
type: 'dateTime',
default: '',
- description: 'The coupon will expire on the date at 00:00:00 UTC.',
+ description: 'The coupon will expire on the date at 00:00:00 UTC',
},
{
displayName: 'New Coupon Code',
name: 'newCouponCode',
type: 'string',
default: '',
- description: 'New code to rename the coupon to.',
+ description: 'New code to rename the coupon to',
},
{
displayName: 'New Group Name',
@@ -846,7 +846,7 @@ export const couponFields: INodeProperties[] = [
maxValue: 50,
},
default: '',
- description: 'New group name to move coupon to.',
+ description: 'New group name to move coupon to',
},
{
displayName: 'Product IDs',
@@ -860,7 +860,7 @@ export const couponFields: INodeProperties[] = [
name: 'recurring',
type: 'boolean',
default: false,
- description: 'If the coupon is used on subscription products, this indicates whether the discount should apply to recurring payments after the initial purchase.',
+ description: 'If the coupon is used on subscription products, this indicates whether the discount should apply to recurring payments after the initial purchase',
},
],
},
diff --git a/packages/nodes-base/nodes/Paddle/OrderDescription.ts b/packages/nodes-base/nodes/Paddle/OrderDescription.ts
index 18020fca22..c05f6cdcce 100644
--- a/packages/nodes-base/nodes/Paddle/OrderDescription.ts
+++ b/packages/nodes-base/nodes/Paddle/OrderDescription.ts
@@ -47,6 +47,6 @@ export const orderFields: INodeProperties[] = [
],
},
},
- description: 'The identifier of the buyer’s checkout.',
+ description: 'The identifier of the buyer’s checkout',
},
];
diff --git a/packages/nodes-base/nodes/Paddle/PaymentDescription.ts b/packages/nodes-base/nodes/Paddle/PaymentDescription.ts
index 57457e345e..f59f333452 100644
--- a/packages/nodes-base/nodes/Paddle/PaymentDescription.ts
+++ b/packages/nodes-base/nodes/Paddle/PaymentDescription.ts
@@ -18,12 +18,12 @@ export const paymentOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
- description: 'Get all payment.',
+ description: 'Get all payment',
},
{
name: 'Reschedule',
value: 'reschedule',
- description: 'Reschedule payment.',
+ description: 'Reschedule payment',
},
],
default: 'getAll',
@@ -50,7 +50,7 @@ export const paymentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -74,7 +74,7 @@ export const paymentFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'JSON Parameters',
@@ -113,7 +113,7 @@ export const paymentFields: INodeProperties[] = [
],
},
},
- description: `Attributes in JSON form.`,
+ description: 'Attributes in JSON form',
},
{
displayName: 'Additional Fields',
@@ -140,35 +140,35 @@ export const paymentFields: INodeProperties[] = [
name: 'from',
type: 'dateTime',
default: '',
- description: 'payment starting from date.',
+ description: 'payment starting from date',
},
{
displayName: 'Date To',
name: 'to',
type: 'dateTime',
default: '',
- description: 'payment up until date.',
+ description: 'payment up until date',
},
{
displayName: 'Is Paid',
name: 'isPaid',
type: 'boolean',
default: false,
- description: 'payment is paid.',
+ description: 'payment is paid',
},
{
displayName: 'Plan ID',
name: 'plan',
type: 'string',
default: '',
- description: 'Filter: The product/plan ID (single or comma-separated values).',
+ description: 'Filter: The product/plan ID (single or comma-separated values)',
},
{
displayName: 'Subscription ID',
name: 'subscriptionId',
type: 'number',
default: '',
- description: 'A specific user subscription ID.',
+ description: 'A specific user subscription ID',
},
{
displayName: 'State',
@@ -225,7 +225,7 @@ export const paymentFields: INodeProperties[] = [
],
},
},
- description: 'The upcoming subscription payment ID.',
+ description: 'The upcoming subscription payment ID',
},
{
displayName: 'Date',
@@ -242,6 +242,6 @@ export const paymentFields: INodeProperties[] = [
],
},
},
- description: 'Date you want to move the payment to.',
+ description: 'Date you want to move the payment to',
},
];
diff --git a/packages/nodes-base/nodes/Paddle/PlanDescription.ts b/packages/nodes-base/nodes/Paddle/PlanDescription.ts
index 845157fd08..3df712cc72 100644
--- a/packages/nodes-base/nodes/Paddle/PlanDescription.ts
+++ b/packages/nodes-base/nodes/Paddle/PlanDescription.ts
@@ -18,12 +18,12 @@ export const planOperations: INodeProperties[] = [
{
name: 'Get',
value: 'get',
- description: 'Get a plan.',
+ description: 'Get a plan',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all plans.',
+ description: 'Get all plans',
},
],
default: 'get',
@@ -52,7 +52,7 @@ export const planFields: INodeProperties[] = [
],
},
},
- description: 'Filter: The subscription plan ID.',
+ description: 'Filter: The subscription plan ID',
},
{
displayName: 'Return All',
@@ -69,7 +69,7 @@ export const planFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -93,6 +93,6 @@ export const planFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Paddle/ProductDescription.ts b/packages/nodes-base/nodes/Paddle/ProductDescription.ts
index dcfadee973..0edb7d40d9 100644
--- a/packages/nodes-base/nodes/Paddle/ProductDescription.ts
+++ b/packages/nodes-base/nodes/Paddle/ProductDescription.ts
@@ -18,7 +18,7 @@ export const productOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
- description: 'Get all products.',
+ description: 'Get all products',
},
],
default: 'getAll',
@@ -42,7 +42,7 @@ export const productFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -66,6 +66,6 @@ export const productFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Paddle/UserDescription.ts b/packages/nodes-base/nodes/Paddle/UserDescription.ts
index b4e9d73311..ce20588d07 100644
--- a/packages/nodes-base/nodes/Paddle/UserDescription.ts
+++ b/packages/nodes-base/nodes/Paddle/UserDescription.ts
@@ -45,7 +45,7 @@ export const userFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -70,7 +70,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'Number of subscription records to return per page.',
+ description: 'Number of subscription records to return per page',
},
{
displayName: 'JSON Parameters',
@@ -109,7 +109,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: `Attributes in JSON form.`,
+ description: 'Attributes in JSON form',
},
{
displayName: 'Additional Fields',
@@ -136,14 +136,14 @@ export const userFields: INodeProperties[] = [
name: 'planId',
type: 'string',
default: '',
- description: 'Filter: The subscription plan ID.',
+ description: 'Filter: The subscription plan ID',
},
{
displayName: 'Subscription ID',
name: 'subscriptionId',
type: 'string',
default: '',
- description: 'A specific user subscription ID.',
+ description: 'A specific user subscription ID',
},
{
displayName: 'State',
diff --git a/packages/nodes-base/nodes/PagerDuty/IncidentDescription.ts b/packages/nodes-base/nodes/PagerDuty/IncidentDescription.ts
index 4ec16a7be5..1f928bacf9 100644
--- a/packages/nodes-base/nodes/PagerDuty/IncidentDescription.ts
+++ b/packages/nodes-base/nodes/PagerDuty/IncidentDescription.ts
@@ -62,7 +62,7 @@ export const incidentFields: INodeProperties[] = [
],
},
},
- description: 'A succinct description of the nature, symptoms, cause, or effect of the incident.',
+ description: 'A succinct description of the nature, symptoms, cause, or effect of the incident',
},
{
displayName: 'Service ID',
@@ -83,7 +83,7 @@ export const incidentFields: INodeProperties[] = [
],
},
},
- description: 'The incident will be created on this service.',
+ description: 'The incident will be created on this service',
},
{
displayName: 'Email',
@@ -101,7 +101,7 @@ export const incidentFields: INodeProperties[] = [
],
},
},
- description: `The email address of a valid user associated with the account making the request.`,
+ description: 'The email address of a valid user associated with the account making the request',
},
{
displayName: 'Additional Fields',
@@ -142,7 +142,7 @@ export const incidentFields: INodeProperties[] = [
name: 'incidentKey',
type: 'string',
default: '',
- description: 'Sending subsequent requests referencing the same service and with the same incident_key will result in those requests being rejected if an open incident matches that incident_key.',
+ description: 'Sending subsequent requests referencing the same service and with the same incident_key will result in those requests being rejected if an open incident matches that incident_key',
},
{
displayName: 'Priority ID',
@@ -152,7 +152,7 @@ export const incidentFields: INodeProperties[] = [
loadOptionsMethod: 'getPriorities',
},
default: '',
- description: 'The incident will be created on this service.',
+ description: 'The incident will be created on this service',
},
{
displayName: 'Urgency',
@@ -202,7 +202,7 @@ export const incidentFields: INodeProperties[] = [
name: 'conferenceNumber',
type: 'string',
default: '',
- description: `Phone numbers should be formatted like +1 415-555-1212,,,,1234#, where a comma (,) represents a one-second wait and pound (#) completes access code input.`,
+ description: 'Phone numbers should be formatted like +1 415-555-1212,,,,1234#, where a comma (,) represents a one-second wait and pound (#) completes access code input',
},
{
displayName: 'Conference URL',
@@ -234,7 +234,7 @@ export const incidentFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the incident.',
+ description: 'Unique identifier for the incident',
},
/* -------------------------------------------------------------------------- */
/* incident:getAll */
@@ -254,7 +254,7 @@ export const incidentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -278,7 +278,7 @@ export const incidentFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -308,7 +308,7 @@ export const incidentFields: INodeProperties[] = [
},
],
default: '',
- description: 'When set to all, the since and until parameters and defaults are ignored.',
+ description: 'When set to all, the since and until parameters and defaults are ignored',
},
{
displayName: 'Incident Key',
@@ -360,7 +360,7 @@ export const incidentFields: INodeProperties[] = [
},
],
default: [],
- description: 'Additional details to include.',
+ description: 'Additional details to include',
},
{
displayName: 'Service IDs',
@@ -370,7 +370,7 @@ export const incidentFields: INodeProperties[] = [
loadOptionsMethod: 'getServices',
},
default: [],
- description: 'Returns only the incidents associated with the passed service(s).',
+ description: 'Returns only the incidents associated with the passed service(s)',
},
{
displayName: 'Since',
@@ -406,7 +406,7 @@ export const incidentFields: INodeProperties[] = [
},
],
default: [],
- description: 'Returns only the incidents associated with the passed service(s).',
+ description: 'Returns only the incidents associated with the passed service(s)',
},
{
displayName: 'Team IDs',
@@ -477,7 +477,7 @@ export const incidentFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the incident.',
+ description: 'Unique identifier for the incident',
},
{
displayName: 'Email',
@@ -495,7 +495,7 @@ export const incidentFields: INodeProperties[] = [
],
},
},
- description: `The email address of a valid user associated with the account making the request.`,
+ description: 'The email address of a valid user associated with the account making the request',
},
{
displayName: 'Update Fields',
@@ -522,7 +522,7 @@ export const incidentFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Escalate the incident to this level in the escalation policy.',
+ description: 'Escalate the incident to this level in the escalation policy',
},
{
displayName: 'Escalation Policy ID',
@@ -542,7 +542,7 @@ export const incidentFields: INodeProperties[] = [
loadOptionsMethod: 'getPriorities',
},
default: '',
- description: 'The incident will be created on this service.',
+ description: 'The incident will be created on this service',
},
{
displayName: 'Resolution',
@@ -552,7 +552,7 @@ export const incidentFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'The resolution for this incident if status is set to resolved.',
+ description: 'The resolution for this incident if status is set to resolved',
},
{
displayName: 'Status',
@@ -569,14 +569,14 @@ export const incidentFields: INodeProperties[] = [
},
],
default: '',
- description: 'The new status of the incident.',
+ description: 'The new status of the incident',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'A succinct description of the nature, symptoms, cause, or effect of the incident.',
+ description: 'A succinct description of the nature, symptoms, cause, or effect of the incident',
},
{
displayName: 'Urgency',
@@ -626,7 +626,7 @@ export const incidentFields: INodeProperties[] = [
name: 'conferenceNumber',
type: 'string',
default: '',
- description: `Phone numbers should be formatted like +1 415-555-1212,,,,1234#, where a comma (,) represents a one-second wait and pound (#) completes access code input.`,
+ description: 'Phone numbers should be formatted like +1 415-555-1212,,,,1234#, where a comma (,) represents a one-second wait and pound (#) completes access code input',
},
{
displayName: 'Conference URL',
diff --git a/packages/nodes-base/nodes/PagerDuty/IncidentNoteDescription.ts b/packages/nodes-base/nodes/PagerDuty/IncidentNoteDescription.ts
index 5d331304ab..ece27380ed 100644
--- a/packages/nodes-base/nodes/PagerDuty/IncidentNoteDescription.ts
+++ b/packages/nodes-base/nodes/PagerDuty/IncidentNoteDescription.ts
@@ -52,7 +52,7 @@ export const incidentNoteFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the incident.',
+ description: 'Unique identifier for the incident',
},
{
displayName: 'Content',
@@ -91,7 +91,7 @@ export const incidentNoteFields: INodeProperties[] = [
],
},
},
- description: `The email address of a valid user associated with the account making the request.`,
+ description: 'The email address of a valid user associated with the account making the request',
},
/* -------------------------------------------------------------------------- */
/* incidentNote:getAll */
@@ -112,7 +112,7 @@ export const incidentNoteFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the incident.',
+ description: 'Unique identifier for the incident',
},
{
displayName: 'Return All',
@@ -129,7 +129,7 @@ export const incidentNoteFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -153,6 +153,6 @@ export const incidentNoteFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/PagerDuty/LogEntryDescription.ts b/packages/nodes-base/nodes/PagerDuty/LogEntryDescription.ts
index 063e47268e..d68eef486a 100644
--- a/packages/nodes-base/nodes/PagerDuty/LogEntryDescription.ts
+++ b/packages/nodes-base/nodes/PagerDuty/LogEntryDescription.ts
@@ -51,7 +51,7 @@ export const logEntryFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the log entry.',
+ description: 'Unique identifier for the log entry',
},
/* -------------------------------------------------------------------------- */
/* logEntry:getAll */
@@ -71,7 +71,7 @@ export const logEntryFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -95,7 +95,7 @@ export const logEntryFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -137,14 +137,14 @@ export const logEntryFields: INodeProperties[] = [
},
],
default: [],
- description: 'Additional details to include.',
+ description: 'Additional details to include',
},
{
displayName: 'Is Overview',
name: 'isOverview',
type: 'boolean',
default: false,
- description: 'If true, will return a subset of log entries that show only the most important changes to the incident.',
+ description: 'If true, will return a subset of log entries that show only the most important changes to the incident',
},
{
displayName: 'Since',
diff --git a/packages/nodes-base/nodes/PagerDuty/UserDescription.ts b/packages/nodes-base/nodes/PagerDuty/UserDescription.ts
index bec35b25dd..230895ac5e 100644
--- a/packages/nodes-base/nodes/PagerDuty/UserDescription.ts
+++ b/packages/nodes-base/nodes/PagerDuty/UserDescription.ts
@@ -46,6 +46,6 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the user.',
+ description: 'Unique identifier for the user',
},
];
diff --git a/packages/nodes-base/nodes/PayPal/PayPalTrigger.node.ts b/packages/nodes-base/nodes/PayPal/PayPalTrigger.node.ts
index e486b2a637..081f3f8c9d 100644
--- a/packages/nodes-base/nodes/PayPal/PayPalTrigger.node.ts
+++ b/packages/nodes-base/nodes/PayPal/PayPalTrigger.node.ts
@@ -52,7 +52,7 @@ export class PayPalTrigger implements INodeType {
type: 'multiOptions',
required: true,
default: [],
- description: 'The event to listen to.',
+ description: 'The event to listen to',
typeOptions: {
loadOptionsMethod: 'getEvents',
},
@@ -70,7 +70,7 @@ export class PayPalTrigger implements INodeType {
{
name: '*',
value: '*',
- description: 'Any time any event is triggered (Wildcard Event).',
+ description: 'Any time any event is triggered (Wildcard Event)',
},
];
let events;
diff --git a/packages/nodes-base/nodes/PayPal/PaymentDescription.ts b/packages/nodes-base/nodes/PayPal/PaymentDescription.ts
index 707e57f089..3df0525f6b 100644
--- a/packages/nodes-base/nodes/PayPal/PaymentDescription.ts
+++ b/packages/nodes-base/nodes/PayPal/PaymentDescription.ts
@@ -109,16 +109,16 @@ export const payoutFields: INodeProperties[] = [
{
name: 'Email',
value: 'email',
- description: 'The unencrypted email.',
+ description: 'The unencrypted email',
},
{
name: 'PayPal ID',
value: 'paypalId',
- description: 'The encrypted PayPal account number.',
+ description: 'The encrypted PayPal account number',
},
],
default: 'email',
- description: 'The ID type that identifies the recipient of the payment.',
+ description: 'The ID type that identifies the recipient of the payment',
},
{
displayName: 'Receiver Value',
@@ -219,7 +219,7 @@ export const payoutFields: INodeProperties[] = [
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'An array of individual payout items.',
+ description: 'An array of individual payout items',
displayOptions: {
show: {
resource: [
@@ -295,7 +295,7 @@ export const payoutFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the payout for which to show details.',
+ description: 'The ID of the payout for which to show details',
},
{
displayName: 'Return All',
@@ -312,7 +312,7 @@ export const payoutFields: INodeProperties[] = [
],
},
},
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -336,7 +336,7 @@ export const payoutFields: INodeProperties[] = [
],
},
},
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
];
@@ -392,7 +392,7 @@ export const payoutItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the payout item for which to show details.',
+ description: 'The ID of the payout item for which to show details',
},
/* -------------------------------------------------------------------------- */
@@ -415,6 +415,6 @@ export const payoutItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the payout item to cancel.',
+ description: 'The ID of the payout item to cancel',
},
];
diff --git a/packages/nodes-base/nodes/Phantombuster/AgentDescription.ts b/packages/nodes-base/nodes/Phantombuster/AgentDescription.ts
index b8df553320..2eaebea94d 100644
--- a/packages/nodes-base/nodes/Phantombuster/AgentDescription.ts
+++ b/packages/nodes-base/nodes/Phantombuster/AgentDescription.ts
@@ -18,27 +18,27 @@ export const agentOperations: INodeProperties[] = [
{
name: 'Delete',
value: 'delete',
- description: 'Delete an agent by id.',
+ description: 'Delete an agent by id',
},
{
name: 'Get',
value: 'get',
- description: 'Get an agent by id.',
+ description: 'Get an agent by id',
},
{
name: 'Get All',
value: 'getAll',
- description: `Get all agents of the current user's organization.`,
+ description: 'Get all agents of the current user\'s organization',
},
{
name: 'Get Output',
value: 'getOutput',
- description: 'Get the output of the most recent container of an agent.',
+ description: 'Get the output of the most recent container of an agent',
},
{
name: 'Launch',
value: 'launch',
- description: 'Add an agent to the launch queue.',
+ description: 'Add an agent to the launch queue',
},
],
default: 'launch',
@@ -111,7 +111,7 @@ export const agentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -135,7 +135,7 @@ export const agentFields: INodeProperties[] = [
maxValue: 50,
},
default: 25,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -200,7 +200,7 @@ export const agentFields: INodeProperties[] = [
name: 'prevContainerId',
type: 'string',
default: '',
- description: `If set, the output will be retrieved from the container after the specified previous container id.`,
+ description: 'If set, the output will be retrieved from the container after the specified previous container id',
},
{
displayName: 'Prev Status',
@@ -233,14 +233,14 @@ export const agentFields: INodeProperties[] = [
},
],
default: '',
- description: 'If set, allows to define which status was previously retrieved on user-side.',
+ description: 'If set, allows to define which status was previously retrieved on user-side',
},
{
displayName: 'Pre Runtime Event Index',
name: 'prevRuntimeEventIndex',
type: 'number',
default: 0,
- description: `If set, the container's runtime events will be returned in the response starting from the provided previous runtime event index.`,
+ description: 'If set, the container\'s runtime events will be returned in the response starting from the provided previous runtime event index',
},
],
},
@@ -358,14 +358,14 @@ export const agentFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the argument key to add.',
+ description: 'Name of the argument key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the argument key.',
+ description: 'Value to set for the argument key',
},
],
},
@@ -397,14 +397,14 @@ export const agentFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the argument key to add.',
+ description: 'Name of the argument key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the argument key.',
+ description: 'Value to set for the argument key',
},
],
},
@@ -429,21 +429,21 @@ export const agentFields: INodeProperties[] = [
name: 'manualLaunch',
type: 'boolean',
default: false,
- description: 'If set, the agent will be considered as "launched manually".',
+ description: 'If set, the agent will be considered as "launched manually"',
},
{
displayName: 'Max Instance Count',
name: 'maxInstanceCount',
type: 'number',
default: 0,
- description: 'If set, the agent will only be launched if the number of already running instances is below the specified number.',
+ description: 'If set, the agent will only be launched if the number of already running instances is below the specified number',
},
{
displayName: 'Save Argument',
name: 'saveArgument',
type: 'string',
default: '',
- description: 'If true, argument will be saved as the default launch options for the agent.',
+ description: 'If true, argument will be saved as the default launch options for the agent',
},
],
},
diff --git a/packages/nodes-base/nodes/PhilipsHue/LightDescription.ts b/packages/nodes-base/nodes/PhilipsHue/LightDescription.ts
index 4e155f01ec..4f2bb67f70 100644
--- a/packages/nodes-base/nodes/PhilipsHue/LightDescription.ts
+++ b/packages/nodes-base/nodes/PhilipsHue/LightDescription.ts
@@ -82,7 +82,7 @@ export const lightFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -106,7 +106,7 @@ export const lightFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -169,7 +169,7 @@ export const lightFields: INodeProperties[] = [
},
},
default: true,
- description: 'On/Off state of the light.',
+ description: 'On/Off state of the light',
},
{
displayName: 'Additional Fields',
@@ -201,7 +201,7 @@ export const lightFields: INodeProperties[] = [
{
name: 'Select',
value: 'select',
- description: 'The light is performing one breathe cycle.',
+ description: 'The light is performing one breathe cycle',
},
{
name: 'LSelect',
@@ -221,7 +221,7 @@ export const lightFields: INodeProperties[] = [
maxValue: 254,
},
default: 100,
- description: 'The brightness value to set the light to.Brightness is a scale from 1 (the minimum the light is capable of) to 254 (the maximum).',
+ description: 'The brightness value to set the light to.Brightness is a scale from 1 (the minimum the light is capable of) to 254 (the maximum)',
},
{
displayName: 'Brightness Increments',
@@ -283,7 +283,7 @@ export const lightFields: INodeProperties[] = [
},
],
default: '',
- description: 'The dynamic effect of the light.',
+ description: 'The dynamic effect of the light',
},
{
displayName: 'Hue',
diff --git a/packages/nodes-base/nodes/Pipedrive/Pipedrive.node.ts b/packages/nodes-base/nodes/Pipedrive/Pipedrive.node.ts
index 8d64f1be75..35a7e3965f 100644
--- a/packages/nodes-base/nodes/Pipedrive/Pipedrive.node.ts
+++ b/packages/nodes-base/nodes/Pipedrive/Pipedrive.node.ts
@@ -617,7 +617,7 @@ export class Pipedrive implements INodeType {
},
],
default: '0',
- description: 'Whether the activity is done or not.',
+ description: 'Whether the activity is done or not',
},
{
displayName: 'Type',
@@ -636,7 +636,7 @@ export class Pipedrive implements INodeType {
},
},
placeholder: 'call',
- description: 'Type of the activity like "call", "meeting", ...',
+ description: 'Type of the activity like "call", "meeting", ',
},
{
displayName: 'Additional Fields',
@@ -711,7 +711,7 @@ export class Pipedrive implements INodeType {
displayName: 'Custom Properties',
name: 'customProperties',
placeholder: 'Add Custom Property',
- description: 'Adds a custom property to set also values which have not been predefined.',
+ description: 'Adds a custom property to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -727,14 +727,14 @@ export class Pipedrive implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -762,7 +762,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the activity to delete.',
+ description: 'ID of the activity to delete',
},
@@ -785,7 +785,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the activity to get.',
+ description: 'ID of the activity to get',
},
// ----------------------------------
// activity:update
@@ -806,7 +806,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the activity to update.',
+ description: 'ID of the activity to update',
},
{
displayName: 'Update Fields',
@@ -854,7 +854,7 @@ export class Pipedrive implements INodeType {
},
],
default: '0',
- description: 'Whether the activity is done or not.',
+ description: 'Whether the activity is done or not',
},
{
@@ -898,7 +898,7 @@ export class Pipedrive implements INodeType {
type: 'string',
default: '',
placeholder: 'call',
- description: 'Type of the activity like "call", "meeting", ...',
+ description: 'Type of the activity like "call", "meeting", ',
},
{
displayName: 'User ID',
@@ -914,7 +914,7 @@ export class Pipedrive implements INodeType {
displayName: 'Custom Properties',
name: 'customProperties',
placeholder: 'Add Custom Property',
- description: 'Adds a custom property to set also values which have not been predefined.',
+ description: 'Adds a custom property to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -930,14 +930,14 @@ export class Pipedrive implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -1027,7 +1027,7 @@ export class Pipedrive implements INodeType {
name: 'person_id',
type: 'number',
default: 0,
- description: 'ID of the person this deal will be associated with.',
+ description: 'ID of the person this deal will be associated with',
displayOptions: {
show: {
operation: [
@@ -1070,7 +1070,7 @@ export class Pipedrive implements INodeType {
displayName: 'Custom Properties',
name: 'customProperties',
placeholder: 'Add Custom Property',
- description: 'Adds a custom property to set also values which have not been predefined.',
+ description: 'Adds a custom property to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -1089,14 +1089,14 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getDealCustomFields',
},
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -1116,7 +1116,7 @@ export class Pipedrive implements INodeType {
name: 'lost_reason',
type: 'string',
default: '',
- description: 'Reason why the deal was lost.',
+ description: 'Reason why the deal was lost',
},
{
displayName: 'Organization ID',
@@ -1145,7 +1145,7 @@ export class Pipedrive implements INodeType {
],
},
},
- description: 'ID of the person this deal will be associated with.',
+ description: 'ID of the person this deal will be associated with',
},
{
displayName: 'Probability',
@@ -1156,7 +1156,7 @@ export class Pipedrive implements INodeType {
maxValue: 100,
},
default: 0,
- description: 'Deal success probability percentage.',
+ description: 'Deal success probability percentage',
},
{
displayName: 'Stage ID',
@@ -1249,7 +1249,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the deal to delete.',
+ description: 'ID of the deal to delete',
},
// ----------------------------------
@@ -1271,7 +1271,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the deal to duplicate.',
+ description: 'ID of the deal to duplicate',
},
// ----------------------------------
@@ -1293,7 +1293,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the deal to get.',
+ description: 'ID of the deal to get',
},
// ----------------------------------
@@ -1315,7 +1315,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the deal to update.',
+ description: 'ID of the deal to update',
},
{
displayName: 'Update Fields',
@@ -1345,7 +1345,7 @@ export class Pipedrive implements INodeType {
displayName: 'Custom Properties',
name: 'customProperties',
placeholder: 'Add Custom Property',
- description: 'Adds a custom property to set also values which have not been predefined.',
+ description: 'Adds a custom property to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -1364,14 +1364,14 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getDealCustomFields',
},
default: '',
- description: 'Name of the custom field to set.',
+ description: 'Name of the custom field to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -1401,7 +1401,7 @@ export class Pipedrive implements INodeType {
name: 'lost_reason',
type: 'string',
default: '',
- description: 'Reason why the deal was lost.',
+ description: 'Reason why the deal was lost',
},
{
displayName: 'Organization ID',
@@ -1411,14 +1411,14 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getOrganizationIds',
},
default: '',
- description: 'ID of the organization this deal will be associated with.',
+ description: 'ID of the organization this deal will be associated with',
},
{
displayName: 'Person ID',
name: 'person_id',
type: 'number',
default: 0,
- description: 'ID of the person this deal will be associated with.',
+ description: 'ID of the person this deal will be associated with',
},
{
displayName: 'Probability',
@@ -1429,7 +1429,7 @@ export class Pipedrive implements INodeType {
maxValue: 100,
},
default: 0,
- description: 'Deal success probability percentage.',
+ description: 'Deal success probability percentage',
},
{
displayName: 'Stage ID',
@@ -1873,7 +1873,7 @@ export class Pipedrive implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1894,7 +1894,7 @@ export class Pipedrive implements INodeType {
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -1925,14 +1925,14 @@ export class Pipedrive implements INodeType {
name: 'organizationId',
type: 'string',
default: '',
- description: 'Will filter Deals by the provided Organization ID.',
+ description: 'Will filter Deals by the provided Organization ID',
},
{
displayName: 'Person ID',
name: 'personId',
type: 'string',
default: '',
- description: 'Will filter Deals by the provided Person ID.',
+ description: 'Will filter Deals by the provided Person ID',
},
{
displayName: 'Search Fields',
@@ -2009,7 +2009,7 @@ export class Pipedrive implements INodeType {
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be created.',
+ description: 'Name of the binary property which contains the data for the file to be created',
},
{
displayName: 'Additional Fields',
@@ -2033,7 +2033,7 @@ export class Pipedrive implements INodeType {
name: 'activity_id',
type: 'number',
default: 0,
- description: 'ID of the activite this file will be associated with.',
+ description: 'ID of the activite this file will be associated with',
},
{
displayName: 'Deal ID',
@@ -2050,21 +2050,21 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getOrganizationIds',
},
default: '',
- description: 'ID of the organization this deal will be associated with.',
+ description: 'ID of the organization this deal will be associated with',
},
{
displayName: 'Person ID',
name: 'person_id',
type: 'number',
default: 0,
- description: 'ID of the person this file will be associated with.',
+ description: 'ID of the person this file will be associated with',
},
{
displayName: 'Product ID',
name: 'product_id',
type: 'number',
default: 0,
- description: 'ID of the person this file will be associated with.',
+ description: 'ID of the person this file will be associated with',
},
],
},
@@ -2088,7 +2088,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the file to delete.',
+ description: 'ID of the file to delete',
},
// ----------------------------------
@@ -2110,7 +2110,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the file to download.',
+ description: 'ID of the file to download',
},
{
displayName: 'Binary Property',
@@ -2128,7 +2128,7 @@ export class Pipedrive implements INodeType {
],
},
},
- description: 'Name of the binary property to which to write the data of the downloaded file.',
+ description: 'Name of the binary property to which to write the data of the downloaded file',
},
// ----------------------------------
@@ -2598,7 +2598,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the note to delete.',
+ description: 'ID of the note to delete',
},
// ----------------------------------
@@ -2620,7 +2620,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the note to get.',
+ description: 'ID of the note to get',
},
// ----------------------------------
@@ -2642,7 +2642,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the note to update.',
+ description: 'ID of the note to update',
},
{
displayName: 'Update Fields',
@@ -2693,14 +2693,14 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getOrganizationIds',
},
default: '',
- description: 'ID of the organization this deal will be associated with.',
+ description: 'ID of the organization this deal will be associated with',
},
{
displayName: 'Person ID',
name: 'person_id',
type: 'number',
default: 0,
- description: 'ID of the person this note will be associated with.',
+ description: 'ID of the person this note will be associated with',
},
],
},
@@ -2753,7 +2753,7 @@ export class Pipedrive implements INodeType {
displayName: 'Custom Properties',
name: 'customProperties',
placeholder: 'Add Custom Property',
- description: 'Adds a custom property to set also values which have not been predefined.',
+ description: 'Adds a custom property to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -2769,14 +2769,14 @@ export class Pipedrive implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -2830,7 +2830,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the organization to delete.',
+ description: 'ID of the organization to delete',
},
// ----------------------------------
@@ -2852,7 +2852,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the organization to get.',
+ description: 'ID of the organization to get',
},
// ----------------------------------
@@ -2930,7 +2930,7 @@ export class Pipedrive implements INodeType {
name: 'rawData',
type: 'boolean',
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
],
},
@@ -2976,7 +2976,7 @@ export class Pipedrive implements INodeType {
displayName: 'Custom Properties',
name: 'customProperties',
placeholder: 'Add Custom Property',
- description: 'Adds a custom property to set also values which have not been predefined.',
+ description: 'Adds a custom property to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -2992,14 +2992,14 @@ export class Pipedrive implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -3096,7 +3096,7 @@ export class Pipedrive implements INodeType {
displayName: 'Custom Properties',
name: 'customProperties',
placeholder: 'Add Custom Property',
- description: 'Adds a custom property to set also values which have not been predefined.',
+ description: 'Adds a custom property to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -3115,14 +3115,14 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getPersonCustomFields',
},
default: '',
- description: 'Name of the custom field to set.',
+ description: 'Name of the custom field to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -3136,7 +3136,7 @@ export class Pipedrive implements INodeType {
multipleValues: true,
},
default: '',
- description: 'Email of the person.',
+ description: 'Email of the person',
},
{
displayName: 'Label',
@@ -3170,7 +3170,7 @@ export class Pipedrive implements INodeType {
},
],
default: 'subscribed',
- description: 'Please be aware that it is only allowed once to change the marketing status from an old status to a new one.',
+ description: 'Please be aware that it is only allowed once to change the marketing status from an old status to a new one',
},
{
displayName: 'Organization ID',
@@ -3180,7 +3180,7 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getOrganizationIds',
},
default: '',
- description: 'ID of the organization this deal will be associated with.',
+ description: 'ID of the organization this deal will be associated with',
},
{
displayName: 'Phone',
@@ -3190,7 +3190,7 @@ export class Pipedrive implements INodeType {
multipleValues: true,
},
default: '',
- description: 'Phone number of the person.',
+ description: 'Phone number of the person',
},
{
displayName: 'Visible to',
@@ -3217,7 +3217,7 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getUserIds',
},
default: '',
- description: 'ID of the User this deal will be associated with.',
+ description: 'ID of the User this deal will be associated with',
},
],
},
@@ -3241,7 +3241,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the person to delete.',
+ description: 'ID of the person to delete',
},
// ----------------------------------
@@ -3263,7 +3263,7 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the person to get.',
+ description: 'ID of the person to get',
},
// ----------------------------------
@@ -3285,13 +3285,13 @@ export class Pipedrive implements INodeType {
},
default: 0,
required: true,
- description: 'ID of the person to update.',
+ description: 'ID of the person to update',
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
- description: 'The fields to update.',
+ description: 'The fields to update',
placeholder: 'Add Field',
displayOptions: {
show: {
@@ -3309,7 +3309,7 @@ export class Pipedrive implements INodeType {
displayName: 'Custom Properties',
name: 'customProperties',
placeholder: 'Add Custom Property',
- description: 'Adds a custom property to set also values which have not been predefined.',
+ description: 'Adds a custom property to set also values which have not been predefined',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -3328,14 +3328,14 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getPersonCustomFields',
},
default: '',
- description: 'Name of the custom field to set.',
+ description: 'Name of the custom field to set',
},
{
displayName: 'Property Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -3349,7 +3349,7 @@ export class Pipedrive implements INodeType {
multipleValues: true,
},
default: '',
- description: 'Email of the person.',
+ description: 'Email of the person',
},
{
displayName: 'Label',
@@ -3383,7 +3383,7 @@ export class Pipedrive implements INodeType {
},
],
default: 'subscribed',
- description: 'Please be aware that it is only allowed once to change the marketing status from an old status to a new one.',
+ description: 'Please be aware that it is only allowed once to change the marketing status from an old status to a new one',
},
{
displayName: 'Name',
@@ -3400,7 +3400,7 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getOrganizationIds',
},
default: '',
- description: 'ID of the organization this deal will be associated with.',
+ description: 'ID of the organization this deal will be associated with',
},
{
displayName: 'Phone',
@@ -3410,7 +3410,7 @@ export class Pipedrive implements INodeType {
multipleValues: true,
},
default: '',
- description: 'Phone number of the person.',
+ description: 'Phone number of the person',
},
{
displayName: 'User ID',
@@ -3420,7 +3420,7 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getUserIds',
},
default: '',
- description: 'ID of the User this person will be associated with.',
+ description: 'ID of the User this person will be associated with',
},
{
displayName: 'Visible to',
@@ -3503,7 +3503,7 @@ export class Pipedrive implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -3524,7 +3524,7 @@ export class Pipedrive implements INodeType {
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// ----------------------------------
@@ -3573,7 +3573,7 @@ export class Pipedrive implements INodeType {
name: 'done',
type: 'boolean',
default: false,
- description: 'Whether the activity is done or not.',
+ description: 'Whether the activity is done or not',
},
{
displayName: 'Exclude Activity IDs',
@@ -3656,7 +3656,7 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getFilters',
},
default: '',
- description: 'ID of the filter to use.',
+ description: 'ID of the filter to use',
},
{
displayName: 'First Char',
@@ -3725,21 +3725,21 @@ export class Pipedrive implements INodeType {
name: 'includeFields',
type: 'string',
default: '',
- description: 'Supports including optional fields in the results which are not provided by default.',
+ description: 'Supports including optional fields in the results which are not provided by default',
},
{
displayName: 'Organization ID',
name: 'organizationId',
type: 'string',
default: '',
- description: 'Will filter Deals by the provided Organization ID.',
+ description: 'Will filter Deals by the provided Organization ID',
},
{
displayName: 'RAW Data',
name: 'rawData',
type: 'boolean',
default: false,
- description: `Returns the data exactly in the way it got received from the API.`,
+ description: 'Returns the data exactly in the way it got received from the API',
},
],
},
@@ -3787,14 +3787,14 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getOrganizationIds',
},
default: '',
- description: 'ID of the organization this deal will be associated with.',
+ description: 'ID of the organization this deal will be associated with',
},
{
displayName: 'Person ID',
name: 'person_id',
type: 'number',
default: 0,
- description: 'ID of the person this note will be associated with.',
+ description: 'ID of the person this note will be associated with',
},
],
},
@@ -3857,7 +3857,7 @@ export class Pipedrive implements INodeType {
loadOptionsMethod: 'getActivityTypes',
},
default: [],
- description: 'Type of the Activity.',
+ description: 'Type of the Activity',
},
{
displayName: 'User ID',
diff --git a/packages/nodes-base/nodes/Pipedrive/PipedriveTrigger.node.ts b/packages/nodes-base/nodes/Pipedrive/PipedriveTrigger.node.ts
index a43ebfbe8f..a63fb9a956 100644
--- a/packages/nodes-base/nodes/Pipedrive/PipedriveTrigger.node.ts
+++ b/packages/nodes-base/nodes/Pipedrive/PipedriveTrigger.node.ts
@@ -126,7 +126,7 @@ export class PipedriveTrigger implements INodeType {
},
],
default: 'none',
- description: 'If authentication should be activated for the webhook (makes it more secure).',
+ description: 'If authentication should be activated for the webhook (makes it more secure)',
},
{
displayName: 'Action',
@@ -160,7 +160,7 @@ export class PipedriveTrigger implements INodeType {
},
],
default: '*',
- description: 'Type of action to receive notifications about.',
+ description: 'Type of action to receive notifications about',
},
{
displayName: 'Object',
@@ -213,7 +213,7 @@ export class PipedriveTrigger implements INodeType {
},
],
default: '*',
- description: 'Type of object to receive notifications about.',
+ description: 'Type of object to receive notifications about',
},
],
};
diff --git a/packages/nodes-base/nodes/Plivo/CallDescription.ts b/packages/nodes-base/nodes/Plivo/CallDescription.ts
index 458c3398d9..42c0fe6af7 100644
--- a/packages/nodes-base/nodes/Plivo/CallDescription.ts
+++ b/packages/nodes-base/nodes/Plivo/CallDescription.ts
@@ -36,7 +36,7 @@ export const callFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: '+14156667777',
- description: 'Caller ID for the call to make.',
+ description: 'Caller ID for the call to make',
required: true,
displayOptions: {
show: {
@@ -56,7 +56,7 @@ export const callFields: INodeProperties[] = [
default: '',
placeholder: '+14156667778',
required: true,
- description: 'Phone number to make the call to.',
+ description: 'Phone number to make the call to',
displayOptions: {
show: {
resource: [
@@ -73,7 +73,7 @@ export const callFields: INodeProperties[] = [
name: 'answer_method',
type: 'options',
required: true,
- description: 'HTTP verb to be used when invoking the Answer URL.',
+ description: 'HTTP verb to be used when invoking the Answer URL',
default: 'POST',
options: [
{
diff --git a/packages/nodes-base/nodes/Plivo/MmsDescription.ts b/packages/nodes-base/nodes/Plivo/MmsDescription.ts
index 6929ecea12..e608d3ed86 100644
--- a/packages/nodes-base/nodes/Plivo/MmsDescription.ts
+++ b/packages/nodes-base/nodes/Plivo/MmsDescription.ts
@@ -35,7 +35,7 @@ export const mmsFields: INodeProperties[] = [
name: 'from',
type: 'string',
default: '',
- description: 'Plivo Number to send the MMS from.',
+ description: 'Plivo Number to send the MMS from',
placeholder: '+14156667777',
required: true,
displayOptions: {
@@ -54,7 +54,7 @@ export const mmsFields: INodeProperties[] = [
name: 'to',
type: 'string',
default: '',
- description: 'Phone number to send the MMS to.',
+ description: 'Phone number to send the MMS to',
placeholder: '+14156667778',
required: true,
displayOptions: {
@@ -73,7 +73,7 @@ export const mmsFields: INodeProperties[] = [
name: 'message',
type: 'string',
default: '',
- description: 'Message to send.',
+ description: 'Message to send',
required: false,
displayOptions: {
show: {
@@ -102,6 +102,6 @@ export const mmsFields: INodeProperties[] = [
],
},
},
- description: 'Comma-separated list of media URLs of the files from your file server.',
+ description: 'Comma-separated list of media URLs of the files from your file server',
},
];
diff --git a/packages/nodes-base/nodes/Plivo/SmsDescription.ts b/packages/nodes-base/nodes/Plivo/SmsDescription.ts
index d9ce3078ed..7b593e47c8 100644
--- a/packages/nodes-base/nodes/Plivo/SmsDescription.ts
+++ b/packages/nodes-base/nodes/Plivo/SmsDescription.ts
@@ -18,7 +18,7 @@ export const smsOperations: INodeProperties[] = [
{
name: 'Send',
value: 'send',
- description: 'Send an SMS message.',
+ description: 'Send an SMS message',
},
],
default: 'send',
@@ -35,7 +35,7 @@ export const smsFields: INodeProperties[] = [
name: 'from',
type: 'string',
default: '',
- description: 'Plivo Number to send the SMS from.',
+ description: 'Plivo Number to send the SMS from',
placeholder: '+14156667777',
required: true,
displayOptions: {
@@ -54,7 +54,7 @@ export const smsFields: INodeProperties[] = [
name: 'to',
type: 'string',
default: '',
- description: 'Phone number to send the message to.',
+ description: 'Phone number to send the message to',
placeholder: '+14156667778',
required: true,
displayOptions: {
@@ -73,7 +73,7 @@ export const smsFields: INodeProperties[] = [
name: 'message',
type: 'string',
default: '',
- description: 'Message to send.',
+ description: 'Message to send',
required: true,
displayOptions: {
show: {
diff --git a/packages/nodes-base/nodes/PostHog/AliasDescription.ts b/packages/nodes-base/nodes/PostHog/AliasDescription.ts
index c455abcb7c..ecccc10ebe 100644
--- a/packages/nodes-base/nodes/PostHog/AliasDescription.ts
+++ b/packages/nodes-base/nodes/PostHog/AliasDescription.ts
@@ -47,7 +47,7 @@ export const aliasFields: INodeProperties[] = [
},
},
default: '',
- description: 'The name of the alias.',
+ description: 'The name of the alias',
},
{
displayName: 'Distinct ID',
@@ -65,7 +65,7 @@ export const aliasFields: INodeProperties[] = [
},
},
default: '',
- description: `The user's distinct ID.`,
+ description: 'The user\'s distinct ID',
},
{
displayName: 'Additional Fields',
@@ -119,7 +119,7 @@ export const aliasFields: INodeProperties[] = [
name: 'timestamp',
type: 'dateTime',
default: '',
- description: `If not set, it'll automatically be set to the current time.`,
+ description: 'If not set, it\'ll automatically be set to the current time',
},
],
},
diff --git a/packages/nodes-base/nodes/PostHog/EventDescription.ts b/packages/nodes-base/nodes/PostHog/EventDescription.ts
index 5365757974..24c233d312 100644
--- a/packages/nodes-base/nodes/PostHog/EventDescription.ts
+++ b/packages/nodes-base/nodes/PostHog/EventDescription.ts
@@ -47,7 +47,7 @@ export const eventFields: INodeProperties[] = [
},
},
default: '',
- description: 'The name of the event.',
+ description: 'The name of the event',
},
{
displayName: 'Distinct ID',
@@ -65,7 +65,7 @@ export const eventFields: INodeProperties[] = [
},
},
default: '',
- description: `The user's distinct ID.`,
+ description: 'The user\'s distinct ID',
},
{
displayName: 'Additional Fields',
@@ -119,7 +119,7 @@ export const eventFields: INodeProperties[] = [
name: 'timestamp',
type: 'dateTime',
default: '',
- description: `If not set, it'll automatically be set to the current time.`,
+ description: 'If not set, it\'ll automatically be set to the current time',
},
],
},
diff --git a/packages/nodes-base/nodes/PostHog/IdentityDescription.ts b/packages/nodes-base/nodes/PostHog/IdentityDescription.ts
index 227d3ef471..0e5058b12d 100644
--- a/packages/nodes-base/nodes/PostHog/IdentityDescription.ts
+++ b/packages/nodes-base/nodes/PostHog/IdentityDescription.ts
@@ -46,7 +46,7 @@ export const identityFields: INodeProperties[] = [
},
},
default: '',
- description: `The identity's distinct ID.`,
+ description: 'The identity\'s distinct ID',
},
{
displayName: 'Additional Fields',
@@ -106,7 +106,7 @@ export const identityFields: INodeProperties[] = [
name: 'timestamp',
type: 'dateTime',
default: '',
- description: `If not set, it'll automatically be set to the current time.`,
+ description: 'If not set, it\'ll automatically be set to the current time',
},
],
},
diff --git a/packages/nodes-base/nodes/PostHog/TrackDescription.ts b/packages/nodes-base/nodes/PostHog/TrackDescription.ts
index 4643600909..5d8b791e40 100644
--- a/packages/nodes-base/nodes/PostHog/TrackDescription.ts
+++ b/packages/nodes-base/nodes/PostHog/TrackDescription.ts
@@ -71,7 +71,7 @@ export const trackFields: INodeProperties[] = [
},
},
default: '',
- description: `The user's distinct ID.`,
+ description: 'The user\'s distinct ID',
},
{
displayName: 'Additional Fields',
@@ -168,7 +168,7 @@ export const trackFields: INodeProperties[] = [
name: 'timestamp',
type: 'dateTime',
default: '',
- description: `If not set, it'll automatically be set to the current time.`,
+ description: 'If not set, it\'ll automatically be set to the current time',
},
],
},
diff --git a/packages/nodes-base/nodes/Postgres/Postgres.node.ts b/packages/nodes-base/nodes/Postgres/Postgres.node.ts
index cc2b32514b..05f5db3d3e 100644
--- a/packages/nodes-base/nodes/Postgres/Postgres.node.ts
+++ b/packages/nodes-base/nodes/Postgres/Postgres.node.ts
@@ -104,7 +104,7 @@ export class Postgres implements INodeType {
},
default: '',
required: true,
- description: 'Name of the table in which to insert data to.',
+ description: 'Name of the table in which to insert data to',
},
{
displayName: 'Columns',
@@ -238,7 +238,7 @@ export class Postgres implements INodeType {
},
default: '',
placeholder: 'quantity,price',
- description: 'Comma-separated list of properties which should be used as query parameters.',
+ description: 'Comma-separated list of properties which should be used as query parameters',
},
],
},
diff --git a/packages/nodes-base/nodes/Postmark/PostmarkTrigger.node.ts b/packages/nodes-base/nodes/Postmark/PostmarkTrigger.node.ts
index 67fb978f6c..96640f0683 100644
--- a/packages/nodes-base/nodes/Postmark/PostmarkTrigger.node.ts
+++ b/packages/nodes-base/nodes/Postmark/PostmarkTrigger.node.ts
@@ -51,42 +51,42 @@ export class PostmarkTrigger implements INodeType {
{
name: 'Bounce',
value: 'bounce',
- description: 'Trigger on bounce.',
+ description: 'Trigger on bounce',
},
{
name: 'Click',
value: 'click',
- description: 'Trigger on click.',
+ description: 'Trigger on click',
},
{
name: 'Delivery',
value: 'delivery',
- description: 'Trigger on delivery.',
+ description: 'Trigger on delivery',
},
{
name: 'Open',
value: 'open',
- description: 'Trigger webhook on open.',
+ description: 'Trigger webhook on open',
},
{
name: 'Spam Complaint',
value: 'spamComplaint',
- description: 'Trigger on spam complaint.',
+ description: 'Trigger on spam complaint',
},
{
name: 'Subscription Change',
value: 'subscriptionChange',
- description: 'Trigger on subscription change.',
+ description: 'Trigger on subscription change',
},
],
default: [],
required: true,
- description: 'Webhook events that will be enabled for that endpoint.',
+ description: 'Webhook events that will be enabled for that endpoint',
},
{
displayName: 'First Open',
name: 'firstOpen',
- description: 'Only fires on first open for event "Open".',
+ description: 'Only fires on first open for event "Open"',
type: 'boolean',
default: false,
displayOptions: {
@@ -100,7 +100,7 @@ export class PostmarkTrigger implements INodeType {
{
displayName: 'Include Content',
name: 'includeContent',
- description: 'Includes message content for events "Bounce" and "Spam Complaint".',
+ description: 'Includes message content for events "Bounce" and "Spam Complaint"',
type: 'boolean',
default: false,
displayOptions: {
diff --git a/packages/nodes-base/nodes/ProfitWell/MetricDescription.ts b/packages/nodes-base/nodes/ProfitWell/MetricDescription.ts
index 7a05708292..7482907e57 100644
--- a/packages/nodes-base/nodes/ProfitWell/MetricDescription.ts
+++ b/packages/nodes-base/nodes/ProfitWell/MetricDescription.ts
@@ -98,7 +98,7 @@ export const metricFields: INodeProperties[] = [
],
},
},
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Pushbullet/Pushbullet.node.ts b/packages/nodes-base/nodes/Pushbullet/Pushbullet.node.ts
index cab7885094..e819400d1f 100644
--- a/packages/nodes-base/nodes/Pushbullet/Pushbullet.node.ts
+++ b/packages/nodes-base/nodes/Pushbullet/Pushbullet.node.ts
@@ -141,7 +141,7 @@ export class Pushbullet implements INodeType {
},
},
default: '',
- description: `Title of the push.`,
+ description: 'Title of the push',
},
{
displayName: 'Body',
@@ -164,7 +164,7 @@ export class Pushbullet implements INodeType {
},
},
default: '',
- description: `Body of the push.`,
+ description: 'Body of the push',
},
{
displayName: 'URL',
@@ -185,7 +185,7 @@ export class Pushbullet implements INodeType {
},
},
default: '',
- description: `URL of the push.`,
+ description: 'URL of the push',
},
{
displayName: 'Binary Property',
@@ -207,7 +207,7 @@ export class Pushbullet implements INodeType {
},
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be created.',
+ description: 'Name of the binary property which contains the data for the file to be created',
},
{
displayName: 'Target',
@@ -247,7 +247,7 @@ export class Pushbullet implements INodeType {
},
},
default: 'default',
- description: 'Define the medium that will be used to send the push.',
+ description: 'Define the medium that will be used to send the push',
},
{
displayName: 'Value',
@@ -329,7 +329,7 @@ export class Pushbullet implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -353,7 +353,7 @@ export class Pushbullet implements INodeType {
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -377,14 +377,14 @@ export class Pushbullet implements INodeType {
name: 'active',
type: 'boolean',
default: false,
- description: `Don't return deleted pushes.`,
+ description: 'Don\'t return deleted pushes',
},
{
displayName: 'Modified After',
name: 'modified_after',
type: 'dateTime',
default: '',
- description: `Request pushes modified after this timestamp.`,
+ description: 'Request pushes modified after this timestamp',
},
],
},
@@ -421,7 +421,7 @@ export class Pushbullet implements INodeType {
},
},
default: false,
- description: 'Marks a push as having been dismissed by the user, will cause any notifications for the push to be hidden if possible.',
+ description: 'Marks a push as having been dismissed by the user, will cause any notifications for the push to be hidden if possible',
},
],
};
diff --git a/packages/nodes-base/nodes/Pushcut/Pushcut.node.ts b/packages/nodes-base/nodes/Pushcut/Pushcut.node.ts
index 0721ef13cd..a374b6639f 100644
--- a/packages/nodes-base/nodes/Pushcut/Pushcut.node.ts
+++ b/packages/nodes-base/nodes/Pushcut/Pushcut.node.ts
@@ -121,21 +121,21 @@ export class Pushcut implements INodeType {
name: 'input',
type: 'string',
default: '',
- description: 'Value that is passed as input to the notification action.',
+ description: 'Value that is passed as input to the notification action',
},
{
displayName: 'Text',
name: 'text',
type: 'string',
default: '',
- description: 'Text that is used instead of the one defined in the app.',
+ description: 'Text that is used instead of the one defined in the app',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'Title that is used instead of the one defined in the app.',
+ description: 'Title that is used instead of the one defined in the app',
},
],
},
diff --git a/packages/nodes-base/nodes/QuestDb/QuestDb.node.ts b/packages/nodes-base/nodes/QuestDb/QuestDb.node.ts
index c16b413127..46edc08fc9 100644
--- a/packages/nodes-base/nodes/QuestDb/QuestDb.node.ts
+++ b/packages/nodes-base/nodes/QuestDb/QuestDb.node.ts
@@ -42,12 +42,12 @@ export class QuestDb implements INodeType {
{
name: 'Execute Query',
value: 'executeQuery',
- description: 'Executes a SQL query.',
+ description: 'Executes a SQL query',
},
{
name: 'Insert',
value: 'insert',
- description: 'Insert rows in database.',
+ description: 'Insert rows in database',
},
],
default: 'insert',
@@ -107,7 +107,7 @@ export class QuestDb implements INodeType {
},
default: '',
required: true,
- description: 'Name of the table in which to insert data to.',
+ description: 'Name of the table in which to insert data to',
},
{
displayName: 'Columns',
@@ -120,7 +120,7 @@ export class QuestDb implements INodeType {
},
default: '',
placeholder: 'id,name,description',
- description: `Comma-separated list of the properties which should used as columns for the new rows.`,
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
{
displayName: 'Return Fields',
@@ -183,7 +183,7 @@ export class QuestDb implements INodeType {
},
default: '',
placeholder: 'quantity,price',
- description: 'Comma-separated list of properties which should be used as query parameters.',
+ description: 'Comma-separated list of properties which should be used as query parameters',
},
],
},
diff --git a/packages/nodes-base/nodes/QuickBase/FieldDescription.ts b/packages/nodes-base/nodes/QuickBase/FieldDescription.ts
index d22be78a53..0a67e9d115 100644
--- a/packages/nodes-base/nodes/QuickBase/FieldDescription.ts
+++ b/packages/nodes-base/nodes/QuickBase/FieldDescription.ts
@@ -63,7 +63,7 @@ export const fieldFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your user contacts.',
+ description: 'Returns a list of your user contacts',
},
{
displayName: 'Limit',
@@ -87,7 +87,7 @@ export const fieldFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/QuickBase/FileDescription.ts b/packages/nodes-base/nodes/QuickBase/FileDescription.ts
index 17eee8bcae..bd0cc1e197 100644
--- a/packages/nodes-base/nodes/QuickBase/FileDescription.ts
+++ b/packages/nodes-base/nodes/QuickBase/FileDescription.ts
@@ -52,7 +52,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'The table identifier.',
+ description: 'The table identifier',
},
{
displayName: 'Record ID',
@@ -71,7 +71,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier of the record.',
+ description: 'The unique identifier of the record',
},
{
displayName: 'Field ID',
@@ -90,7 +90,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'The unique identifier of the field.',
+ description: 'The unique identifier of the field',
},
{
displayName: 'Version Number',
@@ -109,7 +109,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'The file attachment version number.',
+ description: 'The file attachment version number',
},
{
displayName: 'Binary Property',
@@ -126,7 +126,7 @@ export const fileFields: INodeProperties[] = [
name: 'binaryPropertyName',
type: 'string',
default: 'data',
- description: 'Object property name which holds binary data.',
+ description: 'Object property name which holds binary data',
required: true,
},
];
diff --git a/packages/nodes-base/nodes/QuickBase/RecordDescription.ts b/packages/nodes-base/nodes/QuickBase/RecordDescription.ts
index dbb382985b..3d8f072155 100644
--- a/packages/nodes-base/nodes/QuickBase/RecordDescription.ts
+++ b/packages/nodes-base/nodes/QuickBase/RecordDescription.ts
@@ -85,7 +85,7 @@ export const recordFields: INodeProperties[] = [
default: '',
required: true,
placeholder: 'Select Fields...',
- description: 'Comma-separated list of the properties which should used as columns for the new rows.',
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
{
displayName: 'Simplify Response',
@@ -102,7 +102,7 @@ export const recordFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Options',
@@ -139,7 +139,7 @@ export const recordFields: INodeProperties[] = [
name: 'useFieldIDs',
type: 'boolean',
default: false,
- description: 'Use Field IDs instead of Field Names in Columns.',
+ description: 'Use Field IDs instead of Field Names in Columns',
},
],
},
@@ -218,7 +218,7 @@ export const recordFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your user contacts.',
+ description: 'Returns a list of your user contacts',
},
{
displayName: 'Limit',
@@ -242,7 +242,7 @@ export const recordFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -293,7 +293,7 @@ export const recordFields: INodeProperties[] = [
loadOptionsMethod: 'getTableFields',
},
default: '',
- description: 'The unique identifier of a field in a table.',
+ description: 'The unique identifier of a field in a table',
},
{
displayName: 'Order',
@@ -321,7 +321,7 @@ export const recordFields: INodeProperties[] = [
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',
},
],
},
@@ -363,7 +363,7 @@ export const recordFields: INodeProperties[] = [
default: '',
required: true,
placeholder: 'id,name,description',
- description: 'Comma-separated list of the properties which should used as columns for the new rows.',
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
{
displayName: 'Update Key',
@@ -380,7 +380,7 @@ export const recordFields: INodeProperties[] = [
},
},
default: '',
- description: 'update can use the key field on the table, or any other supported unique field.',
+ description: 'update can use the key field on the table, or any other supported unique field',
},
{
displayName: 'Simplify Response',
@@ -397,7 +397,7 @@ export const recordFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Options',
@@ -434,7 +434,7 @@ export const recordFields: INodeProperties[] = [
name: 'useFieldIDs',
type: 'boolean',
default: false,
- description: 'Use Field IDs instead of Field Names in Columns.',
+ description: 'Use Field IDs instead of Field Names in Columns',
},
// {
// displayName: 'Merge Field ID',
@@ -488,7 +488,7 @@ export const recordFields: INodeProperties[] = [
default: '',
required: true,
placeholder: 'id,name,description',
- description: 'Comma-separated list of the properties which should used as columns for the new rows.',
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
{
displayName: 'Update Key',
@@ -505,7 +505,7 @@ export const recordFields: INodeProperties[] = [
},
},
default: '',
- description: 'update can use the key field on the table, or any other supported unique field.',
+ description: 'update can use the key field on the table, or any other supported unique field',
},
{
displayName: 'Merge Field ID',
@@ -542,7 +542,7 @@ export const recordFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Options',
@@ -579,7 +579,7 @@ export const recordFields: INodeProperties[] = [
name: 'useFieldIDs',
type: 'boolean',
default: false,
- description: 'Use Field IDs instead of Field Names in Columns.',
+ description: 'Use Field IDs instead of Field Names in Columns',
},
],
},
diff --git a/packages/nodes-base/nodes/QuickBase/ReportDescription.ts b/packages/nodes-base/nodes/QuickBase/ReportDescription.ts
index 44a6f34763..5c2a4c7868 100644
--- a/packages/nodes-base/nodes/QuickBase/ReportDescription.ts
+++ b/packages/nodes-base/nodes/QuickBase/ReportDescription.ts
@@ -51,7 +51,7 @@ export const reportFields: INodeProperties[] = [
],
},
},
- description: 'The table identifier.',
+ description: 'The table identifier',
},
{
displayName: 'Report ID',
@@ -69,7 +69,7 @@ export const reportFields: INodeProperties[] = [
],
},
},
- description: 'The identifier of the report, unique to the table.',
+ description: 'The identifier of the report, unique to the table',
},
/* -------------------------------------------------------------------------- */
/* report:run */
@@ -90,7 +90,7 @@ export const reportFields: INodeProperties[] = [
],
},
},
- description: 'The table identifier.',
+ description: 'The table identifier',
},
{
displayName: 'Report ID',
@@ -108,7 +108,7 @@ export const reportFields: INodeProperties[] = [
],
},
},
- description: 'The identifier of the report, unique to the table.',
+ description: 'The identifier of the report, unique to the table',
},
{
displayName: 'Return All',
@@ -125,7 +125,7 @@ export const reportFields: INodeProperties[] = [
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -151,6 +151,6 @@ export const reportFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'Number of results to return.',
+ description: 'Number of results to return',
},
];
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillAdditionalFieldsOptions.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillAdditionalFieldsOptions.ts
index 7b4040d636..8cf433f8dd 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillAdditionalFieldsOptions.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillAdditionalFieldsOptions.ts
@@ -7,7 +7,7 @@ export const billAdditionalFieldsOptions: INodeProperties[] = [
displayName: 'Accounts Payable Account',
name: 'APAccountRef',
placeholder: 'Add APA Fields',
- description: 'Accounts Payable account to which the bill will be credited.',
+ description: 'Accounts Payable account to which the bill will be credited',
type: 'fixedCollection',
default: {},
options: [
@@ -34,21 +34,21 @@ export const billAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Balance',
name: 'Balance',
- description: 'The balance reflecting any payments made against the transaction.',
+ description: 'The balance reflecting any payments made against the transaction',
type: 'string',
default: '',
},
{
displayName: 'Due Date',
name: 'DueDate',
- description: 'Date when the payment of the transaction is due.',
+ description: 'Date when the payment of the transaction is due',
type: 'dateTime',
default: '',
},
{
displayName: 'Sales Term',
name: 'SalesTermRef',
- description: 'Sales term associated with the transaction.',
+ description: 'Sales term associated with the transaction',
placeholder: 'Add Sales Term Fields',
type: 'fixedCollection',
default: {},
@@ -76,14 +76,14 @@ export const billAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Total Amount',
name: 'TotalAmt',
- description: 'Total amount of the transaction.',
+ description: 'Total amount of the transaction',
type: 'number',
default: 0,
},
{
displayName: 'Transaction Date',
name: 'TxnDate',
- description: 'Date when the transaction occurred.',
+ description: 'Date when the transaction occurred',
type: 'dateTime',
default: '',
},
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillDescription.ts
index 5019303b1a..1917c9a4fb 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Bill/BillDescription.ts
@@ -54,7 +54,7 @@ export const billFields: INodeProperties[] = [
name: 'VendorRef',
type: 'options',
required: true,
- description: 'The ID of the vendor who the bill is for.',
+ description: 'The ID of the vendor who the bill is for',
default: [],
typeOptions: {
loadOptionsMethod: 'getVendors',
@@ -75,7 +75,7 @@ export const billFields: INodeProperties[] = [
name: 'Line',
type: 'collection',
placeholder: 'Add Line Item Property',
- description: 'Individual line item of a transaction.',
+ description: 'Individual line item of a transaction',
typeOptions: {
multipleValues: true,
},
@@ -125,14 +125,14 @@ export const billFields: INodeProperties[] = [
{
displayName: 'Amount',
name: 'Amount',
- description: 'Monetary amount of the line item.',
+ description: 'Monetary amount of the line item',
type: 'number',
default: 0,
},
{
displayName: 'Description',
name: 'Description',
- description: 'Textual description of the line item.',
+ description: 'Textual description of the line item',
type: 'string',
default: '',
typeOptions: {
@@ -142,7 +142,7 @@ export const billFields: INodeProperties[] = [
{
displayName: 'Position',
name: 'LineNum',
- description: 'Position of the line item relative to others.',
+ description: 'Position of the line item relative to others',
type: 'number',
default: 1,
},
@@ -176,7 +176,7 @@ export const billFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the bill to delete.',
+ description: 'The ID of the bill to delete',
displayOptions: {
show: {
resource: [
@@ -198,7 +198,7 @@ export const billFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the bill to retrieve.',
+ description: 'The ID of the bill to retrieve',
displayOptions: {
show: {
resource: [
@@ -219,7 +219,7 @@ export const billFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -236,7 +236,7 @@ export const billFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -295,7 +295,7 @@ export const billFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the bill to update.',
+ description: 'The ID of the bill to update',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerAdditionalFieldsOptions.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerAdditionalFieldsOptions.ts
index c299df7f00..9a9dabaf04 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerAdditionalFieldsOptions.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerAdditionalFieldsOptions.ts
@@ -6,21 +6,21 @@ export const customerAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Active',
name: 'Active',
- description: 'Whether the customer is currently enabled for use by QuickBooks.',
+ description: 'Whether the customer is currently enabled for use by QuickBooks',
type: 'boolean',
default: true,
},
{
displayName: 'Balance',
name: 'Balance',
- description: 'Open balance amount or amount unpaid by the customer.',
+ description: 'Open balance amount or amount unpaid by the customer',
type: 'string',
default: '',
},
{
displayName: 'Balance With Jobs',
name: 'BalanceWithJobs',
- description: 'Cumulative open balance amount for the customer (or job) and all its sub-jobs.',
+ description: 'Cumulative open balance amount for the customer (or job) and all its sub-jobs',
type: 'number',
default: 0,
},
@@ -78,7 +78,7 @@ export const customerAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Bill With Parent',
name: 'BillWithParent',
- description: 'Bill this customer together with its parent.',
+ description: 'Bill this customer together with its parent',
type: 'boolean',
default: false,
},
@@ -141,14 +141,14 @@ export const customerAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Print-On-Check Name',
name: 'PrintOnCheckName',
- description: 'Name of the customer as printed on a check.',
+ description: 'Name of the customer as printed on a check',
type: 'string',
default: '',
},
{
displayName: 'Taxable',
name: 'Taxable',
- description: 'Whether transactions for this customer are taxable.',
+ description: 'Whether transactions for this customer are taxable',
type: 'boolean',
default: false,
},
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerDescription.ts
index 63e747c72a..673c8b4225 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Customer/CustomerDescription.ts
@@ -51,7 +51,7 @@ export const customerFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The display name of the customer to create.',
+ description: 'The display name of the customer to create',
displayOptions: {
show: {
resource: [
@@ -91,7 +91,7 @@ export const customerFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the customer to retrieve.',
+ description: 'The ID of the customer to retrieve',
displayOptions: {
show: {
resource: [
@@ -112,7 +112,7 @@ export const customerFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -129,7 +129,7 @@ export const customerFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -188,7 +188,7 @@ export const customerFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the customer to update.',
+ description: 'The ID of the customer to update',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeAdditionalFieldsOptions.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeAdditionalFieldsOptions.ts
index 0a7beadb89..7dd49b4585 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeAdditionalFieldsOptions.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeAdditionalFieldsOptions.ts
@@ -6,7 +6,7 @@ export const employeeAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Active',
name: 'Active',
- description: 'Whether the employee is currently enabled for use by QuickBooks.',
+ description: 'Whether the employee is currently enabled for use by QuickBooks',
type: 'boolean',
default: false,
},
@@ -82,7 +82,7 @@ export const employeeAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Print-On-Check Name',
name: 'PrintOnCheckName',
- description: 'Name of the employee as printed on a check.',
+ description: 'Name of the employee as printed on a check',
type: 'string',
default: '',
},
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeDescription.ts
index 9629a26646..cf32b3dcaf 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Employee/EmployeeDescription.ts
@@ -105,7 +105,7 @@ export const employeeFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the employee to retrieve.',
+ description: 'The ID of the employee to retrieve',
displayOptions: {
show: {
resource: [
@@ -126,7 +126,7 @@ export const employeeFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -143,7 +143,7 @@ export const employeeFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -202,7 +202,7 @@ export const employeeFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the employee to update.',
+ description: 'The ID of the employee to update',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateAdditionalFieldsOptions.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateAdditionalFieldsOptions.ts
index 96b811770e..843a288c8e 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateAdditionalFieldsOptions.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateAdditionalFieldsOptions.ts
@@ -63,7 +63,7 @@ export const estimateAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Billing Email',
name: 'BillEmail',
- description: 'E-mail address to which the estimate will be sent.',
+ description: 'E-mail address to which the estimate will be sent',
type: 'string',
default: '',
},
@@ -89,14 +89,14 @@ export const estimateAdditionalFieldsOptions: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'StringValue',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -112,7 +112,7 @@ export const estimateAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Document Number',
name: 'DocNumber',
- description: 'Reference number for the transaction.',
+ description: 'Reference number for the transaction',
type: 'string',
default: '',
},
@@ -210,21 +210,21 @@ export const estimateAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Total Amount',
name: 'TotalAmt',
- description: 'Total amount of the transaction.',
+ description: 'Total amount of the transaction',
type: 'number',
default: 0,
},
{
displayName: 'Transaction Date',
name: 'TxnDate',
- description: 'Date when the transaction occurred.',
+ description: 'Date when the transaction occurred',
type: 'dateTime',
default: '',
},
{
displayName: 'Total Tax',
name: 'TotalTax',
- description: 'Total amount of tax incurred.',
+ description: 'Total amount of tax incurred',
type: 'number',
default: 0,
},
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateDescription.ts
index d59da70cc3..2b517a4887 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Estimate/EstimateDescription.ts
@@ -58,7 +58,7 @@ export const estimateFields: INodeProperties[] = [
name: 'CustomerRef',
type: 'options',
required: true,
- description: 'The ID of the customer who the estimate is for.',
+ description: 'The ID of the customer who the estimate is for',
default: [],
typeOptions: {
loadOptionsMethod: 'getCustomers',
@@ -79,7 +79,7 @@ export const estimateFields: INodeProperties[] = [
name: 'Line',
type: 'collection',
placeholder: 'Add Line Item Property',
- description: 'Individual line item of a transaction.',
+ description: 'Individual line item of a transaction',
typeOptions: {
multipleValues: true,
},
@@ -119,14 +119,14 @@ export const estimateFields: INodeProperties[] = [
{
displayName: 'Amount',
name: 'Amount',
- description: 'Monetary amount of the line item.',
+ description: 'Monetary amount of the line item',
type: 'number',
default: 0,
},
{
displayName: 'Description',
name: 'Description',
- description: 'Textual description of the line item.',
+ description: 'Textual description of the line item',
type: 'string',
default: '',
typeOptions: {
@@ -136,7 +136,7 @@ export const estimateFields: INodeProperties[] = [
{
displayName: 'Position',
name: 'LineNum',
- description: 'Position of the line item relative to others.',
+ description: 'Position of the line item relative to others',
type: 'number',
default: 1,
},
@@ -170,7 +170,7 @@ export const estimateFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the estimate to delete.',
+ description: 'The ID of the estimate to delete',
displayOptions: {
show: {
resource: [
@@ -192,7 +192,7 @@ export const estimateFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the estimate to retrieve.',
+ description: 'The ID of the estimate to retrieve',
displayOptions: {
show: {
resource: [
@@ -210,7 +210,7 @@ export const estimateFields: INodeProperties[] = [
type: 'boolean',
required: true,
default: false,
- description: 'Download the estimate as a PDF file.',
+ description: 'Download the estimate as a PDF file',
displayOptions: {
show: {
resource: [
@@ -228,7 +228,7 @@ export const estimateFields: INodeProperties[] = [
type: 'string',
required: true,
default: 'data',
- description: 'Name of the binary property to which to write to.',
+ description: 'Name of the binary property to which to write to',
displayOptions: {
show: {
resource: [
@@ -250,7 +250,7 @@ export const estimateFields: INodeProperties[] = [
required: true,
default: '',
placeholder: 'data.pdf',
- description: 'Name of the file that will be downloaded.',
+ description: 'Name of the file that will be downloaded',
displayOptions: {
show: {
resource: [
@@ -274,7 +274,7 @@ export const estimateFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -291,7 +291,7 @@ export const estimateFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -350,7 +350,7 @@ export const estimateFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the estimate to send.',
+ description: 'The ID of the estimate to send',
displayOptions: {
show: {
resource: [
@@ -368,7 +368,7 @@ export const estimateFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The email of the recipient of the estimate.',
+ description: 'The email of the recipient of the estimate',
displayOptions: {
show: {
resource: [
@@ -390,7 +390,7 @@ export const estimateFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the estimate to update.',
+ description: 'The ID of the estimate to update',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceAdditionalFieldsOptions.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceAdditionalFieldsOptions.ts
index df1f15f002..b7064fd601 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceAdditionalFieldsOptions.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceAdditionalFieldsOptions.ts
@@ -6,7 +6,7 @@ export const invoiceAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Balance',
name: 'Balance',
- description: 'The balance reflecting any payments made against the transaction.',
+ description: 'The balance reflecting any payments made against the transaction',
type: 'number',
default: 0,
},
@@ -64,7 +64,7 @@ export const invoiceAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Billing Email',
name: 'BillEmail',
- description: 'E-mail address to which the invoice will be sent.',
+ description: 'E-mail address to which the invoice will be sent',
type: 'string',
default: '',
},
@@ -97,14 +97,14 @@ export const invoiceAdditionalFieldsOptions: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'StringValue',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
],
},
@@ -113,14 +113,14 @@ export const invoiceAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Document Number',
name: 'DocNumber',
- description: 'Reference number for the transaction.',
+ description: 'Reference number for the transaction',
type: 'string',
default: '',
},
{
displayName: 'Due Date',
name: 'DueDate',
- description: 'Date when the payment of the transaction is due.',
+ description: 'Date when the payment of the transaction is due',
type: 'dateTime',
default: '',
},
@@ -173,14 +173,14 @@ export const invoiceAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Total Amount',
name: 'TotalAmt',
- description: 'Total amount of the transaction.',
+ description: 'Total amount of the transaction',
type: 'number',
default: 0,
},
{
displayName: 'Transaction Date',
name: 'TxnDate',
- description: 'Date when the transaction occurred.',
+ description: 'Date when the transaction occurred',
type: 'dateTime',
default: '',
},
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceDescription.ts
index 394252fffb..a11168f755 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Invoice/InvoiceDescription.ts
@@ -62,7 +62,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'CustomerRef',
type: 'options',
required: true,
- description: 'The ID of the customer who the invoice is for.',
+ description: 'The ID of the customer who the invoice is for',
default: [],
typeOptions: {
loadOptionsMethod: 'getCustomers',
@@ -83,7 +83,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'Line',
type: 'collection',
placeholder: 'Add Line Item Property',
- description: 'Individual line item of a transaction.',
+ description: 'Individual line item of a transaction',
typeOptions: {
multipleValues: true,
},
@@ -123,14 +123,14 @@ export const invoiceFields: INodeProperties[] = [
{
displayName: 'Amount',
name: 'Amount',
- description: 'Monetary amount of the line item.',
+ description: 'Monetary amount of the line item',
type: 'number',
default: 0,
},
{
displayName: 'Description',
name: 'Description',
- description: 'Textual description of the line item.',
+ description: 'Textual description of the line item',
type: 'string',
default: '',
typeOptions: {
@@ -140,7 +140,7 @@ export const invoiceFields: INodeProperties[] = [
{
displayName: 'Position',
name: 'LineNum',
- description: 'Position of the line item relative to others.',
+ description: 'Position of the line item relative to others',
type: 'number',
default: 1,
},
@@ -174,7 +174,7 @@ export const invoiceFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the invoice to delete.',
+ description: 'The ID of the invoice to delete',
displayOptions: {
show: {
resource: [
@@ -196,7 +196,7 @@ export const invoiceFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the invoice to retrieve.',
+ description: 'The ID of the invoice to retrieve',
displayOptions: {
show: {
resource: [
@@ -214,7 +214,7 @@ export const invoiceFields: INodeProperties[] = [
type: 'boolean',
required: true,
default: false,
- description: 'Download the invoice as a PDF file.',
+ description: 'Download the invoice as a PDF file',
displayOptions: {
show: {
resource: [
@@ -232,7 +232,7 @@ export const invoiceFields: INodeProperties[] = [
type: 'string',
required: true,
default: 'data',
- description: 'Name of the binary property to which to write to.',
+ description: 'Name of the binary property to which to write to',
displayOptions: {
show: {
resource: [
@@ -254,7 +254,7 @@ export const invoiceFields: INodeProperties[] = [
required: true,
default: '',
placeholder: 'data.pdf',
- description: 'Name of the file that will be downloaded.',
+ description: 'Name of the file that will be downloaded',
displayOptions: {
show: {
resource: [
@@ -278,7 +278,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -295,7 +295,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -354,7 +354,7 @@ export const invoiceFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the invoice to send.',
+ description: 'The ID of the invoice to send',
displayOptions: {
show: {
resource: [
@@ -372,7 +372,7 @@ export const invoiceFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The email of the recipient of the invoice.',
+ description: 'The email of the recipient of the invoice',
displayOptions: {
show: {
resource: [
@@ -394,7 +394,7 @@ export const invoiceFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the invoice to void.',
+ description: 'The ID of the invoice to void',
displayOptions: {
show: {
resource: [
@@ -416,7 +416,7 @@ export const invoiceFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the invoice to update.',
+ description: 'The ID of the invoice to update',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Item/ItemDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Item/ItemDescription.ts
index 30f7ce38a6..59241cdaa9 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Item/ItemDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Item/ItemDescription.ts
@@ -39,7 +39,7 @@ export const itemFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the item to retrieve.',
+ description: 'The ID of the item to retrieve',
displayOptions: {
show: {
resource: [
@@ -60,7 +60,7 @@ export const itemFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -77,7 +77,7 @@ export const itemFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentAdditionalFieldsOptions.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentAdditionalFieldsOptions.ts
index faceace40f..c4bf17bf2c 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentAdditionalFieldsOptions.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentAdditionalFieldsOptions.ts
@@ -6,7 +6,7 @@ export const paymentAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Transaction Date',
name: 'TxnDate',
- description: 'Date when the transaction occurred.',
+ description: 'Date when the transaction occurred',
type: 'dateTime',
default: '',
},
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentDescription.ts
index 144727655f..4b8a74cd07 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Payment/PaymentDescription.ts
@@ -62,7 +62,7 @@ export const paymentFields: INodeProperties[] = [
name: 'CustomerRef',
type: 'options',
required: true,
- description: 'The ID of the customer who the payment is for.',
+ description: 'The ID of the customer who the payment is for',
default: [],
typeOptions: {
loadOptionsMethod: 'getCustomers',
@@ -81,7 +81,7 @@ export const paymentFields: INodeProperties[] = [
{
displayName: 'Total Amount',
name: 'TotalAmt',
- description: 'Total amount of the transaction.',
+ description: 'Total amount of the transaction',
type: 'number',
default: 0,
displayOptions: {
@@ -123,7 +123,7 @@ export const paymentFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the payment to delete.',
+ description: 'The ID of the payment to delete',
displayOptions: {
show: {
resource: [
@@ -145,7 +145,7 @@ export const paymentFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the payment to retrieve.',
+ description: 'The ID of the payment to retrieve',
displayOptions: {
show: {
resource: [
@@ -181,7 +181,7 @@ export const paymentFields: INodeProperties[] = [
type: 'string',
required: true,
default: 'data',
- description: 'Name of the binary property to which to write to.',
+ description: 'Name of the binary property to which to write to',
displayOptions: {
show: {
resource: [
@@ -203,7 +203,7 @@ export const paymentFields: INodeProperties[] = [
required: true,
default: '',
placeholder: 'data.pdf',
- description: 'Name of the file that will be downloaded.',
+ description: 'Name of the file that will be downloaded',
displayOptions: {
show: {
resource: [
@@ -227,7 +227,7 @@ export const paymentFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -244,7 +244,7 @@ export const paymentFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -303,7 +303,7 @@ export const paymentFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the payment to send.',
+ description: 'The ID of the payment to send',
displayOptions: {
show: {
resource: [
@@ -321,7 +321,7 @@ export const paymentFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The email of the recipient of the payment.',
+ description: 'The email of the recipient of the payment',
displayOptions: {
show: {
resource: [
@@ -343,7 +343,7 @@ export const paymentFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the payment to void.',
+ description: 'The ID of the payment to void',
displayOptions: {
show: {
resource: [
@@ -365,7 +365,7 @@ export const paymentFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the payment to update.',
+ description: 'The ID of the payment to update',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Purchase/PurchaseDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Purchase/PurchaseDescription.ts
index 4e3b360f75..5a00bb7091 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Purchase/PurchaseDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Purchase/PurchaseDescription.ts
@@ -39,7 +39,7 @@ export const purchaseFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the purchase to retrieve.',
+ description: 'The ID of the purchase to retrieve',
displayOptions: {
show: {
resource: [
@@ -60,7 +60,7 @@ export const purchaseFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -77,7 +77,7 @@ export const purchaseFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Transaction/TransactionDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Transaction/TransactionDescription.ts
index afd1f7b3cb..cbaf1ee0c7 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Transaction/TransactionDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Transaction/TransactionDescription.ts
@@ -58,7 +58,7 @@ export const transactionFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorAdditionalFieldsOptions.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorAdditionalFieldsOptions.ts
index 950e28c112..ce9e30ed54 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorAdditionalFieldsOptions.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorAdditionalFieldsOptions.ts
@@ -12,14 +12,14 @@ export const vendorAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Active',
name: 'Active',
- description: 'Whether the employee is currently enabled for use by QuickBooks.',
+ description: 'Whether the employee is currently enabled for use by QuickBooks',
type: 'boolean',
default: false,
},
{
displayName: 'Balance',
name: 'Balance',
- description: 'The balance reflecting any payments made against the transaction.',
+ description: 'The balance reflecting any payments made against the transaction',
type: 'number',
default: 0,
},
@@ -107,14 +107,14 @@ export const vendorAdditionalFieldsOptions: INodeProperties[] = [
{
displayName: 'Print-On-Check Name',
name: 'PrintOnCheckName',
- description: 'Name of the vendor as printed on a check.',
+ description: 'Name of the vendor as printed on a check',
type: 'string',
default: '',
},
{
displayName: 'Vendor 1099',
name: 'Vendor1099',
- description: 'Whether the vendor is an independent contractor, given a 1099-MISC form at the end of the year.',
+ description: 'Whether the vendor is an independent contractor, given a 1099-MISC form at the end of the year',
type: 'boolean',
default: false,
},
diff --git a/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorDescription.ts b/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorDescription.ts
index 0f583f3a41..0fd5305efc 100644
--- a/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorDescription.ts
+++ b/packages/nodes-base/nodes/QuickBooks/descriptions/Vendor/VendorDescription.ts
@@ -51,7 +51,7 @@ export const vendorFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The display name of the vendor to create.',
+ description: 'The display name of the vendor to create',
displayOptions: {
show: {
resource: [
@@ -91,7 +91,7 @@ export const vendorFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the vendor to retrieve.',
+ description: 'The ID of the vendor to retrieve',
displayOptions: {
show: {
resource: [
@@ -112,7 +112,7 @@ export const vendorFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -129,7 +129,7 @@ export const vendorFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -188,7 +188,7 @@ export const vendorFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The ID of the vendor to update.',
+ description: 'The ID of the vendor to update',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/RabbitMQ/DefaultOptions.ts b/packages/nodes-base/nodes/RabbitMQ/DefaultOptions.ts
index bab50fa743..7bb9136397 100644
--- a/packages/nodes-base/nodes/RabbitMQ/DefaultOptions.ts
+++ b/packages/nodes-base/nodes/RabbitMQ/DefaultOptions.ts
@@ -9,7 +9,7 @@ export const rabbitDefaultOptions: Array {
diff --git a/packages/nodes-base/nodes/Raindrop/descriptions/BookmarkDescription.ts b/packages/nodes-base/nodes/Raindrop/descriptions/BookmarkDescription.ts
index 2bd1c614fc..657f9e4215 100644
--- a/packages/nodes-base/nodes/Raindrop/descriptions/BookmarkDescription.ts
+++ b/packages/nodes-base/nodes/Raindrop/descriptions/BookmarkDescription.ts
@@ -70,7 +70,7 @@ export const bookmarkFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Link of the bookmark to be created.',
+ description: 'Link of the bookmark to be created',
displayOptions: {
show: {
resource: [
@@ -104,7 +104,7 @@ export const bookmarkFields: INodeProperties[] = [
name: 'important',
type: 'boolean',
default: false,
- description: 'Whether this bookmark is marked as favorite.',
+ description: 'Whether this bookmark is marked as favorite',
},
{
displayName: 'Order',
@@ -132,7 +132,7 @@ export const bookmarkFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of the bookmark to create.',
+ description: 'Title of the bookmark to create',
},
],
},
@@ -146,7 +146,7 @@ export const bookmarkFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'The ID of the bookmark to delete.',
+ description: 'The ID of the bookmark to delete',
displayOptions: {
show: {
resource: [
@@ -168,7 +168,7 @@ export const bookmarkFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'The ID of the bookmark to retrieve.',
+ description: 'The ID of the bookmark to retrieve',
displayOptions: {
show: {
resource: [
@@ -193,7 +193,7 @@ export const bookmarkFields: INodeProperties[] = [
},
default: [],
required: true,
- description: 'The ID of the collection from which to retrieve all bookmarks.',
+ description: 'The ID of the collection from which to retrieve all bookmarks',
displayOptions: {
show: {
resource: [
@@ -220,7 +220,7 @@ export const bookmarkFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -244,7 +244,7 @@ export const bookmarkFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// ----------------------------------
@@ -256,7 +256,7 @@ export const bookmarkFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'The ID of the bookmark to update.',
+ description: 'The ID of the bookmark to update',
displayOptions: {
show: {
resource: [
@@ -299,7 +299,7 @@ export const bookmarkFields: INodeProperties[] = [
name: 'important',
type: 'boolean',
default: false,
- description: 'Whether this bookmark is marked as favorite.',
+ description: 'Whether this bookmark is marked as favorite',
},
{
displayName: 'Order',
@@ -327,7 +327,7 @@ export const bookmarkFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of the bookmark to be created.',
+ description: 'Title of the bookmark to be created',
},
],
},
diff --git a/packages/nodes-base/nodes/Raindrop/descriptions/CollectionDescription.ts b/packages/nodes-base/nodes/Raindrop/descriptions/CollectionDescription.ts
index c198d94d4b..d228c2762f 100644
--- a/packages/nodes-base/nodes/Raindrop/descriptions/CollectionDescription.ts
+++ b/packages/nodes-base/nodes/Raindrop/descriptions/CollectionDescription.ts
@@ -51,7 +51,7 @@ export const collectionFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Title of the collection to create.',
+ description: 'Title of the collection to create',
displayOptions: {
show: {
resource: [
@@ -85,21 +85,21 @@ export const collectionFields: INodeProperties[] = [
name: 'cover',
type: 'string',
default: '',
- description: 'URL of an image to use as cover for the collection.',
+ description: 'URL of an image to use as cover for the collection',
},
{
displayName: 'Public',
name: 'public',
type: 'boolean',
default: false,
- description: 'Whether the collection will be accessible without authentication.',
+ description: 'Whether the collection will be accessible without authentication',
},
{
displayName: 'Parent ID',
name: 'parentId',
type: 'string',
default: '',
- description: 'ID of this collection\'s parent collection, if it is a child collection.',
+ description: 'ID of this collection\'s parent collection, if it is a child collection',
},
{
displayName: 'Sort Order',
@@ -113,7 +113,7 @@ export const collectionFields: INodeProperties[] = [
name: 'view',
type: 'options',
default: 'list',
- description: 'View style of this collection.',
+ description: 'View style of this collection',
options: [
{
name: 'List',
@@ -145,7 +145,7 @@ export const collectionFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'The ID of the collection to delete.',
+ description: 'The ID of the collection to delete',
displayOptions: {
show: {
resource: [
@@ -167,7 +167,7 @@ export const collectionFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'The ID of the collection to retrieve.',
+ description: 'The ID of the collection to retrieve',
displayOptions: {
show: {
resource: [
@@ -203,12 +203,12 @@ export const collectionFields: INodeProperties[] = [
{
name: 'Parent',
value: 'parent',
- description: 'Root-level collections.',
+ description: 'Root-level collections',
},
{
name: 'Children',
value: 'children',
- description: 'Nested collections.',
+ description: 'Nested collections',
},
],
},
@@ -227,7 +227,7 @@ export const collectionFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -251,7 +251,7 @@ export const collectionFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// ----------------------------------
@@ -263,7 +263,7 @@ export const collectionFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'The ID of the collection to update.',
+ description: 'The ID of the collection to update',
displayOptions: {
show: {
resource: [
@@ -298,21 +298,21 @@ export const collectionFields: INodeProperties[] = [
type: 'string',
default: 'data',
placeholder: '',
- description: 'Name of the binary property containing the data for the image to upload as a cover.',
+ description: 'Name of the binary property containing the data for the image to upload as a cover',
},
{
displayName: 'Public',
name: 'public',
type: 'boolean',
default: false,
- description: 'Whether the collection will be accessible without authentication.',
+ description: 'Whether the collection will be accessible without authentication',
},
{
displayName: 'Parent ID',
name: 'parentId',
type: 'string',
default: '',
- description: 'ID of this collection\'s parent collection, if it is a child collection.',
+ description: 'ID of this collection\'s parent collection, if it is a child collection',
},
{
displayName: 'Sort Order',
@@ -326,14 +326,14 @@ export const collectionFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of the collection to update.',
+ description: 'Title of the collection to update',
},
{
displayName: 'View',
name: 'view',
type: 'options',
default: 'list',
- description: 'View style of this collection.',
+ description: 'View style of this collection',
options: [
{
name: 'List',
diff --git a/packages/nodes-base/nodes/Raindrop/descriptions/TagDescription.ts b/packages/nodes-base/nodes/Raindrop/descriptions/TagDescription.ts
index 6ce13508a1..dc2f791700 100644
--- a/packages/nodes-base/nodes/Raindrop/descriptions/TagDescription.ts
+++ b/packages/nodes-base/nodes/Raindrop/descriptions/TagDescription.ts
@@ -98,7 +98,7 @@ export const tagFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -122,7 +122,7 @@ export const tagFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/Raindrop/descriptions/UserDescription.ts b/packages/nodes-base/nodes/Raindrop/descriptions/UserDescription.ts
index 42d7c103e4..e3dc50d1ad 100644
--- a/packages/nodes-base/nodes/Raindrop/descriptions/UserDescription.ts
+++ b/packages/nodes-base/nodes/Raindrop/descriptions/UserDescription.ts
@@ -35,7 +35,7 @@ export const userFields: INodeProperties[] = [
type: 'boolean',
default: true,
required: true,
- description: 'Whether to return details on the logged-in user.',
+ description: 'Whether to return details on the logged-in user',
displayOptions: {
show: {
resource: [
@@ -53,7 +53,7 @@ export const userFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'The ID of the user to retrieve.',
+ description: 'The ID of the user to retrieve',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/ReadBinaryFile/ReadBinaryFile.node.ts b/packages/nodes-base/nodes/ReadBinaryFile/ReadBinaryFile.node.ts
index d2df0783a7..546fb7d4cf 100644
--- a/packages/nodes-base/nodes/ReadBinaryFile/ReadBinaryFile.node.ts
+++ b/packages/nodes-base/nodes/ReadBinaryFile/ReadBinaryFile.node.ts
@@ -33,7 +33,7 @@ export class ReadBinaryFile implements INodeType {
default: '',
required: true,
placeholder: '/data/example.jpg',
- description: 'Path of the file to read.',
+ description: 'Path of the file to read',
},
{
displayName: 'Property Name',
@@ -41,7 +41,7 @@ export class ReadBinaryFile implements INodeType {
type: 'string',
default: 'data',
required: true,
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
],
};
diff --git a/packages/nodes-base/nodes/ReadBinaryFiles/ReadBinaryFiles.node.ts b/packages/nodes-base/nodes/ReadBinaryFiles/ReadBinaryFiles.node.ts
index 61099e77e2..0873ff9923 100644
--- a/packages/nodes-base/nodes/ReadBinaryFiles/ReadBinaryFiles.node.ts
+++ b/packages/nodes-base/nodes/ReadBinaryFiles/ReadBinaryFiles.node.ts
@@ -34,7 +34,7 @@ export class ReadBinaryFiles implements INodeType {
default: '',
required: true,
placeholder: '*.jpg',
- description: 'Pattern for files to read.',
+ description: 'Pattern for files to read',
},
{
displayName: 'Property Name',
@@ -42,7 +42,7 @@ export class ReadBinaryFiles implements INodeType {
type: 'string',
default: 'data',
required: true,
- description: 'Name of the binary property to which to write the data of the read files.',
+ description: 'Name of the binary property to which to write the data of the read files',
},
],
};
diff --git a/packages/nodes-base/nodes/ReadPdf/ReadPdf.node.ts b/packages/nodes-base/nodes/ReadPdf/ReadPdf.node.ts
index 74939919d3..e78f2fcf6c 100644
--- a/packages/nodes-base/nodes/ReadPdf/ReadPdf.node.ts
+++ b/packages/nodes-base/nodes/ReadPdf/ReadPdf.node.ts
@@ -29,7 +29,7 @@ export class ReadPdf implements INodeType {
type: 'string',
default: 'data',
required: true,
- description: 'Name of the binary property from which to read the PDF file.',
+ description: 'Name of the binary property from which to read the PDF file',
},
],
};
diff --git a/packages/nodes-base/nodes/Reddit/PostCommentDescription.ts b/packages/nodes-base/nodes/Reddit/PostCommentDescription.ts
index c67dcd8a6b..37d3f91e91 100644
--- a/packages/nodes-base/nodes/Reddit/PostCommentDescription.ts
+++ b/packages/nodes-base/nodes/Reddit/PostCommentDescription.ts
@@ -92,7 +92,7 @@ export const postCommentFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The name of subreddit where the post is.',
+ description: 'The name of subreddit where the post is',
displayOptions: {
show: {
resource: [
@@ -128,7 +128,7 @@ export const postCommentFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -145,7 +145,7 @@ export const postCommentFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 100,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
diff --git a/packages/nodes-base/nodes/Reddit/PostDescription.ts b/packages/nodes-base/nodes/Reddit/PostDescription.ts
index 41d454070a..5e8bceebae 100644
--- a/packages/nodes-base/nodes/Reddit/PostDescription.ts
+++ b/packages/nodes-base/nodes/Reddit/PostDescription.ts
@@ -33,7 +33,7 @@ export const postOperations: INodeProperties[] = [
{
name: 'Search',
value: 'search',
- description: 'Search posts in a subreddit or in all of Reddit.',
+ description: 'Search posts in a subreddit or in all of Reddit',
},
],
displayOptions: {
@@ -56,7 +56,7 @@ export const postFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Subreddit to create the post in.',
+ description: 'Subreddit to create the post in',
displayOptions: {
show: {
resource: [
@@ -87,7 +87,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'self',
- description: 'The kind of the post to create.',
+ description: 'The kind of the post to create',
displayOptions: {
show: {
resource: [
@@ -105,7 +105,7 @@ export const postFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Title of the post, up to 300 characters long.',
+ description: 'Title of the post, up to 300 characters long',
displayOptions: {
show: {
resource: [
@@ -123,7 +123,7 @@ export const postFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'URL of the post.',
+ description: 'URL of the post',
displayOptions: {
show: {
resource: [
@@ -214,7 +214,7 @@ export const postFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The name of subreddit to retrieve the post from.',
+ description: 'The name of subreddit to retrieve the post from',
displayOptions: {
show: {
resource: [
@@ -255,7 +255,7 @@ export const postFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The name of subreddit to retrieve the posts from.',
+ description: 'The name of subreddit to retrieve the posts from',
displayOptions: {
show: {
resource: [
@@ -272,7 +272,7 @@ export const postFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -289,7 +289,7 @@ export const postFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 100,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
@@ -331,7 +331,7 @@ export const postFields: INodeProperties[] = [
type: 'options',
required: true,
default: 'top',
- description: 'Category of the posts to retrieve.',
+ description: 'Category of the posts to retrieve',
options: [
{
name: 'Top Posts',
@@ -362,17 +362,17 @@ export const postFields: INodeProperties[] = [
name: 'location',
type: 'options',
default: 'subreddit',
- description: 'Location where to search for posts.',
+ description: 'Location where to search for posts',
options: [
{
name: 'All Reddit',
value: 'allReddit',
- description: 'Search for posts in all of Reddit.',
+ description: 'Search for posts in all of Reddit',
},
{
name: 'Subreddit',
value: 'subreddit',
- description: 'Search for posts in a specific subreddit.',
+ description: 'Search for posts in a specific subreddit',
},
],
displayOptions: {
@@ -392,7 +392,7 @@ export const postFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The name of subreddit to search in.',
+ description: 'The name of subreddit to search in',
displayOptions: {
show: {
resource: [
@@ -413,7 +413,7 @@ export const postFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'The keyword for the search.',
+ description: 'The keyword for the search',
displayOptions: {
show: {
resource: [
@@ -430,7 +430,7 @@ export const postFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -447,7 +447,7 @@ export const postFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 100,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
@@ -489,7 +489,7 @@ export const postFields: INodeProperties[] = [
placeholder: '',
type: 'options',
default: 'relevance',
- description: 'The category to sort results by.',
+ description: 'The category to sort results by',
options: [
{
name: 'Comments',
diff --git a/packages/nodes-base/nodes/Reddit/ProfileDescription.ts b/packages/nodes-base/nodes/Reddit/ProfileDescription.ts
index 672ed106a3..0bb5d457d2 100644
--- a/packages/nodes-base/nodes/Reddit/ProfileDescription.ts
+++ b/packages/nodes-base/nodes/Reddit/ProfileDescription.ts
@@ -33,7 +33,7 @@ export const profileFields: INodeProperties[] = [
type: 'options',
required: true,
default: 'identity',
- description: 'Details of my account to retrieve.',
+ description: 'Details of my account to retrieve',
options: [
{
name: 'Identity',
@@ -87,7 +87,7 @@ export const profileFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -107,7 +107,7 @@ export const profileFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 100,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
diff --git a/packages/nodes-base/nodes/Reddit/SubredditDescription.ts b/packages/nodes-base/nodes/Reddit/SubredditDescription.ts
index d24919dcc0..300a1e9ccc 100644
--- a/packages/nodes-base/nodes/Reddit/SubredditDescription.ts
+++ b/packages/nodes-base/nodes/Reddit/SubredditDescription.ts
@@ -13,12 +13,12 @@ export const subredditOperations: INodeProperties[] = [
{
name: 'Get',
value: 'get',
- description: 'Retrieve background information about a subreddit.',
+ description: 'Retrieve background information about a subreddit',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Retrieve information about subreddits from all of Reddit.',
+ description: 'Retrieve information about subreddits from all of Reddit',
},
],
displayOptions: {
@@ -41,7 +41,7 @@ export const subredditFields: INodeProperties[] = [
type: 'options',
required: true,
default: 'about',
- description: 'Subreddit content to retrieve.',
+ description: 'Subreddit content to retrieve',
options: [
{
name: 'About',
@@ -69,7 +69,7 @@ export const subredditFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'The name of subreddit to retrieve the content from.',
+ description: 'The name of subreddit to retrieve the content from',
displayOptions: {
show: {
resource: [
@@ -90,7 +90,7 @@ export const subredditFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -107,7 +107,7 @@ export const subredditFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 100,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
@@ -138,14 +138,14 @@ export const subredditFields: INodeProperties[] = [
name: 'keyword',
type: 'string',
default: '',
- description: 'The keyword for the subreddit search.',
+ description: 'The keyword for the subreddit search',
},
{
displayName: 'Trending',
name: 'trending',
type: 'boolean',
default: false,
- description: 'Currently trending subreddits in all of Reddit.',
+ description: 'Currently trending subreddits in all of Reddit',
},
],
displayOptions: {
diff --git a/packages/nodes-base/nodes/Reddit/UserDescription.ts b/packages/nodes-base/nodes/Reddit/UserDescription.ts
index 1defaf6e1f..daf3867415 100644
--- a/packages/nodes-base/nodes/Reddit/UserDescription.ts
+++ b/packages/nodes-base/nodes/Reddit/UserDescription.ts
@@ -32,7 +32,7 @@ export const userFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Reddit ID of the user to retrieve.',
+ description: 'Reddit ID of the user to retrieve',
displayOptions: {
show: {
resource: [
@@ -50,7 +50,7 @@ export const userFields: INodeProperties[] = [
type: 'options',
required: true,
default: 'about',
- description: 'Details of the user to retrieve.',
+ description: 'Details of the user to retrieve',
options: [
{
name: 'About',
@@ -89,7 +89,7 @@ export const userFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -112,7 +112,7 @@ export const userFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 100,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 100,
diff --git a/packages/nodes-base/nodes/Redis/Redis.node.ts b/packages/nodes-base/nodes/Redis/Redis.node.ts
index ba6f259398..dc3ea00433 100644
--- a/packages/nodes-base/nodes/Redis/Redis.node.ts
+++ b/packages/nodes-base/nodes/Redis/Redis.node.ts
@@ -41,17 +41,17 @@ export class Redis implements INodeType {
{
name: 'Delete',
value: 'delete',
- description: 'Delete a key from Redis.',
+ description: 'Delete a key from Redis',
},
{
name: 'Get',
value: 'get',
- description: 'Get the value of a key from Redis.',
+ description: 'Get the value of a key from Redis',
},
{
name: 'Info',
value: 'info',
- description: 'Returns generic information about the Redis instance.',
+ description: 'Returns generic information about the Redis instance',
},
{
name: 'Increment',
@@ -61,17 +61,17 @@ export class Redis implements INodeType {
{
name: 'Keys',
value: 'keys',
- description: 'Returns all the keys matching a pattern.',
+ description: 'Returns all the keys matching a pattern',
},
{
name: 'Set',
value: 'set',
- description: 'Set the value of a key in redis.',
+ description: 'Set the value of a key in redis',
},
{
name: 'Publish',
value: 'publish',
- description: 'Publish message to redis channel.',
+ description: 'Publish message to redis channel',
},
],
default: 'info',
@@ -109,7 +109,7 @@ export class Redis implements INodeType {
},
default: '',
required: true,
- description: 'Name of the key to delete from Redis.',
+ description: 'Name of the key to delete from Redis',
},
{
displayName: 'Key',
@@ -124,7 +124,7 @@ export class Redis implements INodeType {
},
default: '',
required: true,
- description: 'Name of the key to get from Redis.',
+ description: 'Name of the key to get from Redis',
},
{
displayName: 'Key Type',
@@ -141,31 +141,31 @@ export class Redis implements INodeType {
{
name: 'Automatic',
value: 'automatic',
- description: 'Requests the type before requesting the data (slower).',
+ description: 'Requests the type before requesting the data (slower)',
},
{
name: 'Hash',
value: 'hash',
- description: 'Data in key is of type "hash".',
+ description: 'Data in key is of type "hash"',
},
{
name: 'String',
value: 'string',
- description: 'Data in key is of type "string".',
+ description: 'Data in key is of type "string"',
},
{
name: 'List',
value: 'list',
- description: 'Data in key is of type "lists".',
+ description: 'Data in key is of type "lists"',
},
{
name: 'Sets',
value: 'sets',
- description: 'Data in key is of type "sets".',
+ description: 'Data in key is of type "sets"',
},
],
default: 'automatic',
- description: 'The type of the key to get.',
+ description: 'The type of the key to get',
},
{
@@ -210,7 +210,7 @@ export class Redis implements INodeType {
},
default: '',
required: true,
- description: 'Name of the key to increment.',
+ description: 'Name of the key to increment',
},
{
displayName: 'Expire',
@@ -244,7 +244,7 @@ export class Redis implements INodeType {
},
},
default: 60,
- description: 'Number of seconds before key expiration.',
+ description: 'Number of seconds before key expiration',
},
// ----------------------------------
@@ -263,7 +263,7 @@ export class Redis implements INodeType {
},
default: '',
required: true,
- description: 'The key pattern for the keys to return.',
+ description: 'The key pattern for the keys to return',
},
// ----------------------------------
@@ -282,7 +282,7 @@ export class Redis implements INodeType {
},
default: '',
required: true,
- description: 'Name of the key to set in Redis.',
+ description: 'Name of the key to set in Redis',
},
{
displayName: 'Value',
@@ -296,7 +296,7 @@ export class Redis implements INodeType {
},
},
default: '',
- description: 'The value to write in Redis.',
+ description: 'The value to write in Redis',
},
{
displayName: 'Key Type',
@@ -313,31 +313,31 @@ export class Redis implements INodeType {
{
name: 'Automatic',
value: 'automatic',
- description: 'Tries to figure out the type automatically depending on the data.',
+ description: 'Tries to figure out the type automatically depending on the data',
},
{
name: 'Hash',
value: 'hash',
- description: 'Data in key is of type "hash".',
+ description: 'Data in key is of type "hash"',
},
{
name: 'String',
value: 'string',
- description: 'Data in key is of type "string".',
+ description: 'Data in key is of type "string"',
},
{
name: 'List',
value: 'list',
- description: 'Data in key is of type "lists".',
+ description: 'Data in key is of type "lists"',
},
{
name: 'Sets',
value: 'sets',
- description: 'Data in key is of type "sets".',
+ description: 'Data in key is of type "sets"',
},
],
default: 'automatic',
- description: 'The type of the key to set.',
+ description: 'The type of the key to set',
},
{
@@ -373,7 +373,7 @@ export class Redis implements INodeType {
},
},
default: 60,
- description: 'Number of seconds before key expiration.',
+ description: 'Number of seconds before key expiration',
},
// ----------------------------------
// publish
@@ -391,7 +391,7 @@ export class Redis implements INodeType {
},
default: '',
required: true,
- description: 'Channel name.',
+ description: 'Channel name',
},
{
displayName: 'Data',
@@ -409,7 +409,7 @@ export class Redis implements INodeType {
},
default: '',
required: true,
- description: 'Data to publish.',
+ description: 'Data to publish',
},
],
};
diff --git a/packages/nodes-base/nodes/RenameKeys/RenameKeys.node.ts b/packages/nodes-base/nodes/RenameKeys/RenameKeys.node.ts
index 167be3234d..4cbbc30c93 100644
--- a/packages/nodes-base/nodes/RenameKeys/RenameKeys.node.ts
+++ b/packages/nodes-base/nodes/RenameKeys/RenameKeys.node.ts
@@ -35,7 +35,7 @@ export class RenameKeys implements INodeType {
displayName: 'Keys',
name: 'keys',
placeholder: 'Add new key',
- description: 'Adds a key which should be renamed.',
+ description: 'Adds a key which should be renamed',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
diff --git a/packages/nodes-base/nodes/Rocketchat/Rocketchat.node.ts b/packages/nodes-base/nodes/Rocketchat/Rocketchat.node.ts
index bf4b4a9ad9..f9737295a7 100644
--- a/packages/nodes-base/nodes/Rocketchat/Rocketchat.node.ts
+++ b/packages/nodes-base/nodes/Rocketchat/Rocketchat.node.ts
@@ -119,7 +119,7 @@ export class Rocketchat implements INodeType {
},
},
default: '',
- description: 'The channel name with the prefix in front of it.',
+ description: 'The channel name with the prefix in front of it',
},
{
displayName: 'Text',
@@ -136,7 +136,7 @@ export class Rocketchat implements INodeType {
},
},
default: '',
- description: 'The text of the message to send, is optional because of attachments.',
+ description: 'The text of the message to send, is optional because of attachments',
},
{
displayName: 'JSON Parameters',
@@ -176,21 +176,21 @@ export class Rocketchat implements INodeType {
name: 'alias',
type: 'string',
default: '',
- description: 'This will cause the message’s name to appear as the given alias, but your username will still display.',
+ description: 'This will cause the message’s name to appear as the given alias, but your username will still display',
},
{
displayName: 'Avatar',
name: 'avatar',
type: 'string',
default: '',
- description: 'If provided, this will make the avatar use the provided image url.',
+ description: 'If provided, this will make the avatar use the provided image url',
},
{
displayName: 'Emoji',
name: 'emoji',
type: 'string',
default: '',
- description: 'This will cause the message’s name to appear as the given alias, but your username will still display.',
+ description: 'This will cause the message’s name to appear as the given alias, but your username will still display',
},
],
},
@@ -224,56 +224,56 @@ export class Rocketchat implements INodeType {
name: 'color',
type: 'color',
default: '#ff0000',
- description: 'The color you want the order on the left side to be, any value background-css supports.',
+ description: 'The color you want the order on the left side to be, any value background-css supports',
},
{
displayName: 'Text',
name: 'text',
type: 'string',
default: '',
- description: 'The text to display for this attachment, it is different than the message’s text.',
+ description: 'The text to display for this attachment, it is different than the message’s text',
},
{
displayName: 'Timestamp',
name: 'ts',
type: 'dateTime',
default: '',
- description: 'Displays the time next to the text portion.',
+ description: 'Displays the time next to the text portion',
},
{
displayName: 'Thumb URL',
name: 'thumbUrl',
type: 'string',
default: '',
- description: 'An image that displays to the left of the text, looks better when this is relatively small.',
+ description: 'An image that displays to the left of the text, looks better when this is relatively small',
},
{
displayName: 'Message Link',
name: 'messageLink',
type: 'string',
default: '',
- description: 'Only applicable if the timestamp is provided, as it makes the time clickable to this link.',
+ description: 'Only applicable if the timestamp is provided, as it makes the time clickable to this link',
},
{
displayName: 'Collapsed',
name: 'collapsed',
type: 'boolean',
default: false,
- description: 'Causes the image, audio, and video sections to be hiding when collapsed is true.',
+ description: 'Causes the image, audio, and video sections to be hiding when collapsed is true',
},
{
displayName: 'Author Name',
name: 'authorName',
type: 'string',
default: '',
- description: 'Name of the author.',
+ description: 'Name of the author',
},
{
displayName: 'Author Link',
name: 'authorLink',
type: 'string',
default: '',
- description: 'Providing this makes the author name clickable and points to this link.',
+ description: 'Providing this makes the author name clickable and points to this link',
},
{
displayName: 'Author Icon',
@@ -281,35 +281,35 @@ export class Rocketchat implements INodeType {
type: 'string',
default: '',
placeholder: 'https://site.com/img.png',
- description: 'Displays a tiny icon to the left of the Author’s name.',
+ description: 'Displays a tiny icon to the left of the Author’s name',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'Title to display for this attachment, displays under the author.',
+ description: 'Title to display for this attachment, displays under the author',
},
{
displayName: 'Title Link',
name: 'titleLink',
type: 'string',
default: '',
- description: 'Providing this makes the title clickable, pointing to this link.',
+ description: 'Providing this makes the title clickable, pointing to this link',
},
{
displayName: 'Title Link Download',
name: 'titleLinkDownload',
type: 'boolean',
default: false,
- description: 'When this is true, a download icon appears and clicking this saves the link to file.',
+ description: 'When this is true, a download icon appears and clicking this saves the link to file',
},
{
displayName: 'Image URL',
name: 'imageUrl',
type: 'string',
default: '',
- description: 'The image to display, will be “big” and easy to see.',
+ description: 'The image to display, will be “big” and easy to see',
},
{
displayName: 'Audio URL',
@@ -317,7 +317,7 @@ export class Rocketchat implements INodeType {
type: 'string',
default: '',
placeholder: 'https://site.com/aud.mp3',
- description: 'Audio file to play, only supports what html audio does.',
+ description: 'Audio file to play, only supports what html audio does',
},
{
displayName: 'video URL',
@@ -325,7 +325,7 @@ export class Rocketchat implements INodeType {
type: 'string',
default: '',
placeholder: 'https://site.com/vid.mp4',
- description: 'Video file to play, only supports what html video does.',
+ description: 'Video file to play, only supports what html video does',
},
{
displayName: 'Fields',
@@ -346,21 +346,21 @@ export class Rocketchat implements INodeType {
name: 'short',
type: 'boolean',
default: false,
- description: 'Whether this field should be a short field.',
+ description: 'Whether this field should be a short field',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'The title of this field.',
+ description: 'The title of this field',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value of this field, displayed underneath the title value.',
+ description: 'The value of this field, displayed underneath the title value',
},
],
},
diff --git a/packages/nodes-base/nodes/RssFeedRead/RssFeedRead.node.ts b/packages/nodes-base/nodes/RssFeedRead/RssFeedRead.node.ts
index 9211a4c7f7..0d1d14be9d 100644
--- a/packages/nodes-base/nodes/RssFeedRead/RssFeedRead.node.ts
+++ b/packages/nodes-base/nodes/RssFeedRead/RssFeedRead.node.ts
@@ -31,7 +31,7 @@ export class RssFeedRead implements INodeType {
type: 'string',
default: '',
required: true,
- description: 'URL of the RSS feed.',
+ description: 'URL of the RSS feed',
},
],
};
diff --git a/packages/nodes-base/nodes/Rundeck/Rundeck.node.ts b/packages/nodes-base/nodes/Rundeck/Rundeck.node.ts
index f90c5e9f60..a42ff20bec 100644
--- a/packages/nodes-base/nodes/Rundeck/Rundeck.node.ts
+++ b/packages/nodes-base/nodes/Rundeck/Rundeck.node.ts
@@ -82,7 +82,7 @@ export class Rundeck implements INodeType {
default: '',
placeholder: 'Rundeck Job Id',
required: true,
- description: 'The job Id to execute.',
+ description: 'The job Id to execute',
},
{
displayName: 'Arguments',
@@ -146,7 +146,7 @@ export class Rundeck implements INodeType {
default: '',
placeholder: 'Rundeck Job Id',
required: true,
- description: 'The job Id to get metadata off.',
+ description: 'The job Id to get metadata off',
},
],
diff --git a/packages/nodes-base/nodes/Salesforce/AccountDescription.ts b/packages/nodes-base/nodes/Salesforce/AccountDescription.ts
index 75f796bbef..13997b71d0 100644
--- a/packages/nodes-base/nodes/Salesforce/AccountDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/AccountDescription.ts
@@ -43,7 +43,7 @@ export const accountOperations: INodeProperties[] = [
{
name: 'Get Summary',
value: 'getSummary',
- description: `Returns an overview of account's metadata.`,
+ description: 'Returns an overview of account\'s metadata',
},
{
name: 'Delete',
@@ -160,7 +160,7 @@ export const accountFields: INodeProperties[] = [
loadOptionsMethod: 'getAccountSources',
},
default: '',
- description: 'The source of the account record.',
+ description: 'The source of the account record',
},
{
displayName: 'Annual Revenue',
@@ -170,7 +170,7 @@ export const accountFields: INodeProperties[] = [
numberPrecision: 2,
},
default: '',
- description: 'Estimated annual revenue of the account.',
+ description: 'Estimated annual revenue of the account',
},
{
displayName: 'Billing City',
@@ -205,7 +205,7 @@ export const accountFields: INodeProperties[] = [
name: 'billingStreet',
type: 'string',
default: '',
- description: 'Street address for the billing address of this account.',
+ description: 'Street address for the billing address of this account',
},
{
displayName: 'Custom Fields',
@@ -230,14 +230,14 @@ export const accountFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -258,7 +258,7 @@ export const accountFields: INodeProperties[] = [
name: 'fax',
type: 'string',
default: '',
- description: 'Fax number for the account.',
+ description: 'Fax number for the account',
},
{
displayName: 'Jigsaw',
@@ -289,14 +289,14 @@ export const accountFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'The owner of the account.',
+ description: 'The owner of the account',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number for the account.',
+ description: 'Phone number for the account',
},
{
displayName: 'Record Type ID',
@@ -315,7 +315,7 @@ export const accountFields: INodeProperties[] = [
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'A brief description of an organization’s line of business, based on its SIC code.',
+ description: 'A brief description of an organization’s line of business, based on its SIC code',
},
{
displayName: 'Type',
@@ -332,7 +332,7 @@ export const accountFields: INodeProperties[] = [
name: 'parentId',
type: 'string',
default: '',
- description: 'ID of the parent object, if any.',
+ description: 'ID of the parent object, if any',
},
{
displayName: 'Shipping City',
@@ -398,7 +398,7 @@ export const accountFields: INodeProperties[] = [
],
},
},
- description: 'ID of account that needs to be fetched.',
+ description: 'ID of account that needs to be fetched',
},
{
displayName: 'Update Fields',
@@ -432,7 +432,7 @@ export const accountFields: INodeProperties[] = [
loadOptionsMethod: 'getAccountSources',
},
default: '',
- description: 'The source of the account record.',
+ description: 'The source of the account record',
},
{
displayName: 'Annual Revenue',
@@ -442,7 +442,7 @@ export const accountFields: INodeProperties[] = [
numberPrecision: 2,
},
default: '',
- description: 'Estimated annual revenue of the account.',
+ description: 'Estimated annual revenue of the account',
},
{
displayName: 'Billing City',
@@ -477,7 +477,7 @@ export const accountFields: INodeProperties[] = [
name: 'billingStreet',
type: 'string',
default: '',
- description: 'Street address for the billing address of this account.',
+ description: 'Street address for the billing address of this account',
},
{
displayName: 'Custom Fields',
@@ -502,14 +502,14 @@ export const accountFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -530,7 +530,7 @@ export const accountFields: INodeProperties[] = [
name: 'fax',
type: 'string',
default: '',
- description: 'Fax number for the account.',
+ description: 'Fax number for the account',
},
{
displayName: 'Industry',
@@ -554,14 +554,14 @@ export const accountFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'The owner of the account.',
+ description: 'The owner of the account',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number for the account.',
+ description: 'Phone number for the account',
},
{
displayName: 'Record Type ID',
@@ -601,7 +601,7 @@ export const accountFields: INodeProperties[] = [
name: 'parentId',
type: 'string',
default: '',
- description: 'ID of the parent object, if any.',
+ description: 'ID of the parent object, if any',
},
{
displayName: 'SicDesc',
@@ -611,7 +611,7 @@ export const accountFields: INodeProperties[] = [
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'A brief description of an organization’s line of business, based on its SIC code.',
+ description: 'A brief description of an organization’s line of business, based on its SIC code',
},
{
displayName: 'Shipping City',
@@ -677,7 +677,7 @@ export const accountFields: INodeProperties[] = [
],
},
},
- description: 'ID of account that needs to be fetched.',
+ description: 'ID of account that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -699,7 +699,7 @@ export const accountFields: INodeProperties[] = [
],
},
},
- description: 'ID of account that needs to be fetched.',
+ description: 'ID of account that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -720,7 +720,7 @@ export const accountFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -744,7 +744,7 @@ export const accountFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -778,7 +778,7 @@ export const accountFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
@@ -855,7 +855,7 @@ export const accountFields: INodeProperties[] = [
],
},
},
- description: 'ID of account that needs to be fetched.',
+ description: 'ID of account that needs to be fetched',
},
{
displayName: 'Title',
@@ -873,7 +873,7 @@ export const accountFields: INodeProperties[] = [
],
},
},
- description: 'Title of the note.',
+ description: 'Title of the note',
},
{
displayName: 'Options',
@@ -917,7 +917,7 @@ export const accountFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'ID of the user who owns the note.',
+ description: 'ID of the user who owns the note',
},
],
},
diff --git a/packages/nodes-base/nodes/Salesforce/AttachmentDescription.ts b/packages/nodes-base/nodes/Salesforce/AttachmentDescription.ts
index 698f45df60..31a3efb776 100644
--- a/packages/nodes-base/nodes/Salesforce/AttachmentDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/AttachmentDescription.ts
@@ -38,7 +38,7 @@ export const attachmentOperations: INodeProperties[] = [
{
name: 'Get Summary',
value: 'getSummary',
- description: `Returns an overview of attachment's metadata.`,
+ description: 'Returns an overview of attachment\'s metadata',
},
{
name: 'Update',
@@ -108,7 +108,7 @@ export const attachmentFields: INodeProperties[] = [
},
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
{
displayName: 'Additional Fields',
@@ -149,7 +149,7 @@ export const attachmentFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'ID of the User who owns the attachment.',
+ description: 'ID of the User who owns the attachment',
},
],
},
@@ -173,7 +173,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'ID of attachment that needs to be fetched.',
+ description: 'ID of attachment that needs to be fetched',
},
{
displayName: 'Update Fields',
@@ -198,7 +198,7 @@ export const attachmentFields: INodeProperties[] = [
type: 'string',
default: 'data',
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
{
displayName: 'Description',
@@ -229,7 +229,7 @@ export const attachmentFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'ID of the User who owns the attachment.',
+ description: 'ID of the User who owns the attachment',
},
],
},
@@ -253,7 +253,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'ID of attachment that needs to be fetched.',
+ description: 'ID of attachment that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -275,7 +275,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'ID of attachment that needs to be fetched.',
+ description: 'ID of attachment that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -296,7 +296,7 @@ export const attachmentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -320,7 +320,7 @@ export const attachmentFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -347,7 +347,7 @@ export const attachmentFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
@@ -362,7 +362,7 @@ export const attachmentFields: INodeProperties[] = [
loadOptionsMethod: 'getAtachmentFields',
},
default: '',
- description: 'For date, number, or boolean, please use expressions.',
+ description: 'For date, number, or boolean, please use expressions',
},
{
displayName: 'Operation',
diff --git a/packages/nodes-base/nodes/Salesforce/CaseDescription.ts b/packages/nodes-base/nodes/Salesforce/CaseDescription.ts
index 263bcd943e..31e46d6aa4 100644
--- a/packages/nodes-base/nodes/Salesforce/CaseDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/CaseDescription.ts
@@ -102,14 +102,14 @@ export const caseFields: INodeProperties[] = [
name: 'accountId',
type: 'string',
default: '',
- description: 'ID of the account associated with this case.',
+ description: 'ID of the account associated with this case',
},
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
default: '',
- description: 'ID of the associated Contact.',
+ description: 'ID of the associated Contact',
},
{
displayName: 'Custom Fields',
@@ -134,14 +134,14 @@ export const caseFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -159,7 +159,7 @@ export const caseFields: INodeProperties[] = [
name: 'isEscalated',
type: 'boolean',
default: false,
- description: 'Indicates whether the case has been escalated (true) or not.',
+ description: 'Indicates whether the case has been escalated (true) or not',
},
{
displayName: 'Origin',
@@ -179,7 +179,7 @@ export const caseFields: INodeProperties[] = [
loadOptionsMethod: 'getCaseOwners',
},
default: '',
- description: 'The owner of the case.',
+ description: 'The owner of the case',
},
{
displayName: 'Parent ID',
@@ -196,7 +196,7 @@ export const caseFields: INodeProperties[] = [
loadOptionsMethod: 'getCasePriorities',
},
default: '',
- description: 'The importance or urgency of the case, such as High, Medium, or Low.',
+ description: 'The importance or urgency of the case, such as High, Medium, or Low',
},
{
displayName: 'Reason',
@@ -206,7 +206,7 @@ export const caseFields: INodeProperties[] = [
loadOptionsMethod: 'getCaseReasons',
},
default: '',
- description: 'The reason why the case was created, such as Instructions not clear, or User didn’t attend training.',
+ description: 'The reason why the case was created, such as Instructions not clear, or User didn’t attend training',
},
{
displayName: 'Record Type ID',
@@ -308,14 +308,14 @@ export const caseFields: INodeProperties[] = [
name: 'accountId',
type: 'string',
default: '',
- description: 'ID of the account associated with this case.',
+ description: 'ID of the account associated with this case',
},
{
displayName: 'Contact ID',
name: 'contactId',
type: 'string',
default: '',
- description: 'ID of the associated Contact.',
+ description: 'ID of the associated Contact',
},
{
displayName: 'Custom Fields',
@@ -340,14 +340,14 @@ export const caseFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -365,7 +365,7 @@ export const caseFields: INodeProperties[] = [
name: 'isEscalated',
type: 'boolean',
default: false,
- description: 'Indicates whether the case has been escalated (true) or not.',
+ description: 'Indicates whether the case has been escalated (true) or not',
},
{
displayName: 'Origin',
@@ -385,7 +385,7 @@ export const caseFields: INodeProperties[] = [
loadOptionsMethod: 'getCaseOwners',
},
default: '',
- description: 'The owner of the case.',
+ description: 'The owner of the case',
},
{
displayName: 'Parent ID',
@@ -402,7 +402,7 @@ export const caseFields: INodeProperties[] = [
loadOptionsMethod: 'getCasePriorities',
},
default: '',
- description: 'The importance or urgency of the case, such as High, Medium, or Low.',
+ description: 'The importance or urgency of the case, such as High, Medium, or Low',
},
{
displayName: 'Reason',
@@ -412,7 +412,7 @@ export const caseFields: INodeProperties[] = [
loadOptionsMethod: 'getCaseReasons',
},
default: '',
- description: 'The reason why the case was created, such as Instructions not clear, or User didn’t attend training.',
+ description: 'The reason why the case was created, such as Instructions not clear, or User didn’t attend training',
},
{
displayName: 'Record Type ID',
@@ -500,7 +500,7 @@ export const caseFields: INodeProperties[] = [
],
},
},
- description: 'ID of case that needs to be fetched.',
+ description: 'ID of case that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -522,7 +522,7 @@ export const caseFields: INodeProperties[] = [
],
},
},
- description: 'ID of case that needs to be fetched.',
+ description: 'ID of case that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -543,7 +543,7 @@ export const caseFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -567,7 +567,7 @@ export const caseFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -594,7 +594,7 @@ export const caseFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
@@ -609,7 +609,7 @@ export const caseFields: INodeProperties[] = [
loadOptionsMethod: 'getCaseFields',
},
default: '',
- description: 'For date, number, or boolean, please use expressions.',
+ description: 'For date, number, or boolean, please use expressions',
},
{
displayName: 'Operation',
@@ -678,7 +678,7 @@ export const caseFields: INodeProperties[] = [
],
},
},
- description: 'ID of case that needs to be fetched.',
+ description: 'ID of case that needs to be fetched',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Salesforce/ContactDescription.ts b/packages/nodes-base/nodes/Salesforce/ContactDescription.ts
index a7533c5329..4d21e96f87 100644
--- a/packages/nodes-base/nodes/Salesforce/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/ContactDescription.ts
@@ -158,28 +158,28 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getAccounts',
},
default: '',
- description: 'ID of the account that is the parent of this contact.',
+ description: 'ID of the account that is the parent of this contact',
},
{
displayName: 'Assistant Name',
name: 'assistantName',
type: 'string',
default: '',
- description: 'The name of the assistant.',
+ description: 'The name of the assistant',
},
{
displayName: 'Assistant Phone',
name: 'Assistant Phone',
type: 'string',
default: '',
- description: 'The telephone number of the assistant.',
+ description: 'The telephone number of the assistant',
},
{
displayName: 'Birth Date',
name: 'birthdate',
type: 'dateTime',
default: '',
- description: 'The birth date of the contact.',
+ description: 'The birth date of the contact',
},
{
displayName: 'Custom Fields',
@@ -204,14 +204,14 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -222,7 +222,7 @@ export const contactFields: INodeProperties[] = [
name: 'department',
type: 'string',
default: '',
- description: 'The department of the contact.',
+ description: 'The department of the contact',
},
{
displayName: 'Description',
@@ -236,21 +236,21 @@ export const contactFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email address for the contact.',
+ description: 'Email address for the contact',
},
{
displayName: 'Email Bounced Date',
name: 'otherPostalCode',
type: 'dateTime',
default: '',
- description: 'If bounce management is activated and an email sent to the contact bounces, the date and time the bounce occurred.',
+ description: 'If bounce management is activated and an email sent to the contact bounces, the date and time the bounce occurred',
},
{
displayName: 'Email Bounced Reason',
name: 'emailBouncedReason',
type: 'string',
default: '',
- description: 'If bounce management is activated and an email sent to the contact bounces, the reason the bounce occurred.',
+ description: 'If bounce management is activated and an email sent to the contact bounces, the reason the bounce occurred',
},
{
displayName: 'Fax',
@@ -288,7 +288,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadSources',
},
default: '',
- description: 'Source from which the lead was obtained.',
+ description: 'Source from which the lead was obtained',
},
{
displayName: 'Mailing City',
@@ -307,7 +307,7 @@ export const contactFields: INodeProperties[] = [
name: 'mobilePhone',
type: 'string',
default: '',
- description: `Contact’s mobile phone number.`,
+ description: 'Contact’s mobile phone number',
},
{
displayName: 'Mailing Postal Code',
@@ -326,7 +326,7 @@ export const contactFields: INodeProperties[] = [
name: 'mailingStreet',
type: 'string',
default: '',
- description: 'Street address for mailing address.',
+ description: 'Street address for mailing address',
},
{
displayName: 'Other City',
@@ -345,7 +345,7 @@ export const contactFields: INodeProperties[] = [
name: 'otherPhone',
type: 'string',
default: '',
- description: 'Telephone for alternate address.',
+ description: 'Telephone for alternate address',
},
{
displayName: 'Other Postal Code',
@@ -364,7 +364,7 @@ export const contactFields: INodeProperties[] = [
name: 'otherStreet',
type: 'string',
default: '',
- description: 'Street for alternate address.',
+ description: 'Street for alternate address',
},
{
displayName: 'Owner',
@@ -374,14 +374,14 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'The owner of the contact.',
+ description: 'The owner of the contact',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number for the contact.',
+ description: 'Phone number for the contact',
},
{
displayName: 'Record Type ID',
@@ -404,7 +404,7 @@ export const contactFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of the contact such as CEO or Vice President.',
+ description: 'Title of the contact such as CEO or Vice President',
},
],
},
@@ -428,7 +428,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'ID of contact that needs to be fetched.',
+ description: 'ID of contact that needs to be fetched',
},
{
displayName: 'Update Fields',
@@ -455,28 +455,28 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getAccounts',
},
default: '',
- description: 'ID of the account that is the parent of this contact.',
+ description: 'ID of the account that is the parent of this contact',
},
{
displayName: 'Assistant Name',
name: 'assistantName',
type: 'string',
default: '',
- description: 'The name of the assistant.',
+ description: 'The name of the assistant',
},
{
displayName: 'Assistant Phone',
name: 'Assistant Phone',
type: 'string',
default: '',
- description: 'The telephone number of the assistant.',
+ description: 'The telephone number of the assistant',
},
{
displayName: 'Birth Date',
name: 'birthdate',
type: 'dateTime',
default: '',
- description: 'The birth date of the contact.',
+ description: 'The birth date of the contact',
},
{
displayName: 'Custom Fields',
@@ -501,14 +501,14 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -519,7 +519,7 @@ export const contactFields: INodeProperties[] = [
name: 'department',
type: 'string',
default: '',
- description: 'The department of the contact.',
+ description: 'The department of the contact',
},
{
displayName: 'Description',
@@ -533,21 +533,21 @@ export const contactFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'Email address for the contact.',
+ description: 'Email address for the contact',
},
{
displayName: 'Email Bounced Date',
name: 'emailBouncedDate',
type: 'dateTime',
default: '',
- description: 'If bounce management is activated and an email sent to the contact bounces, the date and time the bounce occurred.',
+ description: 'If bounce management is activated and an email sent to the contact bounces, the date and time the bounce occurred',
},
{
displayName: 'Email Bounced Reason',
name: 'emailBouncedReason',
type: 'string',
default: '',
- description: 'If bounce management is activated and an email sent to the contact bounces, the reason the bounce occurred.',
+ description: 'If bounce management is activated and an email sent to the contact bounces, the reason the bounce occurred',
},
{
displayName: 'Fax',
@@ -568,7 +568,7 @@ export const contactFields: INodeProperties[] = [
name: 'homePhone',
type: 'string',
default: '',
- description: 'Home telephone number for the contact.',
+ description: 'Home telephone number for the contact',
},
{
displayName: 'Jigsaw',
@@ -592,7 +592,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadSources',
},
default: '',
- description: 'Source from which the lead was obtained.',
+ description: 'Source from which the lead was obtained',
},
{
displayName: 'Mailing City',
@@ -617,7 +617,7 @@ export const contactFields: INodeProperties[] = [
name: 'mailingStreet',
type: 'string',
default: '',
- description: 'Street address for mailing address.',
+ description: 'Street address for mailing address',
},
{
displayName: 'Mailing Postal Code',
@@ -630,7 +630,7 @@ export const contactFields: INodeProperties[] = [
name: 'mobilePhone',
type: 'string',
default: '',
- description: `Contact’s mobile phone number.`,
+ description: 'Contact’s mobile phone number',
},
{
displayName: 'Other City',
@@ -649,7 +649,7 @@ export const contactFields: INodeProperties[] = [
name: 'otherPhone',
type: 'string',
default: '',
- description: 'Telephone for alternate address.',
+ description: 'Telephone for alternate address',
},
{
displayName: 'Other Postal Code',
@@ -668,7 +668,7 @@ export const contactFields: INodeProperties[] = [
name: 'otherStreet',
type: 'string',
default: '',
- description: 'Street for alternate address.',
+ description: 'Street for alternate address',
},
{
displayName: 'Owner',
@@ -678,14 +678,14 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'The owner of the contact.',
+ description: 'The owner of the contact',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number for the contact.',
+ description: 'Phone number for the contact',
},
{
displayName: 'Record Type ID',
@@ -708,7 +708,7 @@ export const contactFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of the contact such as CEO or Vice President.',
+ description: 'Title of the contact such as CEO or Vice President',
},
],
},
@@ -732,7 +732,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'ID of contact that needs to be fetched.',
+ description: 'ID of contact that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -775,7 +775,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -799,7 +799,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -826,7 +826,7 @@ export const contactFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
@@ -841,7 +841,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getContactFields',
},
default: '',
- description: 'For date, number, or boolean, please use expressions.',
+ description: 'For date, number, or boolean, please use expressions',
},
{
displayName: 'Operation',
@@ -910,7 +910,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'ID of contact that needs to be fetched.',
+ description: 'ID of contact that needs to be fetched',
},
{
displayName: 'Campaign',
@@ -931,7 +931,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'ID of the campaign that needs to be fetched.',
+ description: 'ID of the campaign that needs to be fetched',
},
{
displayName: 'Options',
@@ -955,7 +955,7 @@ export const contactFields: INodeProperties[] = [
name: 'status',
type: 'string',
default: '',
- description: 'Controls the HasResponded flag on this object.',
+ description: 'Controls the HasResponded flag on this object',
},
],
},
@@ -979,7 +979,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'ID of contact that needs to be fetched.',
+ description: 'ID of contact that needs to be fetched',
},
{
displayName: 'Title',
@@ -997,7 +997,7 @@ export const contactFields: INodeProperties[] = [
],
},
},
- description: 'Title of the note.',
+ description: 'Title of the note',
},
{
displayName: 'Options',
@@ -1041,7 +1041,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'ID of the user who owns the note.',
+ description: 'ID of the user who owns the note',
},
],
},
diff --git a/packages/nodes-base/nodes/Salesforce/CustomObjectDescription.ts b/packages/nodes-base/nodes/Salesforce/CustomObjectDescription.ts
index 895cacfddc..0279406b47 100644
--- a/packages/nodes-base/nodes/Salesforce/CustomObjectDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/CustomObjectDescription.ts
@@ -76,7 +76,7 @@ export const customObjectFields: INodeProperties[] = [
],
},
},
- description: 'Name of the custom object.',
+ description: 'Name of the custom object',
},
{
displayName: 'Match Against',
@@ -139,7 +139,7 @@ export const customObjectFields: INodeProperties[] = [
],
},
},
- description: 'Filter by custom fields.',
+ description: 'Filter by custom fields',
default: {},
options: [
{
@@ -157,14 +157,14 @@ export const customObjectFields: INodeProperties[] = [
],
},
default: '',
- description: 'The ID of the field.',
+ description: 'The ID of the field',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -211,7 +211,7 @@ export const customObjectFields: INodeProperties[] = [
],
},
},
- description: 'Record ID to be updated.',
+ description: 'Record ID to be updated',
},
{
displayName: 'Fields',
@@ -249,14 +249,14 @@ export const customObjectFields: INodeProperties[] = [
],
},
default: '',
- description: 'The ID of the field.',
+ description: 'The ID of the field',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -303,7 +303,7 @@ export const customObjectFields: INodeProperties[] = [
],
},
},
- description: 'Record ID to be retrieved.',
+ description: 'Record ID to be retrieved',
},
/* -------------------------------------------------------------------------- */
@@ -328,7 +328,7 @@ export const customObjectFields: INodeProperties[] = [
],
},
},
- description: 'Name of the custom object.',
+ description: 'Name of the custom object',
},
{
displayName: 'Record ID',
@@ -346,7 +346,7 @@ export const customObjectFields: INodeProperties[] = [
],
},
},
- description: 'Record ID to be deleted.',
+ description: 'Record ID to be deleted',
},
/* -------------------------------------------------------------------------- */
@@ -388,7 +388,7 @@ export const customObjectFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -412,7 +412,7 @@ export const customObjectFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -439,7 +439,7 @@ export const customObjectFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
@@ -457,7 +457,7 @@ export const customObjectFields: INodeProperties[] = [
],
},
default: '',
- description: 'For date, number, or boolean, please use expressions.',
+ description: 'For date, number, or boolean, please use expressions',
},
{
displayName: 'Operation',
diff --git a/packages/nodes-base/nodes/Salesforce/DocumentDescription.ts b/packages/nodes-base/nodes/Salesforce/DocumentDescription.ts
index b6db104abb..a5c6b64e9e 100644
--- a/packages/nodes-base/nodes/Salesforce/DocumentDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/DocumentDescription.ts
@@ -66,7 +66,7 @@ export const documentFields: INodeProperties[] = [
},
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
{
displayName: 'Additional Fields',
diff --git a/packages/nodes-base/nodes/Salesforce/FlowDescription.ts b/packages/nodes-base/nodes/Salesforce/FlowDescription.ts
index 76f18cfdf7..39ae7c6fa0 100644
--- a/packages/nodes-base/nodes/Salesforce/FlowDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/FlowDescription.ts
@@ -51,7 +51,7 @@ export const flowFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -75,7 +75,7 @@ export const flowFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -114,7 +114,7 @@ export const flowFields: INodeProperties[] = [
],
},
},
- description: 'If the input variables should be set via the value-key pair UI or JSON/RAW.',
+ description: 'If the input variables should be set via the value-key pair UI or JSON/RAW',
},
{
displayName: 'Variables',
@@ -134,7 +134,7 @@ export const flowFields: INodeProperties[] = [
},
},
default: '',
- description: 'Input variables as JSON object.',
+ description: 'Input variables as JSON object',
},
{
displayName: 'Variables',
@@ -157,7 +157,7 @@ export const flowFields: INodeProperties[] = [
],
},
},
- description: 'The input variable to send.',
+ description: 'The input variable to send',
default: {},
options: [
{
@@ -169,14 +169,14 @@ export const flowFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the input variable.',
+ description: 'Name of the input variable',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the input variable.',
+ description: 'Value of the input variable',
},
],
},
diff --git a/packages/nodes-base/nodes/Salesforce/LeadDescription.ts b/packages/nodes-base/nodes/Salesforce/LeadDescription.ts
index 0c85257e28..b20b1b271d 100644
--- a/packages/nodes-base/nodes/Salesforce/LeadDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/LeadDescription.ts
@@ -177,14 +177,14 @@ export const leadFields: INodeProperties[] = [
numberPrecision: 2,
},
default: '',
- description: 'Annual revenue for the company of the lead.',
+ description: 'Annual revenue for the company of the lead',
},
{
displayName: 'City',
name: 'city',
type: 'string',
default: '',
- description: 'City for the address of the lead.',
+ description: 'City for the address of the lead',
},
{
displayName: 'Custom Fields',
@@ -209,14 +209,14 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -230,14 +230,14 @@ export const leadFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Description of the lead.',
+ description: 'Description of the lead',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'Email address for the lead.',
+ description: 'Email address for the lead',
},
{
displayName: 'Fist Name',
@@ -251,7 +251,7 @@ export const leadFields: INodeProperties[] = [
name: 'industry',
type: 'string',
default: '',
- description: 'Website for the lead.',
+ description: 'Website for the lead',
},
{
displayName: 'Is Unread By Owner',
@@ -275,14 +275,14 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadSources',
},
default: '',
- description: 'Source from which the lead was obtained.',
+ description: 'Source from which the lead was obtained',
},
{
displayName: 'Mobile Phone',
name: 'mobilePhone',
type: 'string',
default: '',
- description: `Contact’s mobile phone number.`,
+ description: 'Contact’s mobile phone number',
},
{
displayName: 'Number Of Employees',
@@ -299,14 +299,14 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadOwners',
},
default: '',
- description: 'The owner of the lead.',
+ description: 'The owner of the lead',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number for the lead.',
+ description: 'Phone number for the lead',
},
{
displayName: 'Postal Code',
@@ -329,21 +329,21 @@ export const leadFields: INodeProperties[] = [
name: 'rating',
type: 'string',
default: '',
- description: 'Rating of the lead.',
+ description: 'Rating of the lead',
},
{
displayName: 'Salutation',
name: 'salutation',
type: 'string',
default: '',
- description: 'Salutation for the lead.',
+ description: 'Salutation for the lead',
},
{
displayName: 'State',
name: 'state',
type: 'string',
default: '',
- description: 'State for the address of the lead.',
+ description: 'State for the address of the lead',
},
{
displayName: 'Status',
@@ -353,28 +353,28 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadStatuses',
},
default: '',
- description: 'Status code for this converted lead.',
+ description: 'Status code for this converted lead',
},
{
displayName: 'Street',
name: 'street',
type: 'string',
default: '',
- description: 'Street number and name for the address of the lead.',
+ description: 'Street number and name for the address of the lead',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'Title for the lead, for example CFO or CEO.',
+ description: 'Title for the lead, for example CFO or CEO',
},
{
displayName: 'Website',
name: 'website',
type: 'string',
default: '',
- description: 'Website for the lead.',
+ description: 'Website for the lead',
},
],
},
@@ -398,7 +398,7 @@ export const leadFields: INodeProperties[] = [
],
},
},
- description: 'ID of Lead that needs to be fetched.',
+ description: 'ID of Lead that needs to be fetched',
},
{
displayName: 'Update Fields',
@@ -425,14 +425,14 @@ export const leadFields: INodeProperties[] = [
numberPrecision: 2,
},
default: '',
- description: 'Annual revenue for the company of the lead.',
+ description: 'Annual revenue for the company of the lead',
},
{
displayName: 'City',
name: 'city',
type: 'string',
default: '',
- description: 'City for the address of the lead.',
+ description: 'City for the address of the lead',
},
{
displayName: 'Company',
@@ -464,14 +464,14 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -485,14 +485,14 @@ export const leadFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Description of the lead.',
+ description: 'Description of the lead',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'Email address for the lead.',
+ description: 'Email address for the lead',
},
{
displayName: 'Fist Name',
@@ -506,7 +506,7 @@ export const leadFields: INodeProperties[] = [
name: 'industry',
type: 'string',
default: '',
- description: 'Website for the lead.',
+ description: 'Website for the lead',
},
{
displayName: 'Is Unread By Owner',
@@ -537,14 +537,14 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadSources',
},
default: '',
- description: 'Source from which the lead was obtained.',
+ description: 'Source from which the lead was obtained',
},
{
displayName: 'Mobile Phone',
name: 'mobilePhone',
type: 'string',
default: '',
- description: `Contact’s mobile phone number.`,
+ description: 'Contact’s mobile phone number',
},
{
displayName: 'Number Of Employees',
@@ -561,7 +561,7 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadOwners',
},
default: '',
- description: 'The owner of the lead.',
+ description: 'The owner of the lead',
},
{
displayName: 'Postal Code',
@@ -575,7 +575,7 @@ export const leadFields: INodeProperties[] = [
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number for the lead.',
+ description: 'Phone number for the lead',
},
{
displayName: 'Record Type ID',
@@ -591,21 +591,21 @@ export const leadFields: INodeProperties[] = [
name: 'rating',
type: 'string',
default: '',
- description: 'Rating of the lead.',
+ description: 'Rating of the lead',
},
{
displayName: 'Salutation',
name: 'salutation',
type: 'string',
default: '',
- description: 'Salutation for the lead.',
+ description: 'Salutation for the lead',
},
{
displayName: 'State',
name: 'state',
type: 'string',
default: '',
- description: 'State for the address of the lead.',
+ description: 'State for the address of the lead',
},
{
displayName: 'Status',
@@ -615,28 +615,28 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadStatuses',
},
default: '',
- description: 'Status code for this converted lead.',
+ description: 'Status code for this converted lead',
},
{
displayName: 'Street',
name: 'street',
type: 'string',
default: '',
- description: 'Street number and name for the address of the lead.',
+ description: 'Street number and name for the address of the lead',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'Title for the lead, for example CFO or CEO.',
+ description: 'Title for the lead, for example CFO or CEO',
},
{
displayName: 'Website',
name: 'website',
type: 'string',
default: '',
- description: 'Website for the lead.',
+ description: 'Website for the lead',
},
],
},
@@ -660,7 +660,7 @@ export const leadFields: INodeProperties[] = [
],
},
},
- description: 'ID of Lead that needs to be fetched.',
+ description: 'ID of Lead that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -682,7 +682,7 @@ export const leadFields: INodeProperties[] = [
],
},
},
- description: 'ID of Lead that needs to be fetched.',
+ description: 'ID of Lead that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -703,7 +703,7 @@ export const leadFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -727,7 +727,7 @@ export const leadFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -754,7 +754,7 @@ export const leadFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
@@ -769,7 +769,7 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadFields',
},
default: '',
- description: 'For date, number, or boolean, please use expressions.',
+ description: 'For date, number, or boolean, please use expressions',
},
{
displayName: 'Operation',
@@ -838,7 +838,7 @@ export const leadFields: INodeProperties[] = [
],
},
},
- description: 'ID of contact that needs to be fetched.',
+ description: 'ID of contact that needs to be fetched',
},
{
displayName: 'Campaign',
@@ -859,7 +859,7 @@ export const leadFields: INodeProperties[] = [
],
},
},
- description: 'ID of the campaign that needs to be fetched.',
+ description: 'ID of the campaign that needs to be fetched',
},
{
displayName: 'Options',
@@ -883,7 +883,7 @@ export const leadFields: INodeProperties[] = [
name: 'status',
type: 'string',
default: '',
- description: 'Controls the HasResponded flag on this object.',
+ description: 'Controls the HasResponded flag on this object',
},
],
},
@@ -907,7 +907,7 @@ export const leadFields: INodeProperties[] = [
],
},
},
- description: 'ID of lead that needs to be fetched.',
+ description: 'ID of lead that needs to be fetched',
},
{
displayName: 'Title',
@@ -925,7 +925,7 @@ export const leadFields: INodeProperties[] = [
],
},
},
- description: 'Title of the note.',
+ description: 'Title of the note',
},
{
displayName: 'Options',
@@ -969,7 +969,7 @@ export const leadFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'ID of the user who owns the note.',
+ description: 'ID of the user who owns the note',
},
],
},
diff --git a/packages/nodes-base/nodes/Salesforce/OpportunityDescription.ts b/packages/nodes-base/nodes/Salesforce/OpportunityDescription.ts
index 3d78f17ccc..e47fa7d149 100644
--- a/packages/nodes-base/nodes/Salesforce/OpportunityDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/OpportunityDescription.ts
@@ -194,7 +194,7 @@ export const opportunityFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getAccounts',
},
- description: 'ID of the account associated with this opportunity.',
+ description: 'ID of the account associated with this opportunity',
},
{
displayName: 'Amount',
@@ -214,7 +214,7 @@ export const opportunityFields: INodeProperties[] = [
loadOptionsMethod: 'getCampaigns',
},
default: '',
- description: 'ID of the campaign that needs to be fetched.',
+ description: 'ID of the campaign that needs to be fetched',
},
{
displayName: 'Custom Fields',
@@ -239,14 +239,14 @@ export const opportunityFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -274,7 +274,7 @@ export const opportunityFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadSources',
},
default: '',
- description: 'Source from which the lead was obtained.',
+ description: 'Source from which the lead was obtained',
},
{
displayName: 'Next Step',
@@ -291,14 +291,14 @@ export const opportunityFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'The owner of the opportunity.',
+ description: 'The owner of the opportunity',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number for the opportunity.',
+ description: 'Phone number for the opportunity',
},
{
displayName: 'Pricebook2 ID',
@@ -356,7 +356,7 @@ export const opportunityFields: INodeProperties[] = [
],
},
},
- description: 'ID of opportunity that needs to be fetched.',
+ description: 'ID of opportunity that needs to be fetched',
},
{
displayName: 'Update Fields',
@@ -383,7 +383,7 @@ export const opportunityFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getAccounts',
},
- description: 'ID of the account associated with this opportunity.',
+ description: 'ID of the account associated with this opportunity',
},
{
displayName: 'Amount',
@@ -393,7 +393,7 @@ export const opportunityFields: INodeProperties[] = [
numberPrecision: 2,
},
default: '',
- description: 'Estimated total sale amount.',
+ description: 'Estimated total sale amount',
},
{
displayName: 'Campaign',
@@ -403,7 +403,7 @@ export const opportunityFields: INodeProperties[] = [
loadOptionsMethod: 'getCampaigns',
},
default: '',
- description: 'ID of the campaign that needs to be fetched.',
+ description: 'ID of the campaign that needs to be fetched',
},
{
displayName: 'Close Date',
@@ -435,14 +435,14 @@ export const opportunityFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -460,7 +460,7 @@ export const opportunityFields: INodeProperties[] = [
name: 'forecastCategoryName',
type: 'string',
default: '',
- description: 'It is implied, but not directly controlled, by the StageName field.',
+ description: 'It is implied, but not directly controlled, by the StageName field',
},
{
displayName: 'Lead Source',
@@ -470,7 +470,7 @@ export const opportunityFields: INodeProperties[] = [
loadOptionsMethod: 'getLeadSources',
},
default: '',
- description: 'Source from which the lead was obtained.',
+ description: 'Source from which the lead was obtained',
},
{
displayName: 'Name',
@@ -494,14 +494,14 @@ export const opportunityFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'The owner of the opportunity.',
+ description: 'The owner of the opportunity',
},
{
displayName: 'Phone',
name: 'phone',
type: 'string',
default: '',
- description: 'Phone number for the opportunity.',
+ description: 'Phone number for the opportunity',
},
{
displayName: 'Pricebook2 ID',
@@ -518,7 +518,7 @@ export const opportunityFields: INodeProperties[] = [
numberPrecision: 1,
},
default: '',
- description: 'Percentage of estimated confidence in closing the opportunity.',
+ description: 'Percentage of estimated confidence in closing the opportunity',
},
{
displayName: 'Stage Name',
@@ -569,7 +569,7 @@ export const opportunityFields: INodeProperties[] = [
],
},
},
- description: 'ID of opportunity that needs to be fetched.',
+ description: 'ID of opportunity that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -591,7 +591,7 @@ export const opportunityFields: INodeProperties[] = [
],
},
},
- description: 'ID of opportunity that needs to be fetched.',
+ description: 'ID of opportunity that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -612,7 +612,7 @@ export const opportunityFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -636,7 +636,7 @@ export const opportunityFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -663,7 +663,7 @@ export const opportunityFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
@@ -747,7 +747,7 @@ export const opportunityFields: INodeProperties[] = [
],
},
},
- description: 'ID of opportunity that needs to be fetched.',
+ description: 'ID of opportunity that needs to be fetched',
},
{
displayName: 'Title',
@@ -765,7 +765,7 @@ export const opportunityFields: INodeProperties[] = [
],
},
},
- description: 'Title of the note.',
+ description: 'Title of the note',
},
{
displayName: 'Options',
@@ -809,7 +809,7 @@ export const opportunityFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'ID of the user who owns the note.',
+ description: 'ID of the user who owns the note',
},
],
},
diff --git a/packages/nodes-base/nodes/Salesforce/Salesforce.node.ts b/packages/nodes-base/nodes/Salesforce/Salesforce.node.ts
index 483d4a8805..ba8b5b382f 100644
--- a/packages/nodes-base/nodes/Salesforce/Salesforce.node.ts
+++ b/packages/nodes-base/nodes/Salesforce/Salesforce.node.ts
@@ -185,47 +185,47 @@ export class Salesforce implements INodeType {
{
name: 'Account',
value: 'account',
- description: 'Represents an individual account, which is an organization or person involved with your business (such as customers, competitors, and partners).',
+ description: 'Represents an individual account, which is an organization or person involved with your business (such as customers, competitors, and partners)',
},
{
name: 'Attachment',
value: 'attachment',
- description: 'Represents a file that a has uploaded and attached to a parent object.',
+ description: 'Represents a file that a has uploaded and attached to a parent object',
},
{
name: 'Case',
value: 'case',
- description: 'Represents a case, which is a customer issue or problem.',
+ description: 'Represents a case, which is a customer issue or problem',
},
{
name: 'Contact',
value: 'contact',
- description: 'Represents a contact, which is an individual associated with an account.',
+ description: 'Represents a contact, which is an individual associated with an account',
},
{
name: 'Custom Object',
value: 'customObject',
- description: 'Represents a custom object.',
+ description: 'Represents a custom object',
},
{
name: 'Document',
value: 'document',
- description: 'Represents a document.',
+ description: 'Represents a document',
},
{
name: 'Flow',
value: 'flow',
- description: 'Represents an autolaunched flow.',
+ description: 'Represents an autolaunched flow',
},
{
name: 'Lead',
value: 'lead',
- description: 'Represents a prospect or potential.',
+ description: 'Represents a prospect or potential',
},
{
name: 'Opportunity',
value: 'opportunity',
- description: 'Represents an opportunity, which is a sale or pending deal.',
+ description: 'Represents an opportunity, which is a sale or pending deal',
},
{
name: 'Search',
@@ -240,7 +240,7 @@ export class Salesforce implements INodeType {
{
name: 'User',
value: 'user',
- description: 'Represents a person, which is one user in system.',
+ description: 'Represents a person, which is one user in system',
},
],
default: 'lead',
diff --git a/packages/nodes-base/nodes/Salesforce/TaskDescription.ts b/packages/nodes-base/nodes/Salesforce/TaskDescription.ts
index b0762df388..0f8dfeecf4 100644
--- a/packages/nodes-base/nodes/Salesforce/TaskDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/TaskDescription.ts
@@ -75,7 +75,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskStatuses',
},
- description: 'The current status of the task, such as In Progress or Completed.',
+ description: 'The current status of the task, such as In Progress or Completed',
},
{
displayName: 'Additional Fields',
@@ -136,7 +136,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskCallTypes',
},
- description: 'The type of call being answered: Inbound, Internal, or Outbound.',
+ description: 'The type of call being answered: Inbound, Internal, or Outbound',
},
{
displayName: 'Custom Fields',
@@ -161,14 +161,14 @@ export const taskFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -182,14 +182,14 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'Contains a text description of the task.',
+ description: 'Contains a text description of the task',
},
{
displayName: 'Is ReminderSet',
name: 'isReminderSet',
type: 'boolean',
default: false,
- description: 'Indicates whether a popup reminder has been set for the task (true) or not (false).',
+ description: 'Indicates whether a popup reminder has been set for the task (true) or not (false)',
},
{
displayName: 'Owner',
@@ -199,7 +199,7 @@ export const taskFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'ID of the User who owns the record.',
+ description: 'ID of the User who owns the record',
},
{
displayName: 'Priority',
@@ -209,7 +209,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskPriorities',
},
- description: `Indicates the importance or urgency of a task, such as high or low.`,
+ description: 'Indicates the importance or urgency of a task, such as high or low',
},
{
displayName: 'Recurrence Type',
@@ -219,7 +219,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskRecurrenceTypes',
},
- description: 'Recurrence Type of the task.',
+ description: 'Recurrence Type of the task',
},
{
displayName: 'Recurrence Instance',
@@ -236,14 +236,14 @@ export const taskFields: INodeProperties[] = [
name: 'recurrenceInterval',
type: 'number',
default: '',
- description: 'The interval between recurring tasks.',
+ description: 'The interval between recurring tasks',
},
{
displayName: 'Recurrence Day Of Month',
name: 'recurrenceDayOfMonth',
type: 'number',
default: '',
- description: 'The day of the month in which the task repeats.',
+ description: 'The day of the month in which the task repeats',
},
{
displayName: 'Recurrence Day Of Week Mask',
@@ -314,7 +314,7 @@ export const taskFields: INodeProperties[] = [
},
],
default: '',
- description: 'The month of the year in which the task repeats.',
+ description: 'The month of the year in which the task repeats',
},
{
displayName: 'Recurrence Regenerated Type',
@@ -366,7 +366,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskSubjects',
},
- description: 'The subject line of the task, such as “Call” or “Send Quote.” Limit: 255 characters.',
+ description: 'The subject line of the task, such as “Call” or “Send Quote.” Limit: 255 characters',
},
{
displayName: 'Type',
@@ -376,7 +376,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskTypes',
},
- description: `Represents Type of the task, such as Call or Meeting.`,
+ description: 'Represents Type of the task, such as Call or Meeting',
},
{
displayName: 'What Id',
@@ -414,7 +414,7 @@ export const taskFields: INodeProperties[] = [
],
},
},
- description: 'ID of task that needs to be fetched.',
+ description: 'ID of task that needs to be fetched',
},
{
displayName: 'Update Fields',
@@ -475,7 +475,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskCallTypes',
},
- description: 'The type of call being answered: Inbound, Internal, or Outbound.',
+ description: 'The type of call being answered: Inbound, Internal, or Outbound',
},
{
displayName: 'Custom Fields',
@@ -500,14 +500,14 @@ export const taskFields: INodeProperties[] = [
loadOptionsMethod: 'getCustomFields',
},
default: '',
- description: 'The ID of the field to add custom field to.',
+ description: 'The ID of the field to add custom field to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The value to set on custom field.',
+ description: 'The value to set on custom field',
},
],
},
@@ -521,14 +521,14 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'Contains a text description of the task.',
+ description: 'Contains a text description of the task',
},
{
displayName: 'Is ReminderSet',
name: 'isReminderSet',
type: 'boolean',
default: false,
- description: 'Indicates whether a popup reminder has been set for the task (true) or not (false).',
+ description: 'Indicates whether a popup reminder has been set for the task (true) or not (false)',
},
{
displayName: 'Owner',
@@ -538,7 +538,7 @@ export const taskFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'ID of the User who owns the record.',
+ description: 'ID of the User who owns the record',
},
{
displayName: 'Priority',
@@ -548,7 +548,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskPriorities',
},
- description: `Indicates the importance or urgency of a task, such as high or low.`,
+ description: 'Indicates the importance or urgency of a task, such as high or low',
},
{
displayName: 'Status',
@@ -558,7 +558,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskStatuses',
},
- description: 'The current status of the task, such as In Progress or Completed.',
+ description: 'The current status of the task, such as In Progress or Completed',
},
{
displayName: 'Subject',
@@ -568,14 +568,14 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskSubjects',
},
- description: 'The subject line of the task, such as “Call” or “Send Quote.” Limit: 255 characters.',
+ description: 'The subject line of the task, such as “Call” or “Send Quote.” Limit: 255 characters',
},
{
displayName: 'Recurrence Day Of Month',
name: 'recurrenceDayOfMonth',
type: 'number',
default: '',
- description: 'The day of the month in which the task repeats.',
+ description: 'The day of the month in which the task repeats',
},
{
displayName: 'Recurrence Day Of Week Mask',
@@ -606,7 +606,7 @@ export const taskFields: INodeProperties[] = [
name: 'recurrenceInterval',
type: 'number',
default: '',
- description: 'The interval between recurring tasks.',
+ description: 'The interval between recurring tasks',
},
{
displayName: 'Recurrence Month Of Year',
@@ -663,7 +663,7 @@ export const taskFields: INodeProperties[] = [
},
],
default: '',
- description: 'The month of the year in which the task repeats.',
+ description: 'The month of the year in which the task repeats',
},
{
displayName: 'Recurrence Start Date Only',
@@ -701,7 +701,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskRecurrenceTypes',
},
- description: 'Website for the task.',
+ description: 'Website for the task',
},
{
displayName: 'Recurrence TimeZone SidKey',
@@ -725,7 +725,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTaskTypes',
},
- description: `Represents Type of the task, such as Call or Meeting.`,
+ description: 'Represents Type of the task, such as Call or Meeting',
},
{
displayName: 'What Id',
@@ -763,7 +763,7 @@ export const taskFields: INodeProperties[] = [
],
},
},
- description: 'ID of task that needs to be fetched.',
+ description: 'ID of task that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -785,7 +785,7 @@ export const taskFields: INodeProperties[] = [
],
},
},
- description: 'ID of task that needs to be fetched.',
+ description: 'ID of task that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -806,7 +806,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -830,7 +830,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -857,7 +857,7 @@ export const taskFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
@@ -872,7 +872,7 @@ export const taskFields: INodeProperties[] = [
loadOptionsMethod: 'getTaskFields',
},
default: '',
- description: 'For date, number, or boolean, please use expressions.',
+ description: 'For date, number, or boolean, please use expressions',
},
{
displayName: 'Operation',
diff --git a/packages/nodes-base/nodes/Salesforce/UserDescription.ts b/packages/nodes-base/nodes/Salesforce/UserDescription.ts
index 7352b17a5a..d8f0813407 100644
--- a/packages/nodes-base/nodes/Salesforce/UserDescription.ts
+++ b/packages/nodes-base/nodes/Salesforce/UserDescription.ts
@@ -52,7 +52,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'ID of user that needs to be fetched.',
+ description: 'ID of user that needs to be fetched',
},
/* -------------------------------------------------------------------------- */
@@ -73,7 +73,7 @@ export const userFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -97,7 +97,7 @@ export const userFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -124,7 +124,7 @@ export const userFields: INodeProperties[] = [
typeOptions: {
multipleValues: true,
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
@@ -139,7 +139,7 @@ export const userFields: INodeProperties[] = [
loadOptionsMethod: 'getUserFields',
},
default: '',
- description: 'For date, number, or boolean, please use expressions.',
+ description: 'For date, number, or boolean, please use expressions',
},
{
displayName: 'Operation',
diff --git a/packages/nodes-base/nodes/Salesmate/ActivityDescription.ts b/packages/nodes-base/nodes/Salesmate/ActivityDescription.ts
index 3c07fb931c..6f2bc0ccf4 100644
--- a/packages/nodes-base/nodes/Salesmate/ActivityDescription.ts
+++ b/packages/nodes-base/nodes/Salesmate/ActivityDescription.ts
@@ -101,7 +101,7 @@ export const activityFields: INodeProperties[] = [
],
},
},
- description: 'This field displays activity type such as call, meeting etc.',
+ description: 'This field displays activity type such as call, meeting etc',
required: true,
},
{
@@ -146,7 +146,7 @@ export const activityFields: INodeProperties[] = [
},
type: 'string',
default: '',
- description: 'This field contains details related to the activity.',
+ description: 'This field contains details related to the activity',
},
{
displayName: 'Tags',
@@ -160,28 +160,28 @@ export const activityFields: INodeProperties[] = [
name: 'dueDate',
type: 'dateTime',
default: '',
- description: 'Expiry date of an activity.',
+ description: 'Expiry date of an activity',
},
{
displayName: 'Duration',
name: 'duration',
type: 'number',
default: '',
- description: 'Time duration of an activity.',
+ description: 'Time duration of an activity',
},
{
displayName: 'Is Calendar Invite',
name: 'isCalendarInvite',
type: 'boolean',
default: false,
- description: 'This field is used to send calendar invite.',
+ description: 'This field is used to send calendar invite',
},
{
displayName: 'Is Completed',
name: 'isCompleted',
type: 'boolean',
default: false,
- description: 'This field indicates whether the activity is completed or not.',
+ description: 'This field indicates whether the activity is completed or not',
},
],
},
@@ -266,7 +266,7 @@ export const activityFields: INodeProperties[] = [
},
type: 'string',
default: '',
- description: 'This field contains details related to the activity.',
+ description: 'This field contains details related to the activity',
},
{
displayName: 'Tags',
@@ -280,28 +280,28 @@ export const activityFields: INodeProperties[] = [
name: 'dueDate',
type: 'dateTime',
default: '',
- description: 'Expiry date of an activity.',
+ description: 'Expiry date of an activity',
},
{
displayName: 'Duration',
name: 'duration',
type: 'number',
default: '',
- description: 'Time duration of an activity.',
+ description: 'Time duration of an activity',
},
{
displayName: 'Is Calendar Invite',
name: 'isCalendarInvite',
type: 'boolean',
default: false,
- description: 'This field is used to send calendar invite.',
+ description: 'This field is used to send calendar invite',
},
{
displayName: 'Is Completed',
name: 'isCompleted',
type: 'boolean',
default: false,
- description: 'This field indicates whether the activity is completed or not.',
+ description: 'This field indicates whether the activity is completed or not',
},
],
@@ -362,7 +362,7 @@ export const activityFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -386,7 +386,7 @@ export const activityFields: INodeProperties[] = [
maxValue: 25,
},
default: 10,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'JSON Parameters',
@@ -426,14 +426,14 @@ export const activityFields: INodeProperties[] = [
name: 'fields',
type: 'string',
default: '',
- description: 'Comma-separated list of fields to return.',
+ description: 'Comma-separated list of fields to return',
},
{
displayName: 'Sort By',
name: 'sortBy',
type: 'string',
default: '',
- description: 'The field to sort by.',
+ description: 'The field to sort by',
},
{
displayName: 'Sort Order',
@@ -588,7 +588,7 @@ export const activityFields: INodeProperties[] = [
},
],
default: 'EQUALS',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
{
displayName: 'Value',
diff --git a/packages/nodes-base/nodes/Salesmate/CompanyDescription.ts b/packages/nodes-base/nodes/Salesmate/CompanyDescription.ts
index 239eb24789..cdf957a1f4 100644
--- a/packages/nodes-base/nodes/Salesmate/CompanyDescription.ts
+++ b/packages/nodes-base/nodes/Salesmate/CompanyDescription.ts
@@ -455,7 +455,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -479,7 +479,7 @@ export const companyFields: INodeProperties[] = [
maxValue: 25,
},
default: 10,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'JSON Parameters',
@@ -519,14 +519,14 @@ export const companyFields: INodeProperties[] = [
name: 'fields',
type: 'string',
default: '',
- description: 'Comma-separated list of fields to return.',
+ description: 'Comma-separated list of fields to return',
},
{
displayName: 'Sort By',
name: 'sortBy',
type: 'string',
default: '',
- description: 'The field to sort by.',
+ description: 'The field to sort by',
},
{
displayName: 'Sort Order',
@@ -685,7 +685,7 @@ export const companyFields: INodeProperties[] = [
},
],
default: 'EQUALS',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
{
displayName: 'Value',
diff --git a/packages/nodes-base/nodes/Salesmate/DealDescription.ts b/packages/nodes-base/nodes/Salesmate/DealDescription.ts
index d76442cab2..114b94a87f 100644
--- a/packages/nodes-base/nodes/Salesmate/DealDescription.ts
+++ b/packages/nodes-base/nodes/Salesmate/DealDescription.ts
@@ -104,7 +104,7 @@ export const dealFields: INodeProperties[] = [
],
},
},
- description: 'Primary contact for the deal.',
+ description: 'Primary contact for the deal',
required: true,
},
{
@@ -259,7 +259,7 @@ export const dealFields: INodeProperties[] = [
},
type: 'string',
default: '',
- description: 'This field contains details related to the deal.',
+ description: 'This field contains details related to the deal',
},
{
displayName: 'Tags',
@@ -491,7 +491,7 @@ export const dealFields: INodeProperties[] = [
},
type: 'string',
default: '',
- description: 'This field contains details related to the deal.',
+ description: 'This field contains details related to the deal',
},
{
displayName: 'Tags',
@@ -626,7 +626,7 @@ export const dealFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -650,7 +650,7 @@ export const dealFields: INodeProperties[] = [
maxValue: 25,
},
default: 10,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'JSON Parameters',
@@ -690,14 +690,14 @@ export const dealFields: INodeProperties[] = [
name: 'fields',
type: 'string',
default: '',
- description: 'Comma-separated list of fields to return.',
+ description: 'Comma-separated list of fields to return',
},
{
displayName: 'Sort By',
name: 'sortBy',
type: 'string',
default: '',
- description: 'The field to sort by.',
+ description: 'The field to sort by',
},
{
displayName: 'Sort Order',
@@ -856,7 +856,7 @@ export const dealFields: INodeProperties[] = [
},
],
default: 'EQUALS',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
{
displayName: 'Value',
diff --git a/packages/nodes-base/nodes/SecurityScorecard/descriptions/CompanyDescription.ts b/packages/nodes-base/nodes/SecurityScorecard/descriptions/CompanyDescription.ts
index 61e8eb1b6c..09ff44720e 100644
--- a/packages/nodes-base/nodes/SecurityScorecard/descriptions/CompanyDescription.ts
+++ b/packages/nodes-base/nodes/SecurityScorecard/descriptions/CompanyDescription.ts
@@ -105,7 +105,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -132,7 +132,7 @@ export const companyFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'Number of results to return.',
+ description: 'Number of results to return',
},
{
displayName: 'Simplify Response',
@@ -150,7 +150,7 @@ export const companyFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
// company:getFactor
diff --git a/packages/nodes-base/nodes/SecurityScorecard/descriptions/IndustryDescription.ts b/packages/nodes-base/nodes/SecurityScorecard/descriptions/IndustryDescription.ts
index bc2b1068b7..783fc2ccb8 100644
--- a/packages/nodes-base/nodes/SecurityScorecard/descriptions/IndustryDescription.ts
+++ b/packages/nodes-base/nodes/SecurityScorecard/descriptions/IndustryDescription.ts
@@ -91,7 +91,7 @@ export const industryFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -116,7 +116,7 @@ export const industryFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'Number of results to return.',
+ description: 'Number of results to return',
},
{
displayName: 'Simplify Response',
@@ -134,7 +134,7 @@ export const industryFields: INodeProperties[] = [
},
},
default: true,
- description: 'Return a simplified version of the response instead of the raw data.',
+ description: 'Return a simplified version of the response instead of the raw data',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/SecurityScorecard/descriptions/PortfolioCompanyDescription.ts b/packages/nodes-base/nodes/SecurityScorecard/descriptions/PortfolioCompanyDescription.ts
index 8e3ef9cb12..761997f05c 100644
--- a/packages/nodes-base/nodes/SecurityScorecard/descriptions/PortfolioCompanyDescription.ts
+++ b/packages/nodes-base/nodes/SecurityScorecard/descriptions/PortfolioCompanyDescription.ts
@@ -71,7 +71,7 @@ export const portfolioCompanyFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -95,7 +95,7 @@ export const portfolioCompanyFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'Number of results to return.',
+ description: 'Number of results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/SecurityScorecard/descriptions/PortfolioDescription.ts b/packages/nodes-base/nodes/SecurityScorecard/descriptions/PortfolioDescription.ts
index a9d0594c28..e6bb6b56e9 100644
--- a/packages/nodes-base/nodes/SecurityScorecard/descriptions/PortfolioDescription.ts
+++ b/packages/nodes-base/nodes/SecurityScorecard/descriptions/PortfolioDescription.ts
@@ -57,7 +57,7 @@ export const portfolioFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -81,7 +81,7 @@ export const portfolioFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'Number of results to return.',
+ description: 'Number of results to return',
},
{
displayName: 'Portfolio ID',
diff --git a/packages/nodes-base/nodes/SecurityScorecard/descriptions/ReportDescription.ts b/packages/nodes-base/nodes/SecurityScorecard/descriptions/ReportDescription.ts
index 34d21d4648..9885a3cc5c 100644
--- a/packages/nodes-base/nodes/SecurityScorecard/descriptions/ReportDescription.ts
+++ b/packages/nodes-base/nodes/SecurityScorecard/descriptions/ReportDescription.ts
@@ -52,7 +52,7 @@ export const reportFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -76,7 +76,7 @@ export const reportFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'Number of results to return.',
+ description: 'Number of results to return',
},
{
displayName: 'Report',
@@ -379,6 +379,6 @@ export const reportFields: INodeProperties[] = [
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
];
diff --git a/packages/nodes-base/nodes/Segment/GroupDescription.ts b/packages/nodes-base/nodes/Segment/GroupDescription.ts
index ad805a7118..80b2f26036 100644
--- a/packages/nodes-base/nodes/Segment/GroupDescription.ts
+++ b/packages/nodes-base/nodes/Segment/GroupDescription.ts
@@ -142,14 +142,14 @@ export const groupFields: INodeProperties[] = [
name: 'ip',
type: 'string',
default: '',
- description: 'Current user’s IP address.',
+ description: 'Current user’s IP address',
},
{
displayName: 'Locale',
name: 'locate',
type: 'string',
default: '',
- description: 'Locale string for the current user, for example en-US.',
+ description: 'Locale string for the current user, for example en-US',
},
{
displayName: 'Page',
diff --git a/packages/nodes-base/nodes/Segment/IdentifyDescription.ts b/packages/nodes-base/nodes/Segment/IdentifyDescription.ts
index 58d116b753..eb12cbf587 100644
--- a/packages/nodes-base/nodes/Segment/IdentifyDescription.ts
+++ b/packages/nodes-base/nodes/Segment/IdentifyDescription.ts
@@ -124,14 +124,14 @@ export const identifyFields: INodeProperties[] = [
name: 'ip',
type: 'string',
default: '',
- description: 'Current user’s IP address.',
+ description: 'Current user’s IP address',
},
{
displayName: 'Locale',
name: 'locate',
type: 'string',
default: '',
- description: 'Locale string for the current user, for example en-US.',
+ description: 'Locale string for the current user, for example en-US',
},
{
displayName: 'Page',
diff --git a/packages/nodes-base/nodes/Segment/TrackDescription.ts b/packages/nodes-base/nodes/Segment/TrackDescription.ts
index ece3239c82..26b70a2ad1 100644
--- a/packages/nodes-base/nodes/Segment/TrackDescription.ts
+++ b/packages/nodes-base/nodes/Segment/TrackDescription.ts
@@ -23,7 +23,7 @@ export const trackOperations: INodeProperties[] = [
{
name: 'Page',
value: 'page',
- description: 'Record page views on your website, along with optional extra information about the page being viewed.',
+ description: 'Record page views on your website, along with optional extra information about the page being viewed',
},
],
default: 'event',
@@ -68,7 +68,7 @@ export const trackFields: INodeProperties[] = [
],
},
},
- description: 'Name of the action that a user has performed.',
+ description: 'Name of the action that a user has performed',
required: true,
},
{
@@ -107,14 +107,14 @@ export const trackFields: INodeProperties[] = [
name: 'ip',
type: 'string',
default: '',
- description: 'Current user’s IP address.',
+ description: 'Current user’s IP address',
},
{
displayName: 'Locale',
name: 'locate',
type: 'string',
default: '',
- description: 'Locale string for the current user, for example en-US.',
+ description: 'Locale string for the current user, for example en-US',
},
{
displayName: 'Page',
@@ -424,14 +424,14 @@ export const trackFields: INodeProperties[] = [
name: 'ip',
type: 'string',
default: '',
- description: 'Current user’s IP address.',
+ description: 'Current user’s IP address',
},
{
displayName: 'Locale',
name: 'locate',
type: 'string',
default: '',
- description: 'Locale string for the current user, for example en-US.',
+ description: 'Locale string for the current user, for example en-US',
},
{
displayName: 'Page',
diff --git a/packages/nodes-base/nodes/SendGrid/ContactDescription.ts b/packages/nodes-base/nodes/SendGrid/ContactDescription.ts
index d46bece1ac..d5811011ab 100644
--- a/packages/nodes-base/nodes/SendGrid/ContactDescription.ts
+++ b/packages/nodes-base/nodes/SendGrid/ContactDescription.ts
@@ -60,7 +60,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If set to true, all the results will be returned.',
+ description: 'If set to true, all the results will be returned',
},
{
displayName: 'Limit',
@@ -84,7 +84,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 1000,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -108,7 +108,7 @@ export const contactFields: INodeProperties[] = [
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',
},
],
},
@@ -132,7 +132,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Primary email for the contact.',
+ description: 'Primary email for the contact',
},
{
displayName: 'Additional Fields',
@@ -227,7 +227,7 @@ export const contactFields: INodeProperties[] = [
displayName: 'List IDs',
name: 'listIdsUi',
placeholder: 'List IDs',
- description: 'Adds a custom field to set also values which have not been predefined.',
+ description: 'Adds a custom field to set also values which have not been predefined',
type: 'fixedCollection',
default: {},
options: [
@@ -243,7 +243,7 @@ export const contactFields: INodeProperties[] = [
loadOptionsMethod: 'getListIds',
},
default: [],
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
],
},
@@ -326,7 +326,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If set to true, all contacts will be deleted.',
+ description: 'If set to true, all contacts will be deleted',
},
/* -------------------------------------------------------------------------- */
@@ -358,7 +358,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: 'id',
- description: 'Search the user by ID or email.',
+ description: 'Search the user by ID or email',
},
{
displayName: 'Contact ID',
@@ -379,7 +379,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the contact.',
+ description: 'ID of the contact',
},
{
displayName: 'Email',
@@ -400,6 +400,6 @@ export const contactFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email of the contact.',
+ description: 'Email of the contact',
},
];
diff --git a/packages/nodes-base/nodes/SendGrid/ListDescription.ts b/packages/nodes-base/nodes/SendGrid/ListDescription.ts
index 33d826514b..c708b20e07 100644
--- a/packages/nodes-base/nodes/SendGrid/ListDescription.ts
+++ b/packages/nodes-base/nodes/SendGrid/ListDescription.ts
@@ -65,7 +65,7 @@ export const listFields: INodeProperties[] = [
},
},
default: false,
- description: 'If set to true, all the results will be returned.',
+ description: 'If set to true, all the results will be returned',
},
{
displayName: 'Limit',
@@ -89,7 +89,7 @@ export const listFields: INodeProperties[] = [
maxValue: 1000,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -111,7 +111,7 @@ export const listFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of the list.',
+ description: 'Name of the list',
},
/* -------------------------------------------------------------------------- */
@@ -133,7 +133,7 @@ export const listFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the list.',
+ description: 'ID of the list',
},
{
displayName: 'Delete Contacts',
@@ -150,7 +150,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'Delete all contacts on the list.',
+ description: 'Delete all contacts on the list',
},
/* -------------------------------------------------------------------------- */
@@ -172,7 +172,7 @@ export const listFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the list.',
+ description: 'ID of the list',
},
{
displayName: 'Contact Sample',
@@ -189,7 +189,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'Return the contact sample.',
+ description: 'Return the contact sample',
},
/* -------------------------------------------------------------------------- */
/* list:update */
@@ -210,7 +210,7 @@ export const listFields: INodeProperties[] = [
},
},
default: '',
- description: 'ID of the list.',
+ description: 'ID of the list',
},
{
displayName: 'Name',
@@ -228,6 +228,6 @@ export const listFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of the list.',
+ description: 'Name of the list',
},
];
diff --git a/packages/nodes-base/nodes/SendGrid/MailDescription.ts b/packages/nodes-base/nodes/SendGrid/MailDescription.ts
index 383733f0f6..b2254f0753 100644
--- a/packages/nodes-base/nodes/SendGrid/MailDescription.ts
+++ b/packages/nodes-base/nodes/SendGrid/MailDescription.ts
@@ -18,7 +18,7 @@ export const mailOperations: INodeProperties[] = [
{
name: 'Send',
value: 'send',
- description: 'Send an email.',
+ description: 'Send an email',
},
],
default: 'send',
@@ -36,7 +36,7 @@ export const mailFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'sender@domain.com',
- description: 'Email address of the sender of the email.',
+ description: 'Email address of the sender of the email',
displayOptions: {
show: {
resource: [
@@ -54,7 +54,7 @@ export const mailFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'John Smith',
- description: 'Name of the sender of the email.',
+ description: 'Name of the sender of the email',
displayOptions: {
show: {
resource: [
@@ -72,7 +72,7 @@ export const mailFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'recipient@domain.com',
- description: 'Comma-separated list of recipient email addresses.',
+ description: 'Comma-separated list of recipient email addresses',
displayOptions: {
show: {
resource: [
@@ -89,7 +89,7 @@ export const mailFields: INodeProperties[] = [
name: 'subject',
type: 'string',
default: '',
- description: 'Subject of the email to send.',
+ description: 'Subject of the email to send',
displayOptions: {
show: {
resource: [
@@ -110,7 +110,7 @@ export const mailFields: INodeProperties[] = [
type: 'boolean',
required: true,
default: false,
- description: 'Whether this email will contain a dynamic template.',
+ description: 'Whether this email will contain a dynamic template',
displayOptions: {
show: {
resource: [
@@ -127,7 +127,7 @@ export const mailFields: INodeProperties[] = [
name: 'contentType',
type: 'options',
default: 'text/plain',
- description: 'MIME type of the email to send.',
+ description: 'MIME type of the email to send',
options: [
{
name: 'Plain Text',
@@ -158,7 +158,7 @@ export const mailFields: INodeProperties[] = [
type: 'string',
default: '',
required: true,
- description: 'Message body of the email to send.',
+ description: 'Message body of the email to send',
typeOptions: {
alwaysOpenEditWindow: true,
},
@@ -230,7 +230,7 @@ export const mailFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Key of the dynamic template field.',
+ description: 'Key of the dynamic template field',
},
{
displayName: 'Value',
@@ -272,7 +272,7 @@ export const mailFields: INodeProperties[] = [
name: 'bccEmail',
type: 'string',
default: '',
- description: 'Comma-separated list of emails of the recipients of a blind carbon copy of the email.',
+ description: 'Comma-separated list of emails of the recipients of a blind carbon copy of the email',
},
{
displayName: 'Categories',
@@ -286,21 +286,21 @@ export const mailFields: INodeProperties[] = [
name: 'ccEmail',
type: 'string',
default: '',
- description: 'Comma-separated list of emails of the recipients of a carbon copy of the email.',
+ description: 'Comma-separated list of emails of the recipients of a carbon copy of the email',
},
{
displayName: 'Enable Sandbox',
name: 'enableSandbox',
type: 'boolean',
default: false,
- description: 'Whether to use to the sandbox for testing out email-sending functionality.',
+ description: 'Whether to use to the sandbox for testing out email-sending functionality',
},
{
displayName: 'IP Pool Name',
name: 'ipPoolName',
type: 'string',
default: '',
- description: 'The IP Pool that you would like to send this email from.',
+ description: 'The IP Pool that you would like to send this email from',
},
{
displayName: 'Headers',
@@ -321,14 +321,14 @@ export const mailFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Key to set in the header object.',
+ description: 'Key to set in the header object',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set in the header object.',
+ description: 'Value to set in the header object',
},
],
},
diff --git a/packages/nodes-base/nodes/Sendy/CampaignDescription.ts b/packages/nodes-base/nodes/Sendy/CampaignDescription.ts
index a6e31830cf..27eb270e32 100644
--- a/packages/nodes-base/nodes/Sendy/CampaignDescription.ts
+++ b/packages/nodes-base/nodes/Sendy/CampaignDescription.ts
@@ -46,7 +46,7 @@ export const campaignFields: INodeProperties[] = [
},
},
default: '',
- description: `The 'From name' of your campaign.`,
+ description: 'The \'From name\' of your campaign',
},
{
displayName: 'From Email',
@@ -63,7 +63,7 @@ export const campaignFields: INodeProperties[] = [
},
},
default: '',
- description: `The 'From email' of your campaign.`,
+ description: 'The \'From email\' of your campaign',
},
{
displayName: 'Reply To',
@@ -80,7 +80,7 @@ export const campaignFields: INodeProperties[] = [
},
},
default: '',
- description: `The 'Reply to' of your campaign.`,
+ description: 'The \'Reply to\' of your campaign',
},
{
displayName: 'Title',
@@ -97,7 +97,7 @@ export const campaignFields: INodeProperties[] = [
},
},
default: '',
- description: `The 'Title' of your campaign.`,
+ description: 'The \'Title\' of your campaign',
},
{
displayName: 'Subject',
@@ -114,7 +114,7 @@ export const campaignFields: INodeProperties[] = [
},
},
default: '',
- description: `The 'Subject' of your campaign.`,
+ description: 'The \'Subject\' of your campaign',
},
{
displayName: 'HTML Text',
@@ -131,7 +131,7 @@ export const campaignFields: INodeProperties[] = [
},
},
default: '',
- description: `The 'HTML version' of your campaign.`,
+ description: 'The \'HTML version\' of your campaign',
},
{
displayName: 'Send Campaign',
@@ -206,28 +206,28 @@ export const campaignFields: INodeProperties[] = [
name: 'listIds',
type: 'string',
default: '',
- description: `List IDs should be single or comma-separated.`,
+ description: 'List IDs should be single or comma-separated',
},
{
displayName: 'Plain Text',
name: 'plainText',
type: 'string',
default: '',
- description: `The 'Plain text version' of your campaign.`,
+ description: 'The \'Plain text version\' of your campaign',
},
{
displayName: 'Querystring',
name: 'queryString',
type: 'string',
default: '',
- description: `Google Analytics tags.`,
+ description: 'Google Analytics tags',
},
{
displayName: 'Segment IDs',
name: 'segmentIds',
type: 'string',
default: '',
- description: `Segment IDs should be single or comma-separated.`,
+ description: 'Segment IDs should be single or comma-separated',
},
{
displayName: 'Track Clicks',
diff --git a/packages/nodes-base/nodes/Sendy/SubscriberDescription.ts b/packages/nodes-base/nodes/Sendy/SubscriberDescription.ts
index 3972ba2a10..25904f0f2f 100644
--- a/packages/nodes-base/nodes/Sendy/SubscriberDescription.ts
+++ b/packages/nodes-base/nodes/Sendy/SubscriberDescription.ts
@@ -66,7 +66,7 @@ export const subscriberFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email address of the subscriber.',
+ description: 'Email address of the subscriber',
},
{
displayName: 'List ID',
@@ -191,7 +191,7 @@ export const subscriberFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email address of the subscriber.',
+ description: 'Email address of the subscriber',
},
{
displayName: 'List ID',
@@ -228,7 +228,7 @@ export const subscriberFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email address of the subscriber.',
+ description: 'Email address of the subscriber',
},
{
displayName: 'List ID',
@@ -265,7 +265,7 @@ export const subscriberFields: INodeProperties[] = [
},
},
default: '',
- description: 'Email address of the subscriber.',
+ description: 'Email address of the subscriber',
},
{
displayName: 'List ID',
diff --git a/packages/nodes-base/nodes/SentryIo/EventDescription.ts b/packages/nodes-base/nodes/SentryIo/EventDescription.ts
index 20894aea7a..6ba2158b8e 100644
--- a/packages/nodes-base/nodes/SentryIo/EventDescription.ts
+++ b/packages/nodes-base/nodes/SentryIo/EventDescription.ts
@@ -54,7 +54,7 @@ export const eventFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the events belong to.',
+ description: 'The slug of the organization the events belong to',
},
{
displayName: 'Project Slug',
@@ -78,7 +78,7 @@ export const eventFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the project the events belong to.',
+ description: 'The slug of the project the events belong to',
},
{
displayName: 'Full',
@@ -95,7 +95,7 @@ export const eventFields: INodeProperties[] = [
],
},
},
- description: 'If this is set to true, then the event payload will include the full event body, including the stack trace.',
+ description: 'If this is set to true, then the event payload will include the full event body, including the stack trace',
},
{
displayName: 'Return All',
@@ -112,7 +112,7 @@ export const eventFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -136,7 +136,7 @@ export const eventFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -161,7 +161,7 @@ export const eventFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the events belong to.',
+ description: 'The slug of the organization the events belong to',
},
{
displayName: 'Project Slug',
@@ -182,7 +182,7 @@ export const eventFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the project the events belong to.',
+ description: 'The slug of the project the events belong to',
},
{
displayName: 'Event ID',
@@ -200,6 +200,6 @@ export const eventFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the event to retrieve (either the numeric primary-key or the hexadecimal ID as reported by the raven client).',
+ description: 'The ID of the event to retrieve (either the numeric primary-key or the hexadecimal ID as reported by the raven client)',
},
];
diff --git a/packages/nodes-base/nodes/SentryIo/IssueDescription.ts b/packages/nodes-base/nodes/SentryIo/IssueDescription.ts
index 83b5c2b094..6b692de53a 100644
--- a/packages/nodes-base/nodes/SentryIo/IssueDescription.ts
+++ b/packages/nodes-base/nodes/SentryIo/IssueDescription.ts
@@ -63,7 +63,7 @@ export const issueFields: INodeProperties[] = [
},
},
required: true,
- description: 'ID of issue to get.',
+ description: 'ID of issue to get',
},
/* -------------------------------------------------------------------------- */
@@ -88,7 +88,7 @@ export const issueFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the issues belong to.',
+ description: 'The slug of the organization the issues belong to',
},
{
displayName: 'Project Slug',
@@ -112,7 +112,7 @@ export const issueFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the project the issues belong to.',
+ description: 'The slug of the project the issues belong to',
},
{
displayName: 'Return All',
@@ -129,7 +129,7 @@ export const issueFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -153,7 +153,7 @@ export const issueFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -184,7 +184,7 @@ export const issueFields: INodeProperties[] = [
name: 'statsPeriod',
type: 'options',
default: '',
- description: 'Time period of stats.',
+ description: 'Time period of stats',
options: [
{
name: '14 Days',
@@ -226,7 +226,7 @@ export const issueFields: INodeProperties[] = [
},
},
required: true,
- description: 'ID of issue to get.',
+ description: 'ID of issue to get',
},
{
displayName: 'Update Fields',
@@ -250,28 +250,28 @@ export const issueFields: INodeProperties[] = [
name: 'assignedTo',
type: 'string',
default: '',
- description: 'The actor ID (or username) of the user or team that should be assigned to this issue.',
+ description: 'The actor ID (or username) of the user or team that should be assigned to this issue',
},
{
displayName: 'Has Seen',
name: 'hasSeen',
type: 'boolean',
default: true,
- description: 'In case this API call is invoked with a user context this allows changing of the flag that indicates if the user has seen the event.',
+ description: 'In case this API call is invoked with a user context this allows changing of the flag that indicates if the user has seen the event',
},
{
displayName: 'Is Bookmarked',
name: 'isBookmarked',
type: 'boolean',
default: true,
- description: 'In case this API call is invoked with a user context this allows changing of the bookmark flag.',
+ description: 'In case this API call is invoked with a user context this allows changing of the bookmark flag',
},
{
displayName: 'Is Public',
name: 'isPublic',
type: 'boolean',
default: true,
- description: 'Sets the issue to public or private.',
+ description: 'Sets the issue to public or private',
},
{
displayName: 'Is Subscribed',
@@ -284,7 +284,7 @@ export const issueFields: INodeProperties[] = [
name: 'status',
type: 'options',
default: '',
- description: 'The new status for the issue.',
+ description: 'The new status for the issue',
options: [
{
name: 'Ignored',
diff --git a/packages/nodes-base/nodes/SentryIo/OrganizationDescription.ts b/packages/nodes-base/nodes/SentryIo/OrganizationDescription.ts
index 791b6af406..4eb095e1f7 100644
--- a/packages/nodes-base/nodes/SentryIo/OrganizationDescription.ts
+++ b/packages/nodes-base/nodes/SentryIo/OrganizationDescription.ts
@@ -60,7 +60,7 @@ export const organizationFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -84,7 +84,7 @@ export const organizationFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -108,14 +108,14 @@ export const organizationFields: INodeProperties[] = [
name: 'member',
type: 'boolean',
default: true,
- description: 'Restrict results to organizations which you have membership.',
+ description: 'Restrict results to organizations which you have membership',
},
{
displayName: 'Owner',
name: 'owner',
type: 'boolean',
default: true,
- description: 'Restrict results to organizations which you are the owner.',
+ description: 'Restrict results to organizations which you are the owner',
},
],
},
@@ -142,7 +142,7 @@ export const organizationFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the team should be created for.',
+ description: 'The slug of the organization the team should be created for',
},
/* -------------------------------------------------------------------------- */
@@ -164,7 +164,7 @@ export const organizationFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the team should be created for.',
+ description: 'The slug of the organization the team should be created for',
},
{
displayName: 'Agree to Terms',
@@ -181,7 +181,7 @@ export const organizationFields: INodeProperties[] = [
],
},
},
- description: 'Signaling you agree to the applicable terms of service and privacy policy of Sentry.io.',
+ description: 'Signaling you agree to the applicable terms of service and privacy policy of Sentry.io',
},
{
displayName: 'Additional Fields',
@@ -232,7 +232,7 @@ export const organizationFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization to update.',
+ description: 'The slug of the organization to update',
},
{
displayName: 'Update Fields',
@@ -256,14 +256,14 @@ export const organizationFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'The new name of the organization.',
+ description: 'The new name of the organization',
},
{
displayName: 'Slug',
name: 'slug',
type: 'string',
default: '',
- description: 'The new URL slug for this organization.',
+ description: 'The new URL slug for this organization',
},
],
},
diff --git a/packages/nodes-base/nodes/SentryIo/ProjectDescription.ts b/packages/nodes-base/nodes/SentryIo/ProjectDescription.ts
index 80e448fa10..53fe421f33 100644
--- a/packages/nodes-base/nodes/SentryIo/ProjectDescription.ts
+++ b/packages/nodes-base/nodes/SentryIo/ProjectDescription.ts
@@ -70,7 +70,7 @@ export const projectFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the events belong to.',
+ description: 'The slug of the organization the events belong to',
},
{
displayName: 'Project Slug',
@@ -94,7 +94,7 @@ export const projectFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the project to retrieve.',
+ description: 'The slug of the project to retrieve',
},
{
displayName: 'Team Slug',
@@ -118,7 +118,7 @@ export const projectFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the team to create a new project for.',
+ description: 'The slug of the team to create a new project for',
},
{
displayName: 'Name',
@@ -136,7 +136,7 @@ export const projectFields: INodeProperties[] = [
},
},
required: true,
- description: 'The name for the new project.',
+ description: 'The name for the new project',
},
{
displayName: 'Additional Fields',
@@ -183,7 +183,7 @@ export const projectFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -207,7 +207,7 @@ export const projectFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -232,7 +232,7 @@ export const projectFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the project belong to.',
+ description: 'The slug of the organization the project belong to',
},
{
displayName: 'Project Slug',
@@ -256,7 +256,7 @@ export const projectFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the project to update.',
+ description: 'The slug of the project to update',
},
{
displayName: 'Update Fields',
@@ -280,49 +280,49 @@ export const projectFields: INodeProperties[] = [
name: 'isBookmarked',
type: 'boolean',
default: false,
- description: 'The new platform for the updated project.',
+ description: 'The new platform for the updated project',
},
{
displayName: 'Digests Maximum Delay',
name: 'digestsMaxDelay',
type: 'number',
default: 1800,
- description: 'Maximum interval to digest alerts.',
+ description: 'Maximum interval to digest alerts',
},
{
displayName: 'Digests Minimun Delay',
name: 'digestsMinDelay',
type: 'number',
default: 60,
- description: 'Minium interval to digest alerts.',
+ description: 'Minium interval to digest alerts',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'The new name for the updated project.',
+ description: 'The new name for the updated project',
},
{
displayName: 'Slug',
name: 'slug',
type: 'string',
default: '',
- description: 'The new slug for the updated project.',
+ description: 'The new slug for the updated project',
},
{
displayName: 'Team',
name: 'team',
type: 'string',
default: '',
- description: 'The new team name.',
+ description: 'The new team name',
},
{
displayName: 'Platform',
name: 'platform',
type: 'string',
default: '',
- description: 'The new platform for the updated project.',
+ description: 'The new platform for the updated project',
},
],
},
@@ -349,7 +349,7 @@ export const projectFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the project belong to.',
+ description: 'The slug of the organization the project belong to',
},
{
displayName: 'Project Slug',
@@ -373,6 +373,6 @@ export const projectFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the project to delete.',
+ description: 'The slug of the project to delete',
},
];
diff --git a/packages/nodes-base/nodes/SentryIo/ReleaseDescription.ts b/packages/nodes-base/nodes/SentryIo/ReleaseDescription.ts
index 0937042cfe..dc1cfc21e3 100644
--- a/packages/nodes-base/nodes/SentryIo/ReleaseDescription.ts
+++ b/packages/nodes-base/nodes/SentryIo/ReleaseDescription.ts
@@ -69,7 +69,7 @@ export const releaseFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the releases belong to.',
+ description: 'The slug of the organization the releases belong to',
},
{
displayName: 'Return All',
@@ -86,7 +86,7 @@ export const releaseFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -110,7 +110,7 @@ export const releaseFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -134,7 +134,7 @@ export const releaseFields: INodeProperties[] = [
name: 'query',
type: 'string',
default: '',
- description: 'This parameter can be used to create a “starts with” filter for the version.',
+ description: 'This parameter can be used to create a “starts with” filter for the version',
},
],
},
@@ -162,7 +162,7 @@ export const releaseFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the release belongs to.',
+ description: 'The slug of the organization the release belongs to',
},
{
displayName: 'Version',
@@ -181,7 +181,7 @@ export const releaseFields: INodeProperties[] = [
},
},
required: true,
- description: 'The version identifier of the release.',
+ description: 'The version identifier of the release',
},
/* -------------------------------------------------------------------------- */
@@ -206,7 +206,7 @@ export const releaseFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the release belongs to.',
+ description: 'The slug of the organization the release belongs to',
},
{
displayName: 'Version',
@@ -263,7 +263,7 @@ export const releaseFields: INodeProperties[] = [
},
},
required: true,
- description: 'A list of project slugs that are involved in this release.',
+ description: 'A list of project slugs that are involved in this release',
},
{
displayName: 'Additional Fields',
@@ -292,7 +292,7 @@ export const releaseFields: INodeProperties[] = [
{
displayName: 'Commits',
name: 'commits',
- description: 'An optional list of commit data to be associated with the release.',
+ description: 'An optional list of commit data to be associated with the release',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -308,7 +308,7 @@ export const releaseFields: INodeProperties[] = [
name: 'id',
type: 'string',
default: '',
- description: 'The sha of the commit.',
+ description: 'The sha of the commit',
required: true,
},
{
@@ -316,21 +316,21 @@ export const releaseFields: INodeProperties[] = [
name: 'authorEmail',
type: 'string',
default: '',
- description: 'Authors email.',
+ description: 'Authors email',
},
{
displayName: 'Author Name',
name: 'authorName',
type: 'string',
default: '',
- description: 'Name of author.',
+ description: 'Name of author',
},
{
displayName: 'Message',
name: 'message',
type: 'string',
default: '',
- description: 'Message of commit.',
+ description: 'Message of commit',
},
{
displayName: 'Patch Set',
@@ -359,7 +359,7 @@ export const releaseFields: INodeProperties[] = [
name: 'type',
type: 'options',
default: '',
- description: 'The types of changes that happend in that commit.',
+ description: 'The types of changes that happend in that commit',
options: [
{
name: 'Add',
@@ -384,14 +384,14 @@ export const releaseFields: INodeProperties[] = [
name: 'repository',
type: 'string',
default: '',
- description: 'Repository name.',
+ description: 'Repository name',
},
{
displayName: 'Timestamp',
name: 'timestamp',
type: 'dateTime',
default: '',
- description: 'Timestamp of commit.',
+ description: 'Timestamp of commit',
},
],
},
@@ -400,7 +400,7 @@ export const releaseFields: INodeProperties[] = [
{
displayName: 'Refs',
name: 'refs',
- description: 'An optional way to indicate the start and end commits for each repository included in a release.',
+ description: 'An optional way to indicate the start and end commits for each repository included in a release',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -416,7 +416,7 @@ export const releaseFields: INodeProperties[] = [
name: 'commit',
type: 'string',
default: '',
- description: 'The head sha of the commit.',
+ description: 'The head sha of the commit',
required: true,
},
{
@@ -424,7 +424,7 @@ export const releaseFields: INodeProperties[] = [
name: 'repository',
type: 'string',
default: '',
- description: 'Repository name.',
+ description: 'Repository name',
required: true,
},
{
@@ -432,7 +432,7 @@ export const releaseFields: INodeProperties[] = [
name: 'previousCommit',
type: 'string',
default: '',
- description: 'The sha of the HEAD of the previous release.',
+ description: 'The sha of the HEAD of the previous release',
},
],
},
@@ -463,7 +463,7 @@ export const releaseFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the release belongs to.',
+ description: 'The slug of the organization the release belongs to',
},
{
displayName: 'Version',
@@ -503,7 +503,7 @@ export const releaseFields: INodeProperties[] = [
{
displayName: 'Commits',
name: 'commits',
- description: 'An optional list of commit data to be associated with the release.',
+ description: 'An optional list of commit data to be associated with the release',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -519,7 +519,7 @@ export const releaseFields: INodeProperties[] = [
name: 'id',
type: 'string',
default: '',
- description: 'The sha of the commit.',
+ description: 'The sha of the commit',
required: true,
},
{
@@ -527,21 +527,21 @@ export const releaseFields: INodeProperties[] = [
name: 'authorEmail',
type: 'string',
default: '',
- description: 'Authors email.',
+ description: 'Authors email',
},
{
displayName: 'Author Name',
name: 'authorName',
type: 'string',
default: '',
- description: 'Name of author.',
+ description: 'Name of author',
},
{
displayName: 'Message',
name: 'message',
type: 'string',
default: '',
- description: 'Message of commit.',
+ description: 'Message of commit',
},
{
displayName: 'Patch Set',
@@ -570,7 +570,7 @@ export const releaseFields: INodeProperties[] = [
name: 'type',
type: 'options',
default: '',
- description: 'The types of changes that happend in that commit.',
+ description: 'The types of changes that happend in that commit',
options: [
{
name: 'Add',
@@ -595,14 +595,14 @@ export const releaseFields: INodeProperties[] = [
name: 'repository',
type: 'string',
default: '',
- description: 'Repository name.',
+ description: 'Repository name',
},
{
displayName: 'Timestamp',
name: 'timestamp',
type: 'dateTime',
default: '',
- description: 'Timestamp of commit.',
+ description: 'Timestamp of commit',
},
],
},
@@ -625,7 +625,7 @@ export const releaseFields: INodeProperties[] = [
{
displayName: 'Refs',
name: 'refs',
- description: 'An optional way to indicate the start and end commits for each repository included in a release.',
+ description: 'An optional way to indicate the start and end commits for each repository included in a release',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -641,7 +641,7 @@ export const releaseFields: INodeProperties[] = [
name: 'commit',
type: 'string',
default: '',
- description: 'The head sha of the commit.',
+ description: 'The head sha of the commit',
required: true,
},
{
@@ -649,7 +649,7 @@ export const releaseFields: INodeProperties[] = [
name: 'repository',
type: 'string',
default: '',
- description: 'Repository name.',
+ description: 'Repository name',
required: true,
},
{
@@ -657,7 +657,7 @@ export const releaseFields: INodeProperties[] = [
name: 'previousCommit',
type: 'string',
default: '',
- description: 'The sha of the HEAD of the previous release.',
+ description: 'The sha of the HEAD of the previous release',
},
],
},
diff --git a/packages/nodes-base/nodes/SentryIo/TeamDescription.ts b/packages/nodes-base/nodes/SentryIo/TeamDescription.ts
index a96c10d855..b89d684cb7 100644
--- a/packages/nodes-base/nodes/SentryIo/TeamDescription.ts
+++ b/packages/nodes-base/nodes/SentryIo/TeamDescription.ts
@@ -69,7 +69,7 @@ export const teamFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization for which the teams should be listed.',
+ description: 'The slug of the organization for which the teams should be listed',
},
{
displayName: 'Return All',
@@ -86,7 +86,7 @@ export const teamFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -110,7 +110,7 @@ export const teamFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
@@ -135,7 +135,7 @@ export const teamFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the team belongs to.',
+ description: 'The slug of the organization the team belongs to',
},
{
displayName: 'Team Slug',
@@ -159,7 +159,7 @@ export const teamFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the team to get.',
+ description: 'The slug of the team to get',
},
/* -------------------------------------------------------------------------- */
@@ -184,7 +184,7 @@ export const teamFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the team belongs to.',
+ description: 'The slug of the organization the team belongs to',
},
{
displayName: 'Name',
@@ -202,7 +202,7 @@ export const teamFields: INodeProperties[] = [
},
},
required: true,
- description: 'The name of the team.',
+ description: 'The name of the team',
},
{
displayName: 'Additional Fields',
@@ -253,7 +253,7 @@ export const teamFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the team belongs to.',
+ description: 'The slug of the organization the team belongs to',
},
{
displayName: 'Team Slug',
@@ -277,7 +277,7 @@ export const teamFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the team to update.',
+ description: 'The slug of the team to update',
},
{
displayName: 'Update Fields',
@@ -301,7 +301,7 @@ export const teamFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'The new name of the team.',
+ description: 'The new name of the team',
},
{
displayName: 'Slug',
@@ -335,7 +335,7 @@ export const teamFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the organization the team belongs to.',
+ description: 'The slug of the organization the team belongs to',
},
{
displayName: 'Team Slug',
@@ -359,6 +359,6 @@ export const teamFields: INodeProperties[] = [
},
},
required: true,
- description: 'The slug of the team to delete.',
+ description: 'The slug of the team to delete',
},
];
diff --git a/packages/nodes-base/nodes/Set/Set.node.ts b/packages/nodes-base/nodes/Set/Set.node.ts
index 877b241f62..ce68becb16 100644
--- a/packages/nodes-base/nodes/Set/Set.node.ts
+++ b/packages/nodes-base/nodes/Set/Set.node.ts
@@ -29,7 +29,7 @@ export class Set implements INodeType {
name: 'keepOnlySet',
type: 'boolean',
default: false,
- description: 'If only the values set on this node should be kept and all others removed.',
+ description: 'If only the values set on this node should be kept and all others removed',
},
{
displayName: 'Values to Set',
@@ -40,7 +40,7 @@ export class Set implements INodeType {
multipleValues: true,
sortable: true,
},
- description: 'The value to set.',
+ description: 'The value to set',
default: {},
options: [
{
@@ -59,7 +59,7 @@ export class Set implements INodeType {
name: 'value',
type: 'boolean',
default: false,
- description: 'The boolean value to write in the property.',
+ description: 'The boolean value to write in the property',
},
],
},
@@ -79,7 +79,7 @@ export class Set implements INodeType {
name: 'value',
type: 'number',
default: 0,
- description: 'The number value to write in the property.',
+ description: 'The number value to write in the property',
},
],
},
@@ -99,7 +99,7 @@ export class Set implements INodeType {
name: 'value',
type: 'string',
default: '',
- description: 'The string value to write in the property.',
+ description: 'The string value to write in the property',
},
],
},
diff --git a/packages/nodes-base/nodes/Shopify/OrderDescription.ts b/packages/nodes-base/nodes/Shopify/OrderDescription.ts
index 50841c79a0..59a344eb0d 100644
--- a/packages/nodes-base/nodes/Shopify/OrderDescription.ts
+++ b/packages/nodes-base/nodes/Shopify/OrderDescription.ts
@@ -166,7 +166,7 @@ export const orderFields: INodeProperties[] = [
name: 'amount',
type: 'string',
default: '',
- description: `The amount that's deducted from the order total.`,
+ description: 'The amount that\'s deducted from the order total',
},
{
displayName: 'Code',
@@ -183,17 +183,17 @@ export const orderFields: INodeProperties[] = [
{
name: 'Fixed Amount',
value: 'fixedAmount',
- description: `Applies amount as a unit of the store's currency.`,
+ description: 'Applies amount as a unit of the store\'s currency',
},
{
name: 'Percentage',
value: 'percentage',
- description: `Applies a discount of amount as a percentage of the order total.`,
+ description: 'Applies a discount of amount as a percentage of the order total',
},
{
name: 'Shipping',
value: 'shipping',
- description: `Applies a free shipping discount on orders that have a shipping rate less than or equal to amount.`,
+ description: 'Applies a free shipping discount on orders that have a shipping rate less than or equal to amount',
},
],
default: 'fixedAmount',
@@ -208,7 +208,7 @@ export const orderFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: `The customer's email address.`,
+ description: 'The customer\'s email address',
},
{
displayName: 'Fulfillment Status',
@@ -218,22 +218,22 @@ export const orderFields: INodeProperties[] = [
{
name: 'Fulfilled',
value: 'fulfilled',
- description: 'Every line item in the order has been fulfilled.',
+ description: 'Every line item in the order has been fulfilled',
},
{
name: 'Null',
value: 'null',
- description: 'None of the line items in the order have been fulfilled.',
+ description: 'None of the line items in the order have been fulfilled',
},
{
name: 'Partial',
value: 'partial',
- description: 'At least one line item in the order has been fulfilled.',
+ description: 'At least one line item in the order has been fulfilled',
},
{
name: 'Restocked',
value: 'restocked',
- description: 'Every line item in the order has been restocked and the order canceled.',
+ description: 'Every line item in the order has been restocked and the order canceled',
},
],
default: '',
@@ -247,21 +247,21 @@ export const orderFields: INodeProperties[] = [
{
name: 'Bypass',
value: 'bypass',
- description: 'Do not claim inventory.',
+ description: 'Do not claim inventory',
},
{
name: 'Decrement Ignoring Policy',
value: 'decrementIgnoringPolicy',
- description: `Ignore the product's inventory policy and claim inventory.`,
+ description: 'Ignore the product\'s inventory policy and claim inventory',
},
{
name: 'Decrement Obeying Policy',
value: 'decrementObeyingPolicy',
- description: `Follow the product's inventory policy and claim inventory, if possible.`,
+ description: 'Follow the product\'s inventory policy and claim inventory, if possible',
},
],
default: 'bypass',
- description: `The behaviour to use when updating inventory.`,
+ description: 'The behaviour to use when updating inventory',
},
{
displayName: 'Location ID',
@@ -271,7 +271,7 @@ export const orderFields: INodeProperties[] = [
loadOptionsMethod: 'getLocations',
},
default: '',
- description: 'The ID of the physical location where the order was processed.',
+ description: 'The ID of the physical location where the order was processed',
},
{
displayName: 'Note',
@@ -281,21 +281,21 @@ export const orderFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'An optional note that a shop owner can attach to the order.',
+ description: 'An optional note that a shop owner can attach to the order',
},
{
displayName: 'Send Fulfillment Receipt',
name: 'sendFulfillmentReceipt',
type: 'boolean',
default: false,
- description: 'Whether to send a shipping confirmation to the customer.',
+ description: 'Whether to send a shipping confirmation to the customer',
},
{
displayName: 'Send Receipt',
name: 'sendReceipt',
type: 'boolean',
default: false,
- description: 'Whether to send an order confirmation to the customer.',
+ description: 'Whether to send an order confirmation to the customer',
},
{
displayName: 'Shipping Address',
@@ -388,14 +388,14 @@ export const orderFields: INodeProperties[] = [
name: 'tags',
type: 'string',
default: '',
- description: 'Tags attached to the order, formatted as a string of comma-separated values.',
+ description: 'Tags attached to the order, formatted as a string of comma-separated values',
},
{
displayName: 'Test',
name: 'test',
type: 'boolean',
default: false,
- description: 'Whether this is a test order.',
+ description: 'Whether this is a test order',
},
],
},
@@ -438,21 +438,21 @@ export const orderFields: INodeProperties[] = [
name: 'variantId',
type: 'string',
default: '',
- description: 'The ID of the product variant.',
+ description: 'The ID of the product variant',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'The title of the product.',
+ description: 'The title of the product',
},
{
displayName: 'Grams',
name: 'grams',
type: 'string',
default: '',
- description: 'The weight of the item in grams.',
+ description: 'The weight of the item in grams',
},
{
displayName: 'Quantity',
@@ -462,7 +462,7 @@ export const orderFields: INodeProperties[] = [
minValue: 1,
},
default: 1,
- description: 'The number of items that were purchased.',
+ description: 'The number of items that were purchased',
},
{
displayName: 'Price',
@@ -558,7 +558,7 @@ export const orderFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -582,7 +582,7 @@ export const orderFields: INodeProperties[] = [
maxValue: 250,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -630,7 +630,7 @@ export const orderFields: INodeProperties[] = [
{
name: 'Any',
value: 'any',
- description: 'Show orders of any financial status.',
+ description: 'Show orders of any financial status',
},
{
name: 'Authorized',
@@ -670,11 +670,11 @@ export const orderFields: INodeProperties[] = [
{
name: 'Unpaid',
value: 'unpaid',
- description: 'Show authorized and partially paid orders.',
+ description: 'Show authorized and partially paid orders',
},
],
default: 'any',
- description: 'Filter orders by their financial status.',
+ description: 'Filter orders by their financial status',
},
{
displayName: 'Fulfillment Status',
@@ -684,12 +684,12 @@ export const orderFields: INodeProperties[] = [
{
name: 'Any',
value: 'any',
- description: 'Show orders of any fulfillment status.',
+ description: 'Show orders of any fulfillment status',
},
{
name: 'Partial',
value: 'partial',
- description: 'Show partially shipped orders.',
+ description: 'Show partially shipped orders',
},
{
name: 'Shipped',
@@ -704,11 +704,11 @@ export const orderFields: INodeProperties[] = [
{
name: 'Unfulfilled',
value: 'unfulfilled',
- description: 'Returns orders with fulfillment_status of null or partial.',
+ description: 'Returns orders with fulfillment_status of null or partial',
},
],
default: 'any',
- description: 'Filter orders by their fulfillment status.',
+ description: 'Filter orders by their fulfillment status',
},
{
displayName: 'Fields',
@@ -722,7 +722,7 @@ export const orderFields: INodeProperties[] = [
name: 'ids',
type: 'string',
default: '',
- description: 'Retrieve only orders specified by a comma-separated list of order IDs.',
+ description: 'Retrieve only orders specified by a comma-separated list of order IDs',
},
{
displayName: 'Processed At Max',
@@ -746,33 +746,33 @@ export const orderFields: INodeProperties[] = [
{
name: 'Any',
value: 'any',
- description: 'Show orders of any status, including archived orders.',
+ description: 'Show orders of any status, including archived orders',
},
{
name: 'Cancelled',
value: 'Cancelled',
- description: 'Show only canceled orders.',
+ description: 'Show only canceled orders',
},
{
name: 'Closed',
value: 'closed',
- description: 'Show only closed orders.',
+ description: 'Show only closed orders',
},
{
name: 'Open',
value: 'open',
- description: 'Show only open orders.',
+ description: 'Show only open orders',
},
],
default: 'open',
- description: 'Filter orders by their status.',
+ description: 'Filter orders by their status',
},
{
displayName: 'Since ID',
name: 'sinceId',
type: 'string',
default: '',
- description: 'Show orders after the specified ID.',
+ description: 'Show orders after the specified ID',
},
{
displayName: 'Updated At Max',
@@ -832,7 +832,7 @@ export const orderFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: `The customer's email address.`,
+ description: 'The customer\'s email address',
},
{
displayName: 'Location ID',
@@ -842,7 +842,7 @@ export const orderFields: INodeProperties[] = [
loadOptionsMethod: 'getLocations',
},
default: '',
- description: 'The ID of the physical location where the order was processed.',
+ description: 'The ID of the physical location where the order was processed',
},
{
displayName: 'Note',
@@ -852,7 +852,7 @@ export const orderFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'An optional note that a shop owner can attach to the order.',
+ description: 'An optional note that a shop owner can attach to the order',
},
{
displayName: 'Shipping Address',
@@ -945,7 +945,7 @@ export const orderFields: INodeProperties[] = [
name: 'tags',
type: 'string',
default: '',
- description: 'Tags attached to the order, formatted as a string of comma-separated values.',
+ description: 'Tags attached to the order, formatted as a string of comma-separated values',
},
],
},
diff --git a/packages/nodes-base/nodes/Shopify/ProductDescription.ts b/packages/nodes-base/nodes/Shopify/ProductDescription.ts
index 3a1274a97a..2a3933aca7 100644
--- a/packages/nodes-base/nodes/Shopify/ProductDescription.ts
+++ b/packages/nodes-base/nodes/Shopify/ProductDescription.ts
@@ -67,7 +67,7 @@ export const productFields: INodeProperties[] = [
},
},
default: '',
- description: 'The name of the product.',
+ description: 'The name of the product',
required: true,
},
{
@@ -127,21 +127,21 @@ export const productFields: INodeProperties[] = [
multipleValues: true,
},
default: {},
- description: 'A list of product image objects, each one representing an image associated with the product.',
+ description: 'A list of product image objects, each one representing an image associated with the product',
options: [
{
displayName: 'Created At',
name: 'created_at',
type: 'dateTime',
default: '',
- description: 'The date and time when the product image was created.',
+ description: 'The date and time when the product image was created',
},
{
displayName: 'ID',
name: 'id',
type: 'number',
default: '',
- description: 'A unique numeric identifier for the product image.',
+ description: 'A unique numeric identifier for the product image',
},
{
displayName: 'Position',
@@ -155,7 +155,7 @@ export const productFields: INodeProperties[] = [
name: 'product_id',
type: 'number',
default: '',
- description: 'The id of the product associated with the image.',
+ description: 'The id of the product associated with the image',
},
{
displayName: 'Variant IDs',
@@ -165,7 +165,7 @@ export const productFields: INodeProperties[] = [
multipleValues: true,
},
default: '',
- description: 'An array of variant ids associated with the image.',
+ description: 'An array of variant ids associated with the image',
},
{
displayName: 'Source',
@@ -179,21 +179,21 @@ export const productFields: INodeProperties[] = [
name: 'width',
type: 'number',
default: '',
- description: 'Width dimension of the image which is determined on upload.',
+ description: 'Width dimension of the image which is determined on upload',
},
{
displayName: 'Height',
name: 'height',
type: 'number',
default: '',
- description: 'Height dimension of the image which is determined on upload.',
+ description: 'Height dimension of the image which is determined on upload',
},
{
displayName: 'Updated At',
name: 'updated_at',
type: 'dateTime',
default: '',
- description: 'The date and time when the product image was last modified.',
+ description: 'The date and time when the product image was last modified',
},
],
},
@@ -217,14 +217,14 @@ export const productFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: `Option\'s name.`,
+ description: 'Option\'s name',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: `Option\'s values.`,
+ description: 'Option\'s values',
},
],
},
@@ -235,7 +235,7 @@ export const productFields: INodeProperties[] = [
name: 'product_type',
type: 'string',
default: '',
- description: 'A categorization for the product used for filtering and searching products.',
+ description: 'A categorization for the product used for filtering and searching products',
},
{
displayName: 'Published At',
@@ -253,12 +253,12 @@ export const productFields: INodeProperties[] = [
{
name: 'Global',
value: 'global',
- description: 'The product is published to both the Online Store channel and the Point of Sale channel.',
+ description: 'The product is published to both the Online Store channel and the Point of Sale channel',
},
{
name: 'Web',
value: 'web',
- description: 'The product is published to the Online Store channel but not published to the Point of Sale channel.',
+ description: 'The product is published to the Online Store channel but not published to the Point of Sale channel',
},
],
},
@@ -301,7 +301,7 @@ export const productFields: INodeProperties[] = [
name: 'vendor',
type: 'string',
default: '',
- description: 'The name of the product\'s vendor.',
+ description: 'The name of the product\'s vendor',
},
],
},
@@ -345,21 +345,21 @@ export const productFields: INodeProperties[] = [
multipleValues: true,
},
default: {},
- description: 'A list of product image objects, each one representing an image associated with the product.',
+ description: 'A list of product image objects, each one representing an image associated with the product',
options: [
{
displayName: 'Created At',
name: 'created_at',
type: 'dateTime',
default: '',
- description: 'The date and time when the product image was created.',
+ description: 'The date and time when the product image was created',
},
{
displayName: 'ID',
name: 'id',
type: 'number',
default: '',
- description: 'A unique numeric identifier for the product image.',
+ description: 'A unique numeric identifier for the product image',
},
{
displayName: 'Position',
@@ -373,7 +373,7 @@ export const productFields: INodeProperties[] = [
name: 'product_id',
type: 'number',
default: '',
- description: 'The id of the product associated with the image.',
+ description: 'The id of the product associated with the image',
},
{
displayName: 'Variant IDs',
@@ -383,7 +383,7 @@ export const productFields: INodeProperties[] = [
multipleValues: true,
},
default: '',
- description: 'An array of variant ids associated with the image.',
+ description: 'An array of variant ids associated with the image',
},
{
displayName: 'Source',
@@ -397,21 +397,21 @@ export const productFields: INodeProperties[] = [
name: 'width',
type: 'number',
default: '',
- description: 'Width dimension of the image which is determined on upload.',
+ description: 'Width dimension of the image which is determined on upload',
},
{
displayName: 'Height',
name: 'height',
type: 'number',
default: '',
- description: 'Height dimension of the image which is determined on upload.',
+ description: 'Height dimension of the image which is determined on upload',
},
{
displayName: 'Updated At',
name: 'updated_at',
type: 'dateTime',
default: '',
- description: 'The date and time when the product image was last modified.',
+ description: 'The date and time when the product image was last modified',
},
],
},
@@ -435,14 +435,14 @@ export const productFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: `Option\'s name.`,
+ description: 'Option\'s name',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: `Option\'s values.`,
+ description: 'Option\'s values',
},
],
},
@@ -453,7 +453,7 @@ export const productFields: INodeProperties[] = [
name: 'product_type',
type: 'string',
default: '',
- description: 'A categorization for the product used for filtering and searching products.',
+ description: 'A categorization for the product used for filtering and searching products',
},
{
displayName: 'Published At',
@@ -471,12 +471,12 @@ export const productFields: INodeProperties[] = [
{
name: 'Global',
value: 'global',
- description: 'The product is published to both the Online Store channel and the Point of Sale channel.',
+ description: 'The product is published to both the Online Store channel and the Point of Sale channel',
},
{
name: 'Web',
value: 'web',
- description: 'The product is published to the Online Store channel but not published to the Point of Sale channel.',
+ description: 'The product is published to the Online Store channel but not published to the Point of Sale channel',
},
],
},
@@ -499,7 +499,7 @@ export const productFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'The name of the product.',
+ description: 'The name of the product',
},
// {
// displayName: 'Variants',
@@ -526,7 +526,7 @@ export const productFields: INodeProperties[] = [
name: 'vendor',
type: 'string',
default: '',
- description: 'The name of the product\'s vendor.',
+ description: 'The name of the product\'s vendor',
},
],
},
@@ -614,7 +614,7 @@ export const productFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -638,7 +638,7 @@ export const productFields: INodeProperties[] = [
maxValue: 250,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -662,14 +662,14 @@ export const productFields: INodeProperties[] = [
name: 'collection_id',
type: 'string',
default: '',
- description: 'Filter results by product collection ID.',
+ description: 'Filter results by product collection ID',
},
{
displayName: 'Created At Max',
name: 'created_at_max',
type: 'dateTime',
default: '',
- description: 'Show products created before date.',
+ description: 'Show products created before date',
},
{
displayName: 'Created At Min',
@@ -683,49 +683,49 @@ export const productFields: INodeProperties[] = [
name: 'fields',
type: 'string',
default: '',
- description: 'Show only certain fields, specified by a comma-separated list of field names.',
+ description: 'Show only certain fields, specified by a comma-separated list of field names',
},
{
displayName: 'Handle',
name: 'handle',
type: 'string',
default: '',
- description: 'Filter results by product handle.',
+ description: 'Filter results by product handle',
},
{
displayName: 'IDs',
name: 'ids',
type: 'string',
default: '',
- description: 'Return only products specified by a comma-separated list of product IDs.',
+ description: 'Return only products specified by a comma-separated list of product IDs',
},
{
displayName: 'Presentment Currencies',
name: 'presentment_currencies',
type: 'string',
default: '',
- description: 'Return presentment prices in only certain currencies, specified by a comma-separated list of ISO 4217 currency codes.',
+ description: 'Return presentment prices in only certain currencies, specified by a comma-separated list of ISO 4217 currency codes',
},
{
displayName: 'Product Type',
name: 'product_type',
type: 'string',
default: '',
- description: 'Filter results by product type.',
+ description: 'Filter results by product type',
},
{
displayName: 'Published At Max',
name: 'published_at_max',
type: 'dateTime',
default: '',
- description: 'Show products published before date.',
+ description: 'Show products published before date',
},
{
displayName: 'Published At Min',
name: 'published_at_min',
type: 'dateTime',
default: '',
- description: 'Show products published after date.',
+ description: 'Show products published after date',
},
{
displayName: 'Published Status',
@@ -735,49 +735,49 @@ export const productFields: INodeProperties[] = [
{
name: 'Any',
value: 'any',
- description: 'Show all products.',
+ description: 'Show all products',
},
{
name: 'Published',
value: 'published',
- description: 'Show only published products.',
+ description: 'Show only published products',
},
{
name: 'Unpublished',
value: 'unpublished',
- description: 'Show only unpublished products.',
+ description: 'Show only unpublished products',
},
],
default: 'any',
- description: 'Return products by their published status.',
+ description: 'Return products by their published status',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'Filter results by product title.',
+ description: 'Filter results by product title',
},
{
displayName: 'Updated At Max',
name: 'updated_at_max',
type: 'dateTime',
default: '',
- description: 'Show products last updated before date.',
+ description: 'Show products last updated before date',
},
{
displayName: 'Updated At Min',
name: 'updated_at_min',
type: 'dateTime',
default: '',
- description: 'Show products last updated after date.',
+ description: 'Show products last updated after date',
},
{
displayName: 'Vendor',
name: 'vendor',
type: 'string',
default: '',
- description: 'Filter results by product vendor.',
+ description: 'Filter results by product vendor',
},
],
},
diff --git a/packages/nodes-base/nodes/Signl4/Signl4.node.ts b/packages/nodes-base/nodes/Signl4/Signl4.node.ts
index 1ebcade84a..830414d450 100644
--- a/packages/nodes-base/nodes/Signl4/Signl4.node.ts
+++ b/packages/nodes-base/nodes/Signl4/Signl4.node.ts
@@ -92,7 +92,7 @@ export class Signl4 implements INodeType {
],
},
},
- description: 'A more detailed description for the alert.',
+ description: 'A more detailed description for the alert',
},
{
displayName: 'Additional Fields',
@@ -119,7 +119,7 @@ export class Signl4 implements INodeType {
{
name: 'Single ACK',
value: 'single_ack',
- description: 'In case only one person needs to confirm this Signl.',
+ description: 'In case only one person needs to confirm this Signl',
},
{
name: 'Multi ACK',
@@ -176,7 +176,7 @@ export class Signl4 implements INodeType {
type: 'fixedCollection',
placeholder: 'Add Location',
default: {},
- description: 'Transmit location information (\'latitude, longitude\') with your event and display a map in the mobile app.',
+ description: 'Transmit location information (\'latitude, longitude\') with your event and display a map in the mobile app',
options: [
{
name: 'locationFieldsValues',
@@ -187,7 +187,7 @@ export class Signl4 implements INodeType {
name: 'latitude',
type: 'string',
required: true,
- description: 'The location latitude.',
+ description: 'The location latitude',
default: '',
},
{
@@ -195,7 +195,7 @@ export class Signl4 implements INodeType {
name: 'longitude',
type: 'string',
required: true,
- description: 'The location longitude.',
+ description: 'The location longitude',
default: '',
},
],
@@ -207,14 +207,14 @@ export class Signl4 implements INodeType {
name: 'service',
type: 'string',
default: '',
- description: 'Assigns the alert to the service/system category with the specified name.',
+ description: 'Assigns the alert to the service/system category with the specified name',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'The title or subject of this alert.',
+ description: 'The title or subject of this alert',
},
],
},
diff --git a/packages/nodes-base/nodes/Slack/ChannelDescription.ts b/packages/nodes-base/nodes/Slack/ChannelDescription.ts
index 9915e6f86b..f0133c4506 100644
--- a/packages/nodes-base/nodes/Slack/ChannelDescription.ts
+++ b/packages/nodes-base/nodes/Slack/ChannelDescription.ts
@@ -18,12 +18,12 @@ export const channelOperations: INodeProperties[] = [
{
name: 'Archive',
value: 'archive',
- description: 'Archives a conversation.',
+ description: 'Archives a conversation',
},
{
name: 'Close',
value: 'close',
- description: 'Closes a direct message or multi-person direct message.',
+ description: 'Closes a direct message or multi-person direct message',
},
{
name: 'Create',
@@ -33,17 +33,17 @@ export const channelOperations: INodeProperties[] = [
{
name: 'Get',
value: 'get',
- description: 'Get information about a channel.',
+ description: 'Get information about a channel',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all channels in a Slack team.',
+ description: 'Get all channels in a Slack team',
},
{
name: 'History',
value: 'history',
- description: `Get a conversation's history of messages and events.`,
+ description: 'Get a conversation\'s history of messages and events',
},
{
name: 'Invite',
@@ -53,32 +53,32 @@ export const channelOperations: INodeProperties[] = [
{
name: 'Join',
value: 'join',
- description: 'Joins an existing conversation.',
+ description: 'Joins an existing conversation',
},
{
name: 'Kick',
value: 'kick',
- description: 'Removes a user from a channel.',
+ description: 'Removes a user from a channel',
},
{
name: 'Leave',
value: 'leave',
- description: 'Leaves a conversation.',
+ description: 'Leaves a conversation',
},
{
name: 'Member',
value: 'member',
- description: 'List members of a conversation.',
+ description: 'List members of a conversation',
},
{
name: 'Open',
value: 'open',
- description: 'Opens or resumes a direct message or multi-person direct message.',
+ description: 'Opens or resumes a direct message or multi-person direct message',
},
{
name: 'Rename',
value: 'rename',
- description: 'Renames a conversation.',
+ description: 'Renames a conversation',
},
{
name: 'Replies',
@@ -88,17 +88,17 @@ export const channelOperations: INodeProperties[] = [
{
name: 'Set Purpose',
value: 'setPurpose',
- description: 'Sets the purpose for a conversation.',
+ description: 'Sets the purpose for a conversation',
},
{
name: 'Set Topic',
value: 'setTopic',
- description: 'Sets the topic for a conversation.',
+ description: 'Sets the topic for a conversation',
},
{
name: 'Unarchive',
value: 'unarchive',
- description: 'Unarchives a conversation.',
+ description: 'Unarchives a conversation',
},
],
default: 'create',
@@ -130,7 +130,7 @@ export const channelFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The name of the channel to archive.',
+ description: 'The name of the channel to archive',
},
/* -------------------------------------------------------------------------- */
@@ -155,7 +155,7 @@ export const channelFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The name of the channel to close.',
+ description: 'The name of the channel to close',
},
/* -------------------------------------------------------------------------- */
@@ -178,7 +178,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The name of the channel to create.',
+ description: 'The name of the channel to create',
},
{
displayName: 'Additional Fields',
@@ -229,7 +229,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the channel to invite user to.',
+ description: 'The ID of the channel to invite user to',
},
{
displayName: 'User IDs',
@@ -250,7 +250,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the user to invite into channel.',
+ description: 'The ID of the user to invite into channel',
},
/* -------------------------------------------------------------------------- */
@@ -323,7 +323,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The name of the channel to create.',
+ description: 'The name of the channel to create',
},
{
displayName: 'User',
@@ -388,7 +388,7 @@ export const channelFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -412,7 +412,7 @@ export const channelFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -489,7 +489,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The name of the channel to create.',
+ description: 'The name of the channel to create',
},
{
displayName: 'Return All',
@@ -506,7 +506,7 @@ export const channelFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -530,7 +530,7 @@ export const channelFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -554,21 +554,21 @@ export const channelFields: INodeProperties[] = [
name: 'inclusive',
type: 'boolean',
default: false,
- description: 'Include messages with latest or oldest timestamp in results only when either timestamp is specified.',
+ description: 'Include messages with latest or oldest timestamp in results only when either timestamp is specified',
},
{
displayName: 'Latest',
name: 'latest',
type: 'dateTime',
default: '',
- description: 'End of time range of messages to include in results.',
+ description: 'End of time range of messages to include in results',
},
{
displayName: 'Oldest',
name: 'oldest',
type: 'dateTime',
default: '',
- description: 'Start of time range of messages to include in results.',
+ description: 'Start of time range of messages to include in results',
},
],
},
@@ -595,7 +595,7 @@ export const channelFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The name of the channel to leave.',
+ description: 'The name of the channel to leave',
},
/* -------------------------------------------------------------------------- */
@@ -636,7 +636,7 @@ export const channelFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -709,7 +709,7 @@ export const channelFields: INodeProperties[] = [
name: 'returnIm',
type: 'boolean',
default: false,
- description: 'Boolean, indicates you want the full IM channel definition in the response.',
+ description: 'Boolean, indicates you want the full IM channel definition in the response',
},
{
displayName: 'Users',
@@ -746,7 +746,7 @@ export const channelFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The name of the channel to rename.',
+ description: 'The name of the channel to rename',
},
{
displayName: 'Name',
@@ -764,7 +764,7 @@ export const channelFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'New name for conversation.',
+ description: 'New name for conversation',
},
/* -------------------------------------------------------------------------- */
@@ -790,7 +790,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The name of the channel to create.',
+ description: 'The name of the channel to create',
},
{
displayName: 'TS',
@@ -808,7 +808,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: `Unique identifier of a thread's parent message.`,
+ description: 'Unique identifier of a thread\'s parent message',
},
{
displayName: 'Return All',
@@ -825,7 +825,7 @@ export const channelFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -849,7 +849,7 @@ export const channelFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -873,21 +873,21 @@ export const channelFields: INodeProperties[] = [
name: 'inclusive',
type: 'boolean',
default: false,
- description: 'Include messages with latest or oldest timestamp in results only when either timestamp is specified.',
+ description: 'Include messages with latest or oldest timestamp in results only when either timestamp is specified',
},
{
displayName: 'Latest',
name: 'latest',
type: 'string',
default: '',
- description: 'End of time range of messages to include in results.',
+ description: 'End of time range of messages to include in results',
},
{
displayName: 'Oldest',
name: 'oldest',
type: 'string',
default: '',
- description: 'Start of time range of messages to include in results.',
+ description: 'Start of time range of messages to include in results',
},
],
},
@@ -1000,6 +1000,6 @@ export const channelFields: INodeProperties[] = [
},
default: '',
required: true,
- description: 'The ID of the channel to unarchive.',
+ description: 'The ID of the channel to unarchive',
},
];
diff --git a/packages/nodes-base/nodes/Slack/FileDescription.ts b/packages/nodes-base/nodes/Slack/FileDescription.ts
index 44caf06b1b..476c583436 100644
--- a/packages/nodes-base/nodes/Slack/FileDescription.ts
+++ b/packages/nodes-base/nodes/Slack/FileDescription.ts
@@ -21,12 +21,12 @@ export const fileOperations: INodeProperties[] = [
{
name: 'Get All',
value: 'getAll',
- description: 'Get & filters team files.',
+ description: 'Get & filters team files',
},
{
name: 'Upload',
value: 'upload',
- description: 'Create or upload an existing file.',
+ description: 'Create or upload an existing file',
},
],
default: 'upload',
@@ -54,7 +54,7 @@ export const fileFields: INodeProperties[] = [
],
},
},
- description: 'If the data to upload should be taken from binary field.',
+ description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'File Content',
@@ -76,7 +76,7 @@ export const fileFields: INodeProperties[] = [
},
placeholder: '',
- description: 'The text content of the file to upload.',
+ description: 'The text content of the file to upload',
},
{
displayName: 'Binary Property',
@@ -99,7 +99,7 @@ export const fileFields: INodeProperties[] = [
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
{
displayName: 'Options',
@@ -127,21 +127,21 @@ export const fileFields: INodeProperties[] = [
loadOptionsMethod: 'getChannels',
},
default: [],
- description: 'The channels to send the file to.',
+ description: 'The channels to send the file to',
},
{
displayName: 'File Name',
name: 'fileName',
type: 'string',
default: '',
- description: 'Filename of file.',
+ description: 'Filename of file',
},
{
displayName: 'Initial Comment',
name: 'initialComment',
type: 'string',
default: '',
- description: 'The message text introducing the file in specified channels.',
+ description: 'The message text introducing the file in specified channels',
},
{
displayName: 'Thread TS',
@@ -155,7 +155,7 @@ export const fileFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of file.',
+ description: 'Title of file',
},
],
},
@@ -178,7 +178,7 @@ export const fileFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -202,7 +202,7 @@ export const fileFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -229,28 +229,28 @@ export const fileFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getChannels',
},
- description: 'Channel containing the file to be listed.',
+ description: 'Channel containing the file to be listed',
},
{
displayName: 'Show Files Hidden By Limit',
name: 'showFilesHidden',
type: 'boolean',
default: false,
- description: 'Show truncated file info for files hidden due to being too old, and the team who owns the file being over the file limit.',
+ description: 'Show truncated file info for files hidden due to being too old, and the team who owns the file being over the file limit',
},
{
displayName: 'Timestamp From',
name: 'tsFrom',
type: 'string',
default: '',
- description: 'Filter files created after this timestamp (inclusive).',
+ description: 'Filter files created after this timestamp (inclusive)',
},
{
displayName: 'Timestamp To',
name: 'tsTo',
type: 'string',
default: '',
- description: 'Filter files created before this timestamp (inclusive).',
+ description: 'Filter files created before this timestamp (inclusive)',
},
{
displayName: 'Types',
@@ -297,7 +297,7 @@ export const fileFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getUsers',
},
- description: 'Filter files created by a single user.',
+ description: 'Filter files created by a single user',
},
],
},
diff --git a/packages/nodes-base/nodes/Slack/MessageDescription.ts b/packages/nodes-base/nodes/Slack/MessageDescription.ts
index 27e1c4aa8f..37f575f8e6 100644
--- a/packages/nodes-base/nodes/Slack/MessageDescription.ts
+++ b/packages/nodes-base/nodes/Slack/MessageDescription.ts
@@ -70,7 +70,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'Channel containing the message.',
+ description: 'Channel containing the message',
},
{
displayName: 'Timestamp',
@@ -88,7 +88,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: `Timestamp of the message to get permanent link.`,
+ description: 'Timestamp of the message to get permanent link',
},
/* -------------------------------------------------------------------------- */
@@ -112,7 +112,7 @@ export const messageFields: INodeProperties[] = [
},
},
required: true,
- description: 'The channel to send the message to.',
+ description: 'The channel to send the message to',
},
{
displayName: 'User',
@@ -131,7 +131,7 @@ export const messageFields: INodeProperties[] = [
},
},
required: true,
- description: 'The user ID to send the message to.',
+ description: 'The user ID to send the message to',
},
{
displayName: 'Text',
@@ -152,7 +152,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'The text to send.',
+ description: 'The text to send',
},
{
displayName: 'JSON parameters',
@@ -202,49 +202,49 @@ export const messageFields: INodeProperties[] = [
name: 'icon_url',
type: 'string',
default: '',
- description: 'URL to an image to use as the icon for this message.',
+ description: 'URL to an image to use as the icon for this message',
},
{
displayName: 'Link Names',
name: 'link_names',
type: 'boolean',
default: false,
- description: 'Find and link channel names and usernames.',
+ description: 'Find and link channel names and usernames',
},
{
displayName: 'Make Reply',
name: 'thread_ts',
type: 'string',
default: '',
- description: 'Provide another message\'s ts value to make this message a reply.',
+ description: 'Provide another message\'s ts value to make this message a reply',
},
{
displayName: 'Markdown',
name: 'mrkdwn',
type: 'boolean',
default: true,
- description: 'Use Slack Markdown parsing.',
+ description: 'Use Slack Markdown parsing',
},
{
displayName: 'Reply Broadcast',
name: 'reply_broadcast',
type: 'boolean',
default: false,
- description: 'Used in conjunction with thread_ts and indicates whether reply should be made visible to everyone in the channel or conversation.',
+ description: 'Used in conjunction with thread_ts and indicates whether reply should be made visible to everyone in the channel or conversation',
},
{
displayName: 'Unfurl Links',
name: 'unfurl_links',
type: 'boolean',
default: false,
- description: 'Pass true to enable unfurling of primarily text-based content.',
+ description: 'Pass true to enable unfurling of primarily text-based content',
},
{
displayName: 'Unfurl Media',
name: 'unfurl_media',
type: 'boolean',
default: true,
- description: 'Pass false to disable unfurling of media content.',
+ description: 'Pass false to disable unfurling of media content',
},
{
displayName: 'Send as User',
@@ -293,7 +293,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Required plain-text summary of the attachment.',
+ description: 'Required plain-text summary of the attachment',
},
{
displayName: 'Text',
@@ -303,7 +303,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Text to send.',
+ description: 'Text to send',
},
{
displayName: 'Title',
@@ -313,7 +313,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Title of the message.',
+ description: 'Title of the message',
},
{
displayName: 'Title Link',
@@ -323,14 +323,14 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Link of the title.',
+ description: 'Link of the title',
},
{
displayName: 'Color',
name: 'color',
type: 'color',
default: '#ff0000',
- description: 'Color of the line left of text.',
+ description: 'Color of the line left of text',
},
{
displayName: 'Pretext',
@@ -340,14 +340,14 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Text which appears before the message block.',
+ description: 'Text which appears before the message block',
},
{
displayName: 'Author Name',
name: 'author_name',
type: 'string',
default: '',
- description: 'Name that should appear.',
+ description: 'Name that should appear',
},
{
displayName: 'Author Link',
@@ -357,7 +357,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Link for the author.',
+ description: 'Link for the author',
},
{
displayName: 'Author Icon',
@@ -367,7 +367,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Icon which should appear for the user.',
+ description: 'Icon which should appear for the user',
},
{
displayName: 'Image URL',
@@ -377,7 +377,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'URL of image.',
+ description: 'URL of image',
},
{
displayName: 'Thumbnail URL',
@@ -387,7 +387,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'URL of thumbnail.',
+ description: 'URL of thumbnail',
},
{
displayName: 'Footer',
@@ -397,7 +397,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Text of footer to add.',
+ description: 'Text of footer to add',
},
{
displayName: 'Footer Icon',
@@ -407,20 +407,20 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Icon which should appear next to footer.',
+ description: 'Icon which should appear next to footer',
},
{
displayName: 'Timestamp',
name: 'ts',
type: 'dateTime',
default: '',
- description: 'Time message relates to.',
+ description: 'Time message relates to',
},
{
displayName: 'Fields',
name: 'fields',
placeholder: 'Add Fields',
- description: 'Fields to add to message.',
+ description: 'Fields to add to message',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -436,21 +436,21 @@ export const messageFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of the item.',
+ description: 'Title of the item',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the item.',
+ description: 'Value of the item',
},
{
displayName: 'Short',
name: 'short',
type: 'boolean',
default: true,
- description: 'If items can be displayed next to each other.',
+ description: 'If items can be displayed next to each other',
},
],
},
@@ -481,7 +481,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'Channel containing the message to be updated.',
+ description: 'Channel containing the message to be updated',
},
{
displayName: 'Text',
@@ -517,7 +517,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: `Timestamp of the message to be updated.`,
+ description: 'Timestamp of the message to be updated',
},
{
displayName: 'JSON parameters',
@@ -557,7 +557,7 @@ export const messageFields: INodeProperties[] = [
name: 'link_names',
type: 'boolean',
default: false,
- description: 'Find and link channel names and usernames.',
+ description: 'Find and link channel names and usernames',
},
{
displayName: 'Parse',
@@ -735,7 +735,7 @@ export const messageFields: INodeProperties[] = [
},
},
default: '',
- description: 'The text for the block.',
+ description: 'The text for the block',
},
{
displayName: 'Emoji',
@@ -749,7 +749,7 @@ export const messageFields: INodeProperties[] = [
},
},
default: false,
- description: 'Indicates whether emojis in a text field should be escaped into the colon emoji format.',
+ description: 'Indicates whether emojis in a text field should be escaped into the colon emoji format',
},
{
displayName: 'Action ID',
@@ -791,7 +791,7 @@ export const messageFields: INodeProperties[] = [
},
},
default: '',
- description: 'The value to send along with the interaction payload.',
+ description: 'The value to send along with the interaction payload',
},
{
displayName: 'Style',
@@ -819,7 +819,7 @@ export const messageFields: INodeProperties[] = [
},
],
default: 'default',
- description: 'Decorates buttons with alternative visual color schemes.',
+ description: 'Decorates buttons with alternative visual color schemes',
},
{
displayName: 'Confirm',
@@ -854,7 +854,7 @@ export const messageFields: INodeProperties[] = [
name: 'text',
type: 'string',
default: '',
- description: 'Text of the title.',
+ description: 'Text of the title',
},
{
displayName: 'Emoji',
@@ -866,7 +866,7 @@ export const messageFields: INodeProperties[] = [
],
},
],
- description: `Defines the dialog's title.`,
+ description: 'Defines the dialog\'s title',
},
{
displayName: 'Text',
@@ -899,7 +899,7 @@ export const messageFields: INodeProperties[] = [
],
},
],
- description: `Defines the explanatory text that appears in the confirm dialog.`,
+ description: 'Defines the explanatory text that appears in the confirm dialog',
},
{
displayName: 'Confirm',
@@ -920,7 +920,7 @@ export const messageFields: INodeProperties[] = [
name: 'text',
type: 'string',
default: '',
- description: `Defines the explanatory text that appears in the confirm dialog.`,
+ description: 'Defines the explanatory text that appears in the confirm dialog',
},
{
displayName: 'Emoji',
@@ -986,12 +986,12 @@ export const messageFields: INodeProperties[] = [
},
],
default: 'default',
- description: 'Defines the color scheme applied to the confirm button.',
+ description: 'Defines the color scheme applied to the confirm button',
},
],
},
],
- description: 'Defines an optional confirmation dialog after the button is clicked.',
+ description: 'Defines an optional confirmation dialog after the button is clicked',
},
],
},
@@ -1047,7 +1047,7 @@ export const messageFields: INodeProperties[] = [
},
],
default: 'mrkwdn',
- description: 'The formatting to use for this text object.',
+ description: 'The formatting to use for this text object',
},
{
displayName: 'Text',
@@ -1125,7 +1125,7 @@ export const messageFields: INodeProperties[] = [
},
],
default: 'mrkwdn',
- description: 'The formatting to use for this text object.',
+ description: 'The formatting to use for this text object',
},
{
displayName: 'Text',
@@ -1213,7 +1213,7 @@ export const messageFields: INodeProperties[] = [
},
type: 'string',
default: '',
- description: 'The text for the block.',
+ description: 'The text for the block',
},
{
displayName: 'Emoji',
@@ -1227,7 +1227,7 @@ export const messageFields: INodeProperties[] = [
},
type: 'boolean',
default: false,
- description: 'Indicates whether emojis in a text field should be escaped into the colon emoji format.',
+ description: 'Indicates whether emojis in a text field should be escaped into the colon emoji format',
},
{
displayName: 'Action ID',
@@ -1269,7 +1269,7 @@ export const messageFields: INodeProperties[] = [
},
type: 'string',
default: '',
- description: 'The value to send along with the interaction payload.',
+ description: 'The value to send along with the interaction payload',
},
{
displayName: 'Style',
@@ -1297,7 +1297,7 @@ export const messageFields: INodeProperties[] = [
},
],
default: 'default',
- description: 'Decorates buttons with alternative visual color schemes.',
+ description: 'Decorates buttons with alternative visual color schemes',
},
{
displayName: 'Confirm',
@@ -1339,7 +1339,7 @@ export const messageFields: INodeProperties[] = [
name: 'text',
type: 'string',
default: '',
- description: 'Text of the title.',
+ description: 'Text of the title',
},
{
displayName: 'Emoji',
@@ -1351,7 +1351,7 @@ export const messageFields: INodeProperties[] = [
],
},
],
- description: 'Defines an optional confirmation dialog after the button is clicked.',
+ description: 'Defines an optional confirmation dialog after the button is clicked',
},
{
displayName: 'Text',
@@ -1384,7 +1384,7 @@ export const messageFields: INodeProperties[] = [
],
},
],
- description: `Defines the explanatory text that appears in the confirm dialog.`,
+ description: 'Defines the explanatory text that appears in the confirm dialog',
},
{
displayName: 'Confirm',
@@ -1405,7 +1405,7 @@ export const messageFields: INodeProperties[] = [
name: 'text',
type: 'string',
default: '',
- description: `Defines the explanatory text that appears in the confirm dialog.`,
+ description: 'Defines the explanatory text that appears in the confirm dialog',
},
{
displayName: 'Emoji',
@@ -1417,7 +1417,7 @@ export const messageFields: INodeProperties[] = [
],
},
],
- description: `Defines the explanatory text that appears in the confirm dialog.`,
+ description: 'Defines the explanatory text that appears in the confirm dialog',
},
{
displayName: 'Deny',
@@ -1471,12 +1471,12 @@ export const messageFields: INodeProperties[] = [
},
],
default: 'default',
- description: 'Defines the color scheme applied to the confirm button.',
+ description: 'Defines the color scheme applied to the confirm button',
},
],
},
],
- description: 'Defines an optional confirmation dialog after the button is clicked.',
+ description: 'Defines an optional confirmation dialog after the button is clicked',
},
],
},
@@ -1567,7 +1567,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Required plain-text summary of the attachment.',
+ description: 'Required plain-text summary of the attachment',
},
{
displayName: 'Text',
@@ -1577,7 +1577,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Text to send.',
+ description: 'Text to send',
},
{
displayName: 'Title',
@@ -1587,7 +1587,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Title of the message.',
+ description: 'Title of the message',
},
{
displayName: 'Title Link',
@@ -1597,14 +1597,14 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Link of the title.',
+ description: 'Link of the title',
},
{
displayName: 'Color',
name: 'color',
type: 'color',
default: '#ff0000',
- description: 'Color of the line left of text.',
+ description: 'Color of the line left of text',
},
{
displayName: 'Pretext',
@@ -1614,14 +1614,14 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Text which appears before the message block.',
+ description: 'Text which appears before the message block',
},
{
displayName: 'Author Name',
name: 'author_name',
type: 'string',
default: '',
- description: 'Name that should appear.',
+ description: 'Name that should appear',
},
{
displayName: 'Author Link',
@@ -1631,7 +1631,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Link for the author.',
+ description: 'Link for the author',
},
{
displayName: 'Author Icon',
@@ -1641,7 +1641,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Icon which should appear for the user.',
+ description: 'Icon which should appear for the user',
},
{
displayName: 'Image URL',
@@ -1651,7 +1651,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'URL of image.',
+ description: 'URL of image',
},
{
displayName: 'Thumbnail URL',
@@ -1661,7 +1661,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'URL of thumbnail.',
+ description: 'URL of thumbnail',
},
{
displayName: 'Footer',
@@ -1671,7 +1671,7 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Text of footer to add.',
+ description: 'Text of footer to add',
},
{
displayName: 'Footer Icon',
@@ -1681,20 +1681,20 @@ export const messageFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Icon which should appear next to footer.',
+ description: 'Icon which should appear next to footer',
},
{
displayName: 'Timestamp',
name: 'ts',
type: 'dateTime',
default: '',
- description: 'Time message relates to.',
+ description: 'Time message relates to',
},
{
displayName: 'Fields',
name: 'fields',
placeholder: 'Add Fields',
- description: 'Fields to add to message.',
+ description: 'Fields to add to message',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -1710,21 +1710,21 @@ export const messageFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'Title of the item.',
+ description: 'Title of the item',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the item.',
+ description: 'Value of the item',
},
{
displayName: 'Short',
name: 'short',
type: 'boolean',
default: true,
- description: 'If items can be displayed next to each other.',
+ description: 'If items can be displayed next to each other',
},
],
},
@@ -1755,7 +1755,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'Channel containing the message to be deleted.',
+ description: 'Channel containing the message to be deleted',
},
{
displayName: 'Timestamp',
@@ -1773,6 +1773,6 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: `Timestamp of the message to be deleted.`,
+ description: 'Timestamp of the message to be deleted',
},
];
diff --git a/packages/nodes-base/nodes/Slack/ReactionDescription.ts b/packages/nodes-base/nodes/Slack/ReactionDescription.ts
index 9ee515fb55..c44d728f6b 100644
--- a/packages/nodes-base/nodes/Slack/ReactionDescription.ts
+++ b/packages/nodes-base/nodes/Slack/ReactionDescription.ts
@@ -56,7 +56,7 @@ export const reactionFields: INodeProperties[] = [
],
},
},
- description: 'Channel containing the message.',
+ description: 'Channel containing the message',
},
{
displayName: 'Emoji',
@@ -75,7 +75,7 @@ export const reactionFields: INodeProperties[] = [
],
},
},
- description: 'Name of emoji.',
+ description: 'Name of emoji',
placeholder: '+1',
},
{
@@ -96,6 +96,6 @@ export const reactionFields: INodeProperties[] = [
],
},
},
- description: `Timestamp of the message.`,
+ description: 'Timestamp of the message',
},
];
diff --git a/packages/nodes-base/nodes/Slack/StarDescription.ts b/packages/nodes-base/nodes/Slack/StarDescription.ts
index 9dce692568..6d75bd6591 100644
--- a/packages/nodes-base/nodes/Slack/StarDescription.ts
+++ b/packages/nodes-base/nodes/Slack/StarDescription.ts
@@ -16,17 +16,17 @@ export const starOperations: INodeProperties[] = [
{
name: 'Add',
value: 'add',
- description: 'Add a star to an item.',
+ description: 'Add a star to an item',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete a star from an item.',
+ description: 'Delete a star from an item',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all stars of autenticated user.',
+ description: 'Get all stars of autenticated user',
},
],
default: 'add',
@@ -65,28 +65,28 @@ export const starFields: INodeProperties[] = [
loadOptionsMethod: 'getChannels',
},
default: '',
- description: 'Channel to add star to, or channel where the message to add star to was posted (used with timestamp).',
+ description: 'Channel to add star to, or channel where the message to add star to was posted (used with timestamp)',
},
{
displayName: 'File Comment',
name: 'fileComment',
type: 'string',
default: '',
- description: 'File comment to add star to.',
+ description: 'File comment to add star to',
},
{
displayName: 'File ID',
name: 'fileId',
type: 'string',
default: '',
- description: 'File to add star to.',
+ description: 'File to add star to',
},
{
displayName: 'Timestamp',
name: 'timestamp',
type: 'string',
default: '',
- description: 'Timestamp of the message to add star to.',
+ description: 'Timestamp of the message to add star to',
},
],
},
@@ -120,28 +120,28 @@ export const starFields: INodeProperties[] = [
loadOptionsMethod: 'getChannels',
},
default: '',
- description: 'Channel to add star to, or channel where the message to add star to was posted (used with timestamp).',
+ description: 'Channel to add star to, or channel where the message to add star to was posted (used with timestamp)',
},
{
displayName: 'File ID',
name: 'fileId',
type: 'string',
default: '',
- description: 'File to add star to.',
+ description: 'File to add star to',
},
{
displayName: 'File Comment',
name: 'fileComment',
type: 'string',
default: '',
- description: 'File comment to add star to.',
+ description: 'File comment to add star to',
},
{
displayName: 'Timestamp',
name: 'timestamp',
type: 'string',
default: '',
- description: 'Timestamp of the message to add star to.',
+ description: 'Timestamp of the message to add star to',
},
],
},
@@ -164,7 +164,7 @@ export const starFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -188,6 +188,6 @@ export const starFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Slack/UserDescription.ts b/packages/nodes-base/nodes/Slack/UserDescription.ts
index 43c36920c4..452c1acd9f 100644
--- a/packages/nodes-base/nodes/Slack/UserDescription.ts
+++ b/packages/nodes-base/nodes/Slack/UserDescription.ts
@@ -55,7 +55,7 @@ export const userFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the user to get information about.',
+ description: 'The ID of the user to get information about',
},
/* -------------------------------------------------------------------------- */
@@ -80,6 +80,6 @@ export const userFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the user to get the online status of.',
+ description: 'The ID of the user to get the online status of',
},
];
diff --git a/packages/nodes-base/nodes/Slack/UserGroupDescription.ts b/packages/nodes-base/nodes/Slack/UserGroupDescription.ts
index 3854cd5330..e226ac64f2 100644
--- a/packages/nodes-base/nodes/Slack/UserGroupDescription.ts
+++ b/packages/nodes-base/nodes/Slack/UserGroupDescription.ts
@@ -94,14 +94,14 @@ export const userGroupFields: INodeProperties[] = [
loadOptionsMethod: 'getChannels',
},
default: [],
- description: 'A comma-separated string of encoded channel IDs for which the User Group uses as a default.',
+ description: 'A comma-separated string of encoded channel IDs for which the User Group uses as a default',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'A short description of the User Group.',
+ description: 'A short description of the User Group',
},
{
displayName: 'Handle',
@@ -115,7 +115,7 @@ export const userGroupFields: INodeProperties[] = [
name: 'include_count',
type: 'boolean',
default: true,
- description: 'Include the number of users in each User Group.',
+ description: 'Include the number of users in each User Group',
},
],
},
@@ -138,7 +138,7 @@ export const userGroupFields: INodeProperties[] = [
},
},
required: true,
- description: 'The encoded ID of the User Group to update.',
+ description: 'The encoded ID of the User Group to update',
},
{
displayName: 'Additional Fields',
@@ -162,7 +162,7 @@ export const userGroupFields: INodeProperties[] = [
name: 'include_count',
type: 'boolean',
default: true,
- description: 'Include the number of users in each User Group.',
+ description: 'Include the number of users in each User Group',
},
],
},
@@ -185,7 +185,7 @@ export const userGroupFields: INodeProperties[] = [
},
},
required: true,
- description: 'The encoded ID of the User Group to update.',
+ description: 'The encoded ID of the User Group to update',
},
{
displayName: 'Additional Fields',
@@ -209,7 +209,7 @@ export const userGroupFields: INodeProperties[] = [
name: 'include_count',
type: 'boolean',
default: true,
- description: 'Include the number of users in each User Group.',
+ description: 'Include the number of users in each User Group',
},
],
},
@@ -231,7 +231,7 @@ export const userGroupFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -255,7 +255,7 @@ export const userGroupFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -279,21 +279,21 @@ export const userGroupFields: INodeProperties[] = [
name: 'include_count',
type: 'boolean',
default: true,
- description: 'Include the number of users in each User Group.',
+ description: 'Include the number of users in each User Group',
},
{
displayName: 'Include Disabled',
name: 'include_disabled',
type: 'boolean',
default: true,
- description: 'Include disabled User Groups.',
+ description: 'Include disabled User Groups',
},
{
displayName: 'Include Users',
name: 'include_users',
type: 'boolean',
default: true,
- description: 'Include the list of users for each User Group.',
+ description: 'Include the list of users for each User Group',
},
],
},
@@ -316,7 +316,7 @@ export const userGroupFields: INodeProperties[] = [
},
},
required: true,
- description: 'The encoded ID of the User Group to update.',
+ description: 'The encoded ID of the User Group to update',
},
{
displayName: 'Update Fields',
@@ -343,14 +343,14 @@ export const userGroupFields: INodeProperties[] = [
loadOptionsMethod: 'getChannels',
},
default: [],
- description: 'A comma-separated string of encoded channel IDs for which the User Group uses as a default.',
+ description: 'A comma-separated string of encoded channel IDs for which the User Group uses as a default',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'A short description of the User Group.',
+ description: 'A short description of the User Group',
},
{
displayName: 'Handle',
@@ -364,7 +364,7 @@ export const userGroupFields: INodeProperties[] = [
name: 'include_count',
type: 'boolean',
default: true,
- description: 'Include the number of users in each User Group.',
+ description: 'Include the number of users in each User Group',
},
{
displayName: 'Name',
diff --git a/packages/nodes-base/nodes/Slack/UserProfileDescription.ts b/packages/nodes-base/nodes/Slack/UserProfileDescription.ts
index 30a170c452..72f37a1874 100644
--- a/packages/nodes-base/nodes/Slack/UserProfileDescription.ts
+++ b/packages/nodes-base/nodes/Slack/UserProfileDescription.ts
@@ -76,14 +76,14 @@ export const userProfileFields: INodeProperties[] = [
loadOptionsMethod: 'getTeamFields',
},
default: '',
- description: 'ID of the field to set.',
+ description: 'ID of the field to set',
},
{
displayName: 'Field Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the field to set.',
+ description: 'Value of the field to set',
},
{
displayName: 'Alt',
@@ -100,7 +100,7 @@ export const userProfileFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: `This field can only be changed by admins for users on paid teams.`,
+ description: 'This field can only be changed by admins for users on paid teams',
},
{
displayName: 'First Name',
@@ -133,7 +133,7 @@ export const userProfileFields: INodeProperties[] = [
name: 'status_text',
type: 'string',
default: '',
- description: `allows up to 100 characters, though we strongly encourage brevity.`,
+ description: 'allows up to 100 characters, though we strongly encourage brevity',
},
{
displayName: 'User ID',
diff --git a/packages/nodes-base/nodes/Snowflake/Snowflake.node.ts b/packages/nodes-base/nodes/Snowflake/Snowflake.node.ts
index 301bad4fee..22c51ec501 100644
--- a/packages/nodes-base/nodes/Snowflake/Snowflake.node.ts
+++ b/packages/nodes-base/nodes/Snowflake/Snowflake.node.ts
@@ -46,17 +46,17 @@ export class Snowflake implements INodeType {
{
name: 'Execute Query',
value: 'executeQuery',
- description: 'Execute an SQL query.',
+ description: 'Execute an SQL query',
},
{
name: 'Insert',
value: 'insert',
- description: 'Insert rows in database.',
+ description: 'Insert rows in database',
},
{
name: 'Update',
value: 'update',
- description: 'Update rows in database.',
+ description: 'Update rows in database',
},
],
default: 'insert',
@@ -83,7 +83,7 @@ export class Snowflake implements INodeType {
default: '',
placeholder: 'SELECT id, name FROM product WHERE id < 40',
required: true,
- description: 'The SQL query to execute.',
+ description: 'The SQL query to execute',
},
@@ -103,7 +103,7 @@ export class Snowflake implements INodeType {
},
default: '',
required: true,
- description: 'Name of the table in which to insert data to.',
+ description: 'Name of the table in which to insert data to',
},
{
displayName: 'Columns',
@@ -118,7 +118,7 @@ export class Snowflake implements INodeType {
},
default: '',
placeholder: 'id,name,description',
- description: 'Comma-separated list of the properties which should used as columns for the new rows.',
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
@@ -168,7 +168,7 @@ export class Snowflake implements INodeType {
},
default: '',
placeholder: 'name,description',
- description: 'Comma-separated list of the properties which should used as columns for rows to update.',
+ description: 'Comma-separated list of the properties which should used as columns for rows to update',
},
],
diff --git a/packages/nodes-base/nodes/SplitInBatches/SplitInBatches.node.ts b/packages/nodes-base/nodes/SplitInBatches/SplitInBatches.node.ts
index 7ab0a33fd7..5190cee895 100644
--- a/packages/nodes-base/nodes/SplitInBatches/SplitInBatches.node.ts
+++ b/packages/nodes-base/nodes/SplitInBatches/SplitInBatches.node.ts
@@ -36,7 +36,7 @@ export class SplitInBatches implements INodeType {
minValue: 1,
},
default: 10,
- description: 'The number of items to return with each call.',
+ description: 'The number of items to return with each call',
},
{
displayName: 'Options',
@@ -50,7 +50,7 @@ export class SplitInBatches implements INodeType {
name: 'reset',
type: 'boolean',
default: false,
- description: 'If set to true, the node will be reset and so with the current input-data newly initialized.',
+ description: 'If set to true, the node will be reset and so with the current input-data newly initialized',
},
],
},
diff --git a/packages/nodes-base/nodes/Spotify/Spotify.node.ts b/packages/nodes-base/nodes/Spotify/Spotify.node.ts
index 3b7afb3a5a..f0e66e48c2 100644
--- a/packages/nodes-base/nodes/Spotify/Spotify.node.ts
+++ b/packages/nodes-base/nodes/Spotify/Spotify.node.ts
@@ -101,47 +101,47 @@ export class Spotify implements INodeType {
{
name: 'Add Song to Queue',
value: 'addSongToQueue',
- description: 'Add a song to your queue.',
+ description: 'Add a song to your queue',
},
{
name: 'Currently Playing',
value: 'currentlyPlaying',
- description: 'Get your currently playing track.',
+ description: 'Get your currently playing track',
},
{
name: 'Next Song',
value: 'nextSong',
- description: 'Skip to your next track.',
+ description: 'Skip to your next track',
},
{
name: 'Pause',
value: 'pause',
- description: 'Pause your music.',
+ description: 'Pause your music',
},
{
name: 'Previous Song',
value: 'previousSong',
- description: 'Skip to your previous song.',
+ description: 'Skip to your previous song',
},
{
name: 'Recently Played',
value: 'recentlyPlayed',
- description: 'Get your recently played tracks.',
+ description: 'Get your recently played tracks',
},
{
name: 'Resume',
value: 'resume',
- description: 'Resume playback on the current active device.',
+ description: 'Resume playback on the current active device',
},
{
name: 'Set Volume',
value: 'volume',
- description: 'Set volume on the current active device.',
+ description: 'Set volume on the current active device',
},
{
name: 'Start Music',
value: 'startMusic',
- description: 'Start playing a playlist, artist, or album.',
+ description: 'Start playing a playlist, artist, or album',
},
],
default: 'addSongToQueue',
@@ -164,7 +164,7 @@ export class Spotify implements INodeType {
},
},
placeholder: 'spotify:album:1YZ3k65Mqw3G8FzYlW1mmp',
- description: `Enter a playlist, artist, or album URI or ID.`,
+ description: 'Enter a playlist, artist, or album URI or ID',
},
{
displayName: 'Track ID',
@@ -183,7 +183,7 @@ export class Spotify implements INodeType {
},
},
placeholder: 'spotify:track:0xE4LEFzSNGsz1F6kvXsHU',
- description: `Enter a track URI or ID.`,
+ description: 'Enter a track URI or ID',
},
// -----------------------------------------------
@@ -205,22 +205,22 @@ export class Spotify implements INodeType {
{
name: 'Get',
value: 'get',
- description: 'Get an album by URI or ID.',
+ description: 'Get an album by URI or ID',
},
{
name: 'Get New Releases',
value: 'getNewReleases',
- description: 'Get a list of new album releases.',
+ description: 'Get a list of new album releases',
},
{
name: `Get Tracks`,
value: 'getTracks',
- description: `Get an album's tracks by URI or ID.`,
+ description: 'Get an album\'s tracks by URI or ID',
},
{
name: `Search`,
value: 'search',
- description: `Search albums by keyword.`,
+ description: 'Search albums by keyword',
},
],
default: 'get',
@@ -249,7 +249,7 @@ export class Spotify implements INodeType {
},
},
placeholder: 'spotify:album:1YZ3k65Mqw3G8FzYlW1mmp',
- description: `The album's Spotify URI or ID.`,
+ description: 'The album\'s Spotify URI or ID',
},
{
displayName: 'Search Keyword',
@@ -257,7 +257,7 @@ export class Spotify implements INodeType {
type: 'string',
required: true,
default: '',
- description: 'The keyword term to search for.',
+ description: 'The keyword term to search for',
displayOptions: {
show: {
resource: [
@@ -289,27 +289,27 @@ export class Spotify implements INodeType {
{
name: 'Get',
value: 'get',
- description: 'Get an artist by URI or ID.',
+ description: 'Get an artist by URI or ID',
},
{
name: `Get Albums`,
value: 'getAlbums',
- description: `Get an artist's albums by URI or ID.`,
+ description: 'Get an artist\'s albums by URI or ID',
},
{
name: `Get Related Artists`,
value: 'getRelatedArtists',
- description: `Get an artist's related artists by URI or ID.`,
+ description: 'Get an artist\'s related artists by URI or ID',
},
{
name: `Get Top Tracks`,
value: 'getTopTracks',
- description: `Get an artist's top tracks by URI or ID.`,
+ description: 'Get an artist\'s top tracks by URI or ID',
},
{
name: `Search`,
value: 'search',
- description: `Search artists by keyword.`,
+ description: 'Search artists by keyword',
},
],
default: 'get',
@@ -334,7 +334,7 @@ export class Spotify implements INodeType {
},
},
placeholder: 'spotify:artist:4LLpKhyESsyAXpc4laK94U',
- description: `The artist's Spotify URI or ID.`,
+ description: 'The artist\'s Spotify URI or ID',
},
{
displayName: 'Country',
@@ -353,7 +353,7 @@ export class Spotify implements INodeType {
},
},
placeholder: 'US',
- description: `Top tracks in which country? Enter the postal abbriviation.`,
+ description: 'Top tracks in which country? Enter the postal abbriviation',
},
{
@@ -362,7 +362,7 @@ export class Spotify implements INodeType {
type: 'string',
required: true,
default: '',
- description: 'The keyword term to search for.',
+ description: 'The keyword term to search for',
displayOptions: {
show: {
resource: [
@@ -394,37 +394,37 @@ export class Spotify implements INodeType {
{
name: 'Add an Item',
value: 'add',
- description: 'Add tracks from a playlist by track and playlist URI or ID.',
+ description: 'Add tracks from a playlist by track and playlist URI or ID',
},
{
name: 'Create a Playlist',
value: 'create',
- description: 'Create a new playlist.',
+ description: 'Create a new playlist',
},
{
name: 'Get',
value: 'get',
- description: 'Get a playlist by URI or ID.',
+ description: 'Get a playlist by URI or ID',
},
{
name: 'Get Tracks',
value: 'getTracks',
- description: `Get a playlist's tracks by URI or ID.`,
+ description: 'Get a playlist\'s tracks by URI or ID',
},
{
name: `Get the User's Playlists`,
value: 'getUserPlaylists',
- description: `Get a user's playlists.`,
+ description: 'Get a user\'s playlists',
},
{
name: 'Remove an Item',
value: 'delete',
- description: 'Remove tracks from a playlist by track and playlist URI or ID.',
+ description: 'Remove tracks from a playlist by track and playlist URI or ID',
},
{
name: `Search`,
value: 'search',
- description: `Search playlists by keyword.`,
+ description: 'Search playlists by keyword',
},
],
default: 'add',
@@ -450,7 +450,7 @@ export class Spotify implements INodeType {
},
},
placeholder: 'spotify:playlist:37i9dQZF1DWUhI3iC1khPH',
- description: `The playlist's Spotify URI or its ID.`,
+ description: 'The playlist\'s Spotify URI or its ID',
},
{
displayName: 'Name',
@@ -469,7 +469,7 @@ export class Spotify implements INodeType {
},
},
placeholder: 'Favorite Songs',
- description: 'Name of the playlist to create.',
+ description: 'Name of the playlist to create',
},
{
displayName: 'Additional Fields',
@@ -494,14 +494,14 @@ export class Spotify implements INodeType {
type: 'string',
default: '',
placeholder: 'These are all my favorite songs.',
- description: 'Description for the playlist to create.',
+ description: 'Description for the playlist to create',
},
{
displayName: 'Public',
name: 'public',
type: 'boolean',
default: true,
- description: 'Whether the playlist is publicly accessible.',
+ description: 'Whether the playlist is publicly accessible',
},
],
},
@@ -551,7 +551,7 @@ export class Spotify implements INodeType {
},
default: 0,
placeholder: '0',
- description: `The new track's position in the playlist.`,
+ description: 'The new track\'s position in the playlist',
},
],
},
@@ -561,7 +561,7 @@ export class Spotify implements INodeType {
type: 'string',
required: true,
default: '',
- description: 'The keyword term to search for.',
+ description: 'The keyword term to search for',
displayOptions: {
show: {
resource: [
@@ -593,17 +593,17 @@ export class Spotify implements INodeType {
{
name: 'Get',
value: 'get',
- description: 'Get a track by its URI or ID.',
+ description: 'Get a track by its URI or ID',
},
{
name: 'Get Audio Features',
value: 'getAudioFeatures',
- description: 'Get audio features for a track by URI or ID.',
+ description: 'Get audio features for a track by URI or ID',
},
{
name: 'Search',
value: 'search',
- description: `Search tracks by keyword.`,
+ description: 'Search tracks by keyword',
},
],
default: 'track',
@@ -628,7 +628,7 @@ export class Spotify implements INodeType {
},
},
placeholder: 'spotify:track:0xE4LEFzSNGsz1F6kvXsHU',
- description: `The track's Spotify URI or ID.`,
+ description: 'The track\'s Spotify URI or ID',
},
{
displayName: 'Search Keyword',
@@ -636,7 +636,7 @@ export class Spotify implements INodeType {
type: 'string',
required: true,
default: '',
- description: 'The keyword term to search for.',
+ description: 'The keyword term to search for',
displayOptions: {
show: {
resource: [
@@ -668,7 +668,7 @@ export class Spotify implements INodeType {
{
name: 'Get Liked Tracks',
value: 'getLikedTracks',
- description: `Get the user's liked tracks.`,
+ description: 'Get the user\'s liked tracks',
},
],
default: 'getLikedTracks',
@@ -693,7 +693,7 @@ export class Spotify implements INodeType {
{
name: 'Get Following Artists',
value: 'getFollowingArtists',
- description: 'Get your followed artists.',
+ description: 'Get your followed artists',
},
],
default: 'getFollowingArtists',
@@ -728,7 +728,7 @@ export class Spotify implements INodeType {
],
},
},
- description: `The number of items to return.`,
+ description: 'The number of items to return',
},
{
displayName: 'Limit',
@@ -762,7 +762,7 @@ export class Spotify implements INodeType {
minValue: 1,
maxValue: 100,
},
- description: `The number of items to return.`,
+ description: 'The number of items to return',
},
{
displayName: 'Limit',
@@ -789,7 +789,7 @@ export class Spotify implements INodeType {
minValue: 1,
maxValue: 50,
},
- description: `The number of items to return.`,
+ description: 'The number of items to return',
},
{
displayName: 'Volume',
@@ -811,7 +811,7 @@ export class Spotify implements INodeType {
minValue: 0,
maxValue: 100,
},
- description: `The volume percentage to set.`,
+ description: 'The volume percentage to set',
},
{
displayName: 'Filters',
@@ -836,7 +836,7 @@ export class Spotify implements INodeType {
type: 'options',
default: 'US',
options: isoCountryCodes.map(({ name, alpha2 }) => ({ name, value: alpha2 })),
- description: 'Country to filter new releases by.',
+ description: 'Country to filter new releases by',
},
],
},
@@ -866,7 +866,7 @@ export class Spotify implements INodeType {
type: 'options',
options: isoCountryCodes.map(({ name, alpha2 }) => ({ name, value: alpha2 })),
default: '',
- description: `If a country code is specified, only content that is playable in that market is returned.`,
+ description: 'If a country code is specified, only content that is playable in that market is returned',
},
],
},
diff --git a/packages/nodes-base/nodes/SpreadsheetFile/SpreadsheetFile.node.ts b/packages/nodes-base/nodes/SpreadsheetFile/SpreadsheetFile.node.ts
index 9b6ea32dfb..379eaed248 100644
--- a/packages/nodes-base/nodes/SpreadsheetFile/SpreadsheetFile.node.ts
+++ b/packages/nodes-base/nodes/SpreadsheetFile/SpreadsheetFile.node.ts
@@ -100,7 +100,7 @@ export class SpreadsheetFile implements INodeType {
},
placeholder: '',
- description: 'Name of the binary property from which to read the binary data of the spreadsheet file.',
+ description: 'Name of the binary property from which to read the binary data of the spreadsheet file',
},
// ----------------------------------
@@ -150,7 +150,7 @@ export class SpreadsheetFile implements INodeType {
],
},
},
- description: 'The format of the file to save the data as.',
+ description: 'The format of the file to save the data as',
},
{
displayName: 'Binary Property',
@@ -166,7 +166,7 @@ export class SpreadsheetFile implements INodeType {
},
},
placeholder: '',
- description: 'Name of the binary property in which to save the binary data of the spreadsheet file.',
+ description: 'Name of the binary property in which to save the binary data of the spreadsheet file',
},
{
@@ -220,7 +220,7 @@ export class SpreadsheetFile implements INodeType {
},
},
default: true,
- description: 'The first row of the file contains the header names.',
+ description: 'The first row of the file contains the header names',
},
{
displayName: 'Include Empty Cells',
@@ -234,7 +234,7 @@ export class SpreadsheetFile implements INodeType {
},
},
default: false,
- description: 'When reading from file the empty cells will be filled with an empty string in the JSON.',
+ description: 'When reading from file the empty cells will be filled with an empty string in the JSON',
},
{
displayName: 'RAW Data',
@@ -248,7 +248,7 @@ export class SpreadsheetFile implements INodeType {
},
},
default: false,
- description: 'If the data should be returned RAW instead of parsed.',
+ description: 'If the data should be returned RAW instead of parsed',
},
{
displayName: 'Read As String',
@@ -262,7 +262,7 @@ export class SpreadsheetFile implements INodeType {
},
},
default: false,
- description: 'In some cases and file formats, it is necessary to read specifically as string else some special character get interpreted wrong.',
+ description: 'In some cases and file formats, it is necessary to read specifically as string else some special character get interpreted wrong',
},
{
displayName: 'Range',
@@ -309,7 +309,7 @@ export class SpreadsheetFile implements INodeType {
},
},
default: 'Sheet',
- description: 'Name of the sheet to create in the spreadsheet.',
+ description: 'Name of the sheet to create in the spreadsheet',
},
],
},
diff --git a/packages/nodes-base/nodes/SseTrigger/SseTrigger.node.ts b/packages/nodes-base/nodes/SseTrigger/SseTrigger.node.ts
index 6dc56e3ef8..cc8a178c83 100644
--- a/packages/nodes-base/nodes/SseTrigger/SseTrigger.node.ts
+++ b/packages/nodes-base/nodes/SseTrigger/SseTrigger.node.ts
@@ -30,7 +30,7 @@ export class SseTrigger implements INodeType {
type: 'string',
default: '',
placeholder: 'http://example.com',
- description: 'The URL to receive the SSE from.',
+ description: 'The URL to receive the SSE from',
required: true,
},
],
diff --git a/packages/nodes-base/nodes/Ssh/Ssh.node.ts b/packages/nodes-base/nodes/Ssh/Ssh.node.ts
index 7a238c275e..26a3bb45e9 100644
--- a/packages/nodes-base/nodes/Ssh/Ssh.node.ts
+++ b/packages/nodes-base/nodes/Ssh/Ssh.node.ts
@@ -128,7 +128,7 @@ export class Ssh implements INodeType {
},
},
default: '',
- description: 'The command to be executed on a remote device.',
+ description: 'The command to be executed on a remote device',
},
{
displayName: 'Working Directory',
@@ -190,7 +190,7 @@ export class Ssh implements INodeType {
},
},
placeholder: '',
- description: 'Name of the binary property which contains the data for the file to be uploaded.',
+ description: 'Name of the binary property which contains the data for the file to be uploaded',
},
{
displayName: 'Target Directory',
@@ -245,7 +245,7 @@ export class Ssh implements INodeType {
name: 'binaryPropertyName',
type: 'string',
default: 'data',
- description: 'Object property name which holds binary data.',
+ description: 'Object property name which holds binary data',
required: true,
},
{
@@ -270,7 +270,7 @@ export class Ssh implements INodeType {
name: 'fileName',
type: 'string',
default: '',
- description: `Overrides the binary data file name.`,
+ description: 'Overrides the binary data file name',
},
],
},
diff --git a/packages/nodes-base/nodes/Stackby/Stackby.node.ts b/packages/nodes-base/nodes/Stackby/Stackby.node.ts
index cc7aa5a8c4..82774d01b4 100644
--- a/packages/nodes-base/nodes/Stackby/Stackby.node.ts
+++ b/packages/nodes-base/nodes/Stackby/Stackby.node.ts
@@ -70,7 +70,7 @@ export class Stackby implements INodeType {
type: 'string',
default: '',
required: true,
- description: 'The ID of the stack to access.',
+ description: 'The ID of the stack to access',
},
{
displayName: 'Table',
@@ -99,7 +99,7 @@ export class Stackby implements INodeType {
},
default: '',
required: true,
- description: 'ID of the record to return.',
+ description: 'ID of the record to return',
},
// ----------------------------------
@@ -117,7 +117,7 @@ export class Stackby implements INodeType {
},
},
default: true,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -138,7 +138,7 @@ export class Stackby implements INodeType {
maxValue: 1000,
},
default: 1000,
- description: 'Number of results to return.',
+ description: 'Number of results to return',
},
{
displayName: 'Additional Fields',
@@ -181,7 +181,7 @@ export class Stackby implements INodeType {
default: '',
required: true,
placeholder: 'id,name,description',
- description: 'Comma-separated list of the properties which should used as columns for the new rows.',
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
],
};
diff --git a/packages/nodes-base/nodes/Storyblok/StoryContentDescription.ts b/packages/nodes-base/nodes/Storyblok/StoryContentDescription.ts
index e3e2615fa5..61d7ea21f8 100644
--- a/packages/nodes-base/nodes/Storyblok/StoryContentDescription.ts
+++ b/packages/nodes-base/nodes/Storyblok/StoryContentDescription.ts
@@ -58,7 +58,7 @@ export const storyContentFields: INodeProperties[] = [
],
},
},
- description: 'The ID or slug of the story to get.',
+ description: 'The ID or slug of the story to get',
},
/* -------------------------------------------------------------------------- */
@@ -82,7 +82,7 @@ export const storyContentFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your user contacts.',
+ description: 'Returns a list of your user contacts',
},
{
displayName: 'Limit',
@@ -109,7 +109,7 @@ export const storyContentFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -136,7 +136,7 @@ export const storyContentFields: INodeProperties[] = [
name: 'starts_with',
type: 'string',
default: '',
- description: 'Filter by slug.',
+ description: 'Filter by slug',
},
],
},
diff --git a/packages/nodes-base/nodes/Storyblok/StoryManagementDescription.ts b/packages/nodes-base/nodes/Storyblok/StoryManagementDescription.ts
index 4681e4cbef..99b4263738 100644
--- a/packages/nodes-base/nodes/Storyblok/StoryManagementDescription.ts
+++ b/packages/nodes-base/nodes/Storyblok/StoryManagementDescription.ts
@@ -334,7 +334,7 @@ export const storyManagementFields: INodeProperties[] = [
],
},
},
- description: 'The name of the space.',
+ description: 'The name of the space',
},
{
displayName: 'Story ID',
@@ -355,7 +355,7 @@ export const storyManagementFields: INodeProperties[] = [
],
},
},
- description: 'Numeric ID of the story.',
+ description: 'Numeric ID of the story',
},
/* -------------------------------------------------------------------------- */
@@ -383,7 +383,7 @@ export const storyManagementFields: INodeProperties[] = [
],
},
},
- description: 'The name of the space.',
+ description: 'The name of the space',
},
{
displayName: 'Story ID',
@@ -404,7 +404,7 @@ export const storyManagementFields: INodeProperties[] = [
],
},
},
- description: 'Numeric ID of the story.',
+ description: 'Numeric ID of the story',
},
/* -------------------------------------------------------------------------- */
@@ -452,7 +452,7 @@ export const storyManagementFields: INodeProperties[] = [
},
},
default: false,
- description: 'Returns a list of your user contacts.',
+ description: 'Returns a list of your user contacts',
},
{
displayName: 'Limit',
@@ -479,7 +479,7 @@ export const storyManagementFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -506,7 +506,7 @@ export const storyManagementFields: INodeProperties[] = [
name: 'starts_with',
type: 'string',
default: '',
- description: 'Filter by slug.',
+ description: 'Filter by slug',
},
],
},
@@ -536,7 +536,7 @@ export const storyManagementFields: INodeProperties[] = [
],
},
},
- description: 'The name of the space.',
+ description: 'The name of the space',
},
{
displayName: 'Story ID',
@@ -557,7 +557,7 @@ export const storyManagementFields: INodeProperties[] = [
],
},
},
- description: 'Numeric ID of the story.',
+ description: 'Numeric ID of the story',
},
{
displayName: 'Options',
@@ -584,14 +584,14 @@ export const storyManagementFields: INodeProperties[] = [
name: 'releaseId',
type: 'string',
default: '',
- description: 'Numeric ID of release.',
+ description: 'Numeric ID of release',
},
{
displayName: 'Language',
name: 'language',
type: 'string',
default: '',
- description: 'Language code to publish the story individually (must be enabled in the space settings).',
+ description: 'Language code to publish the story individually (must be enabled in the space settings)',
},
],
},
@@ -621,7 +621,7 @@ export const storyManagementFields: INodeProperties[] = [
],
},
},
- description: 'The name of the space.',
+ description: 'The name of the space',
},
{
displayName: 'Story ID',
@@ -642,6 +642,6 @@ export const storyManagementFields: INodeProperties[] = [
],
},
},
- description: 'Numeric ID of the story.',
+ description: 'Numeric ID of the story',
},
];
diff --git a/packages/nodes-base/nodes/Strava/ActivityDescription.ts b/packages/nodes-base/nodes/Strava/ActivityDescription.ts
index d4e34765b1..ef5ed28c5a 100644
--- a/packages/nodes-base/nodes/Strava/ActivityDescription.ts
+++ b/packages/nodes-base/nodes/Strava/ActivityDescription.ts
@@ -124,7 +124,7 @@ export const activityFields: INodeProperties[] = [
],
},
},
- description: 'ISO 8601 formatted date time.',
+ description: 'ISO 8601 formatted date time',
},
{
displayName: 'Elapsed Time (Seconds)',
@@ -145,7 +145,7 @@ export const activityFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'In seconds.',
+ description: 'In seconds',
},
{
displayName: 'Additional Fields',
@@ -169,14 +169,14 @@ export const activityFields: INodeProperties[] = [
name: 'commute',
type: 'boolean',
default: false,
- description: 'Set to true to mark as commute.',
+ description: 'Set to true to mark as commute',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'Description of the activity.',
+ description: 'Description of the activity',
},
{
displayName: 'Distance',
@@ -186,14 +186,14 @@ export const activityFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'In meters.',
+ description: 'In meters',
},
{
displayName: 'Trainer',
name: 'trainer',
type: 'boolean',
default: false,
- description: 'Set to true to mark as a trainer activity.',
+ description: 'Set to true to mark as a trainer activity',
},
],
},
@@ -241,14 +241,14 @@ export const activityFields: INodeProperties[] = [
name: 'commute',
type: 'boolean',
default: false,
- description: 'Set to true to mark as commute.',
+ description: 'Set to true to mark as commute',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'Description of the activity.',
+ description: 'Description of the activity',
},
{
displayName: 'Gear ID',
@@ -276,7 +276,7 @@ export const activityFields: INodeProperties[] = [
name: 'trainer',
type: 'boolean',
default: false,
- description: 'Set to true to mark as a trainer activity.',
+ description: 'Set to true to mark as a trainer activity',
},
],
},
@@ -346,7 +346,7 @@ export const activityFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -373,7 +373,7 @@ export const activityFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Keys',
@@ -457,7 +457,7 @@ export const activityFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -481,6 +481,6 @@ export const activityFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Stripe/StripeTrigger.node.ts b/packages/nodes-base/nodes/Stripe/StripeTrigger.node.ts
index 9f90a50752..c4d63ce8a0 100644
--- a/packages/nodes-base/nodes/Stripe/StripeTrigger.node.ts
+++ b/packages/nodes-base/nodes/Stripe/StripeTrigger.node.ts
@@ -50,12 +50,12 @@ export class StripeTrigger implements INodeType {
type: 'multiOptions',
required: true,
default: [],
- description: 'The event to listen to.',
+ description: 'The event to listen to',
options: [
{
name: '*',
value: '*',
- description: 'Any time any event is triggered (Wildcard Event).',
+ description: 'Any time any event is triggered (Wildcard Event)',
},
{
'name': 'Account Updated',
diff --git a/packages/nodes-base/nodes/Stripe/descriptions/ChargeDescription.ts b/packages/nodes-base/nodes/Stripe/descriptions/ChargeDescription.ts
index 61341ac681..90bc081f25 100644
--- a/packages/nodes-base/nodes/Stripe/descriptions/ChargeDescription.ts
+++ b/packages/nodes-base/nodes/Stripe/descriptions/ChargeDescription.ts
@@ -281,7 +281,7 @@ export const chargeFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'ID of the charge to retrieve.',
+ description: 'ID of the charge to retrieve',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/SurveyMonkey/SurveyMonkeyTrigger.node.ts b/packages/nodes-base/nodes/SurveyMonkey/SurveyMonkeyTrigger.node.ts
index 812b47f807..e4c44a121b 100644
--- a/packages/nodes-base/nodes/SurveyMonkey/SurveyMonkeyTrigger.node.ts
+++ b/packages/nodes-base/nodes/SurveyMonkey/SurveyMonkeyTrigger.node.ts
@@ -341,7 +341,7 @@ export class SurveyMonkeyTrigger implements INodeType {
},
type: 'boolean',
default: true,
- description: 'Returns only the answers of the form and not any of the other data.',
+ description: 'Returns only the answers of the form and not any of the other data',
},
],
};
diff --git a/packages/nodes-base/nodes/Switch/Switch.node.ts b/packages/nodes-base/nodes/Switch/Switch.node.ts
index 15508723f5..c6909ea268 100644
--- a/packages/nodes-base/nodes/Switch/Switch.node.ts
+++ b/packages/nodes-base/nodes/Switch/Switch.node.ts
@@ -34,16 +34,16 @@ export class Switch implements INodeType {
{
name: 'Expression',
value: 'expression',
- description: 'Expression decides how to route data.',
+ description: 'Expression decides how to route data',
},
{
name: 'Rules',
value: 'rules',
- description: 'Rules decide how to route data.',
+ description: 'Rules decide how to route data',
},
],
default: 'rules',
- description: 'How data should be routed.',
+ description: 'How data should be routed',
},
@@ -66,7 +66,7 @@ export class Switch implements INodeType {
},
},
default: 0,
- description: 'The index of output to which to send data to.',
+ description: 'The index of output to which to send data to',
},
@@ -103,7 +103,7 @@ export class Switch implements INodeType {
},
],
default: 'number',
- description: 'The type of data to route on.',
+ description: 'The type of data to route on',
},
// ----------------------------------
@@ -124,7 +124,7 @@ export class Switch implements INodeType {
},
},
default: false,
- description: 'The value to compare with the second one.',
+ description: 'The value to compare with the second one',
},
{
displayName: 'Routing Rules',
@@ -144,7 +144,7 @@ export class Switch implements INodeType {
],
},
},
- description: 'The routing rules.',
+ description: 'The routing rules',
default: {},
options: [
{
@@ -166,14 +166,14 @@ export class Switch implements INodeType {
},
],
default: 'equal',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Value 2',
name: 'value2',
type: 'boolean',
default: false,
- description: 'The value to compare with the first one.',
+ description: 'The value to compare with the first one',
},
{
displayName: 'Output',
@@ -184,7 +184,7 @@ export class Switch implements INodeType {
maxValue: 3,
},
default: 0,
- description: 'The index of output to which to send data to if rule matches.',
+ description: 'The index of output to which to send data to if rule matches',
},
],
},
@@ -209,7 +209,7 @@ export class Switch implements INodeType {
},
},
default: '',
- description: 'The value to compare with the second one.',
+ description: 'The value to compare with the second one',
},
{
displayName: 'Routing Rules',
@@ -229,7 +229,7 @@ export class Switch implements INodeType {
],
},
},
- description: 'The routing rules.',
+ description: 'The routing rules',
default: {},
options: [
{
@@ -251,14 +251,14 @@ export class Switch implements INodeType {
},
],
default: 'after',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Value 2',
name: 'value2',
type: 'dateTime',
default: 0,
- description: 'The value to compare with the first one.',
+ description: 'The value to compare with the first one',
},
{
displayName: 'Output',
@@ -269,7 +269,7 @@ export class Switch implements INodeType {
maxValue: 3,
},
default: 0,
- description: 'The index of output to which to send data to if rule matches.',
+ description: 'The index of output to which to send data to if rule matches',
},
],
},
@@ -294,7 +294,7 @@ export class Switch implements INodeType {
},
},
default: 0,
- description: 'The value to compare with the second one.',
+ description: 'The value to compare with the second one',
},
{
displayName: 'Routing Rules',
@@ -314,7 +314,7 @@ export class Switch implements INodeType {
],
},
},
- description: 'The routing rules.',
+ description: 'The routing rules',
default: {},
options: [
{
@@ -352,14 +352,14 @@ export class Switch implements INodeType {
},
],
default: 'smaller',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Value 2',
name: 'value2',
type: 'number',
default: 0,
- description: 'The value to compare with the first one.',
+ description: 'The value to compare with the first one',
},
{
displayName: 'Output',
@@ -370,7 +370,7 @@ export class Switch implements INodeType {
maxValue: 3,
},
default: 0,
- description: 'The index of output to which to send data to if rule matches.',
+ description: 'The index of output to which to send data to if rule matches',
},
],
},
@@ -395,7 +395,7 @@ export class Switch implements INodeType {
},
},
default: '',
- description: 'The value to compare with the second one.',
+ description: 'The value to compare with the second one',
},
{
displayName: 'Routing Rules',
@@ -415,7 +415,7 @@ export class Switch implements INodeType {
],
},
},
- description: 'The routing rules.',
+ description: 'The routing rules',
default: {},
options: [
{
@@ -469,7 +469,7 @@ export class Switch implements INodeType {
},
],
default: 'equal',
- description: 'Operation to decide where the the data should be mapped to.',
+ description: 'Operation to decide where the the data should be mapped to',
},
{
displayName: 'Value 2',
@@ -484,7 +484,7 @@ export class Switch implements INodeType {
},
},
default: '',
- description: 'The value to compare with the first one.',
+ description: 'The value to compare with the first one',
},
{
displayName: 'Regex',
@@ -500,7 +500,7 @@ export class Switch implements INodeType {
},
default: '',
placeholder: '/text/i',
- description: 'The regex which has to match.',
+ description: 'The regex which has to match',
},
{
displayName: 'Output',
@@ -511,7 +511,7 @@ export class Switch implements INodeType {
maxValue: 3,
},
default: 0,
- description: 'The index of output to which to send data to if rule matches.',
+ description: 'The index of output to which to send data to if rule matches',
},
],
},
@@ -554,7 +554,7 @@ export class Switch implements INodeType {
},
],
default: -1,
- description: 'The output to which to route all items which do not match any of the rules.',
+ description: 'The output to which to route all items which do not match any of the rules',
},
],
diff --git a/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/create/description.ts b/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/create/description.ts
index 5bf3a7068c..3a38ca3ccb 100644
--- a/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/create/description.ts
+++ b/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/create/description.ts
@@ -111,7 +111,7 @@ export const customerCreateDescription: CustomerProperties = [
name: 'referredBy',
type: 'string',
default: '',
- description: 'Source from which customer is referred to the platform like Linkedin, Google, Customer name etc.',
+ description: 'Source from which customer is referred to the platform like Linkedin, Google, Customer name etc',
},
],
},
diff --git a/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/getAll/description.ts b/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/getAll/description.ts
index 357454fc79..a336b5413d 100644
--- a/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/getAll/description.ts
+++ b/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/getAll/description.ts
@@ -94,7 +94,7 @@ export const customerGetAllDescription: CustomerProperties = [
type: 'string',
default: '',
placeholder: 'John Doe',
- description: 'Search query, it can be anything related to customer data like name etc.',
+ description: 'Search query, it can be anything related to customer data like name etc',
},
{
displayName: 'Sort',
@@ -102,7 +102,7 @@ export const customerGetAllDescription: CustomerProperties = [
type: 'string',
default: '',
placeholder: 'firstname ASC',
- description: 'customer field to order by, eg: "firstname ASC", "city DESC" etc.',
+ description: 'customer field to order by, eg: "firstname ASC", "city DESC" etc',
},
],
},
diff --git a/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/update/description.ts b/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/update/description.ts
index 5417e1d3b2..2b2d1fe85f 100644
--- a/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/update/description.ts
+++ b/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/update/description.ts
@@ -117,7 +117,7 @@ export const customerUpdateDescription: CustomerProperties = [
name: 'referredBy',
type: 'string',
default: '',
- description: 'Source from which customer is referred to the platform like Linkedin, Google, Customer name etc.',
+ description: 'Source from which customer is referred to the platform like Linkedin, Google, Customer name etc',
},
],
},
diff --git a/packages/nodes-base/nodes/SyncroMSP/v1/actions/ticket/getAll/description.ts b/packages/nodes-base/nodes/SyncroMSP/v1/actions/ticket/getAll/description.ts
index d60fbcc7b7..59d5362d71 100644
--- a/packages/nodes-base/nodes/SyncroMSP/v1/actions/ticket/getAll/description.ts
+++ b/packages/nodes-base/nodes/SyncroMSP/v1/actions/ticket/getAll/description.ts
@@ -64,7 +64,7 @@ export const ticketGetAllDescription: TicketProperties = [
type: 'string',
default: '',
placeholder: 'John Doe',
- description: 'Search query, it can be anything related to ticket data like user etc.',
+ description: 'Search query, it can be anything related to ticket data like user etc',
},
{
displayName: 'Status',
diff --git a/packages/nodes-base/nodes/Tapfiliate/AffiliateDescription.ts b/packages/nodes-base/nodes/Tapfiliate/AffiliateDescription.ts
index 631ea74178..96219c81a1 100644
--- a/packages/nodes-base/nodes/Tapfiliate/AffiliateDescription.ts
+++ b/packages/nodes-base/nodes/Tapfiliate/AffiliateDescription.ts
@@ -61,7 +61,7 @@ export const affiliateFields: INodeProperties[] = [
],
},
},
- description: `The affiliate’s email.`,
+ description: 'The affiliate’s email',
},
{
displayName: 'First Name',
@@ -79,7 +79,7 @@ export const affiliateFields: INodeProperties[] = [
},
},
default: '',
- description: `The affiliate’s firstname.`,
+ description: 'The affiliate’s firstname',
},
{
displayName: 'Last Name',
@@ -97,7 +97,7 @@ export const affiliateFields: INodeProperties[] = [
},
},
default: '',
- description: `The affiliate’s lastname.`,
+ description: 'The affiliate’s lastname',
},
{
displayName: 'Additional Fields',
@@ -176,7 +176,7 @@ export const affiliateFields: INodeProperties[] = [
name: 'companyName',
type: 'string',
default: '',
- description: `The affiliate’s company data.`,
+ description: 'The affiliate’s company data',
},
],
},
@@ -200,7 +200,7 @@ export const affiliateFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the affiliate.',
+ description: 'The ID of the affiliate',
},
/* -------------------------------------------------------------------------- */
@@ -222,7 +222,7 @@ export const affiliateFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the affiliate.',
+ description: 'The ID of the affiliate',
},
/* -------------------------------------------------------------------------- */
@@ -243,7 +243,7 @@ export const affiliateFields: INodeProperties[] = [
},
},
default: false,
- description: 'If set to true, all the results will be returned.',
+ description: 'If set to true, all the results will be returned',
},
{
displayName: 'Limit',
@@ -267,7 +267,7 @@ export const affiliateFields: INodeProperties[] = [
maxValue: 1000,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -291,14 +291,14 @@ export const affiliateFields: INodeProperties[] = [
name: 'affiliate_group_id',
type: 'string',
default: '',
- description: 'Retrieves affiliates for a certain affiliate group.',
+ description: 'Retrieves affiliates for a certain affiliate group',
},
{
displayName: 'Click ID',
name: 'click_id',
type: 'string',
default: '',
- description: 'Click ID.',
+ description: 'Click ID',
},
{
displayName: 'Email',
@@ -312,7 +312,7 @@ export const affiliateFields: INodeProperties[] = [
name: 'parentId',
type: 'string',
default: '',
- description: 'Retrieves children for a certain parent affiliate.',
+ description: 'Retrieves children for a certain parent affiliate',
},
{
displayName: 'Referral Code',
@@ -326,7 +326,7 @@ export const affiliateFields: INodeProperties[] = [
name: 'source_id',
type: 'string',
default: '',
- description: 'The Source ID.',
+ description: 'The Source ID',
},
],
},
diff --git a/packages/nodes-base/nodes/Tapfiliate/AffiliateMetadataDescription.ts b/packages/nodes-base/nodes/Tapfiliate/AffiliateMetadataDescription.ts
index 2ce45e67bb..3dc70501de 100644
--- a/packages/nodes-base/nodes/Tapfiliate/AffiliateMetadataDescription.ts
+++ b/packages/nodes-base/nodes/Tapfiliate/AffiliateMetadataDescription.ts
@@ -56,7 +56,7 @@ export const affiliateMetadataFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the affiliate.',
+ description: 'The ID of the affiliate',
},
{
displayName: 'Metadata',
@@ -88,14 +88,14 @@ export const affiliateMetadataFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -121,7 +121,7 @@ export const affiliateMetadataFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the affiliate.',
+ description: 'The ID of the affiliate',
},
{
displayName: 'Key',
@@ -138,7 +138,7 @@ export const affiliateMetadataFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of the metadata key to remove.',
+ description: 'Name of the metadata key to remove',
},
/* -------------------------------------------------------------------------- */
@@ -160,7 +160,7 @@ export const affiliateMetadataFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the affiliate.',
+ description: 'The ID of the affiliate',
},
{
displayName: 'Key',
@@ -177,7 +177,7 @@ export const affiliateMetadataFields: INodeProperties[] = [
},
},
default: '',
- description: 'Name of the metadata key to update.',
+ description: 'Name of the metadata key to update',
},
{
displayName: 'Value',
@@ -194,6 +194,6 @@ export const affiliateMetadataFields: INodeProperties[] = [
},
},
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
];
diff --git a/packages/nodes-base/nodes/Tapfiliate/ProgramAffiliateDescription.ts b/packages/nodes-base/nodes/Tapfiliate/ProgramAffiliateDescription.ts
index ac29852806..a2cf594e62 100644
--- a/packages/nodes-base/nodes/Tapfiliate/ProgramAffiliateDescription.ts
+++ b/packages/nodes-base/nodes/Tapfiliate/ProgramAffiliateDescription.ts
@@ -87,7 +87,7 @@ export const programAffiliateFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the affiliate.',
+ description: 'The ID of the affiliate',
},
{
displayName: 'Additional Fields',
@@ -111,14 +111,14 @@ export const programAffiliateFields: INodeProperties[] = [
name: 'approved',
type: 'boolean',
default: true,
- description: `An optional approval status.`,
+ description: 'An optional approval status',
},
{
displayName: 'Coupon',
name: 'coupon',
type: 'string',
default: '',
- description: 'An optional coupon for this affiliate.',
+ description: 'An optional coupon for this affiliate',
},
],
},
@@ -161,7 +161,7 @@ export const programAffiliateFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the affiliate.',
+ description: 'The ID of the affiliate',
},
/* -------------------------------------------------------------------------- */
@@ -202,7 +202,7 @@ export const programAffiliateFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the affiliate.',
+ description: 'The ID of the affiliate',
},
/* -------------------------------------------------------------------------- */
@@ -245,7 +245,7 @@ export const programAffiliateFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the affiliate.',
+ description: 'The ID of the affiliate',
},
/* -------------------------------------------------------------------------- */
@@ -287,7 +287,7 @@ export const programAffiliateFields: INodeProperties[] = [
},
},
default: false,
- description: 'If set to true, all the results will be returned.',
+ description: 'If set to true, all the results will be returned',
},
{
displayName: 'Limit',
@@ -311,7 +311,7 @@ export const programAffiliateFields: INodeProperties[] = [
maxValue: 1000,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -335,28 +335,28 @@ export const programAffiliateFields: INodeProperties[] = [
name: 'affiliate_group_id',
type: 'string',
default: '',
- description: 'Retrieves affiliates for a certain affiliate group.',
+ description: 'Retrieves affiliates for a certain affiliate group',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'An email address.',
+ description: 'An email address',
},
{
displayName: 'Parent ID',
name: 'parentId',
type: 'string',
default: '',
- description: 'Retrieves children for a certain parent affiliate.',
+ description: 'Retrieves children for a certain parent affiliate',
},
{
displayName: 'Source ID',
name: 'source_id',
type: 'string',
default: '',
- description: 'Source ID.',
+ description: 'Source ID',
},
],
},
diff --git a/packages/nodes-base/nodes/Telegram/Telegram.node.ts b/packages/nodes-base/nodes/Telegram/Telegram.node.ts
index 5904dff36c..8deb411ea1 100644
--- a/packages/nodes-base/nodes/Telegram/Telegram.node.ts
+++ b/packages/nodes-base/nodes/Telegram/Telegram.node.ts
@@ -118,27 +118,27 @@ export class Telegram implements INodeType {
{
name: 'Get',
value: 'get',
- description: 'Get up to date information about a chat.',
+ description: 'Get up to date information about a chat',
},
{
name: 'Leave',
value: 'leave',
- description: 'Leave a group, supergroup or channel.',
+ description: 'Leave a group, supergroup or channel',
},
{
name: 'Member',
value: 'member',
- description: 'Get the member of a chat.',
+ description: 'Get the member of a chat',
},
{
name: 'Set Description',
value: 'setDescription',
- description: 'Set the description of a chat.',
+ description: 'Set the description of a chat',
},
{
name: 'Set Title',
value: 'setTitle',
- description: 'Set the title of a chat.',
+ description: 'Set the title of a chat',
},
],
default: 'get',
@@ -160,12 +160,12 @@ export class Telegram implements INodeType {
{
name: 'Answer Query',
value: 'answerQuery',
- description: 'Send answer to callback query sent from inline keyboard.',
+ description: 'Send answer to callback query sent from inline keyboard',
},
{
name: 'Answer Inline Query',
value: 'answerInlineQuery',
- description: 'Send answer to callback query sent from inline bot.',
+ description: 'Send answer to callback query sent from inline bot',
},
],
default: 'answerQuery',
@@ -186,7 +186,7 @@ export class Telegram implements INodeType {
{
name: 'Get',
value: 'get',
- description: 'Get a file.',
+ description: 'Get a file',
},
],
default: 'get',
@@ -319,7 +319,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'Unique identifier for the target chat or username of the target channel (in the format @channelusername).',
+ description: 'Unique identifier for the target chat or username of the target channel (in the format @channelusername)',
},
// ----------------------------------
@@ -341,7 +341,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'Unique identifier of the message to delete.',
+ description: 'Unique identifier of the message to delete',
},
// ----------------------------------
@@ -364,7 +364,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'Unique identifier of the message to pin or unpin.',
+ description: 'Unique identifier of the message to pin or unpin',
},
{
displayName: 'Additional Fields',
@@ -388,7 +388,7 @@ export class Telegram implements INodeType {
name: 'disable_notification',
type: 'boolean',
default: false,
- description: 'Do not send a notification to all chat members about the new pinned message.',
+ description: 'Do not send a notification to all chat members about the new pinned message',
},
],
},
@@ -416,7 +416,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'Unique identifier of the target user.',
+ description: 'Unique identifier of the target user',
},
@@ -439,7 +439,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'New chat description, 0-255 characters.',
+ description: 'New chat description, 0-255 characters',
},
@@ -462,7 +462,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'New chat title, 1-255 characters.',
+ description: 'New chat title, 1-255 characters',
},
@@ -489,7 +489,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'Unique identifier for the query to be answered.',
+ description: 'Unique identifier for the query to be answered',
},
{
@@ -517,14 +517,14 @@ export class Telegram implements INodeType {
minValue: 0,
},
default: 0,
- description: 'The maximum amount of time in seconds that the result of the callback query may be cached client-side.',
+ description: 'The maximum amount of time in seconds that the result of the callback query may be cached client-side',
},
{
displayName: 'Show Alert',
name: 'show_alert',
type: 'boolean',
default: false,
- description: 'If true, an alert will be shown by the client instead of a notification at the top of the chat screen.',
+ description: 'If true, an alert will be shown by the client instead of a notification at the top of the chat screen',
},
{
displayName: 'Text',
@@ -541,7 +541,7 @@ export class Telegram implements INodeType {
name: 'url',
type: 'string',
default: '',
- description: 'URL that will be opened by the user\'s client.',
+ description: 'URL that will be opened by the user\'s client',
},
],
},
@@ -565,7 +565,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'Unique identifier for the answered query.',
+ description: 'Unique identifier for the answered query',
},
{
displayName: 'Results',
@@ -583,7 +583,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'A JSON-serialized array of results for the inline query.',
+ description: 'A JSON-serialized array of results for the inline query',
},
{
displayName: 'Additional Fields',
@@ -610,14 +610,14 @@ export class Telegram implements INodeType {
minValue: 0,
},
default: 0,
- description: 'The maximum amount of time in seconds that the result of the callback query may be cached client-side.',
+ description: 'The maximum amount of time in seconds that the result of the callback query may be cached client-side',
},
{
displayName: 'Show Alert',
name: 'show_alert',
type: 'boolean',
default: false,
- description: 'If true, an alert will be shown by the client instead of a notification at the top of the chat screen.',
+ description: 'If true, an alert will be shown by the client instead of a notification at the top of the chat screen',
},
{
displayName: 'Text',
@@ -634,7 +634,7 @@ export class Telegram implements INodeType {
name: 'url',
type: 'string',
default: '',
- description: 'URL that will be opened by the user\'s client.',
+ description: 'URL that will be opened by the user\'s client',
},
],
},
@@ -664,7 +664,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'The ID of the file.',
+ description: 'The ID of the file',
},
{
displayName: 'Download',
@@ -681,7 +681,7 @@ export class Telegram implements INodeType {
},
},
default: true,
- description: 'Download the file.',
+ description: 'Download the file',
},
// ----------------------------------
@@ -717,7 +717,7 @@ export class Telegram implements INodeType {
},
],
default: 'message',
- description: 'The type of the message to edit.',
+ description: 'The type of the message to edit',
},
{
@@ -766,7 +766,7 @@ export class Telegram implements INodeType {
],
},
},
- description: 'If the data to upload should be taken from binary field.',
+ description: 'If the data to upload should be taken from binary field',
},
{
displayName: 'Binary Property',
@@ -815,7 +815,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'Unique identifier of the message to edit.',
+ description: 'Unique identifier of the message to edit',
},
{
displayName: 'Inline Message ID',
@@ -836,7 +836,7 @@ export class Telegram implements INodeType {
},
},
required: true,
- description: 'Unique identifier of the inline message to edit.',
+ description: 'Unique identifier of the inline message to edit',
},
{
displayName: 'Reply Markup',
@@ -863,7 +863,7 @@ export class Telegram implements INodeType {
},
],
default: 'none',
- description: 'Additional interface options.',
+ description: 'Additional interface options',
},
@@ -1076,7 +1076,7 @@ export class Telegram implements INodeType {
],
},
},
- description: 'The media to add.',
+ description: 'The media to add',
placeholder: 'Add Media',
typeOptions: {
multipleValues: true,
@@ -1102,7 +1102,7 @@ export class Telegram implements INodeType {
},
],
default: 'photo',
- description: 'The type of the media to add.',
+ description: 'The type of the media to add',
},
{
displayName: 'Media File',
@@ -1126,7 +1126,7 @@ export class Telegram implements INodeType {
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Caption text to set, 0-1024 characters.',
+ description: 'Caption text to set, 0-1024 characters',
},
{
displayName: 'Parse Mode',
@@ -1143,7 +1143,7 @@ export class Telegram implements INodeType {
},
],
default: 'HTML',
- description: 'How to parse the text.',
+ description: 'How to parse the text',
},
],
},
@@ -1176,7 +1176,7 @@ export class Telegram implements INodeType {
],
},
},
- description: 'Text of the message to be sent.',
+ description: 'Text of the message to be sent',
},
@@ -1302,7 +1302,7 @@ export class Telegram implements INodeType {
},
],
default: 'none',
- description: 'Additional interface options.',
+ description: 'Additional interface options',
},
{
@@ -1327,14 +1327,14 @@ export class Telegram implements INodeType {
name: 'force_reply',
type: 'boolean',
default: false,
- description: 'Shows reply interface to the user, as if they manually selected the bot‘s message and tapped ’Reply.',
+ description: 'Shows reply interface to the user, as if they manually selected the bot‘s message and tapped ’Reply',
},
{
displayName: 'Selective',
name: 'selective',
type: 'boolean',
default: false,
- description: ' Use this parameter if you want to force reply from specific users only.',
+ description: ' Use this parameter if you want to force reply from specific users only',
},
],
},
@@ -1344,7 +1344,7 @@ export class Telegram implements INodeType {
displayName: 'Inline Keyboard',
name: 'inlineKeyboard',
placeholder: 'Add Keyboard Row',
- description: 'Adds an inline keyboard that appears right next to the message it belongs to.',
+ description: 'Adds an inline keyboard that appears right next to the message it belongs to',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -1369,7 +1369,7 @@ export class Telegram implements INodeType {
displayName: 'Row',
name: 'row',
type: 'fixedCollection',
- description: 'The value to set.',
+ description: 'The value to set',
placeholder: 'Add Button',
typeOptions: {
multipleValues: true,
@@ -1385,7 +1385,7 @@ export class Telegram implements INodeType {
name: 'text',
type: 'string',
default: '',
- description: 'Label text on the button.',
+ description: 'Label text on the button',
},
{
displayName: 'Additional Fields',
@@ -1399,21 +1399,21 @@ export class Telegram implements INodeType {
name: 'callback_data',
type: 'string',
default: '',
- description: 'Data to be sent in a callback query to the bot when button is pressed, 1-64 bytes.',
+ description: 'Data to be sent in a callback query to the bot when button is pressed, 1-64 bytes',
},
{
displayName: 'Pay',
name: 'pay',
type: 'boolean',
default: false,
- description: 'Specify True, to send a Pay button.',
+ description: 'Specify True, to send a Pay button',
},
{
displayName: 'Switch Inline Query Current Chat',
name: 'switch_inline_query_current_chat',
type: 'string',
default: '',
- description: 'If set, pressing the button will insert the bot‘s username and the specified inline query in the current chat\'s input field.Can be empty, in which case only the bot’s username will be inserted.',
+ description: 'If set, pressing the button will insert the bot‘s username and the specified inline query in the current chat\'s input field.Can be empty, in which case only the bot’s username will be inserted',
},
{
displayName: 'Switch Inline Query',
@@ -1427,7 +1427,7 @@ export class Telegram implements INodeType {
name: 'url',
type: 'string',
default: '',
- description: 'HTTP or tg:// url to be opened when button is pressed.',
+ description: 'HTTP or tg:// url to be opened when button is pressed',
},
],
},
@@ -1444,7 +1444,7 @@ export class Telegram implements INodeType {
displayName: 'Reply Keyboard',
name: 'replyKeyboard',
placeholder: 'Add Reply Keyboard Row',
- description: 'Adds a custom keyboard with reply options.',
+ description: 'Adds a custom keyboard with reply options',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -1466,7 +1466,7 @@ export class Telegram implements INodeType {
displayName: 'Row',
name: 'row',
type: 'fixedCollection',
- description: 'The value to set.',
+ description: 'The value to set',
placeholder: 'Add Button',
typeOptions: {
multipleValues: true,
@@ -1496,14 +1496,14 @@ export class Telegram implements INodeType {
name: 'request_contact',
type: 'boolean',
default: false,
- description: 'If True, the user\'s phone number will be sent as a contact when the button is pressed.Available in private chats only.',
+ description: 'If True, the user\'s phone number will be sent as a contact when the button is pressed.Available in private chats only',
},
{
displayName: 'Request Location',
name: 'request_location',
type: 'boolean',
default: false,
- description: 'If True, the user\'s request_location.',
+ description: 'If True, the user\'s request_location',
},
],
},
@@ -1535,21 +1535,21 @@ export class Telegram implements INodeType {
name: 'resize_keyboard',
type: 'boolean',
default: false,
- description: 'Requests clients to resize the keyboard vertically for optimal fit.',
+ description: 'Requests clients to resize the keyboard vertically for optimal fit',
},
{
displayName: 'One Time Keyboard',
name: 'one_time_keyboard',
type: 'boolean',
default: false,
- description: 'Requests clients to hide the keyboard as soon as it\'s been used.',
+ description: 'Requests clients to hide the keyboard as soon as it\'s been used',
},
{
displayName: 'Selective',
name: 'selective',
type: 'boolean',
default: false,
- description: 'Use this parameter if you want to show the keyboard to specific users only.',
+ description: 'Use this parameter if you want to show the keyboard to specific users only',
},
],
},
@@ -1573,14 +1573,14 @@ export class Telegram implements INodeType {
name: 'remove_keyboard',
type: 'boolean',
default: false,
- description: 'Requests clients to remove the custom keyboard.',
+ description: 'Requests clients to remove the custom keyboard',
},
{
displayName: 'Selective',
name: 'selective',
type: 'boolean',
default: false,
- description: ' Use this parameter if you want to force reply from specific users only.',
+ description: ' Use this parameter if you want to force reply from specific users only',
},
],
},
@@ -1630,7 +1630,7 @@ export class Telegram implements INodeType {
},
},
default: '',
- description: 'Caption text to set, 0-1024 characters.',
+ description: 'Caption text to set, 0-1024 characters',
},
{
displayName: 'Disable Notification',
@@ -1659,7 +1659,7 @@ export class Telegram implements INodeType {
},
},
default: false,
- description: 'Disables link previews for links in this message.',
+ description: 'Disables link previews for links in this message',
},
{
displayName: 'Duration',
@@ -1678,7 +1678,7 @@ export class Telegram implements INodeType {
},
},
default: 0,
- description: 'Duration of clip in seconds.',
+ description: 'Duration of clip in seconds',
},
{
displayName: 'Height',
@@ -1696,7 +1696,7 @@ export class Telegram implements INodeType {
},
},
default: 0,
- description: 'Height of the video.',
+ description: 'Height of the video',
},
{
displayName: 'Parse Mode',
@@ -1725,7 +1725,7 @@ export class Telegram implements INodeType {
},
},
default: 'HTML',
- description: 'How to parse the text.',
+ description: 'How to parse the text',
},
{
displayName: 'Performer',
@@ -1739,7 +1739,7 @@ export class Telegram implements INodeType {
},
},
default: '',
- description: 'Name of the performer.',
+ description: 'Name of the performer',
},
{
displayName: 'Reply To Message ID',
@@ -1753,7 +1753,7 @@ export class Telegram implements INodeType {
},
},
default: 0,
- description: 'If the message is a reply, ID of the original message.',
+ description: 'If the message is a reply, ID of the original message',
},
{
displayName: 'Title',
@@ -1770,7 +1770,7 @@ export class Telegram implements INodeType {
},
},
default: '',
- description: 'Title of the track.',
+ description: 'Title of the track',
},
{
displayName: 'Thumbnail',
@@ -1805,7 +1805,7 @@ export class Telegram implements INodeType {
},
},
default: 0,
- description: 'Width of the video.',
+ description: 'Width of the video',
},
],
},
diff --git a/packages/nodes-base/nodes/Telegram/TelegramTrigger.node.ts b/packages/nodes-base/nodes/Telegram/TelegramTrigger.node.ts
index b45426e02f..75a6b20e53 100644
--- a/packages/nodes-base/nodes/Telegram/TelegramTrigger.node.ts
+++ b/packages/nodes-base/nodes/Telegram/TelegramTrigger.node.ts
@@ -56,37 +56,37 @@ export class TelegramTrigger implements INodeType {
{
name: '*',
value: '*',
- description: 'All updates.',
+ description: 'All updates',
},
{
name: 'message',
value: 'message',
- description: 'Trigger on new incoming message of any kind — text, photo, sticker, etc..',
+ description: 'Trigger on new incoming message of any kind — text, photo, sticker, etc',
},
{
name: 'edited_message',
value: 'edited_message',
- description: 'Trigger on new version of a channel post that is known to the bot and was edited.',
+ description: 'Trigger on new version of a channel post that is known to the bot and was edited',
},
{
name: 'channel_post',
value: 'channel_post',
- description: 'Trigger on new incoming channel post of any kind — text, photo, sticker, etc..',
+ description: 'Trigger on new incoming channel post of any kind — text, photo, sticker, etc',
},
{
name: 'edited_channel_post',
value: 'edited_channel_post',
- description: 'Trigger on new version of a channel post that is known to the bot and was edited.',
+ description: 'Trigger on new version of a channel post that is known to the bot and was edited',
},
{
name: 'inline_query',
value: 'inline_query',
- description: 'Trigger on new incoming inline query.',
+ description: 'Trigger on new incoming inline query',
},
{
name: 'callback_query',
value: 'callback_query',
- description: 'Trigger on new incoming callback query.',
+ description: 'Trigger on new incoming callback query',
},
{
@@ -107,7 +107,7 @@ export class TelegramTrigger implements INodeType {
],
required: true,
default: [],
- description: 'The update types to listen to.',
+ description: 'The update types to listen to',
},
{
displayName: 'Additional Fields',
diff --git a/packages/nodes-base/nodes/TheHive/TheHiveTrigger.node.ts b/packages/nodes-base/nodes/TheHive/TheHiveTrigger.node.ts
index 110dc26126..35dba06f33 100644
--- a/packages/nodes-base/nodes/TheHive/TheHiveTrigger.node.ts
+++ b/packages/nodes-base/nodes/TheHive/TheHiveTrigger.node.ts
@@ -43,7 +43,7 @@ export class TheHiveTrigger implements INodeType {
{
name: '*',
value: '*',
- description: 'Any time any event is triggered (Wildcard Event).',
+ description: 'Any time any event is triggered (Wildcard Event)',
},
{
name: 'Alert Created',
diff --git a/packages/nodes-base/nodes/TheHive/descriptions/AlertDescription.ts b/packages/nodes-base/nodes/TheHive/descriptions/AlertDescription.ts
index 5e26f1ab8a..e74f4e78b5 100644
--- a/packages/nodes-base/nodes/TheHive/descriptions/AlertDescription.ts
+++ b/packages/nodes-base/nodes/TheHive/descriptions/AlertDescription.ts
@@ -42,7 +42,7 @@ export const alertFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -66,7 +66,7 @@ export const alertFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// required attributs
{
@@ -506,7 +506,7 @@ export const alertFields: INodeProperties[] = [
name: 'caseTemplate',
type: 'string',
default: '',
- description: `Case template to use when a case is created from this alert.`,
+ description: 'Case template to use when a case is created from this alert',
},
{
displayName: 'Custom Fields',
@@ -590,7 +590,7 @@ export const alertFields: INodeProperties[] = [
name: 'caseTemplate',
type: 'string',
default: '',
- description: `Case template to use when a case is created from this alert.`,
+ description: 'Case template to use when a case is created from this alert',
},
],
},
@@ -739,7 +739,7 @@ export const alertFields: INodeProperties[] = [
type: 'string',
required: false,
default: '',
- description: `Case template to use when a case is created from this alert.`,
+ description: 'Case template to use when a case is created from this alert',
},
{
displayName: 'Description',
@@ -747,14 +747,14 @@ export const alertFields: INodeProperties[] = [
type: 'string',
required: false,
default: '',
- description: 'Description of the alert.',
+ description: 'Description of the alert',
},
{
displayName: 'Follow',
name: 'follow',
type: 'boolean',
default: true,
- description: 'if true, the alert becomes active when updated default=true.',
+ description: 'if true, the alert becomes active when updated default=true',
},
{
displayName: 'Severity',
@@ -814,7 +814,7 @@ export const alertFields: INodeProperties[] = [
type: 'string',
required: false,
default: '',
- description: 'Title of the alert.',
+ description: 'Title of the alert',
},
{
displayName: 'TLP',
@@ -928,7 +928,7 @@ export const alertFields: INodeProperties[] = [
name: 'description',
type: 'string',
default: '',
- description: 'Description of the alert.',
+ description: 'Description of the alert',
},
{
displayName: 'Follow',
diff --git a/packages/nodes-base/nodes/TheHive/descriptions/CaseDescription.ts b/packages/nodes-base/nodes/TheHive/descriptions/CaseDescription.ts
index 42d4cbb689..0ffe938b29 100644
--- a/packages/nodes-base/nodes/TheHive/descriptions/CaseDescription.ts
+++ b/packages/nodes-base/nodes/TheHive/descriptions/CaseDescription.ts
@@ -45,7 +45,7 @@ export const caseFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -69,7 +69,7 @@ export const caseFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// Required fields
{
diff --git a/packages/nodes-base/nodes/TheHive/descriptions/LogDescription.ts b/packages/nodes-base/nodes/TheHive/descriptions/LogDescription.ts
index e9cf068237..edd8a5a674 100644
--- a/packages/nodes-base/nodes/TheHive/descriptions/LogDescription.ts
+++ b/packages/nodes-base/nodes/TheHive/descriptions/LogDescription.ts
@@ -76,7 +76,7 @@ export const logFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -100,7 +100,7 @@ export const logFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// required attributs
{
@@ -251,7 +251,7 @@ export const logFields: INodeProperties[] = [
name: 'binaryProperty',
type: 'string',
default: 'data',
- description: 'Object property name which holds binary data.',
+ description: 'Object property name which holds binary data',
},
],
},
diff --git a/packages/nodes-base/nodes/TheHive/descriptions/ObservableDescription.ts b/packages/nodes-base/nodes/TheHive/descriptions/ObservableDescription.ts
index 434c8b924b..58657c4779 100644
--- a/packages/nodes-base/nodes/TheHive/descriptions/ObservableDescription.ts
+++ b/packages/nodes-base/nodes/TheHive/descriptions/ObservableDescription.ts
@@ -65,7 +65,7 @@ export const observableFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -90,7 +90,7 @@ export const observableFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// required attributs
{
diff --git a/packages/nodes-base/nodes/TheHive/descriptions/TaskDescription.ts b/packages/nodes-base/nodes/TheHive/descriptions/TaskDescription.ts
index 4df6e92eeb..938218e209 100644
--- a/packages/nodes-base/nodes/TheHive/descriptions/TaskDescription.ts
+++ b/packages/nodes-base/nodes/TheHive/descriptions/TaskDescription.ts
@@ -80,7 +80,7 @@ export const taskFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -105,7 +105,7 @@ export const taskFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Title',
diff --git a/packages/nodes-base/nodes/TimescaleDb/TimescaleDb.node.ts b/packages/nodes-base/nodes/TimescaleDb/TimescaleDb.node.ts
index 4ca2dd209c..e1d6e6b03a 100644
--- a/packages/nodes-base/nodes/TimescaleDb/TimescaleDb.node.ts
+++ b/packages/nodes-base/nodes/TimescaleDb/TimescaleDb.node.ts
@@ -115,7 +115,7 @@ export class TimescaleDb implements INodeType {
},
default: '',
required: true,
- description: 'Name of the table in which to insert data to.',
+ description: 'Name of the table in which to insert data to',
},
{
displayName: 'Columns',
@@ -130,7 +130,7 @@ export class TimescaleDb implements INodeType {
},
default: '',
placeholder: 'id,name,description',
- description: `Comma-separated list of the properties which should used as columns for the new rows.`,
+ description: 'Comma-separated list of the properties which should used as columns for the new rows',
},
// ----------------------------------
@@ -195,7 +195,7 @@ export class TimescaleDb implements INodeType {
},
default: '',
placeholder: 'name,description',
- description: 'Comma-separated list of the properties which should used as columns for rows to update.',
+ description: 'Comma-separated list of the properties which should used as columns for rows to update',
},
// ----------------------------------
// insert,update
@@ -259,7 +259,7 @@ export class TimescaleDb implements INodeType {
},
default: '',
placeholder: 'quantity,price',
- description: 'Comma-separated list of properties which should be used as query parameters.',
+ description: 'Comma-separated list of properties which should be used as query parameters',
},
],
},
diff --git a/packages/nodes-base/nodes/Todoist/Todoist.node.ts b/packages/nodes-base/nodes/Todoist/Todoist.node.ts
index 04c3d05e56..e1b6239d65 100644
--- a/packages/nodes-base/nodes/Todoist/Todoist.node.ts
+++ b/packages/nodes-base/nodes/Todoist/Todoist.node.ts
@@ -96,7 +96,7 @@ export class Todoist implements INodeType {
{
name: 'Task',
value: 'task',
- description: 'Task resource.',
+ description: 'Task resource',
},
],
default: 'task',
@@ -173,7 +173,7 @@ export class Todoist implements INodeType {
},
},
default: '',
- description: 'The project you want to operate on.',
+ description: 'The project you want to operate on',
},
{
displayName: 'Labels',
@@ -260,14 +260,14 @@ export class Todoist implements INodeType {
name: 'description',
type: 'string',
default: '',
- description: 'A description for the task.',
+ description: 'A description for the task',
},
{
displayName: 'Due Date Time',
name: 'dueDateTime',
type: 'dateTime',
default: '',
- description: 'Specific date and time in RFC3339 format in UTC.',
+ description: 'Specific date and time in RFC3339 format in UTC',
},
{
displayName: 'Due String',
@@ -281,7 +281,7 @@ export class Todoist implements INodeType {
name: 'dueLang',
type: 'string',
default: '',
- description: '2-letter code specifying language in case due_string is not written in English.',
+ description: '2-letter code specifying language in case due_string is not written in English',
},
{
displayName: 'Priority',
@@ -292,7 +292,7 @@ export class Todoist implements INodeType {
minValue: 1,
},
default: 1,
- description: 'Task priority from 1 (normal) to 4 (urgent).',
+ description: 'Task priority from 1 (normal) to 4 (urgent)',
},
{
displayName: 'Section',
@@ -305,7 +305,7 @@ export class Todoist implements INodeType {
],
},
default: {},
- description: 'The section you want to operate on.',
+ description: 'The section you want to operate on',
},
],
},
@@ -324,7 +324,7 @@ export class Todoist implements INodeType {
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -348,7 +348,7 @@ export class Todoist implements INodeType {
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -379,7 +379,7 @@ export class Todoist implements INodeType {
name: 'ids',
type: 'string',
default: '',
- description: 'A list of the task IDs to retrieve, this should be a comma-separated list.',
+ description: 'A list of the task IDs to retrieve, this should be a comma-separated list',
},
{
displayName: 'Label ID',
@@ -389,7 +389,7 @@ export class Todoist implements INodeType {
loadOptionsMethod: 'getLabels',
},
default: {},
- description: 'Filter tasks by label.',
+ description: 'Filter tasks by label',
},
{
displayName: 'Lang',
@@ -406,7 +406,7 @@ export class Todoist implements INodeType {
loadOptionsMethod: 'getProjects',
},
default: '',
- description: 'Filter tasks by project id.',
+ description: 'Filter tasks by project id',
},
],
},
@@ -439,14 +439,14 @@ export class Todoist implements INodeType {
name: 'description',
type: 'string',
default: '',
- description: 'A description for the task.',
+ description: 'A description for the task',
},
{
displayName: 'Due Date Time',
name: 'dueDateTime',
type: 'dateTime',
default: '',
- description: 'Specific date and time in RFC3339 format in UTC.',
+ description: 'Specific date and time in RFC3339 format in UTC',
},
{
displayName: 'Due String',
@@ -460,7 +460,7 @@ export class Todoist implements INodeType {
name: 'dueLang',
type: 'string',
default: '',
- description: '2-letter code specifying language in case due_string is not written in English.',
+ description: '2-letter code specifying language in case due_string is not written in English',
},
{
displayName: 'Labels',
@@ -482,7 +482,7 @@ export class Todoist implements INodeType {
minValue: 1,
},
default: 1,
- description: 'Task priority from 1 (normal) to 4 (urgent).',
+ description: 'Task priority from 1 (normal) to 4 (urgent)',
},
],
},
diff --git a/packages/nodes-base/nodes/TravisCi/BuildDescription.ts b/packages/nodes-base/nodes/TravisCi/BuildDescription.ts
index b2b6195326..8554f4ac6c 100644
--- a/packages/nodes-base/nodes/TravisCi/BuildDescription.ts
+++ b/packages/nodes-base/nodes/TravisCi/BuildDescription.ts
@@ -66,7 +66,7 @@ export const buildFields: INodeProperties[] = [
},
},
default: '',
- description: 'Value uniquely identifying the build.',
+ description: 'Value uniquely identifying the build',
},
/* -------------------------------------------------------------------------- */
@@ -87,7 +87,7 @@ export const buildFields: INodeProperties[] = [
},
},
default: '',
- description: 'Value uniquely identifying the build.',
+ description: 'Value uniquely identifying the build',
},
{
displayName: 'Additional Fields',
@@ -112,7 +112,7 @@ export const buildFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'build.commit',
- description: 'List of attributes to eager load.',
+ description: 'List of attributes to eager load',
},
],
},
@@ -135,7 +135,7 @@ export const buildFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -159,7 +159,7 @@ export const buildFields: INodeProperties[] = [
maxValue: 500,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -184,7 +184,7 @@ export const buildFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'build.commit',
- description: 'List of attributes to eager load.',
+ description: 'List of attributes to eager load',
},
{
displayName: 'Order',
@@ -201,7 +201,7 @@ export const buildFields: INodeProperties[] = [
},
],
default: 'asc',
- description: 'You may specify order to sort your response.',
+ description: 'You may specify order to sort your response',
},
{
displayName: 'Sort By',
@@ -256,7 +256,7 @@ export const buildFields: INodeProperties[] = [
},
},
default: '',
- description: 'Value uniquely identifying the build.',
+ description: 'Value uniquely identifying the build',
},
/* -------------------------------------------------------------------------- */
@@ -296,7 +296,7 @@ export const buildFields: INodeProperties[] = [
},
default: '',
placeholder: 'master',
- description: 'Branch requested to be built.',
+ description: 'Branch requested to be built',
},
{
displayName: 'Additional Fields',
@@ -320,7 +320,7 @@ export const buildFields: INodeProperties[] = [
name: 'message',
type: 'string',
default: '',
- description: 'Travis-ci status message attached to the request.',
+ description: 'Travis-ci status message attached to the request',
},
{
displayName: 'Merge Mode',
diff --git a/packages/nodes-base/nodes/Trello/AttachmentDescription.ts b/packages/nodes-base/nodes/Trello/AttachmentDescription.ts
index d153dff694..9a5ed417d0 100644
--- a/packages/nodes-base/nodes/Trello/AttachmentDescription.ts
+++ b/packages/nodes-base/nodes/Trello/AttachmentDescription.ts
@@ -66,7 +66,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to add attachment to.',
+ description: 'The ID of the card to add attachment to',
},
{
displayName: 'Source URL',
@@ -84,7 +84,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'The URL of the attachment to add.',
+ description: 'The URL of the attachment to add',
},
{
displayName: 'Additional Fields',
@@ -109,14 +109,14 @@ export const attachmentFields: INodeProperties[] = [
type: 'string',
default: '',
placeholder: 'image/png',
- description: 'The MIME type of the attachment to add.',
+ description: 'The MIME type of the attachment to add',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'The name of the attachment to add.',
+ description: 'The name of the attachment to add',
},
],
},
@@ -140,7 +140,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that attachment belongs to.',
+ description: 'The ID of the card that attachment belongs to',
},
{
displayName: 'Attachment ID',
@@ -158,7 +158,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the attachment to delete.',
+ description: 'The ID of the attachment to delete',
},
// ----------------------------------
@@ -180,7 +180,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to get attachments.',
+ description: 'The ID of the card to get attachments',
},
{
displayName: 'Additional Fields',
@@ -228,7 +228,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to get attachment.',
+ description: 'The ID of the card to get attachment',
},
{
displayName: 'Attachment ID',
@@ -246,7 +246,7 @@ export const attachmentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the attachment to get.',
+ description: 'The ID of the attachment to get',
},
{
displayName: 'Additional Fields',
diff --git a/packages/nodes-base/nodes/Trello/BoardDescription.ts b/packages/nodes-base/nodes/Trello/BoardDescription.ts
index df2402d977..4814acaf1d 100644
--- a/packages/nodes-base/nodes/Trello/BoardDescription.ts
+++ b/packages/nodes-base/nodes/Trello/BoardDescription.ts
@@ -117,14 +117,14 @@ export const boardFields: INodeProperties[] = [
},
],
default: 'regular',
- description: 'Determines the type of card aging that should take place on the board if card aging is enabled.',
+ description: 'Determines the type of card aging that should take place on the board if card aging is enabled',
},
{
displayName: 'Background',
name: 'prefs_background',
type: 'string',
default: 'blue',
- description: 'The id of a custom background or one of: blue, orange, green, red, purple, pink, lime, sky, grey.',
+ description: 'The id of a custom background or one of: blue, orange, green, red, purple, pink, lime, sky, grey',
},
{
displayName: 'Comments',
@@ -153,14 +153,14 @@ export const boardFields: INodeProperties[] = [
},
],
default: 'members',
- description: 'Who can comment on cards on this board.',
+ description: 'Who can comment on cards on this board',
},
{
displayName: 'Covers',
name: 'prefs_cardCovers',
type: 'boolean',
default: true,
- description: 'Determines whether card covers are enabled.',
+ description: 'Determines whether card covers are enabled',
},
{
displayName: 'Invitations',
@@ -177,35 +177,35 @@ export const boardFields: INodeProperties[] = [
},
],
default: 'members',
- description: 'Determines what types of members can invite users to join.',
+ description: 'Determines what types of members can invite users to join',
},
{
displayName: 'Keep From Source',
name: 'keepFromSource',
type: 'string',
default: 'none',
- description: 'To keep cards from the original board pass in the value cards.',
+ description: 'To keep cards from the original board pass in the value cards',
},
{
displayName: 'Labels',
name: 'defaultLabels',
type: 'boolean',
default: true,
- description: 'Determines whether to use the default set of labels.',
+ description: 'Determines whether to use the default set of labels',
},
{
displayName: 'Lists',
name: 'defaultLists',
type: 'boolean',
default: true,
- description: 'Determines whether to add the default set of lists to a board(To Do, Doing, Done).It is ignored if idBoardSource is provided.',
+ description: 'Determines whether to add the default set of lists to a board(To Do, Doing, Done).It is ignored if idBoardSource is provided',
},
{
displayName: 'Organization ID',
name: 'idOrganization',
type: 'string',
default: '',
- description: 'The id or name of the team the board should belong to.',
+ description: 'The id or name of the team the board should belong to',
},
{
displayName: 'Permission Level',
@@ -226,7 +226,7 @@ export const boardFields: INodeProperties[] = [
},
],
default: 'private',
- description: 'The permissions level of the board.',
+ description: 'The permissions level of the board',
},
{
displayName: 'Power Ups',
@@ -255,21 +255,21 @@ export const boardFields: INodeProperties[] = [
},
],
default: 'all',
- description: 'The Power-Ups that should be enabled on the new board.',
+ description: 'The Power-Ups that should be enabled on the new board',
},
{
displayName: 'Self Join',
name: 'prefs_selfJoin',
type: 'boolean',
default: true,
- description: 'Determines whether users can join the boards themselves or whether they have to be invited.',
+ description: 'Determines whether users can join the boards themselves or whether they have to be invited',
},
{
displayName: 'Source IDs',
name: 'idBoardSource',
type: 'string',
default: '',
- description: 'The id of a board to copy into the new board.',
+ description: 'The id of a board to copy into the new board',
},
{
displayName: 'Voting',
@@ -298,7 +298,7 @@ export const boardFields: INodeProperties[] = [
},
],
default: 'disabled',
- description: 'Who can vote on this board.',
+ description: 'Who can vote on this board',
},
],
},
@@ -322,7 +322,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board to delete.',
+ description: 'The ID of the board to delete',
},
// ----------------------------------
@@ -344,7 +344,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board to get.',
+ description: 'The ID of the board to get',
},
{
displayName: 'Additional Fields',
@@ -375,7 +375,7 @@ export const boardFields: INodeProperties[] = [
name: 'pluginData',
type: 'boolean',
default: false,
- description: 'Whether to include pluginData on the card with the response.',
+ description: 'Whether to include pluginData on the card with the response',
},
],
},
@@ -399,7 +399,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board to update.',
+ description: 'The ID of the board to update',
},
{
displayName: 'Update Fields',
@@ -423,7 +423,7 @@ export const boardFields: INodeProperties[] = [
name: 'closed',
type: 'boolean',
default: false,
- description: 'Whether the board is closed.',
+ description: 'Whether the board is closed',
},
{
displayName: 'Description',
@@ -444,14 +444,14 @@ export const boardFields: INodeProperties[] = [
name: 'idOrganization',
type: 'string',
default: '',
- description: 'The id of the team the board should be moved to.',
+ description: 'The id of the team the board should be moved to',
},
{
displayName: 'Subscribed',
name: 'subscribed',
type: 'boolean',
default: false,
- description: 'Whether the acting user is subscribed to the board.',
+ description: 'Whether the acting user is subscribed to the board',
},
],
},
diff --git a/packages/nodes-base/nodes/Trello/CardCommentDescription.ts b/packages/nodes-base/nodes/Trello/CardCommentDescription.ts
index 750d69d647..ae2ee0660e 100644
--- a/packages/nodes-base/nodes/Trello/CardCommentDescription.ts
+++ b/packages/nodes-base/nodes/Trello/CardCommentDescription.ts
@@ -96,7 +96,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card.',
+ description: 'The ID of the card',
},
{
displayName: 'Comment ID',
@@ -114,7 +114,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the comment to delete.',
+ description: 'The ID of the comment to delete',
},
// ----------------------------------
@@ -136,7 +136,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to update.',
+ description: 'The ID of the card to update',
},
{
displayName: 'Comment ID',
@@ -154,7 +154,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the comment to delete.',
+ description: 'The ID of the comment to delete',
},
{
displayName: 'Text',
diff --git a/packages/nodes-base/nodes/Trello/CardDescription.ts b/packages/nodes-base/nodes/Trello/CardDescription.ts
index 0a998d11a1..c97bf2a12f 100644
--- a/packages/nodes-base/nodes/Trello/CardDescription.ts
+++ b/packages/nodes-base/nodes/Trello/CardDescription.ts
@@ -124,14 +124,14 @@ export const cardFields: INodeProperties[] = [
name: 'due',
type: 'dateTime',
default: '',
- description: 'A due date for the card.',
+ description: 'A due date for the card',
},
{
displayName: 'Due Complete',
name: 'dueComplete',
type: 'boolean',
default: false,
- description: 'If the card is completed.',
+ description: 'If the card is completed',
},
{
displayName: 'Position',
@@ -145,28 +145,28 @@ export const cardFields: INodeProperties[] = [
name: 'idMembers',
type: 'string',
default: '',
- description: 'Comma-separated list of member IDs to add to the card.',
+ description: 'Comma-separated list of member IDs to add to the card',
},
{
displayName: 'Label IDs',
name: 'idLabels',
type: 'string',
default: '',
- description: 'Comma-separated list of label IDs to add to the card.',
+ description: 'Comma-separated list of label IDs to add to the card',
},
{
displayName: 'URL Source',
name: 'urlSource',
type: 'string',
default: '',
- description: 'A source URL to attach to card.',
+ description: 'A source URL to attach to card',
},
{
displayName: 'Source ID',
name: 'idCardSource',
type: 'string',
default: '',
- description: 'The ID of a card to copy into the new card.',
+ description: 'The ID of a card to copy into the new card',
},
{
displayName: 'Keep from source',
@@ -197,7 +197,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to delete.',
+ description: 'The ID of the card to delete',
},
// ----------------------------------
@@ -219,7 +219,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to get.',
+ description: 'The ID of the card to get',
},
{
displayName: 'Additional Fields',
@@ -250,7 +250,7 @@ export const cardFields: INodeProperties[] = [
name: 'board',
type: 'boolean',
default: false,
- description: 'Whether to return the board object the card is on.',
+ description: 'Whether to return the board object the card is on',
},
{
displayName: 'Board Fields',
@@ -264,14 +264,14 @@ export const cardFields: INodeProperties[] = [
name: 'customFieldItems',
type: 'boolean',
default: false,
- description: 'Whether to include the customFieldItems.',
+ description: 'Whether to include the customFieldItems',
},
{
displayName: 'Members',
name: 'members',
type: 'boolean',
default: false,
- description: 'Whether to return member objects for members on the card.',
+ description: 'Whether to return member objects for members on the card',
},
{
displayName: 'Member Fields',
@@ -285,14 +285,14 @@ export const cardFields: INodeProperties[] = [
name: 'pluginData',
type: 'boolean',
default: false,
- description: 'Whether to include pluginData on the card with the response.',
+ description: 'Whether to include pluginData on the card with the response',
},
{
displayName: 'Stickers',
name: 'stickers',
type: 'boolean',
default: false,
- description: 'Whether to include sticker models with the response.',
+ description: 'Whether to include sticker models with the response',
},
{
displayName: 'Sticker Fields',
@@ -323,7 +323,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to update.',
+ description: 'The ID of the card to update',
},
{
displayName: 'Update Fields',
@@ -347,63 +347,63 @@ export const cardFields: INodeProperties[] = [
name: 'idAttachmentCover',
type: 'string',
default: '',
- description: 'The ID of the image attachment the card should use as its cover, or null for none.',
+ description: 'The ID of the image attachment the card should use as its cover, or null for none',
},
{
displayName: 'Board ID',
name: 'idBoard',
type: 'string',
default: '',
- description: 'The ID of the board the card should be on.',
+ description: 'The ID of the board the card should be on',
},
{
displayName: 'Closed',
name: 'closed',
type: 'boolean',
default: false,
- description: 'Whether the board is closed.',
+ description: 'Whether the board is closed',
},
{
displayName: 'Description',
name: 'desc',
type: 'string',
default: '',
- description: 'New description of the board.',
+ description: 'New description of the board',
},
{
displayName: 'Due Date',
name: 'due',
type: 'dateTime',
default: '',
- description: 'A due date for the card.',
+ description: 'A due date for the card',
},
{
displayName: 'Due Complete',
name: 'dueComplete',
type: 'boolean',
default: false,
- description: 'If the card is completed.',
+ description: 'If the card is completed',
},
{
displayName: 'Label IDs',
name: 'idLabels',
type: 'string',
default: '',
- description: 'Comma-separated list of label IDs to set on card.',
+ description: 'Comma-separated list of label IDs to set on card',
},
{
displayName: 'List ID',
name: 'idList',
type: 'string',
default: '',
- description: 'The ID of the list the card should be in.',
+ description: 'The ID of the list the card should be in',
},
{
displayName: 'Member IDs',
name: 'idMembers',
type: 'string',
default: '',
- description: 'Comma-separated list of member IDs to set on card.',
+ description: 'Comma-separated list of member IDs to set on card',
},
{
displayName: 'Name',
@@ -424,7 +424,7 @@ export const cardFields: INodeProperties[] = [
name: 'subscribed',
type: 'boolean',
default: false,
- description: 'Whether the acting user is subscribed to the board.',
+ description: 'Whether the acting user is subscribed to the board',
},
],
},
diff --git a/packages/nodes-base/nodes/Trello/ChecklistDescription.ts b/packages/nodes-base/nodes/Trello/ChecklistDescription.ts
index a57916dbde..b709e194fd 100644
--- a/packages/nodes-base/nodes/Trello/ChecklistDescription.ts
+++ b/packages/nodes-base/nodes/Trello/ChecklistDescription.ts
@@ -90,7 +90,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to add checklist to.',
+ description: 'The ID of the card to add checklist to',
},
{
displayName: 'Name',
@@ -108,7 +108,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The URL of the checklist to add.',
+ description: 'The URL of the checklist to add',
},
{
displayName: 'Additional Fields',
@@ -132,7 +132,7 @@ export const checklistFields: INodeProperties[] = [
name: 'idChecklistSource',
type: 'string',
default: '',
- description: 'The ID of a source checklist to copy into the new one.',
+ description: 'The ID of a source checklist to copy into the new one',
},
{
displayName: 'Position',
@@ -163,7 +163,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that checklist belongs to.',
+ description: 'The ID of the card that checklist belongs to',
},
{
displayName: 'Checklist ID',
@@ -181,7 +181,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklist to delete.',
+ description: 'The ID of the checklist to delete',
},
@@ -204,7 +204,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to get checklists.',
+ description: 'The ID of the card to get checklists',
},
{
displayName: 'Additional Fields',
@@ -252,7 +252,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklist to get.',
+ description: 'The ID of the checklist to get',
},
{
displayName: 'Additional Fields',
@@ -300,7 +300,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklist to update.',
+ description: 'The ID of the checklist to update',
},
{
displayName: 'Name',
@@ -318,7 +318,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The name of the new check item on the checklist.',
+ description: 'The name of the new check item on the checklist',
},
{
displayName: 'Additional Fields',
@@ -342,7 +342,7 @@ export const checklistFields: INodeProperties[] = [
name: 'checked',
type: 'boolean',
default: false,
- description: 'Determines whether the check item is already checked when created.',
+ description: 'Determines whether the check item is already checked when created',
},
{
displayName: 'Position',
@@ -373,7 +373,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that checklist belongs to.',
+ description: 'The ID of the card that checklist belongs to',
},
{
displayName: 'CheckItem ID',
@@ -391,7 +391,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklist item to delete.',
+ description: 'The ID of the checklist item to delete',
},
// ----------------------------------
@@ -413,7 +413,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that checklist belongs to.',
+ description: 'The ID of the card that checklist belongs to',
},
{
displayName: 'CheckItem ID',
@@ -431,7 +431,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklist item to get.',
+ description: 'The ID of the checklist item to get',
},
{
displayName: 'Additional Fields',
@@ -479,7 +479,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that checklist belongs to.',
+ description: 'The ID of the card that checklist belongs to',
},
{
displayName: 'CheckItem ID',
@@ -497,7 +497,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklist item to update.',
+ description: 'The ID of the checklist item to update',
},
{
displayName: 'Additional Fields',
@@ -521,7 +521,7 @@ export const checklistFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'The new name for the checklist item.',
+ description: 'The new name for the checklist item',
},
{
displayName: 'State',
@@ -576,7 +576,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card for checkItems.',
+ description: 'The ID of the card for checkItems',
},
{
displayName: 'Additional Fields',
diff --git a/packages/nodes-base/nodes/Trello/LabelDescription.ts b/packages/nodes-base/nodes/Trello/LabelDescription.ts
index 579e22a129..b037025387 100644
--- a/packages/nodes-base/nodes/Trello/LabelDescription.ts
+++ b/packages/nodes-base/nodes/Trello/LabelDescription.ts
@@ -21,7 +21,7 @@ export const labelOperations: INodeProperties[] = [
{
name: 'Add to Card',
value: 'addLabel',
- description: 'Add a label to a card.',
+ description: 'Add a label to a card',
},
{
name: 'Create',
@@ -46,12 +46,12 @@ export const labelOperations: INodeProperties[] = [
{
name: 'Remove From Card',
value: 'removeLabel',
- description: 'Remove a label from a card.',
+ description: 'Remove a label from a card',
},
{
name: 'Update',
value: 'update',
- description: 'Update a label.',
+ description: 'Update a label',
},
],
@@ -81,7 +81,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board to create the label on.',
+ description: 'The ID of the board to create the label on',
},
{
displayName: 'Name',
@@ -99,7 +99,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'Name for the label.',
+ description: 'Name for the label',
},
{
displayName: 'Color',
@@ -163,7 +163,7 @@ export const labelFields: INodeProperties[] = [
},
],
default: 'null',
- description: 'The color for the label.',
+ description: 'The color for the label',
},
@@ -186,7 +186,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the label to delete.',
+ description: 'The ID of the label to delete',
},
// ----------------------------------
@@ -208,7 +208,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board to get label.',
+ description: 'The ID of the board to get label',
},
{
displayName: 'Additional Fields',
@@ -256,7 +256,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'Get information about a label by ID.',
+ description: 'Get information about a label by ID',
},
{
displayName: 'Additional Fields',
@@ -304,7 +304,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to get label.',
+ description: 'The ID of the card to get label',
},
{
displayName: 'Label ID',
@@ -322,7 +322,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the label to add.',
+ description: 'The ID of the label to add',
},
// ----------------------------------
@@ -344,7 +344,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to remove label from.',
+ description: 'The ID of the card to remove label from',
},
{
displayName: 'Label ID',
@@ -362,7 +362,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the label to remove.',
+ description: 'The ID of the label to remove',
},
// ----------------------------------
@@ -384,7 +384,7 @@ export const labelFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the label to update.',
+ description: 'The ID of the label to update',
},
{
displayName: 'Update Fields',
@@ -408,7 +408,7 @@ export const labelFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Name of the label.',
+ description: 'Name of the label',
},
{
displayName: 'Color',
@@ -461,7 +461,7 @@ export const labelFields: INodeProperties[] = [
},
],
default: 'null',
- description: 'The color for the label.',
+ description: 'The color for the label',
},
],
},
diff --git a/packages/nodes-base/nodes/Trello/ListDescription.ts b/packages/nodes-base/nodes/Trello/ListDescription.ts
index dcad00a987..ee2307e9bb 100644
--- a/packages/nodes-base/nodes/Trello/ListDescription.ts
+++ b/packages/nodes-base/nodes/Trello/ListDescription.ts
@@ -74,7 +74,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list to archive or unarchive.',
+ description: 'The ID of the list to archive or unarchive',
},
{
displayName: 'Archive',
@@ -91,7 +91,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'If the list should be archived or unarchived.',
+ description: 'If the list should be archived or unarchived',
},
// ----------------------------------
@@ -156,7 +156,7 @@ export const listFields: INodeProperties[] = [
name: 'idListSource',
type: 'string',
default: '',
- description: 'ID of the list to copy into the new list.',
+ description: 'ID of the list to copy into the new list',
},
{
displayName: 'Position',
@@ -188,7 +188,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list to get cards.',
+ description: 'The ID of the list to get cards',
},
{
displayName: 'Return All',
@@ -205,7 +205,7 @@ export const listFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -271,7 +271,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list to get.',
+ description: 'The ID of the list to get',
},
{
displayName: 'Additional Fields',
@@ -336,7 +336,7 @@ export const listFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -403,7 +403,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list to update.',
+ description: 'The ID of the list to update',
},
{
displayName: 'Update Fields',
@@ -427,14 +427,14 @@ export const listFields: INodeProperties[] = [
name: 'idBoard',
type: 'string',
default: '',
- description: 'ID of a board the list should be moved to.',
+ description: 'ID of a board the list should be moved to',
},
{
displayName: 'Closed',
name: 'closed',
type: 'boolean',
default: false,
- description: 'Whether the list is closed.',
+ description: 'Whether the list is closed',
},
{
displayName: 'Name',
@@ -456,7 +456,7 @@ export const listFields: INodeProperties[] = [
name: 'subscribed',
type: 'boolean',
default: false,
- description: 'Whether the acting user is subscribed to the list.',
+ description: 'Whether the acting user is subscribed to the list',
},
],
},
diff --git a/packages/nodes-base/nodes/Twist/ChannelDescription.ts b/packages/nodes-base/nodes/Twist/ChannelDescription.ts
index 5ce5e2f46c..117c4b6c48 100644
--- a/packages/nodes-base/nodes/Twist/ChannelDescription.ts
+++ b/packages/nodes-base/nodes/Twist/ChannelDescription.ts
@@ -79,7 +79,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the workspace.',
+ description: 'The ID of the workspace',
},
{
displayName: 'Name',
@@ -97,7 +97,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The name of the channel.',
+ description: 'The name of the channel',
},
{
displayName: 'Additional Fields',
@@ -171,21 +171,21 @@ export const channelFields: INodeProperties[] = [
},
],
default: 0,
- description: 'The color of the channel.',
+ description: 'The color of the channel',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'The description of the channel.',
+ description: 'The description of the channel',
},
{
displayName: 'Public',
name: 'public',
type: 'boolean',
default: false,
- description: 'If enabled, the channel will be marked as public.',
+ description: 'If enabled, the channel will be marked as public',
},
// eslint-disable-next-line n8n-nodes-base/node-param-default-missing
{
@@ -206,7 +206,7 @@ export const channelFields: INodeProperties[] = [
],
},
default: [],
- description: 'The users that will participate in the channel.',
+ description: 'The users that will participate in the channel',
},
],
},
@@ -233,7 +233,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the channel.',
+ description: 'The ID of the channel',
},
/* -------------------------------------------------------------------------- */
@@ -258,7 +258,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the workspace.',
+ description: 'The ID of the workspace',
},
{
displayName: 'Return All',
@@ -275,7 +275,7 @@ export const channelFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -299,7 +299,7 @@ export const channelFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -323,7 +323,7 @@ export const channelFields: INodeProperties[] = [
name: 'archived',
type: 'boolean',
default: false,
- description: 'If enabled, only archived conversations are returned.',
+ description: 'If enabled, only archived conversations are returned',
},
],
},
@@ -347,7 +347,7 @@ export const channelFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the channel.',
+ description: 'The ID of the channel',
},
{
displayName: 'Update Fields',
@@ -421,28 +421,28 @@ export const channelFields: INodeProperties[] = [
},
],
default: 0,
- description: 'The color of the channel.',
+ description: 'The color of the channel',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'The description of the channel.',
+ description: 'The description of the channel',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'The name of the channel.',
+ description: 'The name of the channel',
},
{
displayName: 'Public',
name: 'public',
type: 'boolean',
default: false,
- description: 'If enabled, the channel will be marked as public.',
+ description: 'If enabled, the channel will be marked as public',
},
],
},
diff --git a/packages/nodes-base/nodes/Twist/CommentDescription.ts b/packages/nodes-base/nodes/Twist/CommentDescription.ts
index b2b67bd2c6..f625a1d634 100644
--- a/packages/nodes-base/nodes/Twist/CommentDescription.ts
+++ b/packages/nodes-base/nodes/Twist/CommentDescription.ts
@@ -66,7 +66,7 @@ export const commentFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the thread.',
+ description: 'The ID of the thread',
},
{
displayName: 'Content',
@@ -84,7 +84,7 @@ export const commentFields: INodeProperties[] = [
},
},
required: true,
- description: 'The content of the comment.',
+ description: 'The content of the comment',
},
{
displayName: 'Additional Fields',
@@ -121,7 +121,7 @@ export const commentFields: INodeProperties[] = [
displayName: 'Action',
name: 'action',
type: 'options',
- description: 'The action of the button.',
+ description: 'The action of the button',
options: [
{
name: 'Open URL',
@@ -142,7 +142,7 @@ export const commentFields: INodeProperties[] = [
displayName: 'Button Text',
name: 'button_text',
type: 'string',
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -157,7 +157,7 @@ export const commentFields: INodeProperties[] = [
],
},
},
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -184,7 +184,7 @@ export const commentFields: INodeProperties[] = [
],
},
},
- description: 'URL to redirect.',
+ description: 'URL to redirect',
default: '',
},
],
@@ -209,14 +209,14 @@ export const commentFields: INodeProperties[] = [
],
},
default: [],
- description: 'The users that are directly mentioned.',
+ description: 'The users that are directly mentioned',
},
{
displayName: 'Mark thread position',
name: 'mark_thread_position',
type: 'boolean',
default: true,
- description: 'By default, the position of the thread is marked.',
+ description: 'By default, the position of the thread is marked',
},
{
displayName: 'Recipients',
@@ -229,21 +229,21 @@ export const commentFields: INodeProperties[] = [
],
},
default: [],
- description: 'The users that will attached to the comment.',
+ description: 'The users that will attached to the comment',
},
{
displayName: 'Temporary ID',
name: 'temp_id',
type: 'number',
default: 0,
- description: 'The temporary ID of the comment.',
+ description: 'The temporary ID of the comment',
},
{
displayName: 'Send as integration',
name: 'send_as_integration',
type: 'boolean',
default: false,
- description: 'Displays the integration as the comment creator.',
+ description: 'Displays the integration as the comment creator',
},
],
},
@@ -268,7 +268,7 @@ export const commentFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the comment.',
+ description: 'The ID of the comment',
},
/* -------------------------------------------------------------------------- */
@@ -290,7 +290,7 @@ export const commentFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the channel.',
+ description: 'The ID of the channel',
},
{
displayName: 'Return All',
@@ -307,7 +307,7 @@ export const commentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -331,7 +331,7 @@ export const commentFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -355,28 +355,28 @@ export const commentFields: INodeProperties[] = [
name: 'as_ids',
type: 'boolean',
default: false,
- description: 'If enabled, only the ids of the comments are returned.',
+ description: 'If enabled, only the ids of the comments are returned',
},
{
displayName: 'Ending Object Index',
name: 'to_obj_index',
type: 'number',
default: 50,
- description: 'Limit comments ending at the specified object index.',
+ description: 'Limit comments ending at the specified object index',
},
{
displayName: 'Newer Than',
name: 'newer_than_ts',
type: 'dateTime',
default: '',
- description: 'Limits comments to those newer when the specified Unix time.',
+ description: 'Limits comments to those newer when the specified Unix time',
},
{
displayName: 'Older Than',
name: 'older_than_ts',
type: 'dateTime',
default: '',
- description: 'Limits comments to those older than the specified Unix time.',
+ description: 'Limits comments to those older than the specified Unix time',
},
{
displayName: 'Order By',
@@ -393,14 +393,14 @@ export const commentFields: INodeProperties[] = [
},
],
default: 'ASC',
- description: 'The order of the comments returned - one of DESC or ASC.',
+ description: 'The order of the comments returned - one of DESC or ASC',
},
{
displayName: 'Starting Object Index',
name: 'from_obj_index',
type: 'number',
default: 0,
- description: 'Limit comments starting at the specified object index.',
+ description: 'Limit comments starting at the specified object index',
},
],
},
@@ -424,7 +424,7 @@ export const commentFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the comment.',
+ description: 'The ID of the comment',
},
{
displayName: 'Update Fields',
@@ -461,7 +461,7 @@ export const commentFields: INodeProperties[] = [
displayName: 'Action',
name: 'action',
type: 'options',
- description: 'The action of the button.',
+ description: 'The action of the button',
options: [
{
name: 'Open URL',
@@ -482,7 +482,7 @@ export const commentFields: INodeProperties[] = [
displayName: 'Button Text',
name: 'button_text',
type: 'string',
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -497,7 +497,7 @@ export const commentFields: INodeProperties[] = [
],
},
},
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -524,7 +524,7 @@ export const commentFields: INodeProperties[] = [
],
},
},
- description: 'URL to redirect.',
+ description: 'URL to redirect',
default: '',
},
],
@@ -543,7 +543,7 @@ export const commentFields: INodeProperties[] = [
name: 'content',
type: 'string',
default: '',
- description: 'The content of the comment.',
+ description: 'The content of the comment',
},
{
displayName: 'Direct Mentions',
@@ -556,7 +556,7 @@ export const commentFields: INodeProperties[] = [
],
},
default: [],
- description: 'The users that are directly mentioned.',
+ description: 'The users that are directly mentioned',
},
],
},
diff --git a/packages/nodes-base/nodes/Twist/MessageConversationDescription.ts b/packages/nodes-base/nodes/Twist/MessageConversationDescription.ts
index 07896c0646..7dd4d5cb51 100644
--- a/packages/nodes-base/nodes/Twist/MessageConversationDescription.ts
+++ b/packages/nodes-base/nodes/Twist/MessageConversationDescription.ts
@@ -70,7 +70,7 @@ export const messageConversationFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the workspace.',
+ description: 'The ID of the workspace',
},
{
displayName: 'Conversation ID',
@@ -94,7 +94,7 @@ export const messageConversationFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the conversation.',
+ description: 'The ID of the conversation',
},
{
displayName: 'Content',
@@ -128,7 +128,7 @@ export const messageConversationFields: INodeProperties[] = [
},
},
default: {},
- description: 'Other options to set.',
+ description: 'Other options to set',
placeholder: 'Add options',
options: [
{
@@ -149,7 +149,7 @@ export const messageConversationFields: INodeProperties[] = [
displayName: 'Action',
name: 'action',
type: 'options',
- description: 'The action of the button.',
+ description: 'The action of the button',
options: [
{
name: 'Open URL',
@@ -170,7 +170,7 @@ export const messageConversationFields: INodeProperties[] = [
displayName: 'Button Text',
name: 'button_text',
type: 'string',
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -185,7 +185,7 @@ export const messageConversationFields: INodeProperties[] = [
],
},
},
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -212,7 +212,7 @@ export const messageConversationFields: INodeProperties[] = [
],
},
},
- description: 'URL to redirect.',
+ description: 'URL to redirect',
default: '',
},
],
@@ -234,7 +234,7 @@ export const messageConversationFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: [],
- description: 'The users that are directly mentioned.',
+ description: 'The users that are directly mentioned',
},
// {
// displayName: 'Direct Group Mentions ',
@@ -271,7 +271,7 @@ export const messageConversationFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the workspace.',
+ description: 'The ID of the workspace',
},
{
displayName: 'Conversation ID',
@@ -295,7 +295,7 @@ export const messageConversationFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the conversation.',
+ description: 'The ID of the conversation',
},
{
displayName: 'Additional Fields',
@@ -312,28 +312,28 @@ export const messageConversationFields: INodeProperties[] = [
},
},
default: {},
- description: 'Other options to set.',
+ description: 'Other options to set',
options: [
{
displayName: 'Ending Object Index',
name: 'to_obj_index',
type: 'number',
default: 50,
- description: 'Limit messages ending at the specified object index.',
+ description: 'Limit messages ending at the specified object index',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
- description: 'Limits the number of messages returned.',
+ description: 'Limits the number of messages returned',
},
{
displayName: 'Order By',
name: 'order_by',
type: 'options',
default: 'ASC',
- description: 'The order of the conversations returned - one of DESC or ASC.',
+ description: 'The order of the conversations returned - one of DESC or ASC',
options: [
{
name: 'ASC',
@@ -350,7 +350,7 @@ export const messageConversationFields: INodeProperties[] = [
name: 'from_obj_index',
type: 'number',
default: 0,
- description: 'Limit messages starting at the specified object index.',
+ description: 'Limit messages starting at the specified object index',
},
],
},
@@ -375,7 +375,7 @@ export const messageConversationFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the conversation message.',
+ description: 'The ID of the conversation message',
},
/* -------------------------------------------------------------------------- */
@@ -397,7 +397,7 @@ export const messageConversationFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the conversation message.',
+ description: 'The ID of the conversation message',
},
{
displayName: 'Update Fields',
@@ -414,7 +414,7 @@ export const messageConversationFields: INodeProperties[] = [
},
},
default: {},
- description: 'Other options to set.',
+ description: 'Other options to set',
options: [
{
displayName: 'Actions',
@@ -434,7 +434,7 @@ export const messageConversationFields: INodeProperties[] = [
displayName: 'Action',
name: 'action',
type: 'options',
- description: 'The action of the button.',
+ description: 'The action of the button',
options: [
{
name: 'Open URL',
@@ -455,7 +455,7 @@ export const messageConversationFields: INodeProperties[] = [
displayName: 'Button Text',
name: 'button_text',
type: 'string',
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -470,7 +470,7 @@ export const messageConversationFields: INodeProperties[] = [
],
},
},
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -497,7 +497,7 @@ export const messageConversationFields: INodeProperties[] = [
],
},
},
- description: 'URL to redirect.',
+ description: 'URL to redirect',
default: '',
},
],
@@ -526,7 +526,7 @@ export const messageConversationFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: [],
- description: 'The users that are directly mentioned.',
+ description: 'The users that are directly mentioned',
},
],
},
diff --git a/packages/nodes-base/nodes/Twist/ThreadDescription.ts b/packages/nodes-base/nodes/Twist/ThreadDescription.ts
index 87359296e0..7d719103c9 100644
--- a/packages/nodes-base/nodes/Twist/ThreadDescription.ts
+++ b/packages/nodes-base/nodes/Twist/ThreadDescription.ts
@@ -66,7 +66,7 @@ export const threadFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the channel.',
+ description: 'The ID of the channel',
},
{
displayName: 'Title',
@@ -84,7 +84,7 @@ export const threadFields: INodeProperties[] = [
},
},
required: true,
- description: 'The title of the new thread (1 < length < 300).',
+ description: 'The title of the new thread (1 < length < 300)',
},
{
displayName: 'Content',
@@ -102,7 +102,7 @@ export const threadFields: INodeProperties[] = [
},
},
required: true,
- description: 'The content of the thread.',
+ description: 'The content of the thread',
},
{
displayName: 'Additional Fields',
@@ -139,7 +139,7 @@ export const threadFields: INodeProperties[] = [
displayName: 'Action',
name: 'action',
type: 'options',
- description: 'The action of the button.',
+ description: 'The action of the button',
options: [
{
name: 'Open URL',
@@ -160,7 +160,7 @@ export const threadFields: INodeProperties[] = [
displayName: 'Button Text',
name: 'button_text',
type: 'string',
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -175,7 +175,7 @@ export const threadFields: INodeProperties[] = [
],
},
},
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -202,7 +202,7 @@ export const threadFields: INodeProperties[] = [
],
},
},
- description: 'URL to redirect.',
+ description: 'URL to redirect',
default: '',
},
],
@@ -227,7 +227,7 @@ export const threadFields: INodeProperties[] = [
],
},
default: [],
- description: 'The users that are directly mentioned.',
+ description: 'The users that are directly mentioned',
},
{
displayName: 'Recipients',
@@ -240,21 +240,21 @@ export const threadFields: INodeProperties[] = [
],
},
default: [],
- description: 'The users that will attached to the thread.',
+ description: 'The users that will attached to the thread',
},
{
displayName: 'Send as integration',
name: 'send_as_integration',
type: 'boolean',
default: false,
- description: 'Displays the integration as the thread creator.',
+ description: 'Displays the integration as the thread creator',
},
{
displayName: 'Temporary ID',
name: 'temp_id',
type: 'number',
default: 0,
- description: 'The temporary ID of the thread.',
+ description: 'The temporary ID of the thread',
},
],
},
@@ -278,7 +278,7 @@ export const threadFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the thread.',
+ description: 'The ID of the thread',
},
/* -------------------------------------------------------------------------- */
/* thread:getAll */
@@ -299,7 +299,7 @@ export const threadFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the channel.',
+ description: 'The ID of the channel',
},
{
displayName: 'Return All',
@@ -316,7 +316,7 @@ export const threadFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -340,7 +340,7 @@ export const threadFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -364,7 +364,7 @@ export const threadFields: INodeProperties[] = [
name: 'as_ids',
type: 'boolean',
default: false,
- description: 'If enabled, only the IDs of the threads are returned.',
+ description: 'If enabled, only the IDs of the threads are returned',
},
{
displayName: 'Filter By',
@@ -385,21 +385,21 @@ export const threadFields: INodeProperties[] = [
},
],
default: '',
- description: 'A filter can be one of attached_to_me
, everyone
and is_starred
.',
+ description: 'A filter can be one of attached_to_me
, everyone
and is_starred
',
},
{
displayName: 'Newer Than',
name: 'newer_than_ts',
type: 'dateTime',
default: '',
- description: 'Limits threads to those newer when the specified Unix time.',
+ description: 'Limits threads to those newer when the specified Unix time',
},
{
displayName: 'Older Than',
name: 'older_than_ts',
type: 'dateTime',
default: '',
- description: 'Limits threads to those older than the specified Unix time.',
+ description: 'Limits threads to those older than the specified Unix time',
},
],
},
@@ -423,7 +423,7 @@ export const threadFields: INodeProperties[] = [
},
},
required: true,
- description: 'The ID of the thread.',
+ description: 'The ID of the thread',
},
{
displayName: 'Update Fields',
@@ -460,7 +460,7 @@ export const threadFields: INodeProperties[] = [
displayName: 'Action',
name: 'action',
type: 'options',
- description: 'The action of the button.',
+ description: 'The action of the button',
options: [
{
name: 'Open URL',
@@ -481,7 +481,7 @@ export const threadFields: INodeProperties[] = [
displayName: 'Button Text',
name: 'button_text',
type: 'string',
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -496,7 +496,7 @@ export const threadFields: INodeProperties[] = [
],
},
},
- description: 'The text for the action button.',
+ description: 'The text for the action button',
default: '',
},
{
@@ -523,7 +523,7 @@ export const threadFields: INodeProperties[] = [
],
},
},
- description: 'URL to redirect.',
+ description: 'URL to redirect',
default: '',
},
],
@@ -542,7 +542,7 @@ export const threadFields: INodeProperties[] = [
name: 'content',
type: 'string',
default: '',
- description: 'The content of the thread.',
+ description: 'The content of the thread',
},
{
displayName: 'Direct Mentions',
@@ -555,14 +555,14 @@ export const threadFields: INodeProperties[] = [
],
},
default: [],
- description: 'The users that are directly mentioned.',
+ description: 'The users that are directly mentioned',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'The title of the thread (1 < length < 300).',
+ description: 'The title of the thread (1 < length < 300)',
},
],
},
diff --git a/packages/nodes-base/nodes/Twitter/DirectMessageDescription.ts b/packages/nodes-base/nodes/Twitter/DirectMessageDescription.ts
index bdf645a7b9..46ba74f372 100644
--- a/packages/nodes-base/nodes/Twitter/DirectMessageDescription.ts
+++ b/packages/nodes-base/nodes/Twitter/DirectMessageDescription.ts
@@ -46,7 +46,7 @@ export const directMessageFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the user who should receive the direct message.',
+ description: 'The ID of the user who should receive the direct message',
},
{
displayName: 'Text',
@@ -91,7 +91,7 @@ export const directMessageFields: INodeProperties[] = [
name: 'attachment',
type: 'string',
default: 'data',
- description: 'Name of the binary property which contain data that should be added to the direct message as attachment.',
+ description: 'Name of the binary property which contain data that should be added to the direct message as attachment',
},
],
},
diff --git a/packages/nodes-base/nodes/Twitter/TweetDescription.ts b/packages/nodes-base/nodes/Twitter/TweetDescription.ts
index 2229e9f482..1986f246c5 100644
--- a/packages/nodes-base/nodes/Twitter/TweetDescription.ts
+++ b/packages/nodes-base/nodes/Twitter/TweetDescription.ts
@@ -100,14 +100,14 @@ export const tweetFields: INodeProperties[] = [
name: 'displayCoordinates',
type: 'boolean',
default: false,
- description: 'Whether or not to put a pin on the exact coordinates a Tweet has been sent from.',
+ description: 'Whether or not to put a pin on the exact coordinates a Tweet has been sent from',
},
{
displayName: 'In Reply to Tweet',
name: 'inReplyToStatusId',
type: 'string',
default: '',
- description: 'The ID of an existing status that the update is in reply to.',
+ description: 'The ID of an existing status that the update is in reply to',
},
{
displayName: 'Location',
@@ -126,7 +126,7 @@ export const tweetFields: INodeProperties[] = [
name: 'latitude',
type: 'string',
required: true,
- description: 'The location latitude.',
+ description: 'The location latitude',
default: '',
},
{
@@ -134,7 +134,7 @@ export const tweetFields: INodeProperties[] = [
name: 'longitude',
type: 'string',
required: true,
- description: 'The location longitude.',
+ description: 'The location longitude',
default: '',
},
],
@@ -146,7 +146,7 @@ export const tweetFields: INodeProperties[] = [
name: 'possiblySensitive',
type: 'boolean',
default: false,
- description: 'If you upload Tweet media that might be considered sensitive content such as nudity, or medical procedures, you must set this value to true.',
+ description: 'If you upload Tweet media that might be considered sensitive content such as nudity, or medical procedures, you must set this value to true',
},
],
},
@@ -170,7 +170,7 @@ export const tweetFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the tweet to delete.',
+ description: 'The ID of the tweet to delete',
},
/* -------------------------------------------------------------------------- */
@@ -212,7 +212,7 @@ export const tweetFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -235,7 +235,7 @@ export const tweetFields: INodeProperties[] = [
minValue: 1,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -288,7 +288,7 @@ export const tweetFields: INodeProperties[] = [
name: 'latitude',
type: 'string',
required: true,
- description: 'The location latitude.',
+ description: 'The location latitude',
default: '',
},
{
@@ -296,7 +296,7 @@ export const tweetFields: INodeProperties[] = [
name: 'longitude',
type: 'string',
required: true,
- description: 'The location longitude.',
+ description: 'The location longitude',
default: '',
},
{
@@ -314,7 +314,7 @@ export const tweetFields: INodeProperties[] = [
},
],
required: true,
- description: 'Returns tweets by users located within a given radius of the given latitude/longitude.',
+ description: 'Returns tweets by users located within a given radius of the given latitude/longitude',
default: '',
},
{
@@ -339,7 +339,7 @@ export const tweetFields: INodeProperties[] = [
{
name: 'Mixed',
value: 'mixed',
- description: 'Include both popular and real time results in the response.',
+ description: 'Include both popular and real time results in the response',
},
{
name: 'Recent',
@@ -349,7 +349,7 @@ export const tweetFields: INodeProperties[] = [
{
name: 'Popular',
value: 'popular',
- description: 'Return only the most popular results in the response.',
+ description: 'Return only the most popular results in the response',
},
],
default: 'mixed',
@@ -473,7 +473,7 @@ export const tweetFields: INodeProperties[] = [
name: 'trimUser',
type: 'boolean',
default: false,
- description: `When set to either true, each tweet returned in a timeline will include a user object including only the status authors numerical ID.`,
+ description: 'When set to either true, each tweet returned in a timeline will include a user object including only the status authors numerical ID',
},
],
},
diff --git a/packages/nodes-base/nodes/Typeform/TypeformTrigger.node.ts b/packages/nodes-base/nodes/Typeform/TypeformTrigger.node.ts
index 6ef7889b61..e7ecd08382 100644
--- a/packages/nodes-base/nodes/Typeform/TypeformTrigger.node.ts
+++ b/packages/nodes-base/nodes/Typeform/TypeformTrigger.node.ts
@@ -98,21 +98,21 @@ export class TypeformTrigger implements INodeType {
options: [],
default: '',
required: true,
- description: 'Form which should trigger workflow on submission.',
+ description: 'Form which should trigger workflow on submission',
},
{
displayName: 'Simplify Answers',
name: 'simplifyAnswers',
type: 'boolean',
default: true,
- description: 'Converts the answers to a key:value pair ("FIELD_TITLE":"USER_ANSER") to be easily processable.',
+ description: 'Converts the answers to a key:value pair ("FIELD_TITLE":"USER_ANSER") to be easily processable',
},
{
displayName: 'Only Answers',
name: 'onlyAnswers',
type: 'boolean',
default: true,
- description: 'Returns only the answers of the form and not any of the other data.',
+ description: 'Returns only the answers of the form and not any of the other data',
},
],
};
diff --git a/packages/nodes-base/nodes/UProc/ToolDescription.ts b/packages/nodes-base/nodes/UProc/ToolDescription.ts
index 733a6d08fa..de3c846e72 100644
--- a/packages/nodes-base/nodes/UProc/ToolDescription.ts
+++ b/packages/nodes-base/nodes/UProc/ToolDescription.ts
@@ -26,7 +26,7 @@ for (const group of (groups as IDataObject).groups as IDataObject[]) {
displayName: 'Operation',
name: 'tool',
type: 'options',
- description: 'The Operation to consume.',
+ description: 'The Operation to consume',
displayOptions: {
show: {
group: [
diff --git a/packages/nodes-base/nodes/UnleashedSoftware/SalesOrderDescription.ts b/packages/nodes-base/nodes/UnleashedSoftware/SalesOrderDescription.ts
index 47080b1c19..d8fd90b943 100644
--- a/packages/nodes-base/nodes/UnleashedSoftware/SalesOrderDescription.ts
+++ b/packages/nodes-base/nodes/UnleashedSoftware/SalesOrderDescription.ts
@@ -46,7 +46,7 @@ export const salesOrderFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -70,7 +70,7 @@ export const salesOrderFields: INodeProperties[] = [
maxValue: 1000,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -102,7 +102,7 @@ export const salesOrderFields: INodeProperties[] = [
name: 'customerCode',
type: 'string',
default: '',
- description: 'Returns orders that start with the specific customer code.',
+ description: 'Returns orders that start with the specific customer code',
},
{
displayName: 'End Date',
@@ -116,7 +116,7 @@ export const salesOrderFields: INodeProperties[] = [
name: 'modifiedSince',
type: 'dateTime',
default: '',
- description: 'Returns orders created or edited after a specified date, must be UTC format.',
+ description: 'Returns orders created or edited after a specified date, must be UTC format',
},
{
displayName: 'Order Number',
diff --git a/packages/nodes-base/nodes/UnleashedSoftware/StockOnHandDescription.ts b/packages/nodes-base/nodes/UnleashedSoftware/StockOnHandDescription.ts
index 44125b2ad4..ea45e77f7e 100644
--- a/packages/nodes-base/nodes/UnleashedSoftware/StockOnHandDescription.ts
+++ b/packages/nodes-base/nodes/UnleashedSoftware/StockOnHandDescription.ts
@@ -70,7 +70,7 @@ export const stockOnHandFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -94,7 +94,7 @@ export const stockOnHandFields: INodeProperties[] = [
maxValue: 1000,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -118,28 +118,28 @@ export const stockOnHandFields: INodeProperties[] = [
name: 'asAtDate',
type: 'dateTime',
default: '',
- description: 'Returns the stock on hand for a specific date.',
+ description: 'Returns the stock on hand for a specific date',
},
{
displayName: 'Is Assembled',
name: 'IsAssembled',
type: 'boolean',
default: false,
- description: 'If set to True, the AvailableQty will also include the quantity that can be assembled.',
+ description: 'If set to True, the AvailableQty will also include the quantity that can be assembled',
},
{
displayName: 'Modified Since',
name: 'modifiedSince',
type: 'dateTime',
default: '',
- description: 'Returns stock on hand values modified after a specific date.',
+ description: 'Returns stock on hand values modified after a specific date',
},
{
displayName: 'Order By',
name: 'orderBy',
type: 'string',
default: '',
- description: 'Orders the list by a specific column, by default the list is ordered by productCode.',
+ description: 'Orders the list by a specific column, by default the list is ordered by productCode',
},
{
displayName: 'Product ID',
@@ -153,14 +153,14 @@ export const stockOnHandFields: INodeProperties[] = [
name: 'warehouseCode',
type: 'string',
default: '',
- description: 'Returns stock on hand for a specific warehouse code.',
+ description: 'Returns stock on hand for a specific warehouse code',
},
{
displayName: 'Warehouse Name',
name: 'warehouseName',
type: 'string',
default: '',
- description: 'Returns stock on hand for a specific warehouse name.',
+ description: 'Returns stock on hand for a specific warehouse name',
},
],
},
diff --git a/packages/nodes-base/nodes/Uplead/Uplead.node.ts b/packages/nodes-base/nodes/Uplead/Uplead.node.ts
index eb7deff98c..9a14a3c2e1 100644
--- a/packages/nodes-base/nodes/Uplead/Uplead.node.ts
+++ b/packages/nodes-base/nodes/Uplead/Uplead.node.ts
@@ -48,7 +48,7 @@ export class Uplead implements INodeType {
{
name: 'Company',
value: 'company',
- description: 'Company API lets you lookup company data via a domain name or company name.',
+ description: 'Company API lets you lookup company data via a domain name or company name',
},
{
name: 'Person',
diff --git a/packages/nodes-base/nodes/UptimeRobot/AlertContactDescription.ts b/packages/nodes-base/nodes/UptimeRobot/AlertContactDescription.ts
index 802d08e552..3b7e0af41b 100644
--- a/packages/nodes-base/nodes/UptimeRobot/AlertContactDescription.ts
+++ b/packages/nodes-base/nodes/UptimeRobot/AlertContactDescription.ts
@@ -66,7 +66,7 @@ export const alertContactFields: INodeProperties[] = [
],
},
},
- description: 'The friendly name of the alert contact.',
+ description: 'The friendly name of the alert contact',
},
{
displayName: 'Type',
@@ -128,7 +128,7 @@ export const alertContactFields: INodeProperties[] = [
],
},
},
- description: 'The type of the alert contact.',
+ description: 'The type of the alert contact',
},
{
displayName: 'Value',
@@ -146,7 +146,7 @@ export const alertContactFields: INodeProperties[] = [
],
},
},
- description: 'The correspondent value for the alert contact type.',
+ description: 'The correspondent value for the alert contact type',
},
/* -------------------------------------------------------------------------- */
@@ -169,7 +169,7 @@ export const alertContactFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the alert contact.',
+ description: 'The ID of the alert contact',
},
/* -------------------------------------------------------------------------- */
@@ -190,7 +190,7 @@ export const alertContactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -214,7 +214,7 @@ export const alertContactFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -238,7 +238,7 @@ export const alertContactFields: INodeProperties[] = [
name: 'alert_contacts',
type: 'string',
default: '',
- description: 'Alert contact ids separated with dash, e.g. 236-1782-4790.',
+ description: 'Alert contact ids separated with dash, e.g. 236-1782-4790',
},
],
},
@@ -262,7 +262,7 @@ export const alertContactFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the alert contact.',
+ description: 'The ID of the alert contact',
},
{
displayName: 'Update Fields',
@@ -286,14 +286,14 @@ export const alertContactFields: INodeProperties[] = [
name: 'friendly_name',
type: 'string',
default: '',
- description: 'The friendly name of the alert contact.',
+ description: 'The friendly name of the alert contact',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'The correspondent value for the alert contact type (can only be used if it is a Webhook alert contact).',
+ description: 'The correspondent value for the alert contact type (can only be used if it is a Webhook alert contact)',
},
],
},
diff --git a/packages/nodes-base/nodes/UptimeRobot/MaintenanceWindowDescription.ts b/packages/nodes-base/nodes/UptimeRobot/MaintenanceWindowDescription.ts
index 1a1a5e9d19..ee5a8938c3 100644
--- a/packages/nodes-base/nodes/UptimeRobot/MaintenanceWindowDescription.ts
+++ b/packages/nodes-base/nodes/UptimeRobot/MaintenanceWindowDescription.ts
@@ -67,7 +67,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
],
},
},
- description: 'The maintenance window activation period (minutes).',
+ description: 'The maintenance window activation period (minutes)',
},
{
displayName: 'Friendly Name',
@@ -85,7 +85,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
],
},
},
- description: 'The friendly name of the maintenance window.',
+ description: 'The friendly name of the maintenance window',
},
{
displayName: 'Type',
@@ -121,7 +121,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
],
},
},
- description: 'The type of the maintenance window.',
+ description: 'The type of the maintenance window',
},
{
displayName: 'Week Day',
@@ -211,7 +211,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
],
},
},
- description: 'The maintenance window start datetime.',
+ description: 'The maintenance window start datetime',
},
/* -------------------------------------------------------------------------- */
@@ -234,7 +234,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the maintenance window.',
+ description: 'The ID of the maintenance window',
},
/* -------------------------------------------------------------------------- */
@@ -255,7 +255,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
},
},
default: false,
- description: 'Whether all results should be returned or only up to a given limit.',
+ description: 'Whether all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -279,7 +279,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -303,7 +303,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
name: 'mwindow',
type: 'string',
default: '',
- description: 'Maintenance windows ids separated with dash, e.g. 236-1782-4790.',
+ description: 'Maintenance windows ids separated with dash, e.g. 236-1782-4790',
},
],
},
@@ -327,7 +327,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the maintenance window.',
+ description: 'The ID of the maintenance window',
},
{
displayName: 'Duration (minutes)',
@@ -345,7 +345,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
],
},
},
- description: 'The maintenance window activation period (minutes).',
+ description: 'The maintenance window activation period (minutes)',
},
{
displayName: 'Update Fields',
@@ -369,14 +369,14 @@ export const maintenanceWindowFields: INodeProperties[] = [
name: 'friendly_name',
type: 'string',
default: '',
- description: 'The friendly name of the maintenance window.',
+ description: 'The friendly name of the maintenance window',
},
{
displayName: 'Start Time',
name: 'start_time',
type: 'dateTime',
default: '',
- description: 'The maintenance window start datetime.',
+ description: 'The maintenance window start datetime',
},
{
displayName: 'Type',
@@ -401,7 +401,7 @@ export const maintenanceWindowFields: INodeProperties[] = [
value: 4,
},
],
- description: 'The type of the maintenance window.',
+ description: 'The type of the maintenance window',
},
{
displayName: 'Week Day',
diff --git a/packages/nodes-base/nodes/UptimeRobot/MonitorDescription.ts b/packages/nodes-base/nodes/UptimeRobot/MonitorDescription.ts
index 0d59a1bb77..a0594f50de 100644
--- a/packages/nodes-base/nodes/UptimeRobot/MonitorDescription.ts
+++ b/packages/nodes-base/nodes/UptimeRobot/MonitorDescription.ts
@@ -71,7 +71,7 @@ export const monitorFields: INodeProperties[] = [
],
},
},
- description: 'The friendly name of the monitor.',
+ description: 'The friendly name of the monitor',
},
{
displayName: 'Type',
@@ -111,7 +111,7 @@ export const monitorFields: INodeProperties[] = [
],
},
},
- description: 'The type of the monitor.',
+ description: 'The type of the monitor',
},
{
displayName: 'URL',
@@ -129,7 +129,7 @@ export const monitorFields: INodeProperties[] = [
],
},
},
- description: 'The URL/IP of the monitor.',
+ description: 'The URL/IP of the monitor',
},
/* -------------------------------------------------------------------------- */
@@ -153,7 +153,7 @@ export const monitorFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the monitor.',
+ description: 'The ID of the monitor',
},
/* -------------------------------------------------------------------------- */
@@ -174,7 +174,7 @@ export const monitorFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -198,7 +198,7 @@ export const monitorFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -222,42 +222,42 @@ export const monitorFields: INodeProperties[] = [
name: 'alert_contacts',
type: 'boolean',
default: false,
- description: 'Whether the alert contacts set for the monitor to be returned.',
+ description: 'Whether the alert contacts set for the monitor to be returned',
},
{
displayName: 'Logs',
name: 'logs',
type: 'boolean',
default: false,
- description: 'If the logs of each monitor will be returned.',
+ description: 'If the logs of each monitor will be returned',
},
{
displayName: 'Maintenance Window',
name: 'mwindow',
type: 'boolean',
default: false,
- description: 'If the maintenance windows for the monitors to be returned.',
+ description: 'If the maintenance windows for the monitors to be returned',
},
{
displayName: 'Monitor IDs',
name: 'monitors',
type: 'string',
default: '',
- description: 'Monitors IDs separated with dash, e.g. 15830-32696-83920.',
+ description: 'Monitors IDs separated with dash, e.g. 15830-32696-83920',
},
{
displayName: 'Response Times',
name: 'response_times',
type: 'boolean',
default: false,
- description: 'Whether the response time data of each monitor will be returned.',
+ description: 'Whether the response time data of each monitor will be returned',
},
{
displayName: 'Search',
name: 'search',
type: 'string',
default: '',
- description: 'A keyword to be matched against url and friendly name.',
+ description: 'A keyword to be matched against url and friendly name',
},
{
displayName: 'Statuses',
@@ -314,7 +314,7 @@ export const monitorFields: INodeProperties[] = [
value: 4,
},
],
- description: 'Select monitor types.',
+ description: 'Select monitor types',
},
],
},
@@ -338,7 +338,7 @@ export const monitorFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the monitor.',
+ description: 'The ID of the monitor',
},
{
displayName: 'Update Fields',
@@ -362,7 +362,7 @@ export const monitorFields: INodeProperties[] = [
name: 'friendly_name',
type: 'string',
default: '',
- description: 'The friendly name of the monitor.',
+ description: 'The friendly name of the monitor',
},
{
displayName: 'HTTP Auth Type',
@@ -379,7 +379,7 @@ export const monitorFields: INodeProperties[] = [
value: 2,
},
],
- description: 'The authentication type for password-protected web pages.',
+ description: 'The authentication type for password-protected web pages',
},
{
displayName: 'HTTP Method',
@@ -416,35 +416,35 @@ export const monitorFields: INodeProperties[] = [
value: 4,
},
],
- description: 'The HTTP method to be used.',
+ description: 'The HTTP method to be used',
},
{
displayName: 'HTTP Password',
name: 'http_password',
type: 'string',
default: '',
- description: 'The password used for password-protected web pages.',
+ description: 'The password used for password-protected web pages',
},
{
displayName: 'HTTP Username',
name: 'http_username',
type: 'string',
default: '',
- description: 'The username used for password-protected web pages.',
+ description: 'The username used for password-protected web pages',
},
{
displayName: 'Interval',
name: 'interval',
type: 'number',
default: '',
- description: 'The interval for the monitoring check.',
+ description: 'The interval for the monitoring check',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
default: '',
- description: 'The monitored port.',
+ description: 'The monitored port',
},
{
displayName: 'Status',
@@ -461,7 +461,7 @@ export const monitorFields: INodeProperties[] = [
value: 1,
},
],
- description: 'Select monitor statuses.',
+ description: 'Select monitor statuses',
},
{
displayName: 'Sub type',
@@ -498,14 +498,14 @@ export const monitorFields: INodeProperties[] = [
value: 4,
},
],
- description: 'Specify which pre-defined port/service or custom port is monitored.',
+ description: 'Specify which pre-defined port/service or custom port is monitored',
},
{
displayName: 'URL',
name: 'url',
type: 'string',
default: '',
- description: 'The URL/IP of the monitor.',
+ description: 'The URL/IP of the monitor',
},
],
},
diff --git a/packages/nodes-base/nodes/UptimeRobot/PublicStatusPageDescription.ts b/packages/nodes-base/nodes/UptimeRobot/PublicStatusPageDescription.ts
index 24eced7299..4028e09fe6 100644
--- a/packages/nodes-base/nodes/UptimeRobot/PublicStatusPageDescription.ts
+++ b/packages/nodes-base/nodes/UptimeRobot/PublicStatusPageDescription.ts
@@ -69,7 +69,7 @@ export const publicStatusPageFields: INodeProperties[] = [
],
},
},
- description: 'The friendly name of the status page.',
+ description: 'The friendly name of the status page',
},
{
displayName: 'Monitor IDs',
@@ -87,7 +87,7 @@ export const publicStatusPageFields: INodeProperties[] = [
],
},
},
- description: 'Monitor ids to be displayed in status page (the values are separated with a dash (-) or 0 for all monitors).',
+ description: 'Monitor ids to be displayed in status page (the values are separated with a dash (-) or 0 for all monitors)',
},
{
displayName: 'Additional Fields',
@@ -111,14 +111,14 @@ export const publicStatusPageFields: INodeProperties[] = [
name: 'custom_domain',
type: 'string',
default: '',
- description: 'The domain or subdomain that the status page will run on.',
+ description: 'The domain or subdomain that the status page will run on',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
- description: 'The password for the status page.',
+ description: 'The password for the status page',
},
{
displayName: 'Sort',
@@ -143,7 +143,7 @@ export const publicStatusPageFields: INodeProperties[] = [
value: 4,
},
],
- description: 'The sorting of the status page.',
+ description: 'The sorting of the status page',
},
],
},
@@ -168,7 +168,7 @@ export const publicStatusPageFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the public status page.',
+ description: 'The ID of the public status page',
},
/* -------------------------------------------------------------------------- */
@@ -189,7 +189,7 @@ export const publicStatusPageFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -213,7 +213,7 @@ export const publicStatusPageFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -237,7 +237,7 @@ export const publicStatusPageFields: INodeProperties[] = [
name: 'psps',
type: 'string',
default: '',
- description: 'Public status pages ids separated with dash, e.g. 236-1782-4790.',
+ description: 'Public status pages ids separated with dash, e.g. 236-1782-4790',
},
],
},
@@ -261,7 +261,7 @@ export const publicStatusPageFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the public status page.',
+ description: 'The ID of the public status page',
},
{
displayName: 'Update Fields',
@@ -285,28 +285,28 @@ export const publicStatusPageFields: INodeProperties[] = [
name: 'custom_domain',
type: 'string',
default: '',
- description: 'The domain or subdomain that the status page will run on.',
+ description: 'The domain or subdomain that the status page will run on',
},
{
displayName: 'Friendly Name',
name: 'friendly_name',
type: 'string',
default: '',
- description: 'The friendly name of the status page.',
+ description: 'The friendly name of the status page',
},
{
displayName: 'Monitor IDs',
name: 'monitors',
type: 'string',
default: '',
- description: 'Monitor IDs to be displayed in status page (the values are separated with a dash (-) or 0 for all monitors).',
+ description: 'Monitor IDs to be displayed in status page (the values are separated with a dash (-) or 0 for all monitors)',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
- description: 'The password for the status page.',
+ description: 'The password for the status page',
},
{
displayName: 'Sort',
diff --git a/packages/nodes-base/nodes/Vero/EventDescripion.ts b/packages/nodes-base/nodes/Vero/EventDescripion.ts
index e3b7dbdf55..c3191d9cc8 100644
--- a/packages/nodes-base/nodes/Vero/EventDescripion.ts
+++ b/packages/nodes-base/nodes/Vero/EventDescripion.ts
@@ -82,7 +82,7 @@ export const eventFields: INodeProperties[] = [
],
},
},
- description: 'The name of the event tracked.',
+ description: 'The name of the event tracked',
},
{
displayName: 'JSON Parameters',
@@ -133,14 +133,14 @@ export const eventFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
@@ -179,14 +179,14 @@ export const eventFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
diff --git a/packages/nodes-base/nodes/Vero/UserDescription.ts b/packages/nodes-base/nodes/Vero/UserDescription.ts
index 1df11cb7bb..6c4195c44e 100644
--- a/packages/nodes-base/nodes/Vero/UserDescription.ts
+++ b/packages/nodes-base/nodes/Vero/UserDescription.ts
@@ -26,27 +26,27 @@ export const userOperations: INodeProperties[] = [
{
name: 'Unsubscribe',
value: 'unsubscribe',
- description: 'Unsubscribe a user.',
+ description: 'Unsubscribe a user',
},
{
name: 'Re-subscribe',
value: 'resubscribe',
- description: 'Resubscribe a user.',
+ description: 'Resubscribe a user',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete a user.',
+ description: 'Delete a user',
},
{
name: 'Add Tags',
value: 'addTags',
- description: 'Adds a tag to a users profile.',
+ description: 'Adds a tag to a users profile',
},
{
name: 'Remove Tags',
value: 'removeTags',
- description: 'Removes a tag from a users profile.',
+ description: 'Removes a tag from a users profile',
},
],
default: 'create',
@@ -116,7 +116,7 @@ export const userFields: INodeProperties[] = [
name: 'email',
type: 'string',
default: '',
- description: 'The table to create the row in.',
+ description: 'The table to create the row in',
},
],
},
@@ -153,14 +153,14 @@ export const userFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the property to set.',
+ description: 'Name of the property to set',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the property to set.',
+ description: 'Value of the property to set',
},
],
},
diff --git a/packages/nodes-base/nodes/Vero/Vero.node.ts b/packages/nodes-base/nodes/Vero/Vero.node.ts
index dead0507e8..e100b8ea8b 100644
--- a/packages/nodes-base/nodes/Vero/Vero.node.ts
+++ b/packages/nodes-base/nodes/Vero/Vero.node.ts
@@ -51,12 +51,12 @@ export class Vero implements INodeType {
{
name: 'User',
value: 'user',
- description: `Create, update and manage the subscription status of your users.`,
+ description: 'Create, update and manage the subscription status of your users',
},
{
name: 'Event',
value: 'event',
- description: `Track events based on actions your customers take in real time.`,
+ description: 'Track events based on actions your customers take in real time',
},
],
default: 'user',
diff --git a/packages/nodes-base/nodes/Vonage/Vonage.node.ts b/packages/nodes-base/nodes/Vonage/Vonage.node.ts
index 27e9dd10b6..6262d56c28 100644
--- a/packages/nodes-base/nodes/Vonage/Vonage.node.ts
+++ b/packages/nodes-base/nodes/Vonage/Vonage.node.ts
@@ -362,7 +362,7 @@ export class Vonage implements INodeType {
name: 'client-ref',
type: 'string',
default: '',
- description: 'You can optionally include your own reference of up to 40 characters.',
+ description: 'You can optionally include your own reference of up to 40 characters',
},
{
displayName: 'Message Class',
@@ -401,7 +401,7 @@ export class Vonage implements INodeType {
name: 'status-report-req',
type: 'boolean',
default: false,
- description: 'Boolean indicating if you like to receive a Delivery Receipt.',
+ description: 'Boolean indicating if you like to receive a Delivery Receipt',
},
{
displayName: 'TTL (in minutes)',
diff --git a/packages/nodes-base/nodes/Wait/Wait.node.ts b/packages/nodes-base/nodes/Wait/Wait.node.ts
index 4e8af0f5f7..9794ddfa5a 100644
--- a/packages/nodes-base/nodes/Wait/Wait.node.ts
+++ b/packages/nodes-base/nodes/Wait/Wait.node.ts
@@ -123,7 +123,7 @@ export class Wait implements INodeType {
},
],
default: 'none',
- description: 'If and how incoming resume-webhook-requests to $resumeWebhookUrl should be authenticated for additional security.',
+ description: 'If and how incoming resume-webhook-requests to $resumeWebhookUrl should be authenticated for additional security',
},
{
displayName: 'Resume',
diff --git a/packages/nodes-base/nodes/Webflow/ItemDescription.ts b/packages/nodes-base/nodes/Webflow/ItemDescription.ts
index c301bec0b9..b8cc2ae006 100644
--- a/packages/nodes-base/nodes/Webflow/ItemDescription.ts
+++ b/packages/nodes-base/nodes/Webflow/ItemDescription.ts
@@ -64,7 +64,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the site containing the collection whose items to add to.',
+ description: 'ID of the site containing the collection whose items to add to',
},
{
displayName: 'Collection ID',
@@ -88,7 +88,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the collection to add an item to.',
+ description: 'ID of the collection to add an item to',
},
{
displayName: 'Live',
@@ -106,7 +106,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'Whether the item should be published on the live site.',
+ description: 'Whether the item should be published on the live site',
},
{
displayName: 'Fields',
@@ -143,14 +143,14 @@ export const itemFields: INodeProperties[] = [
],
},
default: '',
- description: 'Field to set for the item to create.',
+ description: 'Field to set for the item to create',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
default: '',
- description: 'Value to set for the item to create.',
+ description: 'Value to set for the item to create',
},
],
},
@@ -180,7 +180,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the site containing the collection whose items to operate on.',
+ description: 'ID of the site containing the collection whose items to operate on',
},
{
displayName: 'Collection ID',
@@ -205,7 +205,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the collection whose items to operate on.',
+ description: 'ID of the collection whose items to operate on',
},
{
displayName: 'Item ID',
@@ -224,7 +224,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the item to operate on.',
+ description: 'ID of the item to operate on',
},
// ----------------------------------
// item: update
@@ -248,7 +248,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the site containing the collection whose items to update.',
+ description: 'ID of the site containing the collection whose items to update',
},
{
displayName: 'Collection ID',
@@ -272,7 +272,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the collection whose items to update.',
+ description: 'ID of the collection whose items to update',
},
{
displayName: 'Item ID',
@@ -290,7 +290,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the item to update.',
+ description: 'ID of the item to update',
},
{
displayName: 'Live',
@@ -308,7 +308,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'Whether the item should be published on the live site.',
+ description: 'Whether the item should be published on the live site',
},
{
displayName: 'Fields',
@@ -345,14 +345,14 @@ export const itemFields: INodeProperties[] = [
],
},
default: '',
- description: 'Field to set for the item to update.',
+ description: 'Field to set for the item to update',
},
{
displayName: 'Field Value',
name: 'fieldValue',
type: 'string',
default: '',
- description: 'Value to set for the item to update.',
+ description: 'Value to set for the item to update',
},
],
},
@@ -380,7 +380,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the site containing the collection whose items to retrieve.',
+ description: 'ID of the site containing the collection whose items to retrieve',
},
{
displayName: 'Collection ID',
@@ -404,7 +404,7 @@ export const itemFields: INodeProperties[] = [
],
},
},
- description: 'ID of the collection whose items to retrieve.',
+ description: 'ID of the collection whose items to retrieve',
},
{
displayName: 'Return All',
@@ -421,7 +421,7 @@ export const itemFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -445,6 +445,6 @@ export const itemFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Webhook/Webhook.node.ts b/packages/nodes-base/nodes/Webhook/Webhook.node.ts
index 0a6281b742..66103a9861 100644
--- a/packages/nodes-base/nodes/Webhook/Webhook.node.ts
+++ b/packages/nodes-base/nodes/Webhook/Webhook.node.ts
@@ -115,7 +115,7 @@ export class Webhook implements INodeType {
},
],
default: 'none',
- description: 'The way to authenticate.',
+ description: 'The way to authenticate',
},
{
displayName: 'HTTP Method',
@@ -148,7 +148,7 @@ export class Webhook implements INodeType {
},
],
default: 'GET',
- description: 'The HTTP method to listen to.',
+ description: 'The HTTP method to listen to',
},
{
displayName: 'Path',
@@ -157,7 +157,7 @@ export class Webhook implements INodeType {
default: '',
placeholder: 'webhook',
required: true,
- description: 'The path to listen to.',
+ description: 'The path to listen to',
},
{
displayName: 'Respond',
@@ -181,7 +181,7 @@ export class Webhook implements INodeType {
},
],
default: 'onReceived',
- description: 'When and how to respond to the webhook.',
+ description: 'When and how to respond to the webhook',
},
{
displayName: 'Insert a \'Respond to Webhook\' node to control when and how you respond. More details',
@@ -244,7 +244,7 @@ export class Webhook implements INodeType {
{
name: 'No Response Body',
value: 'noData',
- description: 'Returns without a body.',
+ description: 'Returns without a body',
},
],
default: 'firstEntryJson',
@@ -286,7 +286,7 @@ export class Webhook implements INodeType {
},
},
default: false,
- description: 'Set to true if webhook will receive binary data.',
+ description: 'Set to true if webhook will receive binary data',
},
{
displayName: 'Binary Property',
@@ -364,7 +364,7 @@ export class Webhook implements INodeType {
},
default: '',
placeholder: 'success',
- description: 'Custom response data to send.',
+ description: 'Custom response data to send',
},
{
displayName: 'Response Content-Type',
@@ -382,13 +382,13 @@ export class Webhook implements INodeType {
},
default: '',
placeholder: 'application/xml',
- description: 'Set a custom content-type to return if another one as the "application/json" should be returned.',
+ description: 'Set a custom content-type to return if another one as the "application/json" should be returned',
},
{
displayName: 'Response Headers',
name: 'responseHeaders',
placeholder: 'Add Response Header',
- description: 'Add headers to the webhook response.',
+ description: 'Add headers to the webhook response',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -404,14 +404,14 @@ export class Webhook implements INodeType {
name: 'name',
type: 'string',
default: '',
- description: 'Name of the header.',
+ description: 'Name of the header',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the header.',
+ description: 'Value of the header',
},
],
},
@@ -432,7 +432,7 @@ export class Webhook implements INodeType {
},
},
default: 'data',
- description: 'Name of the property to return the data of instead of the whole JSON.',
+ description: 'Name of the property to return the data of instead of the whole JSON',
},
],
},
diff --git a/packages/nodes-base/nodes/Wekan/BoardDescription.ts b/packages/nodes-base/nodes/Wekan/BoardDescription.ts
index 0d7c8adadf..e92b761a1d 100644
--- a/packages/nodes-base/nodes/Wekan/BoardDescription.ts
+++ b/packages/nodes-base/nodes/Wekan/BoardDescription.ts
@@ -66,7 +66,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'The title of the board.',
+ description: 'The title of the board',
},
{
displayName: 'Owner',
@@ -87,7 +87,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'The user ID in Wekan.',
+ description: 'The user ID in Wekan',
},
{
displayName: 'Additional Fields',
@@ -111,14 +111,14 @@ export const boardFields: INodeProperties[] = [
name: 'isActive',
type: 'boolean',
default: false,
- description: 'Set the board active.',
+ description: 'Set the board active',
},
{
displayName: 'Admin',
name: 'isAdmin',
type: 'boolean',
default: false,
- description: 'Set the owner an admin of the board.',
+ description: 'Set the owner an admin of the board',
},
{
displayName: 'Color',
@@ -151,21 +151,21 @@ export const boardFields: INodeProperties[] = [
},
],
default: '',
- description: 'The color of the board.',
+ description: 'The color of the board',
},
{
displayName: 'Comment only',
name: 'isCommentOnly',
type: 'boolean',
default: false,
- description: 'Only enable comments.',
+ description: 'Only enable comments',
},
{
displayName: 'No comments',
name: 'isNoComments',
type: 'boolean',
default: false,
- description: 'Disable comments.',
+ description: 'Disable comments',
},
{
displayName: 'Permission',
@@ -182,14 +182,14 @@ export const boardFields: INodeProperties[] = [
},
],
default: 'private',
- description: 'Set the board permission.',
+ description: 'Set the board permission',
},
{
displayName: 'Worker',
name: 'isWorker',
type: 'boolean',
default: false,
- description: 'Only move cards, assign himself to card and comment.',
+ description: 'Only move cards, assign himself to card and comment',
},
],
},
@@ -213,7 +213,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board to delete.',
+ description: 'The ID of the board to delete',
},
// ----------------------------------
@@ -235,7 +235,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board to get.',
+ description: 'The ID of the board to get',
},
// ----------------------------------
@@ -260,7 +260,7 @@ export const boardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the user that boards are attached.',
+ description: 'The ID of the user that boards are attached',
},
{
displayName: 'Return All',
@@ -277,7 +277,7 @@ export const boardFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -301,7 +301,7 @@ export const boardFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Wekan/CardCommentDescription.ts b/packages/nodes-base/nodes/Wekan/CardCommentDescription.ts
index 7dfe92ea2d..b70817179f 100644
--- a/packages/nodes-base/nodes/Wekan/CardCommentDescription.ts
+++ b/packages/nodes-base/nodes/Wekan/CardCommentDescription.ts
@@ -64,7 +64,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that card belongs to.',
+ description: 'The ID of the board that card belongs to',
},
{
displayName: 'List ID',
@@ -88,7 +88,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -134,7 +134,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The user who posted the comment.',
+ description: 'The user who posted the comment',
},
{
displayName: 'Comment',
@@ -152,7 +152,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The comment text.',
+ description: 'The comment text',
},
// ----------------------------------
@@ -177,7 +177,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that card belongs to.',
+ description: 'The ID of the board that card belongs to',
},
{
displayName: 'List ID',
@@ -201,7 +201,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -226,7 +226,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card.',
+ description: 'The ID of the card',
},
{
displayName: 'Comment ID',
@@ -251,7 +251,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the comment to delete.',
+ description: 'The ID of the comment to delete',
},
// ----------------------------------
@@ -273,7 +273,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that card belongs to.',
+ description: 'The ID of the board that card belongs to',
},
{
displayName: 'List ID',
@@ -297,7 +297,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -322,7 +322,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card.',
+ description: 'The ID of the card',
},
{
displayName: 'Comment ID',
@@ -340,7 +340,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the comment to get.',
+ description: 'The ID of the comment to get',
},
// ----------------------------------
@@ -365,7 +365,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that card belongs to.',
+ description: 'The ID of the board that card belongs to',
},
{
displayName: 'List ID',
@@ -389,7 +389,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -414,7 +414,7 @@ export const cardCommentFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card.',
+ description: 'The ID of the card',
},
{
displayName: 'Return All',
@@ -431,7 +431,7 @@ export const cardCommentFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -455,6 +455,6 @@ export const cardCommentFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Wekan/CardDescription.ts b/packages/nodes-base/nodes/Wekan/CardDescription.ts
index 61b6a806a4..99c696e69e 100644
--- a/packages/nodes-base/nodes/Wekan/CardDescription.ts
+++ b/packages/nodes-base/nodes/Wekan/CardDescription.ts
@@ -72,7 +72,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that list belongs to.',
+ description: 'The ID of the board that list belongs to',
},
{
displayName: 'List ID',
@@ -96,7 +96,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list to create card in.',
+ description: 'The ID of the list to create card in',
},
{
displayName: 'Title',
@@ -115,7 +115,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The title of the card.',
+ description: 'The title of the card',
},
{
displayName: 'Swimlane ID',
@@ -139,7 +139,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The swimlane ID of the new card.',
+ description: 'The swimlane ID of the new card',
},
{
displayName: 'Author ID',
@@ -160,7 +160,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The author ID.',
+ description: 'The author ID',
},
{
displayName: 'Additional Fields',
@@ -187,14 +187,14 @@ export const cardFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: [],
- description: 'The new list of assignee IDs attached to the card.',
+ description: 'The new list of assignee IDs attached to the card',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'The new description of the card.',
+ description: 'The new description of the card',
},
{
displayName: 'Members',
@@ -204,7 +204,7 @@ export const cardFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: [],
- description: 'The new list of member IDs attached to the card.',
+ description: 'The new list of member IDs attached to the card',
},
],
},
@@ -231,7 +231,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that list belongs to.',
+ description: 'The ID of the board that list belongs to',
},
{
displayName: 'List ID',
@@ -255,7 +255,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -280,7 +280,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to delete.',
+ description: 'The ID of the card to delete',
},
// ----------------------------------
@@ -305,7 +305,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that list belongs to.',
+ description: 'The ID of the board that list belongs to',
},
{
displayName: 'List ID',
@@ -329,7 +329,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -347,7 +347,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to get.',
+ description: 'The ID of the card to get',
},
// ----------------------------------
@@ -372,7 +372,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that list belongs to.',
+ description: 'The ID of the board that list belongs to',
},
{
displayName: 'From Object',
@@ -426,7 +426,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Swimlane ID',
@@ -452,7 +452,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the swimlane that card belongs to.',
+ description: 'The ID of the swimlane that card belongs to',
},
{
displayName: 'Return All',
@@ -469,7 +469,7 @@ export const cardFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -493,7 +493,7 @@ export const cardFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
// ----------------------------------
@@ -518,7 +518,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that list belongs to.',
+ description: 'The ID of the board that list belongs to',
},
{
displayName: 'List ID',
@@ -542,7 +542,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -567,7 +567,7 @@ export const cardFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to update.',
+ description: 'The ID of the card to update',
},
{
displayName: 'Update Fields',
@@ -594,7 +594,7 @@ export const cardFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: '',
- description: 'Update the owner of the card.',
+ description: 'Update the owner of the card',
},
{
displayName: 'Assignees',
@@ -604,7 +604,7 @@ export const cardFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: [],
- description: 'The new list of assignee IDs attached to the card.',
+ description: 'The new list of assignee IDs attached to the card',
},
{
displayName: 'Color',
@@ -713,35 +713,35 @@ export const cardFields: INodeProperties[] = [
},
],
default: '',
- description: 'The new color of the card.',
+ description: 'The new color of the card',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'The new description of the card.',
+ description: 'The new description of the card',
},
{
displayName: 'Due At',
name: 'dueAt',
type: 'dateTime',
default: '',
- description: 'The new due at field of the card.',
+ description: 'The new due at field of the card',
},
{
displayName: 'End At',
name: 'endAt',
type: 'dateTime',
default: '',
- description: 'The new end at field of the card.',
+ description: 'The new end at field of the card',
},
{
displayName: 'Label IDs',
name: 'labelIds',
type: 'string',
default: '',
- description: 'The label IDs attached to the card.',
+ description: 'The label IDs attached to the card',
},
{
displayName: 'List ID',
@@ -754,7 +754,7 @@ export const cardFields: INodeProperties[] = [
],
},
default: '',
- description: 'The new list ID of the card (move operation).',
+ description: 'The new list ID of the card (move operation)',
},
{
displayName: 'Members',
@@ -764,14 +764,14 @@ export const cardFields: INodeProperties[] = [
loadOptionsMethod: 'getUsers',
},
default: [],
- description: 'The new list of member IDs attached to the card.',
+ description: 'The new list of member IDs attached to the card',
},
{
displayName: 'Over Time',
name: 'isOverTime',
type: 'boolean',
default: false,
- description: 'The new over time field of the card.',
+ description: 'The new over time field of the card',
},
{
displayName: 'Parent ID',
@@ -785,21 +785,21 @@ export const cardFields: INodeProperties[] = [
],
},
default: '',
- description: 'The parent of the card.',
+ description: 'The parent of the card',
},
{
displayName: 'Received At',
name: 'receivedAt',
type: 'dateTime',
default: '',
- description: 'The new received at field of the card.',
+ description: 'The new received at field of the card',
},
{
displayName: 'Sort',
name: 'sort',
type: 'number',
default: 0,
- description: 'The internally used sort value of a card.',
+ description: 'The internally used sort value of a card',
},
{
displayName: 'Spent Time',
@@ -809,14 +809,14 @@ export const cardFields: INodeProperties[] = [
minValue: 0,
},
default: '',
- description: 'The new spent time field of the card.',
+ description: 'The new spent time field of the card',
},
{
displayName: 'Start At',
name: 'startAt',
type: 'dateTime',
default: '',
- description: 'The new start at field of the card.',
+ description: 'The new start at field of the card',
},
{
displayName: 'Swimlane ID',
@@ -829,14 +829,14 @@ export const cardFields: INodeProperties[] = [
],
},
default: '',
- description: 'The new swimlane ID of the card.',
+ description: 'The new swimlane ID of the card',
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
- description: 'The new title of the card.',
+ description: 'The new title of the card',
},
],
},
diff --git a/packages/nodes-base/nodes/Wekan/ChecklistDescription.ts b/packages/nodes-base/nodes/Wekan/ChecklistDescription.ts
index 69b009bb1f..97d86fdaff 100644
--- a/packages/nodes-base/nodes/Wekan/ChecklistDescription.ts
+++ b/packages/nodes-base/nodes/Wekan/ChecklistDescription.ts
@@ -68,7 +68,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board where the card is in.',
+ description: 'The ID of the board where the card is in',
},
{
displayName: 'List ID',
@@ -92,7 +92,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -117,7 +117,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to add checklist to.',
+ description: 'The ID of the card to add checklist to',
},
{
displayName: 'Title',
@@ -135,7 +135,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The title of the checklist to add.',
+ description: 'The title of the checklist to add',
},
{
displayName: 'Items',
@@ -156,7 +156,7 @@ export const checklistFields: INodeProperties[] = [
},
},
default: [],
- description: 'Items to be added to the checklist.',
+ description: 'Items to be added to the checklist',
},
// ----------------------------------
@@ -181,7 +181,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that card belongs to.',
+ description: 'The ID of the board that card belongs to',
},
{
displayName: 'List ID',
@@ -205,7 +205,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -230,7 +230,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that checklist belongs to.',
+ description: 'The ID of the card that checklist belongs to',
},
{
displayName: 'Checklist ID',
@@ -255,7 +255,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklist to delete.',
+ description: 'The ID of the checklist to delete',
},
// ----------------------------------
@@ -280,7 +280,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that card belongs to.',
+ description: 'The ID of the board that card belongs to',
},
{
displayName: 'List ID',
@@ -304,7 +304,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -329,7 +329,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that checklist belongs to.',
+ description: 'The ID of the card that checklist belongs to',
},
{
displayName: 'Checklist ID',
@@ -354,7 +354,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklist to get.',
+ description: 'The ID of the checklist to get',
},
// ----------------------------------
@@ -379,7 +379,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that list belongs to.',
+ description: 'The ID of the board that list belongs to',
},
{
displayName: 'List ID',
@@ -403,7 +403,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -428,7 +428,7 @@ export const checklistFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card to get checklists.',
+ description: 'The ID of the card to get checklists',
},
{
displayName: 'Return All',
@@ -445,7 +445,7 @@ export const checklistFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -469,6 +469,6 @@ export const checklistFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Wekan/ChecklistItemDescription.ts b/packages/nodes-base/nodes/Wekan/ChecklistItemDescription.ts
index 4bfacf18c0..e6f5739df2 100644
--- a/packages/nodes-base/nodes/Wekan/ChecklistItemDescription.ts
+++ b/packages/nodes-base/nodes/Wekan/ChecklistItemDescription.ts
@@ -63,7 +63,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that card belongs to.',
+ description: 'The ID of the board that card belongs to',
},
{
displayName: 'List ID',
@@ -87,7 +87,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -112,7 +112,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that checklistItem belongs to.',
+ description: 'The ID of the card that checklistItem belongs to',
},
{
displayName: 'Checklist ID',
@@ -137,7 +137,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklistItem that card belongs to.',
+ description: 'The ID of the checklistItem that card belongs to',
},
{
displayName: 'Checklist Item ID',
@@ -163,7 +163,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklistItem item to get.',
+ description: 'The ID of the checklistItem item to get',
},
// ----------------------------------
@@ -188,7 +188,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that card belongs to.',
+ description: 'The ID of the board that card belongs to',
},
{
displayName: 'List ID',
@@ -212,7 +212,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -237,7 +237,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that checklistItem belongs to.',
+ description: 'The ID of the card that checklistItem belongs to',
},
{
displayName: 'Checklist ID',
@@ -255,7 +255,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklistItem that card belongs to.',
+ description: 'The ID of the checklistItem that card belongs to',
},
{
displayName: 'Checklist Item ID',
@@ -281,7 +281,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklistItem item to get.',
+ description: 'The ID of the checklistItem item to get',
},
// ----------------------------------
@@ -306,7 +306,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that card belongs to.',
+ description: 'The ID of the board that card belongs to',
},
{
displayName: 'List ID',
@@ -330,7 +330,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list that card belongs to.',
+ description: 'The ID of the list that card belongs to',
},
{
displayName: 'Card ID',
@@ -355,7 +355,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the card that checklistItem belongs to.',
+ description: 'The ID of the card that checklistItem belongs to',
},
{
displayName: 'CheckList ID',
@@ -380,7 +380,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklistItem that card belongs to.',
+ description: 'The ID of the checklistItem that card belongs to',
},
{
displayName: 'Checklist Item ID',
@@ -406,7 +406,7 @@ export const checklistItemFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the checklistItem item to update.',
+ description: 'The ID of the checklistItem item to update',
},
{
displayName: 'Update Fields',
@@ -430,7 +430,7 @@ export const checklistItemFields: INodeProperties[] = [
name: 'title',
type: 'string',
default: '',
- description: 'The new title for the checklistItem item.',
+ description: 'The new title for the checklistItem item',
},
{
displayName: 'Finished',
diff --git a/packages/nodes-base/nodes/Wekan/ListDescription.ts b/packages/nodes-base/nodes/Wekan/ListDescription.ts
index bd013efc14..85429c5213 100644
--- a/packages/nodes-base/nodes/Wekan/ListDescription.ts
+++ b/packages/nodes-base/nodes/Wekan/ListDescription.ts
@@ -86,7 +86,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The title of the list.',
+ description: 'The title of the list',
},
// ----------------------------------
@@ -111,7 +111,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that list belongs to.',
+ description: 'The ID of the board that list belongs to',
},
{
displayName: 'List ID',
@@ -135,7 +135,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list to delete.',
+ description: 'The ID of the list to delete',
},
// ----------------------------------
@@ -160,7 +160,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the board that list belongs to.',
+ description: 'The ID of the board that list belongs to',
},
{
displayName: 'List ID',
@@ -178,7 +178,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'The ID of the list to get.',
+ description: 'The ID of the list to get',
},
// ----------------------------------
@@ -203,7 +203,7 @@ export const listFields: INodeProperties[] = [
],
},
},
- description: 'ID of the board where the lists are in.',
+ description: 'ID of the board where the lists are in',
},
{
displayName: 'Return All',
@@ -220,7 +220,7 @@ export const listFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -244,7 +244,7 @@ export const listFields: INodeProperties[] = [
maxValue: 200,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Wise/WiseTrigger.node.ts b/packages/nodes-base/nodes/Wise/WiseTrigger.node.ts
index cded9a2b54..e0cafff09d 100644
--- a/packages/nodes-base/nodes/Wise/WiseTrigger.node.ts
+++ b/packages/nodes-base/nodes/Wise/WiseTrigger.node.ts
@@ -72,17 +72,17 @@ export class WiseTrigger implements INodeType {
{
name: 'Balance Credit',
value: 'balanceCredit',
- description: 'Triggered every time a balance account is credited.',
+ description: 'Triggered every time a balance account is credited',
},
{
name: 'Transfer Active Case',
value: 'transferActiveCases',
- description: `Triggered every time a transfer's list of active cases is updated.`,
+ description: 'Triggered every time a transfer\'s list of active cases is updated',
},
{
name: 'Transfer State Changed',
value: 'tranferStateChange',
- description: `Triggered every time a transfer's status is updated.`,
+ description: 'Triggered every time a transfer\'s status is updated',
},
],
},
diff --git a/packages/nodes-base/nodes/Wise/descriptions/AccountDescription.ts b/packages/nodes-base/nodes/Wise/descriptions/AccountDescription.ts
index 3e27b964e5..63ddf47275 100644
--- a/packages/nodes-base/nodes/Wise/descriptions/AccountDescription.ts
+++ b/packages/nodes-base/nodes/Wise/descriptions/AccountDescription.ts
@@ -13,17 +13,17 @@ export const accountOperations: INodeProperties[] = [
{
name: 'Get Balances',
value: 'getBalances',
- description: 'Retrieve balances for all account currencies of this user.',
+ description: 'Retrieve balances for all account currencies of this user',
},
{
name: 'Get Currencies',
value: 'getCurrencies',
- description: 'Retrieve currencies in the borderless account of this user.',
+ description: 'Retrieve currencies in the borderless account of this user',
},
{
name: 'Get Statement',
value: 'getStatement',
- description: 'Retrieve the statement for the borderless account of this user.',
+ description: 'Retrieve the statement for the borderless account of this user',
},
],
displayOptions: {
@@ -49,7 +49,7 @@ export const accountFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getProfiles',
},
- description: 'ID of the user profile to retrieve the balance of.',
+ description: 'ID of the user profile to retrieve the balance of',
displayOptions: {
show: {
resource: [
@@ -73,7 +73,7 @@ export const accountFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getProfiles',
},
- description: 'ID of the user profile whose account to retrieve the statement of.',
+ description: 'ID of the user profile whose account to retrieve the statement of',
displayOptions: {
show: {
resource: [
@@ -97,7 +97,7 @@ export const accountFields: INodeProperties[] = [
'profileId',
],
},
- description: 'ID of the borderless account to retrieve the statement of.',
+ description: 'ID of the borderless account to retrieve the statement of',
displayOptions: {
show: {
resource: [
@@ -115,7 +115,7 @@ export const accountFields: INodeProperties[] = [
type: 'string',
default: '',
// TODO: preload
- description: 'Code of the currency of the borderless account to retrieve the statement of.',
+ description: 'Code of the currency of the borderless account to retrieve the statement of',
displayOptions: {
show: {
resource: [
@@ -149,17 +149,17 @@ export const accountFields: INodeProperties[] = [
name: 'lineStyle',
type: 'options',
default: 'COMPACT',
- description: 'Line style to retrieve the statement in.',
+ description: 'Line style to retrieve the statement in',
options: [
{
name: 'Compact',
value: 'COMPACT',
- description: 'Single line per transaction.',
+ description: 'Single line per transaction',
},
{
name: 'Flat',
value: 'FLAT',
- description: 'Separate lines for transaction fees.',
+ description: 'Separate lines for transaction fees',
},
],
},
diff --git a/packages/nodes-base/nodes/Wise/descriptions/ExchangeRateDescription.ts b/packages/nodes-base/nodes/Wise/descriptions/ExchangeRateDescription.ts
index b56cbb2522..231b4f086c 100644
--- a/packages/nodes-base/nodes/Wise/descriptions/ExchangeRateDescription.ts
+++ b/packages/nodes-base/nodes/Wise/descriptions/ExchangeRateDescription.ts
@@ -34,7 +34,7 @@ export const exchangeRateFields: INodeProperties[] = [
name: 'source',
type: 'string',
default: '',
- description: 'Code of the source currency to retrieve the exchange rate for.',
+ description: 'Code of the source currency to retrieve the exchange rate for',
displayOptions: {
show: {
resource: [
@@ -51,7 +51,7 @@ export const exchangeRateFields: INodeProperties[] = [
name: 'target',
type: 'string',
default: '',
- description: 'Code of the target currency to retrieve the exchange rate for.',
+ description: 'Code of the target currency to retrieve the exchange rate for',
displayOptions: {
show: {
resource: [
@@ -105,7 +105,7 @@ export const exchangeRateFields: INodeProperties[] = [
name: 'range',
type: 'fixedCollection',
placeholder: 'Add Range',
- description: 'Range of time to retrieve the exchange rate for.',
+ description: 'Range of time to retrieve the exchange rate for',
default: {},
options: [
{
@@ -133,7 +133,7 @@ export const exchangeRateFields: INodeProperties[] = [
name: 'time',
type: 'dateTime',
default: '',
- description: 'Point in time to retrieve the exchange rate for.',
+ description: 'Point in time to retrieve the exchange rate for',
},
],
},
diff --git a/packages/nodes-base/nodes/Wise/descriptions/ProfileDescription.ts b/packages/nodes-base/nodes/Wise/descriptions/ProfileDescription.ts
index 10648d3f05..3299ac770b 100644
--- a/packages/nodes-base/nodes/Wise/descriptions/ProfileDescription.ts
+++ b/packages/nodes-base/nodes/Wise/descriptions/ProfileDescription.ts
@@ -42,7 +42,7 @@ export const profileFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getProfiles',
},
- description: 'ID of the user profile to retrieve.',
+ description: 'ID of the user profile to retrieve',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/Wise/descriptions/QuoteDescription.ts b/packages/nodes-base/nodes/Wise/descriptions/QuoteDescription.ts
index 66b1eaf3e8..7dace5abb1 100644
--- a/packages/nodes-base/nodes/Wise/descriptions/QuoteDescription.ts
+++ b/packages/nodes-base/nodes/Wise/descriptions/QuoteDescription.ts
@@ -42,7 +42,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getProfiles',
},
- description: 'ID of the user profile to create the quote under.',
+ description: 'ID of the user profile to create the quote under',
displayOptions: {
show: {
resource: [
@@ -63,7 +63,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getRecipients',
},
- description: 'ID of the account that will receive the funds.',
+ description: 'ID of the account that will receive the funds',
displayOptions: {
show: {
resource: [
@@ -90,7 +90,7 @@ export const quoteFields: INodeProperties[] = [
value: 'target',
},
],
- description: 'Whether the amount is to be sent or received.',
+ description: 'Whether the amount is to be sent or received',
displayOptions: {
show: {
resource: [
@@ -110,7 +110,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 1,
},
- description: 'Amount of funds for the quote to create.',
+ description: 'Amount of funds for the quote to create',
displayOptions: {
show: {
resource: [
@@ -127,7 +127,7 @@ export const quoteFields: INodeProperties[] = [
name: 'sourceCurrency',
type: 'string',
default: '',
- description: 'Code of the currency to send for the quote to create.',
+ description: 'Code of the currency to send for the quote to create',
displayOptions: {
show: {
resource: [
@@ -144,7 +144,7 @@ export const quoteFields: INodeProperties[] = [
name: 'targetCurrency',
type: 'string',
default: '',
- description: 'Code of the currency to receive for the quote to create.',
+ description: 'Code of the currency to receive for the quote to create',
displayOptions: {
show: {
resource: [
@@ -166,7 +166,7 @@ export const quoteFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'ID of the quote to retrieve.',
+ description: 'ID of the quote to retrieve',
displayOptions: {
show: {
resource: [
diff --git a/packages/nodes-base/nodes/Wise/descriptions/RecipientDescription.ts b/packages/nodes-base/nodes/Wise/descriptions/RecipientDescription.ts
index 977e38bd1a..59404b968b 100644
--- a/packages/nodes-base/nodes/Wise/descriptions/RecipientDescription.ts
+++ b/packages/nodes-base/nodes/Wise/descriptions/RecipientDescription.ts
@@ -34,7 +34,7 @@ export const recipientFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -51,7 +51,7 @@ export const recipientFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
diff --git a/packages/nodes-base/nodes/Wise/descriptions/TransferDescription.ts b/packages/nodes-base/nodes/Wise/descriptions/TransferDescription.ts
index 09530c3e8b..182b59cdd7 100644
--- a/packages/nodes-base/nodes/Wise/descriptions/TransferDescription.ts
+++ b/packages/nodes-base/nodes/Wise/descriptions/TransferDescription.ts
@@ -57,7 +57,7 @@ export const transferFields: INodeProperties[] = [
'profileId',
],
},
- description: 'ID of the user profile to retrieve the balance of.',
+ description: 'ID of the user profile to retrieve the balance of',
displayOptions: {
show: {
resource: [
@@ -75,7 +75,7 @@ export const transferFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'ID of the quote based on which to create the transfer.',
+ description: 'ID of the quote based on which to create the transfer',
displayOptions: {
show: {
resource: [
@@ -96,7 +96,7 @@ export const transferFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getRecipients',
},
- description: 'ID of the account that will receive the funds.',
+ description: 'ID of the account that will receive the funds',
displayOptions: {
show: {
resource: [
@@ -144,7 +144,7 @@ export const transferFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'ID of the transfer to delete.',
+ description: 'ID of the transfer to delete',
displayOptions: {
show: {
resource: [
@@ -169,7 +169,7 @@ export const transferFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getProfiles',
},
- description: 'ID of the user profile to execute the transfer under.',
+ description: 'ID of the user profile to execute the transfer under',
displayOptions: {
show: {
resource: [
@@ -187,7 +187,7 @@ export const transferFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'ID of the transfer to execute.',
+ description: 'ID of the transfer to execute',
displayOptions: {
show: {
resource: [
@@ -209,7 +209,7 @@ export const transferFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'ID of the transfer to retrieve.',
+ description: 'ID of the transfer to retrieve',
displayOptions: {
show: {
resource: [
@@ -245,7 +245,7 @@ export const transferFields: INodeProperties[] = [
type: 'string',
required: true,
default: 'data',
- description: 'Name of the binary property to which to write to.',
+ description: 'Name of the binary property to which to write to',
displayOptions: {
show: {
resource: [
@@ -267,7 +267,7 @@ export const transferFields: INodeProperties[] = [
required: true,
default: '',
placeholder: 'data.pdf',
- description: 'Name of the file that will be downloaded.',
+ description: 'Name of the file that will be downloaded',
displayOptions: {
show: {
resource: [
@@ -295,7 +295,7 @@ export const transferFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getProfiles',
},
- description: 'ID of the user profile to retrieve.',
+ description: 'ID of the user profile to retrieve',
displayOptions: {
show: {
resource: [
@@ -312,7 +312,7 @@ export const transferFields: INodeProperties[] = [
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -329,7 +329,7 @@ export const transferFields: INodeProperties[] = [
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -370,7 +370,7 @@ export const transferFields: INodeProperties[] = [
name: 'range',
type: 'fixedCollection',
placeholder: 'Add Range',
- description: 'Range of time for filtering the transfers.',
+ description: 'Range of time for filtering the transfers',
default: {},
options: [
{
@@ -398,7 +398,7 @@ export const transferFields: INodeProperties[] = [
name: 'sourceCurrency',
type: 'string',
default: '',
- description: 'Code of the source currency for filtering the transfers.',
+ description: 'Code of the source currency for filtering the transfers',
},
{
displayName: 'Status',
@@ -453,7 +453,7 @@ export const transferFields: INodeProperties[] = [
name: 'targetCurrency',
type: 'string',
default: '',
- description: 'Code of the target currency for filtering the transfers.',
+ description: 'Code of the target currency for filtering the transfers',
},
],
},
diff --git a/packages/nodes-base/nodes/WooCommerce/OrderDescription.ts b/packages/nodes-base/nodes/WooCommerce/OrderDescription.ts
index 2303a6488f..30beea226e 100644
--- a/packages/nodes-base/nodes/WooCommerce/OrderDescription.ts
+++ b/packages/nodes-base/nodes/WooCommerce/OrderDescription.ts
@@ -88,28 +88,28 @@ export const orderFields: INodeProperties[] = [
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'Note left by customer during checkout.',
+ description: 'Note left by customer during checkout',
},
{
displayName: 'Parent ID',
name: 'parentId',
type: 'string',
default: '',
- description: 'Parent order ID.',
+ description: 'Parent order ID',
},
{
displayName: 'Payment Method ID',
name: 'paymentMethodId',
type: 'string',
default: '',
- description: 'Payment method ID.',
+ description: 'Payment method ID',
},
{
displayName: 'Payment Method Title',
name: 'paymentMethodTitle',
type: 'string',
default: '',
- description: 'Payment method title.',
+ description: 'Payment method title',
},
{
displayName: 'Set Paid',
@@ -157,7 +157,7 @@ export const orderFields: INodeProperties[] = [
},
],
default: 'pending',
- description: 'A named status for the order.',
+ description: 'A named status for the order',
},
{
displayName: 'Transaction ID',
@@ -228,7 +228,7 @@ export const orderFields: INodeProperties[] = [
name: 'city',
type: 'string',
default: '',
- description: 'ISO code or name of the state, province or district.',
+ description: 'ISO code or name of the state, province or district',
},
{
displayName: 'Postal Code',
@@ -288,7 +288,7 @@ export const orderFields: INodeProperties[] = [
name: 'code',
type: 'string',
default: '',
- description: 'Coupon code.',
+ description: 'Coupon code',
},
{
displayName: 'Metadata',
@@ -310,14 +310,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -363,7 +363,7 @@ export const orderFields: INodeProperties[] = [
displayName: 'Tax Class ',
name: 'taxClass',
type: 'string',
- description: 'Tax class of fee.',
+ description: 'Tax class of fee',
default: '',
},
{
@@ -381,14 +381,14 @@ export const orderFields: INodeProperties[] = [
},
],
default: '',
- description: 'Tax class of fee.',
+ description: 'Tax class of fee',
},
{
displayName: 'Total ',
name: 'total',
type: 'string',
default: '',
- description: 'Line total (after discounts).',
+ description: 'Line total (after discounts)',
},
{
displayName: 'Metadata',
@@ -410,14 +410,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -457,49 +457,49 @@ export const orderFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Product name.',
+ description: 'Product name',
},
{
displayName: 'Product ID',
name: 'productId',
type: 'number',
default: 0,
- description: 'Product ID.',
+ description: 'Product ID',
},
{
displayName: 'Variation ID',
name: 'variationId',
type: 'number',
default: 0,
- description: 'Variation ID, if applicable.',
+ description: 'Variation ID, if applicable',
},
{
displayName: 'Quantity',
name: 'quantity',
type: 'number',
default: 1,
- description: 'Quantity ordered.',
+ description: 'Quantity ordered',
},
{
displayName: 'Tax Class',
name: 'taxClass',
type: 'string',
default: '',
- description: 'Slug of the tax class of product.',
+ description: 'Slug of the tax class of product',
},
{
displayName: 'Subtotal',
name: 'subtotal',
type: 'string',
default: '',
- description: 'Line subtotal (before discounts).',
+ description: 'Line subtotal (before discounts)',
},
{
displayName: 'Total',
name: 'total',
type: 'string',
default: '',
- description: 'Line total (after discounts).',
+ description: 'Line total (after discounts)',
},
{
displayName: 'Metadata',
@@ -521,14 +521,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -568,14 +568,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -641,7 +641,7 @@ export const orderFields: INodeProperties[] = [
name: 'city',
type: 'string',
default: '',
- description: 'ISO code or name of the state, province or district.',
+ description: 'ISO code or name of the state, province or district',
},
{
displayName: 'Postal Code',
@@ -695,7 +695,7 @@ export const orderFields: INodeProperties[] = [
displayName: 'Method ID ',
name: 'method ID',
type: 'string',
- description: 'Shipping method ID.',
+ description: 'Shipping method ID',
default: '',
},
{
@@ -703,7 +703,7 @@ export const orderFields: INodeProperties[] = [
name: 'total',
type: 'string',
default: '',
- description: 'Line total (after discounts).',
+ description: 'Line total (after discounts)',
},
{
displayName: 'Metadata',
@@ -725,14 +725,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -760,7 +760,7 @@ export const orderFields: INodeProperties[] = [
},
},
default: '',
- description: 'order ID.',
+ description: 'order ID',
},
{
displayName: 'Update Fields',
@@ -801,28 +801,28 @@ export const orderFields: INodeProperties[] = [
typeOptions: {
alwaysOpenEditWindow: true,
},
- description: 'Note left by customer during checkout.',
+ description: 'Note left by customer during checkout',
},
{
displayName: 'Parent ID',
name: 'parentId',
type: 'string',
default: '',
- description: 'Parent order ID.',
+ description: 'Parent order ID',
},
{
displayName: 'Payment Method ID',
name: 'paymentMethodId',
type: 'string',
default: '',
- description: 'Payment method ID.',
+ description: 'Payment method ID',
},
{
displayName: 'Payment Method Title',
name: 'paymentMethodTitle',
type: 'string',
default: '',
- description: 'Payment method title.',
+ description: 'Payment method title',
},
{
displayName: 'Status',
@@ -863,7 +863,7 @@ export const orderFields: INodeProperties[] = [
},
],
default: 'pending',
- description: 'A named status for the order.',
+ description: 'A named status for the order',
},
{
displayName: 'Transaction ID',
@@ -934,7 +934,7 @@ export const orderFields: INodeProperties[] = [
name: 'city',
type: 'string',
default: '',
- description: 'ISO code or name of the state, province or district.',
+ description: 'ISO code or name of the state, province or district',
},
{
displayName: 'Postal Code',
@@ -994,7 +994,7 @@ export const orderFields: INodeProperties[] = [
name: 'code',
type: 'string',
default: '',
- description: 'Coupon code.',
+ description: 'Coupon code',
},
{
displayName: 'Metadata',
@@ -1016,14 +1016,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -1069,7 +1069,7 @@ export const orderFields: INodeProperties[] = [
displayName: 'Tax Class ',
name: 'taxClass',
type: 'string',
- description: 'Tax class of fee.',
+ description: 'Tax class of fee',
default: '',
},
{
@@ -1087,14 +1087,14 @@ export const orderFields: INodeProperties[] = [
},
],
default: '',
- description: 'Tax class of fee.',
+ description: 'Tax class of fee',
},
{
displayName: 'Total ',
name: 'total',
type: 'string',
default: '',
- description: 'Line total (after discounts).',
+ description: 'Line total (after discounts)',
},
{
displayName: 'Metadata',
@@ -1116,14 +1116,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -1163,49 +1163,49 @@ export const orderFields: INodeProperties[] = [
name: 'name',
type: 'string',
default: '',
- description: 'Product name.',
+ description: 'Product name',
},
{
displayName: 'Product ID',
name: 'productId',
type: 'number',
default: 0,
- description: 'Product ID.',
+ description: 'Product ID',
},
{
displayName: 'Variation ID',
name: 'variationId',
type: 'number',
default: 0,
- description: 'Variation ID, if applicable.',
+ description: 'Variation ID, if applicable',
},
{
displayName: 'Quantity',
name: 'quantity',
type: 'number',
default: 1,
- description: 'Quantity ordered.',
+ description: 'Quantity ordered',
},
{
displayName: 'Tax Class',
name: 'taxClass',
type: 'string',
default: '',
- description: 'Slug of the tax class of product.',
+ description: 'Slug of the tax class of product',
},
{
displayName: 'Subtotal',
name: 'subtotal',
type: 'string',
default: '',
- description: 'Line subtotal (before discounts).',
+ description: 'Line subtotal (before discounts)',
},
{
displayName: 'Total',
name: 'total',
type: 'string',
default: '',
- description: 'Line total (after discounts).',
+ description: 'Line total (after discounts)',
},
{
displayName: 'Metadata',
@@ -1227,14 +1227,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -1274,14 +1274,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -1347,7 +1347,7 @@ export const orderFields: INodeProperties[] = [
name: 'city',
type: 'string',
default: '',
- description: 'ISO code or name of the state, province or district.',
+ description: 'ISO code or name of the state, province or district',
},
{
displayName: 'Postal Code',
@@ -1401,7 +1401,7 @@ export const orderFields: INodeProperties[] = [
displayName: 'Method ID ',
name: 'method ID',
type: 'string',
- description: 'Shipping method ID.',
+ description: 'Shipping method ID',
default: '',
},
{
@@ -1409,7 +1409,7 @@ export const orderFields: INodeProperties[] = [
name: 'total',
type: 'string',
default: '',
- description: 'Line total (after discounts).',
+ description: 'Line total (after discounts)',
},
{
displayName: 'Metadata',
@@ -1431,14 +1431,14 @@ export const orderFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -1466,7 +1466,7 @@ export const orderFields: INodeProperties[] = [
},
},
default: '',
- description: 'order ID.',
+ description: 'order ID',
},
/* -------------------------------------------------------------------------- */
/* order:getAll */
@@ -1486,7 +1486,7 @@ export const orderFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1510,7 +1510,7 @@ export const orderFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -1534,7 +1534,7 @@ export const orderFields: INodeProperties[] = [
name: 'after',
type: 'dateTime',
default: '',
- description: 'Limit response to resources published after a given ISO8601 compliant date.',
+ description: 'Limit response to resources published after a given ISO8601 compliant date',
},
{
displayName: 'Before',
@@ -1548,7 +1548,7 @@ export const orderFields: INodeProperties[] = [
name: 'customer',
type: 'string',
default: '',
- description: 'Limit result set to orders assigned a specific customer.',
+ description: 'Limit result set to orders assigned a specific customer',
},
{
displayName: 'Decimal Points',
@@ -1559,7 +1559,7 @@ export const orderFields: INodeProperties[] = [
maxValue: 10,
},
default: 2,
- description: 'Number of decimal points to use in each resource.',
+ description: 'Number of decimal points to use in each resource',
},
{
displayName: 'Order',
@@ -1576,14 +1576,14 @@ export const orderFields: INodeProperties[] = [
},
],
default: 'desc',
- description: 'Order sort attribute ascending or descending.',
+ description: 'Order sort attribute ascending or descending',
},
{
displayName: 'Product',
name: 'product',
type: 'string',
default: '',
- description: 'Limit result set to orders assigned a specific product.',
+ description: 'Limit result set to orders assigned a specific product',
},
{
displayName: 'Order By',
@@ -1612,14 +1612,14 @@ export const orderFields: INodeProperties[] = [
},
],
default: 'id',
- description: 'Sort collection by object attribute.',
+ description: 'Sort collection by object attribute',
},
{
displayName: 'Search',
name: 'search',
type: 'string',
default: '',
- description: 'Limit results to those matching a string.',
+ description: 'Limit results to those matching a string',
},
{
displayName: 'Status',
@@ -1664,7 +1664,7 @@ export const orderFields: INodeProperties[] = [
},
],
default: 'any',
- description: 'Limit result set to orders assigned a specific status.',
+ description: 'Limit result set to orders assigned a specific status',
},
],
},
@@ -1686,6 +1686,6 @@ export const orderFields: INodeProperties[] = [
},
},
default: '',
- description: 'order ID.',
+ description: 'order ID',
},
];
diff --git a/packages/nodes-base/nodes/WooCommerce/ProductDescription.ts b/packages/nodes-base/nodes/WooCommerce/ProductDescription.ts
index 33379085bc..18da2775c8 100644
--- a/packages/nodes-base/nodes/WooCommerce/ProductDescription.ts
+++ b/packages/nodes-base/nodes/WooCommerce/ProductDescription.ts
@@ -65,7 +65,7 @@ export const productFields: INodeProperties[] = [
],
},
},
- description: 'Product name.',
+ description: 'Product name',
},
{
displayName: 'Additional Fields',
@@ -135,7 +135,7 @@ export const productFields: INodeProperties[] = [
},
],
default: 'visible',
- description: 'Catalog visibility.',
+ description: 'Catalog visibility',
},
{
displayName: 'Categories',
@@ -159,14 +159,14 @@ export const productFields: INodeProperties[] = [
name: 'dateOnSaleFrom',
type: 'dateTime',
default: '',
- description: `Start date of sale price, in the site's timezone.`,
+ description: 'Start date of sale price, in the site\'s timezone',
},
{
displayName: 'Date On Sale To',
name: 'dateOnSaleTo',
type: 'dateTime',
default: '',
- description: `Ennd date of sale price, in the site's timezone.`,
+ description: 'Ennd date of sale price, in the site\'s timezone',
},
{
displayName: 'Description',
@@ -176,14 +176,14 @@ export const productFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Product description.',
+ description: 'Product description',
},
{
displayName: 'Downloadable',
name: 'downloadable',
type: 'boolean',
default: false,
- description: 'if the product is downloadable.',
+ description: 'if the product is downloadable',
},
{
displayName: 'External URL',
@@ -211,77 +211,77 @@ export const productFields: INodeProperties[] = [
name: 'menuOrder',
type: 'number',
default: 1,
- description: 'Menu order, used to custom sort products.',
+ description: 'Menu order, used to custom sort products',
},
{
displayName: 'Parent ID',
name: 'parentId',
type: 'string',
default: '',
- description: 'Product parent ID.',
+ description: 'Product parent ID',
},
{
displayName: 'Purchase Note',
name: 'purchaseNote',
type: 'string',
default: '',
- description: 'Optional note to send the customer after purchase.',
+ description: 'Optional note to send the customer after purchase',
},
{
displayName: 'Regular Price',
name: 'regularPrice',
type: 'string',
default: '',
- description: 'Product regular price.',
+ description: 'Product regular price',
},
{
displayName: 'Reviews Allowed',
name: 'reviewsAllowed',
type: 'boolean',
default: true,
- description: 'Allow reviews.',
+ description: 'Allow reviews',
},
{
displayName: 'Sale Price',
name: 'salePrice',
type: 'string',
default: '',
- description: 'Product sale price.',
+ description: 'Product sale price',
},
{
displayName: 'Shipping Class',
name: 'shippingClass',
type: 'string',
default: '',
- description: 'Shipping class slug.',
+ description: 'Shipping class slug',
},
{
displayName: 'Short Description',
name: 'shortDescription',
type: 'string',
default: '',
- description: 'Product short description.',
+ description: 'Product short description',
},
{
displayName: 'SKU',
name: 'sku',
type: 'string',
default: '',
- description: 'Unique identifier.',
+ description: 'Unique identifier',
},
{
displayName: 'Slug',
name: 'slug',
type: 'string',
default: '',
- description: 'Product slug.',
+ description: 'Product slug',
},
{
displayName: 'Sold Individually',
name: 'soldIndividually',
type: 'boolean',
default: false,
- description: 'Allow one item to be bought in a single order.',
+ description: 'Allow one item to be bought in a single order',
},
{
displayName: 'Status',
@@ -306,14 +306,14 @@ export const productFields: INodeProperties[] = [
},
],
default: 'publish',
- description: 'A named status for the product.',
+ description: 'A named status for the product',
},
{
displayName: 'Stock Quantity',
name: 'stockQuantity',
type: 'number',
default: 1,
- description: 'Stock quantity.',
+ description: 'Stock quantity',
},
{
displayName: 'Stock Status',
@@ -351,7 +351,7 @@ export const productFields: INodeProperties[] = [
name: 'taxClass',
type: 'string',
default: '',
- description: 'Tax class.',
+ description: 'Tax class',
},
{
displayName: 'Tax Status',
@@ -372,7 +372,7 @@ export const productFields: INodeProperties[] = [
},
],
default: 'taxable',
- description: 'Tax status.',
+ description: 'Tax status',
},
{
displayName: 'Type',
@@ -411,14 +411,14 @@ export const productFields: INodeProperties[] = [
name: 'virtual',
type: 'boolean',
default: false,
- description: 'If the product is virtual.',
+ description: 'If the product is virtual',
},
{
displayName: 'Weight',
name: 'weight',
type: 'string',
default: '',
- description: 'Product weight.',
+ description: 'Product weight',
},
],
},
@@ -452,21 +452,21 @@ export const productFields: INodeProperties[] = [
name: 'height',
type: 'string',
default: '',
- description: 'Product height.',
+ description: 'Product height',
},
{
displayName: 'Length',
name: 'length',
type: 'string',
default: '',
- description: 'Product length.',
+ description: 'Product length',
},
{
displayName: 'Width',
name: 'width',
type: 'string',
default: '',
- description: 'Product width.',
+ description: 'Product width',
},
],
},
@@ -502,21 +502,21 @@ export const productFields: INodeProperties[] = [
name: 'alt',
type: 'string',
default: '',
- description: 'Image alternative text.',
+ description: 'Image alternative text',
},
{
displayName: 'Src',
name: 'src',
type: 'string',
default: '',
- description: 'Image URL.',
+ description: 'Image URL',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Image name.',
+ description: 'Image name',
},
],
},
@@ -552,14 +552,14 @@ export const productFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -583,7 +583,7 @@ export const productFields: INodeProperties[] = [
},
},
default: '',
- description: 'Product ID.',
+ description: 'Product ID',
},
{
displayName: 'Update Fields',
@@ -653,7 +653,7 @@ export const productFields: INodeProperties[] = [
},
],
default: 'visible',
- description: 'Catalog visibility.',
+ description: 'Catalog visibility',
},
{
displayName: 'Categories',
@@ -677,14 +677,14 @@ export const productFields: INodeProperties[] = [
name: 'dateOnSaleFrom',
type: 'dateTime',
default: '',
- description: `Start date of sale price, in the site's timezone.`,
+ description: 'Start date of sale price, in the site\'s timezone',
},
{
displayName: 'Date On Sale To',
name: 'dateOnSaleTo',
type: 'dateTime',
default: '',
- description: `Ennd date of sale price, in the site's timezone.`,
+ description: 'Ennd date of sale price, in the site\'s timezone',
},
{
displayName: 'Description',
@@ -694,14 +694,14 @@ export const productFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Product description.',
+ description: 'Product description',
},
{
displayName: 'Downloadable',
name: 'downloadable',
type: 'boolean',
default: false,
- description: 'if the product is downloadable.',
+ description: 'if the product is downloadable',
},
{
displayName: 'External URL',
@@ -729,84 +729,84 @@ export const productFields: INodeProperties[] = [
name: 'menuOrder',
type: 'number',
default: 1,
- description: 'Menu order, used to custom sort products.',
+ description: 'Menu order, used to custom sort products',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Product name.',
+ description: 'Product name',
},
{
displayName: 'Parent ID',
name: 'parentId',
type: 'string',
default: '',
- description: 'Product parent ID.',
+ description: 'Product parent ID',
},
{
displayName: 'Purchase Note',
name: 'purchaseNote',
type: 'string',
default: '',
- description: 'Optional note to send the customer after purchase.',
+ description: 'Optional note to send the customer after purchase',
},
{
displayName: 'Regular Price',
name: 'regularPrice',
type: 'string',
default: '',
- description: 'Product regular price.',
+ description: 'Product regular price',
},
{
displayName: 'Reviews Allowed',
name: 'reviewsAllowed',
type: 'boolean',
default: true,
- description: 'Allow reviews.',
+ description: 'Allow reviews',
},
{
displayName: 'Sale Price',
name: 'salePrice',
type: 'string',
default: '',
- description: 'Product sale price.',
+ description: 'Product sale price',
},
{
displayName: 'Shipping Class',
name: 'shippingClass',
type: 'string',
default: '',
- description: 'Shipping class slug.',
+ description: 'Shipping class slug',
},
{
displayName: 'Short Description',
name: 'shortDescription',
type: 'string',
default: '',
- description: 'Product short description.',
+ description: 'Product short description',
},
{
displayName: 'SKU',
name: 'sku',
type: 'string',
default: '',
- description: 'Unique identifier.',
+ description: 'Unique identifier',
},
{
displayName: 'Slug',
name: 'slug',
type: 'string',
default: '',
- description: 'Product slug.',
+ description: 'Product slug',
},
{
displayName: 'Sold Individually',
name: 'soldIndividually',
type: 'boolean',
default: false,
- description: 'Allow one item to be bought in a single order.',
+ description: 'Allow one item to be bought in a single order',
},
{
displayName: 'Status',
@@ -831,14 +831,14 @@ export const productFields: INodeProperties[] = [
},
],
default: 'publish',
- description: 'A named status for the product.',
+ description: 'A named status for the product',
},
{
displayName: 'Stock Quantity',
name: 'stockQuantity',
type: 'number',
default: 1,
- description: 'Stock quantity.',
+ description: 'Stock quantity',
},
{
displayName: 'Stock Status',
@@ -876,7 +876,7 @@ export const productFields: INodeProperties[] = [
name: 'taxClass',
type: 'string',
default: '',
- description: 'Tax class.',
+ description: 'Tax class',
},
{
displayName: 'Tax Status',
@@ -897,7 +897,7 @@ export const productFields: INodeProperties[] = [
},
],
default: 'taxable',
- description: 'Tax status.',
+ description: 'Tax status',
},
{
displayName: 'Type',
@@ -936,14 +936,14 @@ export const productFields: INodeProperties[] = [
name: 'virtual',
type: 'boolean',
default: false,
- description: 'If the product is virtual.',
+ description: 'If the product is virtual',
},
{
displayName: 'Weight',
name: 'weight',
type: 'string',
default: '',
- description: 'Product weight.',
+ description: 'Product weight',
},
],
},
@@ -977,21 +977,21 @@ export const productFields: INodeProperties[] = [
name: 'height',
type: 'string',
default: '',
- description: 'Product height.',
+ description: 'Product height',
},
{
displayName: 'Length',
name: 'length',
type: 'string',
default: '',
- description: 'Product length.',
+ description: 'Product length',
},
{
displayName: 'Width',
name: 'width',
type: 'string',
default: '',
- description: 'Product width.',
+ description: 'Product width',
},
],
},
@@ -1027,21 +1027,21 @@ export const productFields: INodeProperties[] = [
name: 'alt',
type: 'string',
default: '',
- description: 'Image alternative text.',
+ description: 'Image alternative text',
},
{
displayName: 'Src',
name: 'src',
type: 'string',
default: '',
- description: 'Image URL.',
+ description: 'Image URL',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Image name.',
+ description: 'Image name',
},
],
},
@@ -1077,14 +1077,14 @@ export const productFields: INodeProperties[] = [
name: 'key',
type: 'string',
default: '',
- description: 'Name of the metadata key to add.',
+ description: 'Name of the metadata key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set for the metadata key.',
+ description: 'Value to set for the metadata key',
},
],
},
@@ -1108,7 +1108,7 @@ export const productFields: INodeProperties[] = [
},
},
default: '',
- description: 'Product ID.',
+ description: 'Product ID',
},
/* -------------------------------------------------------------------------- */
/* product:getAll */
@@ -1128,7 +1128,7 @@ export const productFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -1152,7 +1152,7 @@ export const productFields: INodeProperties[] = [
maxValue: 100,
},
default: 50,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -1176,7 +1176,7 @@ export const productFields: INodeProperties[] = [
name: 'after',
type: 'dateTime',
default: '',
- description: 'Limit response to resources published after a given ISO8601 compliant date.',
+ description: 'Limit response to resources published after a given ISO8601 compliant date',
},
{
displayName: 'Before',
@@ -1193,7 +1193,7 @@ export const productFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCategories',
},
- description: 'Limit result set to products assigned a specific category ID.',
+ description: 'Limit result set to products assigned a specific category ID',
},
{
displayName: 'Context',
@@ -1214,28 +1214,28 @@ export const productFields: INodeProperties[] = [
},
],
default: 'view',
- description: 'Scope under which the request is made; determines fields present in response.',
+ description: 'Scope under which the request is made; determines fields present in response',
},
{
displayName: 'Featured',
name: 'featured',
type: 'boolean',
default: false,
- description: 'Limit result set to featured products.',
+ description: 'Limit result set to featured products',
},
{
displayName: 'Max Price',
name: 'maxPrice',
type: 'string',
default: '',
- description: 'Limit result set to products based on a maximun price.',
+ description: 'Limit result set to products based on a maximun price',
},
{
displayName: 'Min Price',
name: 'minPrice',
type: 'string',
default: '',
- description: 'Limit result set to products based on a minimum price.',
+ description: 'Limit result set to products based on a minimum price',
},
{
displayName: 'Order',
@@ -1252,7 +1252,7 @@ export const productFields: INodeProperties[] = [
},
],
default: 'desc',
- description: 'Order sort attribute ascending or descending.',
+ description: 'Order sort attribute ascending or descending',
},
{
displayName: 'Order By',
@@ -1281,28 +1281,28 @@ export const productFields: INodeProperties[] = [
},
],
default: 'id',
- description: 'Sort collection by object attribute.',
+ description: 'Sort collection by object attribute',
},
{
displayName: 'Search',
name: 'search',
type: 'string',
default: '',
- description: 'Limit results to those matching a string.',
+ description: 'Limit results to those matching a string',
},
{
displayName: 'SKU',
name: 'sku',
type: 'string',
default: '',
- description: 'Limit result set to products with a specific SKU.',
+ description: 'Limit result set to products with a specific SKU',
},
{
displayName: 'Slug',
name: 'slug',
type: 'string',
default: '',
- description: 'Limit result set to products with a specific slug.',
+ description: 'Limit result set to products with a specific slug',
},
{
displayName: 'Status',
@@ -1331,7 +1331,7 @@ export const productFields: INodeProperties[] = [
},
],
default: 'any',
- description: 'Limit result set to products assigned a specific status.',
+ description: 'Limit result set to products assigned a specific status',
},
{
displayName: 'Stock Status',
@@ -1362,7 +1362,7 @@ export const productFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTags',
},
- description: 'Limit result set to products assigned a specific tag ID.',
+ description: 'Limit result set to products assigned a specific tag ID',
},
{
displayName: 'Tax Class',
@@ -1430,6 +1430,6 @@ export const productFields: INodeProperties[] = [
},
},
default: '',
- description: 'Product ID.',
+ description: 'Product ID',
},
];
diff --git a/packages/nodes-base/nodes/WooCommerce/WooCommerceTrigger.node.ts b/packages/nodes-base/nodes/WooCommerce/WooCommerceTrigger.node.ts
index f10b1e3c87..4b1c6d2071 100644
--- a/packages/nodes-base/nodes/WooCommerce/WooCommerceTrigger.node.ts
+++ b/packages/nodes-base/nodes/WooCommerce/WooCommerceTrigger.node.ts
@@ -103,7 +103,7 @@ export class WooCommerceTrigger implements INodeType {
value: 'product.deleted',
},
],
- description: 'Determines which resource events the webhook is triggered for.',
+ description: 'Determines which resource events the webhook is triggered for',
},
],
diff --git a/packages/nodes-base/nodes/Wordpress/PostDescription.ts b/packages/nodes-base/nodes/Wordpress/PostDescription.ts
index 0375d0f18f..e7cbc3d765 100644
--- a/packages/nodes-base/nodes/Wordpress/PostDescription.ts
+++ b/packages/nodes-base/nodes/Wordpress/PostDescription.ts
@@ -92,7 +92,7 @@ export const postFields: INodeProperties[] = [
loadOptionsMethod: 'getAuthors',
},
default: '',
- description: 'The ID for the author of the object.',
+ description: 'The ID for the author of the object',
},
{
displayName: 'Content',
@@ -109,14 +109,14 @@ export const postFields: INodeProperties[] = [
name: 'slug',
type: 'string',
default: '',
- description: 'An alphanumeric identifier for the object unique to its type.',
+ description: 'An alphanumeric identifier for the object unique to its type',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
- description: 'A password to protect access to the content and excerpt.',
+ description: 'A password to protect access to the content and excerpt',
},
{
displayName: 'Status',
@@ -145,7 +145,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'draft',
- description: 'A named status for the post.',
+ description: 'A named status for the post',
},
{
displayName: 'Comment Status',
@@ -162,7 +162,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'open',
- description: 'Whether or not comments are open on the post.',
+ description: 'Whether or not comments are open on the post',
},
{
displayName: 'Ping Status',
@@ -179,7 +179,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'open',
- description: 'If the a message should be send to announce the post.',
+ description: 'If the a message should be send to announce the post',
},
{
displayName: 'Format',
@@ -228,14 +228,14 @@ export const postFields: INodeProperties[] = [
},
],
default: 'standard',
- description: 'Whether or not comments are open on the post.',
+ description: 'Whether or not comments are open on the post',
},
{
displayName: 'Sticky',
name: 'sticky',
type: 'boolean',
default: false,
- description: 'Whether or not the object should be treated as sticky.',
+ description: 'Whether or not the object should be treated as sticky',
},
{
displayName: 'Categories',
@@ -245,7 +245,7 @@ export const postFields: INodeProperties[] = [
loadOptionsMethod: 'getCategories',
},
default: [],
- description: 'The terms assigned to the object in the category taxonomy.',
+ description: 'The terms assigned to the object in the category taxonomy',
},
{
displayName: 'Tags',
@@ -255,7 +255,7 @@ export const postFields: INodeProperties[] = [
loadOptionsMethod: 'getTags',
},
default: [],
- description: 'The terms assigned to the object in the post_tag taxonomy.',
+ description: 'The terms assigned to the object in the post_tag taxonomy',
},
],
},
@@ -278,7 +278,7 @@ export const postFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the object.',
+ description: 'Unique identifier for the object',
},
{
displayName: 'Update Fields',
@@ -305,7 +305,7 @@ export const postFields: INodeProperties[] = [
loadOptionsMethod: 'getAuthors',
},
default: '',
- description: 'The ID for the author of the object.',
+ description: 'The ID for the author of the object',
},
{
displayName: 'Title',
@@ -329,14 +329,14 @@ export const postFields: INodeProperties[] = [
name: 'slug',
type: 'string',
default: '',
- description: 'An alphanumeric identifier for the object unique to its type.',
+ description: 'An alphanumeric identifier for the object unique to its type',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
- description: 'A password to protect access to the content and excerpt.',
+ description: 'A password to protect access to the content and excerpt',
},
{
displayName: 'Status',
@@ -365,7 +365,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'draft',
- description: 'A named status for the post.',
+ description: 'A named status for the post',
},
{
displayName: 'Comment Status',
@@ -382,7 +382,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'open',
- description: 'Whether or not comments are open on the post.',
+ description: 'Whether or not comments are open on the post',
},
{
displayName: 'Ping Status',
@@ -399,7 +399,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'open',
- description: 'Whether or not comments are open on the post.',
+ description: 'Whether or not comments are open on the post',
},
{
displayName: 'Format',
@@ -448,14 +448,14 @@ export const postFields: INodeProperties[] = [
},
],
default: 'standard',
- description: 'The format of the post.',
+ description: 'The format of the post',
},
{
displayName: 'Sticky',
name: 'sticky',
type: 'boolean',
default: false,
- description: 'Whether or not the object should be treated as sticky.',
+ description: 'Whether or not the object should be treated as sticky',
},
{
displayName: 'Categories',
@@ -465,7 +465,7 @@ export const postFields: INodeProperties[] = [
loadOptionsMethod: 'getCategories',
},
default: [],
- description: 'The terms assigned to the object in the category taxonomy.',
+ description: 'The terms assigned to the object in the category taxonomy',
},
{
displayName: 'Tags',
@@ -475,7 +475,7 @@ export const postFields: INodeProperties[] = [
loadOptionsMethod: 'getTags',
},
default: [],
- description: 'The terms assigned to the object in the post_tag taxonomy.',
+ description: 'The terms assigned to the object in the post_tag taxonomy',
},
],
},
@@ -498,7 +498,7 @@ export const postFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the object.',
+ description: 'Unique identifier for the object',
},
{
displayName: 'Options',
@@ -522,7 +522,7 @@ export const postFields: INodeProperties[] = [
name: 'password',
type: 'string',
default: '',
- description: 'The password for the post if it is password protected.',
+ description: 'The password for the post if it is password protected',
},
{
displayName: 'Context',
@@ -543,7 +543,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'view',
- description: 'Scope under which the request is made; determines fields present in response.',
+ description: 'Scope under which the request is made; determines fields present in response',
},
],
},
@@ -565,7 +565,7 @@ export const postFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -589,7 +589,7 @@ export const postFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -613,7 +613,7 @@ export const postFields: INodeProperties[] = [
name: 'after',
type: 'dateTime',
default: '',
- description: 'Limit response to posts published after a given ISO8601 compliant date.',
+ description: 'Limit response to posts published after a given ISO8601 compliant date',
},
{
displayName: 'Author',
@@ -623,14 +623,14 @@ export const postFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getAuthors',
},
- description: 'Limit result set to posts assigned to specific authors.',
+ description: 'Limit result set to posts assigned to specific authors',
},
{
displayName: 'Before',
name: 'before',
type: 'dateTime',
default: '',
- description: 'Limit response to posts published before a given ISO8601 compliant date.',
+ description: 'Limit response to posts published before a given ISO8601 compliant date',
},
{
displayName: 'Categories',
@@ -640,7 +640,7 @@ export const postFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCategories',
},
- description: 'Limit result set to all items that have the specified term assigned in the categories taxonomy.',
+ description: 'Limit result set to all items that have the specified term assigned in the categories taxonomy',
},
{
displayName: 'Context',
@@ -661,7 +661,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'view',
- description: 'Scope under which the request is made; determines fields present in response.',
+ description: 'Scope under which the request is made; determines fields present in response',
},
{
displayName: 'Exclude Categories',
@@ -671,7 +671,7 @@ export const postFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getCategories',
},
- description: 'Limit result set to all items except those that have the specified term assigned in the categories taxonomy.',
+ description: 'Limit result set to all items except those that have the specified term assigned in the categories taxonomy',
},
{
displayName: 'Exclude Tags',
@@ -681,7 +681,7 @@ export const postFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTags',
},
- description: 'Limit result set to all items except those that have the specified term assigned in the tags taxonomy.',
+ description: 'Limit result set to all items except those that have the specified term assigned in the tags taxonomy',
},
{
displayName: 'Order',
@@ -698,7 +698,7 @@ export const postFields: INodeProperties[] = [
},
],
default: 'desc',
- description: 'Order sort attribute ascending or descending.',
+ description: 'Order sort attribute ascending or descending',
},
{
displayName: 'Order By',
@@ -747,14 +747,14 @@ export const postFields: INodeProperties[] = [
},
],
default: 'id',
- description: 'Sort collection by object attribute.',
+ description: 'Sort collection by object attribute',
},
{
displayName: 'Search',
name: 'search',
type: 'string',
default: '',
- description: 'Limit results to those matching a string.',
+ description: 'Limit results to those matching a string',
},
{
displayName: 'Status',
@@ -783,14 +783,14 @@ export const postFields: INodeProperties[] = [
},
],
default: 'publish',
- description: 'The status of the post.',
+ description: 'The status of the post',
},
{
displayName: 'Sticky',
name: 'sticky',
type: 'boolean',
default: false,
- description: 'Limit result set to items that are sticky.',
+ description: 'Limit result set to items that are sticky',
},
{
displayName: 'Tags',
@@ -800,7 +800,7 @@ export const postFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getTags',
},
- description: 'Limit result set to all items that have the specified term assigned in the tags taxonomy.',
+ description: 'Limit result set to all items that have the specified term assigned in the tags taxonomy',
},
],
},
@@ -823,7 +823,7 @@ export const postFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the object.',
+ description: 'Unique identifier for the object',
},
{
displayName: 'Options',
@@ -847,7 +847,7 @@ export const postFields: INodeProperties[] = [
name: 'force',
type: 'boolean',
default: false,
- description: 'Whether to bypass trash and force deletion.',
+ description: 'Whether to bypass trash and force deletion',
},
],
},
diff --git a/packages/nodes-base/nodes/Wordpress/UserDescription.ts b/packages/nodes-base/nodes/Wordpress/UserDescription.ts
index 0177ccb205..3eb9ce664a 100644
--- a/packages/nodes-base/nodes/Wordpress/UserDescription.ts
+++ b/packages/nodes-base/nodes/Wordpress/UserDescription.ts
@@ -65,7 +65,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'Login name for the user.',
+ description: 'Login name for the user',
},
{
displayName: 'Name',
@@ -83,7 +83,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'Display name for the user.',
+ description: 'Display name for the user',
},
{
displayName: 'First Name',
@@ -101,7 +101,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'First name for the user.',
+ description: 'First name for the user',
},
{
displayName: 'Last Name',
@@ -119,7 +119,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'Last name for the user.',
+ description: 'Last name for the user',
},
{
displayName: 'Email',
@@ -137,7 +137,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'The email address for the user.',
+ description: 'The email address for the user',
},
{
displayName: 'Password',
@@ -179,7 +179,7 @@ export const userFields: INodeProperties[] = [
name: 'url',
type: 'string',
default: '',
- description: 'URL of the user.',
+ description: 'URL of the user',
},
{
displayName: 'Description',
@@ -189,21 +189,21 @@ export const userFields: INodeProperties[] = [
},
type: 'string',
default: '',
- description: 'Description of the user.',
+ description: 'Description of the user',
},
{
displayName: 'Nickname',
name: 'nickname',
type: 'string',
default: '',
- description: 'The nickname for the user.',
+ description: 'The nickname for the user',
},
{
displayName: 'Slug',
name: 'slug',
type: 'string',
default: '',
- description: 'An alphanumeric identifier for the user.',
+ description: 'An alphanumeric identifier for the user',
},
],
},
@@ -226,7 +226,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the user.',
+ description: 'Unique identifier for the user',
},
{
displayName: 'Update Fields',
@@ -250,35 +250,35 @@ export const userFields: INodeProperties[] = [
name: 'username',
type: 'string',
default: '',
- description: 'Login name for the user.',
+ description: 'Login name for the user',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
- description: 'Display name for the user.',
+ description: 'Display name for the user',
},
{
displayName: 'First Name',
name: 'firstName',
type: 'string',
default: '',
- description: 'First name for the user.',
+ description: 'First name for the user',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
default: '',
- description: 'Last name for the user.',
+ description: 'Last name for the user',
},
{
displayName: 'Email',
name: 'email',
type: 'string',
default: '',
- description: 'The email address for the user.',
+ description: 'The email address for the user',
},
{
displayName: 'Password',
@@ -292,7 +292,7 @@ export const userFields: INodeProperties[] = [
name: 'url',
type: 'string',
default: '',
- description: 'URL of the user.',
+ description: 'URL of the user',
},
{
displayName: 'Description',
@@ -302,21 +302,21 @@ export const userFields: INodeProperties[] = [
},
type: 'string',
default: '',
- description: 'Description of the user.',
+ description: 'Description of the user',
},
{
displayName: 'Nickname',
name: 'nickname',
type: 'string',
default: '',
- description: 'The nickname for the user.',
+ description: 'The nickname for the user',
},
{
displayName: 'Slug',
name: 'slug',
type: 'string',
default: '',
- description: 'An alphanumeric identifier for the user.',
+ description: 'An alphanumeric identifier for the user',
},
],
},
@@ -339,7 +339,7 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the user.',
+ description: 'Unique identifier for the user',
},
{
displayName: 'Options',
@@ -377,7 +377,7 @@ export const userFields: INodeProperties[] = [
},
],
default: 'view',
- description: 'Scope under which the request is made; determines fields present in response.',
+ description: 'Scope under which the request is made; determines fields present in response',
},
],
},
@@ -399,7 +399,7 @@ export const userFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -423,7 +423,7 @@ export const userFields: INodeProperties[] = [
maxValue: 10,
},
default: 5,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
@@ -461,7 +461,7 @@ export const userFields: INodeProperties[] = [
},
],
default: 'view',
- description: 'Scope under which the request is made; determines fields present in response.',
+ description: 'Scope under which the request is made; determines fields present in response',
},
{
displayName: 'Order By',
@@ -502,7 +502,7 @@ export const userFields: INodeProperties[] = [
},
],
default: 'id',
- description: 'Sort collection by object attribute.',
+ description: 'Sort collection by object attribute',
},
{
displayName: 'Order',
@@ -519,14 +519,14 @@ export const userFields: INodeProperties[] = [
},
],
default: 'desc',
- description: 'Order sort attribute ascending or descending.',
+ description: 'Order sort attribute ascending or descending',
},
{
displayName: 'Search',
name: 'search',
type: 'string',
default: '',
- description: 'Limit results to those matching a string.',
+ description: 'Limit results to those matching a string',
},
{
displayName: 'Who',
@@ -539,7 +539,7 @@ export const userFields: INodeProperties[] = [
},
],
default: 'authors',
- description: 'Limit result set to users who are considered authors.',
+ description: 'Limit result set to users who are considered authors',
},
],
},
@@ -562,6 +562,6 @@ export const userFields: INodeProperties[] = [
],
},
},
- description: `Reassign the deleted user's posts and links to this user ID.`,
+ description: 'Reassign the deleted user\'s posts and links to this user ID',
},
];
diff --git a/packages/nodes-base/nodes/WriteBinaryFile/WriteBinaryFile.node.ts b/packages/nodes-base/nodes/WriteBinaryFile/WriteBinaryFile.node.ts
index 1741993f27..5ef5ea24d9 100644
--- a/packages/nodes-base/nodes/WriteBinaryFile/WriteBinaryFile.node.ts
+++ b/packages/nodes-base/nodes/WriteBinaryFile/WriteBinaryFile.node.ts
@@ -36,7 +36,7 @@ export class WriteBinaryFile implements INodeType {
default: '',
required: true,
placeholder: '/data/example.jpg',
- description: 'Path to which the file should be written.',
+ description: 'Path to which the file should be written',
},
{
displayName: 'Property Name',
@@ -44,7 +44,7 @@ export class WriteBinaryFile implements INodeType {
type: 'string',
default: 'data',
required: true,
- description: 'Name of the binary property which contains the data for the file to be written.',
+ description: 'Name of the binary property which contains the data for the file to be written',
},
],
};
diff --git a/packages/nodes-base/nodes/Wufoo/WufooTrigger.node.ts b/packages/nodes-base/nodes/Wufoo/WufooTrigger.node.ts
index b7722ee014..d1e16964cc 100644
--- a/packages/nodes-base/nodes/Wufoo/WufooTrigger.node.ts
+++ b/packages/nodes-base/nodes/Wufoo/WufooTrigger.node.ts
@@ -63,14 +63,14 @@ export class WufooTrigger implements INodeType {
typeOptions: {
loadOptionsMethod: 'getForms',
},
- description: 'The form upon which will trigger this node when a new entry is made.',
+ description: 'The form upon which will trigger this node when a new entry is made',
},
{
displayName: 'Only Answers',
name: 'onlyAnswers',
type: 'boolean',
default: true,
- description: 'Returns only the answers of the form and not any of the other data.',
+ description: 'Returns only the answers of the form and not any of the other data',
},
],
};
diff --git a/packages/nodes-base/nodes/Xero/ContactDescription.ts b/packages/nodes-base/nodes/Xero/ContactDescription.ts
index a4552663bc..dfa02f65ec 100644
--- a/packages/nodes-base/nodes/Xero/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Xero/ContactDescription.ts
@@ -431,7 +431,7 @@ export const contactFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -455,7 +455,7 @@ export const contactFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Xero/InvoiceDescription.ts b/packages/nodes-base/nodes/Xero/InvoiceDescription.ts
index 6a7dab58e1..751b1b3f39 100644
--- a/packages/nodes-base/nodes/Xero/InvoiceDescription.ts
+++ b/packages/nodes-base/nodes/Xero/InvoiceDescription.ts
@@ -218,7 +218,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'taxAmount',
type: 'string',
default: '',
- description: 'The tax amount is auto calculated as a percentage of the line amount based on the tax rate.',
+ description: 'The tax amount is auto calculated as a percentage of the line amount based on the tax rate',
},
{
displayName: 'Line Amount',
@@ -678,7 +678,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'taxAmount',
type: 'string',
default: '',
- description: 'The tax amount is auto calculated as a percentage of the line amount based on the tax rate.',
+ description: 'The tax amount is auto calculated as a percentage of the line amount based on the tax rate',
},
{
displayName: 'Line Amount',
@@ -872,7 +872,7 @@ export const invoiceFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -896,7 +896,7 @@ export const invoiceFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Xml/Xml.node.ts b/packages/nodes-base/nodes/Xml/Xml.node.ts
index 9443e738b4..e494376119 100644
--- a/packages/nodes-base/nodes/Xml/Xml.node.ts
+++ b/packages/nodes-base/nodes/Xml/Xml.node.ts
@@ -33,7 +33,7 @@ export class Xml implements INodeType {
{
name: 'JSON to XML',
value: 'jsonToxml',
- description: 'Converts data from JSON to XML.',
+ description: 'Converts data from JSON to XML',
},
{
name: 'XML to JSON',
@@ -42,7 +42,7 @@ export class Xml implements INodeType {
},
],
default: 'xmlToJson',
- description: 'From and to what format the data should be converted.',
+ description: 'From and to what format the data should be converted',
},
// ----------------------------------
@@ -61,7 +61,7 @@ export class Xml implements INodeType {
},
default: 'data',
required: true,
- description: 'Name of the property to which to contains the converted XML data.',
+ description: 'Name of the property to which to contains the converted XML data',
},
{
displayName: 'Options',
@@ -82,14 +82,14 @@ export class Xml implements INodeType {
name: 'allowSurrogateChars',
type: 'boolean',
default: false,
- description: 'Allows using characters from the Unicode surrogate blocks.',
+ description: 'Allows using characters from the Unicode surrogate blocks',
},
{
displayName: 'Attribute Key',
name: 'attrkey',
type: 'string',
default: '$',
- description: 'Prefix that is used to access the attributes.',
+ description: 'Prefix that is used to access the attributes',
},
{
displayName: 'cdata',
@@ -103,21 +103,21 @@ export class Xml implements INodeType {
name: 'charkey',
type: 'string',
default: '_',
- description: 'Prefix that is used to access the character content.',
+ description: 'Prefix that is used to access the character content',
},
{
displayName: 'Headless',
name: 'headless',
type: 'boolean',
default: false,
- description: 'Omit the XML header.',
+ description: 'Omit the XML header',
},
{
displayName: 'Root Name',
name: 'rootName',
type: 'string',
default: 'root',
- description: 'Root element name to be used.',
+ description: 'Root element name to be used',
},
],
},
@@ -140,7 +140,7 @@ export class Xml implements INodeType {
},
default: 'data',
required: true,
- description: 'Name of the property which contains the XML data to convert.',
+ description: 'Name of the property which contains the XML data to convert',
},
{
displayName: 'Options',
@@ -161,35 +161,35 @@ export class Xml implements INodeType {
name: 'attrkey',
type: 'string',
default: '$',
- description: 'Prefix that is used to access the attributes.',
+ description: 'Prefix that is used to access the attributes',
},
{
displayName: 'Character Key',
name: 'charkey',
type: 'string',
default: '_',
- description: 'Prefix that is used to access the character content.',
+ description: 'Prefix that is used to access the character content',
},
{
displayName: 'Explicit Array',
name: 'explicitArray',
type: 'boolean',
default: false,
- description: 'Always put child nodes in an array if true; otherwise an array is created only if there is more than one.',
+ description: 'Always put child nodes in an array if true; otherwise an array is created only if there is more than one',
},
{
displayName: 'Explicit Root',
name: 'explicitRoot',
type: 'boolean',
default: true,
- description: 'Set this if you want to get the root node in the resulting object.',
+ description: 'Set this if you want to get the root node in the resulting object',
},
{
displayName: 'Ignore Attributes',
name: 'ignoreAttrs',
type: 'boolean',
default: false,
- description: 'Ignore all XML attributes and only create text nodes.',
+ description: 'Ignore all XML attributes and only create text nodes',
},
{
displayName: 'Merge Attributes',
@@ -203,21 +203,21 @@ export class Xml implements INodeType {
name: 'normalize',
type: 'boolean',
default: false,
- description: 'Trim whitespaces inside text nodes.',
+ description: 'Trim whitespaces inside text nodes',
},
{
displayName: 'Normalize Tags',
name: 'normalizeTags',
type: 'boolean',
default: false,
- description: 'Normalize all tag names to lowercase.',
+ description: 'Normalize all tag names to lowercase',
},
{
displayName: 'Trim',
name: 'trim',
type: 'boolean',
default: false,
- description: 'Trim the whitespace at the beginning and end of text nodes.',
+ description: 'Trim the whitespace at the beginning and end of text nodes',
},
],
},
diff --git a/packages/nodes-base/nodes/Yourls/UrlDescription.ts b/packages/nodes-base/nodes/Yourls/UrlDescription.ts
index 9778b163cf..31d4175acb 100644
--- a/packages/nodes-base/nodes/Yourls/UrlDescription.ts
+++ b/packages/nodes-base/nodes/Yourls/UrlDescription.ts
@@ -57,7 +57,7 @@ export const urlFields: INodeProperties[] = [
},
},
default: '',
- description: 'The URL to shorten.',
+ description: 'The URL to shorten',
},
{
displayName: 'Additional Fields',
@@ -110,7 +110,7 @@ export const urlFields: INodeProperties[] = [
},
},
default: '',
- description: 'The short URL to expand.',
+ description: 'The short URL to expand',
},
/* -------------------------------------------------------------------------- */
@@ -132,6 +132,6 @@ export const urlFields: INodeProperties[] = [
},
},
default: '',
- description: 'The short URL for which to get stats.',
+ description: 'The short URL for which to get stats',
},
];
diff --git a/packages/nodes-base/nodes/Zendesk/TicketDescription.ts b/packages/nodes-base/nodes/Zendesk/TicketDescription.ts
index 36230ed541..43cb36ebf8 100644
--- a/packages/nodes-base/nodes/Zendesk/TicketDescription.ts
+++ b/packages/nodes-base/nodes/Zendesk/TicketDescription.ts
@@ -142,7 +142,7 @@ export const ticketFields: INodeProperties[] = [
name: 'value',
type: 'string',
default: '',
- description: 'Custom field Value.',
+ description: 'Custom field Value',
},
],
},
@@ -270,7 +270,7 @@ export const ticketFields: INodeProperties[] = [
],
},
},
- description: `Object of values to set as described here.`,
+ description: 'Object of values to set as described here',
},
/* -------------------------------------------------------------------------- */
@@ -366,7 +366,7 @@ export const ticketFields: INodeProperties[] = [
name: 'value',
type: 'string',
default: '',
- description: 'Custom field Value.',
+ description: 'Custom field Value',
},
],
},
@@ -508,7 +508,7 @@ export const ticketFields: INodeProperties[] = [
],
},
},
- description: `Object of values to update as described here.`,
+ description: 'Object of values to update as described here',
},
{
displayName: 'Ticket Type',
@@ -602,7 +602,7 @@ export const ticketFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -626,7 +626,7 @@ export const ticketFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Options',
diff --git a/packages/nodes-base/nodes/Zendesk/TicketFieldDescription.ts b/packages/nodes-base/nodes/Zendesk/TicketFieldDescription.ts
index 34dc418d55..a8b8124663 100644
--- a/packages/nodes-base/nodes/Zendesk/TicketFieldDescription.ts
+++ b/packages/nodes-base/nodes/Zendesk/TicketFieldDescription.ts
@@ -73,7 +73,7 @@ export const ticketFieldFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -97,6 +97,6 @@ export const ticketFieldFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
];
diff --git a/packages/nodes-base/nodes/Zendesk/UserDescription.ts b/packages/nodes-base/nodes/Zendesk/UserDescription.ts
index 3c55fe2135..97892fea74 100644
--- a/packages/nodes-base/nodes/Zendesk/UserDescription.ts
+++ b/packages/nodes-base/nodes/Zendesk/UserDescription.ts
@@ -143,7 +143,7 @@ export const userFields: INodeProperties[] = [
loadOptionsMethod: 'getLocales',
},
default: '',
- description: `The user's locale.`,
+ description: 'The user\'s locale',
},
{
displayName: 'Moderator',
@@ -181,14 +181,14 @@ export const userFields: INodeProperties[] = [
name: 'phone',
type: 'string',
default: '',
- description: `The user's primary phone number.`,
+ description: 'The user\'s primary phone number',
},
{
displayName: 'Report CSV',
name: 'report_csv',
type: 'boolean',
default: false,
- description: `Whether or not the user can access the CSV report on the Search tab of the Reporting page in the Support admin interface.`,
+ description: 'Whether or not the user can access the CSV report on the Search tab of the Reporting page in the Support admin interface',
},
{
displayName: 'Restricted Agent',
@@ -272,13 +272,13 @@ export const userFields: INodeProperties[] = [
name: 'time_zone',
type: 'string',
default: '',
- description: `The user's time zone.`,
+ description: 'The user\'s time zone',
},
{
displayName: 'User Fields',
name: 'userFieldsUi',
placeholder: 'Add User Field',
- description: `Values of custom fields in the user's profile.`,
+ description: 'Values of custom fields in the user\'s profile',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -297,14 +297,14 @@ export const userFields: INodeProperties[] = [
loadOptionsMethod: 'getUserFields',
},
default: '',
- description: 'Name of the field to sort on.',
+ description: 'Name of the field to sort on',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the field.',
+ description: 'Value of the field',
},
],
},
@@ -400,7 +400,7 @@ export const userFields: INodeProperties[] = [
loadOptionsMethod: 'getLocales',
},
default: '',
- description: `The user's locale.`,
+ description: 'The user\'s locale',
},
{
displayName: 'Moderator',
@@ -445,14 +445,14 @@ export const userFields: INodeProperties[] = [
name: 'phone',
type: 'string',
default: '',
- description: `The user's primary phone number.`,
+ description: 'The user\'s primary phone number',
},
{
displayName: 'Report CSV',
name: 'report_csv',
type: 'boolean',
default: false,
- description: `Whether or not the user can access the CSV report on the Search tab of the Reporting page in the Support admin interface.`,
+ description: 'Whether or not the user can access the CSV report on the Search tab of the Reporting page in the Support admin interface',
},
{
displayName: 'Restricted Agent',
@@ -536,13 +536,13 @@ export const userFields: INodeProperties[] = [
name: 'time_zone',
type: 'string',
default: '',
- description: `The user's time zone.`,
+ description: 'The user\'s time zone',
},
{
displayName: 'User Fields',
name: 'userFieldsUi',
placeholder: 'Add User Field',
- description: `Values of custom fields in the user's profile.`,
+ description: 'Values of custom fields in the user\'s profile',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
@@ -561,14 +561,14 @@ export const userFields: INodeProperties[] = [
loadOptionsMethod: 'getUserFields',
},
default: '',
- description: 'Name of the field to sort on.',
+ description: 'Name of the field to sort on',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of the field.',
+ description: 'Value of the field',
},
],
},
@@ -622,7 +622,7 @@ export const userFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -646,7 +646,7 @@ export const userFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -705,7 +705,7 @@ export const userFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -729,7 +729,7 @@ export const userFields: INodeProperties[] = [
maxValue: 100,
},
default: 100,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
diff --git a/packages/nodes-base/nodes/Zendesk/ZendeskTrigger.node.ts b/packages/nodes-base/nodes/Zendesk/ZendeskTrigger.node.ts
index 40a24f2663..3dd35c5151 100644
--- a/packages/nodes-base/nodes/Zendesk/ZendeskTrigger.node.ts
+++ b/packages/nodes-base/nodes/Zendesk/ZendeskTrigger.node.ts
@@ -121,7 +121,7 @@ export class ZendeskTrigger implements INodeType {
{
displayName: 'Fields',
name: 'fields',
- description: 'The fields to return the values of.',
+ description: 'The fields to return the values of',
type: 'multiOptions',
default: [],
typeOptions: {
@@ -146,7 +146,7 @@ export class ZendeskTrigger implements INodeType {
],
},
},
- description: 'The condition to set.',
+ description: 'The condition to set',
default: {},
options: [
{
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/AccountDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/AccountDescription.ts
index 52498a2461..7b79e46e84 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/AccountDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/AccountDescription.ts
@@ -135,7 +135,7 @@ export const accountFields: INodeProperties[] = [
name: 'Account_Site',
type: 'string',
default: '',
- description: 'Name of the account’s location, e.g. Headquarters or London.',
+ description: 'Name of the account’s location, e.g. Headquarters or London',
},
{
displayName: 'Account Type',
@@ -164,7 +164,7 @@ export const accountFields: INodeProperties[] = [
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('account'),
@@ -179,14 +179,14 @@ export const accountFields: INodeProperties[] = [
name: 'Employees',
type: 'number',
default: '',
- description: 'Number of employees in the account’s company.',
+ description: 'Number of employees in the account’s company',
},
{
displayName: 'Exchange Rate',
name: 'Exchange_Rate',
type: 'number',
default: '',
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Fax',
@@ -326,7 +326,7 @@ export const accountFields: INodeProperties[] = [
name: 'Account_Site',
type: 'string',
default: '',
- description: 'Name of the account’s location, e.g. Headquarters or London.',
+ description: 'Name of the account’s location, e.g. Headquarters or London',
},
{
displayName: 'Account Type',
@@ -355,7 +355,7 @@ export const accountFields: INodeProperties[] = [
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('account'),
@@ -370,14 +370,14 @@ export const accountFields: INodeProperties[] = [
name: 'Employees',
type: 'number',
default: '',
- description: 'Number of employees in the account’s company.',
+ description: 'Number of employees in the account’s company',
},
{
displayName: 'Exchange Rate',
name: 'Exchange_Rate',
type: 'number',
default: '',
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Fax',
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/ContactDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/ContactDescription.ts
index 40f18f6685..c472799a3e 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/ContactDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/ContactDescription.ts
@@ -102,7 +102,7 @@ export const contactFields: INodeProperties[] = [
name: 'Assistant',
type: 'string',
default: '',
- description: 'Name of the contact’s assistant.',
+ description: 'Name of the contact’s assistant',
},
makeCustomFieldsFixedCollection('contact'),
{
@@ -116,7 +116,7 @@ export const contactFields: INodeProperties[] = [
name: 'Department',
type: 'string',
default: '',
- description: 'Company department to which the contact belongs.',
+ description: 'Company department to which the contact belongs',
},
{
displayName: 'Description',
@@ -173,7 +173,7 @@ export const contactFields: INodeProperties[] = [
name: 'Asst_Phone',
type: 'string',
default: '',
- description: 'Phone number of the contact’s assistant.',
+ description: 'Phone number of the contact’s assistant',
},
{
displayName: 'Phone (Home)',
@@ -204,7 +204,7 @@ export const contactFields: INodeProperties[] = [
name: 'Title',
type: 'string',
default: '',
- description: 'Position of the contact at their company.',
+ description: 'Position of the contact at their company',
},
{
displayName: 'Twitter',
@@ -257,7 +257,7 @@ export const contactFields: INodeProperties[] = [
name: 'Assistant',
type: 'string',
default: '',
- description: 'Name of the contact’s assistant.',
+ description: 'Name of the contact’s assistant',
},
makeCustomFieldsFixedCollection('contact'),
{
@@ -271,7 +271,7 @@ export const contactFields: INodeProperties[] = [
name: 'Department',
type: 'string',
default: '',
- description: 'Company department to which the contact belongs.',
+ description: 'Company department to which the contact belongs',
},
{
displayName: 'Description',
@@ -329,7 +329,7 @@ export const contactFields: INodeProperties[] = [
name: 'Asst_Phone',
type: 'string',
default: '',
- description: 'Phone number of the contact’s assistant.',
+ description: 'Phone number of the contact’s assistant',
},
{
displayName: 'Phone (Home)',
@@ -360,7 +360,7 @@ export const contactFields: INodeProperties[] = [
name: 'Title',
type: 'string',
default: '',
- description: 'Position of the contact at their company.',
+ description: 'Position of the contact at their company',
},
{
displayName: 'Twitter',
@@ -377,7 +377,7 @@ export const contactFields: INodeProperties[] = [
{
displayName: 'Contact ID',
name: 'contactId',
- description: 'ID of the contact to delete.',
+ description: 'ID of the contact to delete',
type: 'string',
required: true,
default: '',
@@ -399,7 +399,7 @@ export const contactFields: INodeProperties[] = [
{
displayName: 'Contact ID',
name: 'contactId',
- description: 'ID of the contact to retrieve.',
+ description: 'ID of the contact to retrieve',
type: 'string',
required: true,
default: '',
@@ -426,7 +426,7 @@ export const contactFields: INodeProperties[] = [
{
displayName: 'Contact ID',
name: 'contactId',
- description: 'ID of the contact to update.',
+ description: 'ID of the contact to update',
type: 'string',
required: true,
default: '',
@@ -469,14 +469,14 @@ export const contactFields: INodeProperties[] = [
name: 'Asst_Phone',
type: 'string',
default: '',
- description: 'Phone number of the contact’s assistant.',
+ description: 'Phone number of the contact’s assistant',
},
{
displayName: 'Currency',
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('contact'),
@@ -577,7 +577,7 @@ export const contactFields: INodeProperties[] = [
name: 'Title',
type: 'string',
default: '',
- description: 'Position of the contact at their company.',
+ description: 'Position of the contact at their company',
},
{
displayName: 'Twitter',
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/DealDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/DealDescription.ts
index cc41e9ccf0..6b92ebff23 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/DealDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/DealDescription.ts
@@ -147,7 +147,7 @@ export const dealFields: INodeProperties[] = [
name: 'Amount',
type: 'number',
default: '',
- description: 'Monetary amount of the deal.',
+ description: 'Monetary amount of the deal',
},
{
displayName: 'Closing Date',
@@ -160,7 +160,7 @@ export const dealFields: INodeProperties[] = [
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('deal'),
@@ -175,21 +175,21 @@ export const dealFields: INodeProperties[] = [
name: 'Lead_Conversion_Time',
type: 'number',
default: '',
- description: 'Averge number of days to convert the lead into a deal.',
+ description: 'Averge number of days to convert the lead into a deal',
},
{
displayName: 'Next Step',
name: 'Next_Step',
type: 'string',
default: '',
- description: 'Description of the next step in the sales process.',
+ description: 'Description of the next step in the sales process',
},
{
displayName: 'Overall Sales Duration',
name: 'Overall_Sales_Duration',
type: 'number',
default: '',
- description: 'Averge number of days to convert the lead into a deal and to win the deal.',
+ description: 'Averge number of days to convert the lead into a deal and to win the deal',
},
{
displayName: 'Probability',
@@ -207,7 +207,7 @@ export const dealFields: INodeProperties[] = [
name: 'Sales_Cycle_Duration',
type: 'number',
default: 0,
- description: 'Averge number of days for the deal to be won.',
+ description: 'Averge number of days for the deal to be won',
},
],
},
@@ -218,7 +218,7 @@ export const dealFields: INodeProperties[] = [
{
displayName: 'Deal ID',
name: 'dealId',
- description: 'ID of the deal to delete.',
+ description: 'ID of the deal to delete',
type: 'string',
required: true,
default: '',
@@ -240,7 +240,7 @@ export const dealFields: INodeProperties[] = [
{
displayName: 'Deal ID',
name: 'dealId',
- description: 'ID of the deal to retrieve.',
+ description: 'ID of the deal to retrieve',
type: 'string',
required: true,
default: '',
@@ -267,7 +267,7 @@ export const dealFields: INodeProperties[] = [
{
displayName: 'Deal ID',
name: 'dealId',
- description: 'ID of the deal to update.',
+ description: 'ID of the deal to update',
type: 'string',
required: true,
default: '',
@@ -304,7 +304,7 @@ export const dealFields: INodeProperties[] = [
name: 'Amount',
type: 'number',
default: '',
- description: 'Monetary amount of the deal.',
+ description: 'Monetary amount of the deal',
},
{
displayName: 'Closing Date',
@@ -317,7 +317,7 @@ export const dealFields: INodeProperties[] = [
name: 'Currency',
type: 'string',
default: '',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
},
makeCustomFieldsFixedCollection('deal'),
{
@@ -337,21 +337,21 @@ export const dealFields: INodeProperties[] = [
name: 'Lead_Conversion_Time',
type: 'number',
default: '',
- description: 'Averge number of days to convert the lead into a deal.',
+ description: 'Averge number of days to convert the lead into a deal',
},
{
displayName: 'Next Step',
name: 'Next_Step',
type: 'string',
default: '',
- description: 'Description of the next step in the sales process.',
+ description: 'Description of the next step in the sales process',
},
{
displayName: 'Overall Sales Duration',
name: 'Overall_Sales_Duration',
type: 'number',
default: '',
- description: 'Averge number of days to convert the lead into a deal and to win the deal.',
+ description: 'Averge number of days to convert the lead into a deal and to win the deal',
},
{
displayName: 'Probability',
@@ -369,7 +369,7 @@ export const dealFields: INodeProperties[] = [
name: 'Sales_Cycle_Duration',
type: 'number',
default: 0,
- description: 'Averge number of days to win the deal.',
+ description: 'Averge number of days to win the deal',
},
{
displayName: 'Stage',
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/InvoiceDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/InvoiceDescription.ts
index 0d38596cf8..27796c532c 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/InvoiceDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/InvoiceDescription.ts
@@ -67,7 +67,7 @@ export const invoiceFields: INodeProperties[] = [
{
displayName: 'Subject',
name: 'subject',
- description: 'Subject or title of the invoice.',
+ description: 'Subject or title of the invoice',
type: 'string',
required: true,
default: '',
@@ -157,14 +157,14 @@ export const invoiceFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getAccounts',
},
- description: 'ID of the account associated with this invoice.',
+ description: 'ID of the account associated with this invoice',
},
{
displayName: 'Adjustment',
name: 'Adjustment',
type: 'number',
default: '',
- description: 'Adjustment in the grand total, if any.',
+ description: 'Adjustment in the grand total, if any',
},
billingAddress,
{
@@ -172,7 +172,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('invoice'),
@@ -193,14 +193,14 @@ export const invoiceFields: INodeProperties[] = [
name: 'Exchange_Rate',
type: 'number',
default: '',
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Grand Total',
name: 'Grand_Total',
type: 'number',
default: '',
- description: 'Total amount for the product after deducting tax and discounts.',
+ description: 'Total amount for the product after deducting tax and discounts',
},
{
displayName: 'Invoice Date',
@@ -233,21 +233,21 @@ export const invoiceFields: INodeProperties[] = [
name: 'Sub_Total',
type: 'number',
default: '',
- description: 'Total amount for the product excluding tax.',
+ description: 'Total amount for the product excluding tax',
},
{
displayName: 'Tax',
name: 'Tax',
type: 'number',
default: '',
- description: 'Tax amount as the sum of sales tax and value-added tax.',
+ description: 'Tax amount as the sum of sales tax and value-added tax',
},
{
displayName: 'Terms and Conditions',
name: 'Terms_and_Conditions',
type: 'string',
default: '',
- description: 'Terms and conditions associated with the invoice.',
+ description: 'Terms and conditions associated with the invoice',
},
],
},
@@ -258,7 +258,7 @@ export const invoiceFields: INodeProperties[] = [
{
displayName: 'Invoice ID',
name: 'invoiceId',
- description: 'ID of the invoice to delete.',
+ description: 'ID of the invoice to delete',
type: 'string',
required: true,
default: '',
@@ -280,7 +280,7 @@ export const invoiceFields: INodeProperties[] = [
{
displayName: 'Invoice ID',
name: 'invoiceId',
- description: 'ID of the invoice to retrieve.',
+ description: 'ID of the invoice to retrieve',
type: 'string',
required: true,
default: '',
@@ -307,7 +307,7 @@ export const invoiceFields: INodeProperties[] = [
{
displayName: 'Invoice ID',
name: 'invoiceId',
- description: 'ID of the invoice to update.',
+ description: 'ID of the invoice to update',
type: 'string',
required: true,
default: '',
@@ -347,14 +347,14 @@ export const invoiceFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getAccounts',
},
- description: 'ID of the account associated with this invoice.',
+ description: 'ID of the account associated with this invoice',
},
{
displayName: 'Adjustment',
name: 'Adjustment',
type: 'number',
default: '',
- description: 'Adjustment in the grand total, if any.',
+ description: 'Adjustment in the grand total, if any',
},
billingAddress,
{
@@ -362,7 +362,7 @@ export const invoiceFields: INodeProperties[] = [
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('invoice'),
@@ -383,14 +383,14 @@ export const invoiceFields: INodeProperties[] = [
name: 'Exchange_Rate',
type: 'number',
default: '',
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Grand Total',
name: 'Grand_Total',
type: 'number',
default: '',
- description: 'Total amount for the product after deducting tax and discounts.',
+ description: 'Total amount for the product after deducting tax and discounts',
},
{
displayName: 'Invoice Date',
@@ -435,28 +435,28 @@ export const invoiceFields: INodeProperties[] = [
name: 'Sub_Total',
type: 'number',
default: '',
- description: 'Total amount for the product excluding tax.',
+ description: 'Total amount for the product excluding tax',
},
{
displayName: 'Subject',
name: 'Subject',
type: 'string',
default: '',
- description: 'Subject or title of the invoice.',
+ description: 'Subject or title of the invoice',
},
{
displayName: 'Tax',
name: 'Tax',
type: 'number',
default: '',
- description: 'Tax amount as the sum of sales tax and value-added tax.',
+ description: 'Tax amount as the sum of sales tax and value-added tax',
},
{
displayName: 'Terms and Conditions',
name: 'Terms_and_Conditions',
type: 'string',
default: '',
- description: 'Terms and conditions associated with the invoice.',
+ description: 'Terms and conditions associated with the invoice',
},
],
},
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/LeadDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/LeadDescription.ts
index 4cd2b20d4d..83cd29b87a 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/LeadDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/LeadDescription.ts
@@ -70,7 +70,7 @@ export const leadFields: INodeProperties[] = [
{
displayName: 'Company',
name: 'Company',
- description: 'Company at which the lead works.',
+ description: 'Company at which the lead works',
type: 'string',
required: true,
default: '',
@@ -125,14 +125,14 @@ export const leadFields: INodeProperties[] = [
name: 'Annual_Revenue',
type: 'number',
default: '',
- description: 'Annual revenue of the lead’s company.',
+ description: 'Annual revenue of the lead’s company',
},
{
displayName: 'Currency',
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('lead'),
@@ -147,7 +147,7 @@ export const leadFields: INodeProperties[] = [
name: 'Designation',
type: 'string',
default: '',
- description: 'Position of the lead at their company.',
+ description: 'Position of the lead at their company',
},
{
displayName: 'Email',
@@ -184,21 +184,21 @@ export const leadFields: INodeProperties[] = [
name: 'Industry',
type: 'string',
default: '',
- description: 'Industry to which the lead belongs.',
+ description: 'Industry to which the lead belongs',
},
{
displayName: 'Industry Type',
name: 'Industry_Type',
type: 'string',
default: '',
- description: 'Type of industry to which the lead belongs.',
+ description: 'Type of industry to which the lead belongs',
},
{
displayName: 'Lead Source',
name: 'Lead_Source',
type: 'string',
default: '',
- description: 'Source from which the lead was created.',
+ description: 'Source from which the lead was created',
},
{
displayName: 'Lead Status',
@@ -217,7 +217,7 @@ export const leadFields: INodeProperties[] = [
name: 'No_of_Employees',
type: 'number',
default: '',
- description: 'Number of employees in the lead’s company.',
+ description: 'Number of employees in the lead’s company',
},
{
displayName: 'Phone',
@@ -264,7 +264,7 @@ export const leadFields: INodeProperties[] = [
{
displayName: 'Company',
name: 'Company',
- description: 'Company at which the lead works.',
+ description: 'Company at which the lead works',
type: 'string',
required: true,
default: '',
@@ -319,14 +319,14 @@ export const leadFields: INodeProperties[] = [
name: 'Annual_Revenue',
type: 'number',
default: '',
- description: 'Annual revenue of the lead’s company.',
+ description: 'Annual revenue of the lead’s company',
},
{
displayName: 'Currency',
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('lead'),
@@ -341,7 +341,7 @@ export const leadFields: INodeProperties[] = [
name: 'Designation',
type: 'string',
default: '',
- description: 'Position of the lead at their company.',
+ description: 'Position of the lead at their company',
},
{
displayName: 'Email',
@@ -379,21 +379,21 @@ export const leadFields: INodeProperties[] = [
name: 'Industry',
type: 'string',
default: '',
- description: 'Industry to which the lead belongs.',
+ description: 'Industry to which the lead belongs',
},
{
displayName: 'Industry Type',
name: 'Industry_Type',
type: 'string',
default: '',
- description: 'Type of industry to which the lead belongs.',
+ description: 'Type of industry to which the lead belongs',
},
{
displayName: 'Lead Source',
name: 'Lead_Source',
type: 'string',
default: '',
- description: 'Source from which the lead was created.',
+ description: 'Source from which the lead was created',
},
{
displayName: 'Lead Status',
@@ -412,7 +412,7 @@ export const leadFields: INodeProperties[] = [
name: 'No_of_Employees',
type: 'number',
default: '',
- description: 'Number of employees in the lead’s company.',
+ description: 'Number of employees in the lead’s company',
},
{
displayName: 'Phone',
@@ -459,7 +459,7 @@ export const leadFields: INodeProperties[] = [
{
displayName: 'Lead ID',
name: 'leadId',
- description: 'ID of the lead to delete.',
+ description: 'ID of the lead to delete',
type: 'string',
required: true,
default: '',
@@ -481,7 +481,7 @@ export const leadFields: INodeProperties[] = [
{
displayName: 'Lead ID',
name: 'leadId',
- description: 'ID of the lead to retrieve.',
+ description: 'ID of the lead to retrieve',
type: 'string',
required: true,
default: '',
@@ -508,7 +508,7 @@ export const leadFields: INodeProperties[] = [
{
displayName: 'Lead ID',
name: 'leadId',
- description: 'ID of the lead to update.',
+ description: 'ID of the lead to update',
type: 'string',
required: true,
default: '',
@@ -546,21 +546,21 @@ export const leadFields: INodeProperties[] = [
name: 'Annual_Revenue',
type: 'number',
default: '',
- description: 'Annual revenue of the lead’s company.',
+ description: 'Annual revenue of the lead’s company',
},
{
displayName: 'Company',
name: 'Company',
type: 'string',
default: '',
- description: 'Company at which the lead works.',
+ description: 'Company at which the lead works',
},
{
displayName: 'Currency',
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('lead'),
@@ -575,7 +575,7 @@ export const leadFields: INodeProperties[] = [
name: 'Designation',
type: 'string',
default: '',
- description: 'Position of the lead at their company.',
+ description: 'Position of the lead at their company',
},
{
displayName: 'Email',
@@ -612,14 +612,14 @@ export const leadFields: INodeProperties[] = [
name: 'Industry',
type: 'string',
default: '',
- description: 'Industry to which the lead belongs.',
+ description: 'Industry to which the lead belongs',
},
{
displayName: 'Industry Type',
name: 'Industry_Type',
type: 'string',
default: '',
- description: 'Type of industry to which the lead belongs.',
+ description: 'Type of industry to which the lead belongs',
},
{
displayName: 'Last Name',
@@ -632,7 +632,7 @@ export const leadFields: INodeProperties[] = [
name: 'Lead_Source',
type: 'string',
default: '',
- description: 'Source from which the lead was created.',
+ description: 'Source from which the lead was created',
},
{
displayName: 'Lead Status',
@@ -651,7 +651,7 @@ export const leadFields: INodeProperties[] = [
name: 'No_of_Employees',
type: 'number',
default: '',
- description: 'Number of employees in the lead’s company.',
+ description: 'Number of employees in the lead’s company',
},
{
displayName: 'Phone',
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/ProductDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/ProductDescription.ts
index 3862941fdc..ccf0ba76c0 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/ProductDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/ProductDescription.ts
@@ -198,7 +198,7 @@ export const productFields: INodeProperties[] = [
{
displayName: 'Product ID',
name: 'productId',
- description: 'ID of the product to delete.',
+ description: 'ID of the product to delete',
type: 'string',
required: true,
default: '',
@@ -220,7 +220,7 @@ export const productFields: INodeProperties[] = [
{
displayName: 'Product ID',
name: 'productId',
- description: 'ID of the product to retrieve.',
+ description: 'ID of the product to retrieve',
type: 'string',
required: true,
default: '',
@@ -247,7 +247,7 @@ export const productFields: INodeProperties[] = [
{
displayName: 'Product ID',
name: 'productId',
- description: 'ID of the product to update.',
+ description: 'ID of the product to update',
type: 'string',
required: true,
default: '',
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/PurchaseOrderDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/PurchaseOrderDescription.ts
index 5acdca56e5..ee4d594c74 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/PurchaseOrderDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/PurchaseOrderDescription.ts
@@ -67,7 +67,7 @@ export const purchaseOrderFields: INodeProperties[] = [
{
displayName: 'Subject',
name: 'subject',
- description: 'Subject or title of the purchase order.',
+ description: 'Subject or title of the purchase order',
type: 'string',
required: true,
default: '',
@@ -116,7 +116,7 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getVendors',
},
- description: 'ID of the vendor associated with the purchase order.',
+ description: 'ID of the vendor associated with the purchase order',
displayOptions: {
show: {
resource: [
@@ -178,7 +178,7 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Adjustment in the grand total, if any.',
+ description: 'Adjustment in the grand total, if any',
},
{
displayName: 'Billing Address',
@@ -230,14 +230,14 @@ export const purchaseOrderFields: INodeProperties[] = [
name: 'Carrier',
type: 'string',
default: '',
- description: 'Name of the carrier.',
+ description: 'Name of the carrier',
},
{
displayName: 'Currency',
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('purchaseOrder'),
@@ -271,7 +271,7 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Grand Total',
@@ -281,21 +281,21 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product after deducting tax and discounts.',
+ description: 'Total amount for the product after deducting tax and discounts',
},
{
displayName: 'PO Date',
name: 'PO_Date',
type: 'dateTime',
default: '',
- description: 'Date on which the purchase order was issued.',
+ description: 'Date on which the purchase order was issued',
},
{
displayName: 'PO Number',
name: 'PO_Number',
type: 'string',
default: '',
- description: 'ID of the purchase order after creating a case.',
+ description: 'ID of the purchase order after creating a case',
},
{
displayName: 'Sales Commission',
@@ -316,7 +316,7 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getPurchaseOrderStatus',
},
- description: 'Status of the purchase order.',
+ description: 'Status of the purchase order',
},
{
displayName: 'Sub Total',
@@ -326,7 +326,7 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product excluding tax.',
+ description: 'Total amount for the product excluding tax',
},
{
displayName: 'Tax',
@@ -336,14 +336,14 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Tax amount as the sum of sales tax and value-added tax.',
+ description: 'Tax amount as the sum of sales tax and value-added tax',
},
{
displayName: 'Terms and Conditions',
name: 'Terms_and_Conditions',
type: 'string',
default: '',
- description: 'Terms and conditions associated with the purchase order.',
+ description: 'Terms and conditions associated with the purchase order',
},
{
displayName: 'Tracking Number',
@@ -360,7 +360,7 @@ export const purchaseOrderFields: INodeProperties[] = [
{
displayName: 'Purchase Order ID',
name: 'purchaseOrderId',
- description: 'ID of the purchase order to delete.',
+ description: 'ID of the purchase order to delete',
type: 'string',
required: true,
default: '',
@@ -382,7 +382,7 @@ export const purchaseOrderFields: INodeProperties[] = [
{
displayName: 'Purchase Order ID',
name: 'purchaseOrderId',
- description: 'ID of the purchase order to retrieve.',
+ description: 'ID of the purchase order to retrieve',
type: 'string',
required: true,
default: '',
@@ -409,7 +409,7 @@ export const purchaseOrderFields: INodeProperties[] = [
{
displayName: 'Purchase Order ID',
name: 'purchaseOrderId',
- description: 'ID of the purchase order to update.',
+ description: 'ID of the purchase order to update',
type: 'string',
required: true,
default: '',
@@ -449,7 +449,7 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Adjustment in the grand total, if any.',
+ description: 'Adjustment in the grand total, if any',
},
billingAddress,
{
@@ -457,14 +457,14 @@ export const purchaseOrderFields: INodeProperties[] = [
name: 'Carrier',
type: 'string',
default: '',
- description: 'Name of the carrier.',
+ description: 'Name of the carrier',
},
{
displayName: 'Currency',
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('purchaseOrder'),
@@ -497,7 +497,7 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Grand Total',
@@ -507,21 +507,21 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product after deducting tax and discounts.',
+ description: 'Total amount for the product after deducting tax and discounts',
},
{
displayName: 'PO Date',
name: 'PO_Date',
type: 'dateTime',
default: '',
- description: 'Date on which the purchase order was issued.',
+ description: 'Date on which the purchase order was issued',
},
{
displayName: 'PO Number',
name: 'PO_Number',
type: 'string',
default: '',
- description: 'ID of the purchase order after creating a case.',
+ description: 'ID of the purchase order after creating a case',
},
// productDetails('purchaseOrder', 'update'),
{
@@ -543,7 +543,7 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getPurchaseOrderStatus',
},
- description: 'Status of the purchase order.',
+ description: 'Status of the purchase order',
},
{
displayName: 'Sub Total',
@@ -553,14 +553,14 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product excluding tax.',
+ description: 'Total amount for the product excluding tax',
},
{
displayName: 'Subject',
name: 'Subject',
type: 'string',
default: '',
- description: 'Subject or title of the purchase order.',
+ description: 'Subject or title of the purchase order',
},
{
displayName: 'Tax',
@@ -570,14 +570,14 @@ export const purchaseOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Tax amount as the sum of sales tax and value-added tax.',
+ description: 'Tax amount as the sum of sales tax and value-added tax',
},
{
displayName: 'Terms and Conditions',
name: 'Terms_and_Conditions',
type: 'string',
default: '',
- description: 'Terms and conditions associated with the purchase order.',
+ description: 'Terms and conditions associated with the purchase order',
},
{
displayName: 'Tracking Number',
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/QuoteDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/QuoteDescription.ts
index 9e4d92f2ba..b8789fa322 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/QuoteDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/QuoteDescription.ts
@@ -67,7 +67,7 @@ export const quoteFields: INodeProperties[] = [
{
displayName: 'Subject',
name: 'subject',
- description: 'Subject or title of the quote.',
+ description: 'Subject or title of the quote',
type: 'string',
required: true,
default: '',
@@ -157,7 +157,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Adjustment in the grand total, if any.',
+ description: 'Adjustment in the grand total, if any',
},
billingAddress,
{
@@ -171,7 +171,7 @@ export const quoteFields: INodeProperties[] = [
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('quote'),
@@ -189,7 +189,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Grand Total',
@@ -199,7 +199,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product after deducting tax and discounts.',
+ description: 'Total amount for the product after deducting tax and discounts',
},
{
displayName: 'Quote Stage',
@@ -209,7 +209,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getQuoteStage',
},
- description: 'Stage of the quote.',
+ description: 'Stage of the quote',
},
shippingAddress,
{
@@ -220,7 +220,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product excluding tax.',
+ description: 'Total amount for the product excluding tax',
},
{
displayName: 'Tax',
@@ -230,28 +230,28 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount as the sum of sales tax and value-added tax.',
+ description: 'Total amount as the sum of sales tax and value-added tax',
},
{
displayName: 'Team',
name: 'Team',
type: 'string',
default: '',
- description: 'Team for whom the quote is created.',
+ description: 'Team for whom the quote is created',
},
{
displayName: 'Terms and Conditions',
name: 'Terms_and_Conditions',
type: 'string',
default: '',
- description: 'Terms and conditions associated with the quote.',
+ description: 'Terms and conditions associated with the quote',
},
{
displayName: 'Valid Till',
name: 'Valid_Till',
type: 'dateTime',
default: '',
- description: 'Date until when the quote is valid.',
+ description: 'Date until when the quote is valid',
},
],
},
@@ -262,7 +262,7 @@ export const quoteFields: INodeProperties[] = [
{
displayName: 'Quote ID',
name: 'quoteId',
- description: 'ID of the quote to delete.',
+ description: 'ID of the quote to delete',
type: 'string',
required: true,
default: '',
@@ -284,7 +284,7 @@ export const quoteFields: INodeProperties[] = [
{
displayName: 'Quote ID',
name: 'quoteId',
- description: 'ID of the quote to retrieve.',
+ description: 'ID of the quote to retrieve',
type: 'string',
required: true,
default: '',
@@ -311,7 +311,7 @@ export const quoteFields: INodeProperties[] = [
{
displayName: 'Quote ID',
name: 'quoteId',
- description: 'ID of the quote to update.',
+ description: 'ID of the quote to update',
type: 'string',
required: true,
default: '',
@@ -351,7 +351,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Adjustment in the grand total, if any.',
+ description: 'Adjustment in the grand total, if any',
},
billingAddress,
{
@@ -365,7 +365,7 @@ export const quoteFields: INodeProperties[] = [
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('quote'),
@@ -383,7 +383,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Grand Total',
@@ -393,7 +393,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product after deducting tax and discounts.',
+ description: 'Total amount for the product after deducting tax and discounts',
},
{
displayName: 'Quote Stage',
@@ -403,7 +403,7 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getQuoteStage',
},
- description: 'Stage of the quote.',
+ description: 'Stage of the quote',
},
shippingAddress,
{
@@ -414,14 +414,14 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product excluding tax.',
+ description: 'Total amount for the product excluding tax',
},
{
displayName: 'Subject',
name: 'Subject',
type: 'string',
default: '',
- description: 'Subject or title of the quote.',
+ description: 'Subject or title of the quote',
},
{
displayName: 'Tax',
@@ -431,28 +431,28 @@ export const quoteFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Tax amount as the sum of sales tax and value-added tax.',
+ description: 'Tax amount as the sum of sales tax and value-added tax',
},
{
displayName: 'Team',
name: 'Team',
type: 'string',
default: '',
- description: 'Team for whom the quote is created.',
+ description: 'Team for whom the quote is created',
},
{
displayName: 'Terms and Conditions',
name: 'Terms_and_Conditions',
type: 'string',
default: '',
- description: 'Terms and conditions associated with the quote.',
+ description: 'Terms and conditions associated with the quote',
},
{
displayName: 'Valid Till',
name: 'Valid_Till',
type: 'dateTime',
default: '',
- description: 'Date until when the quote is valid.',
+ description: 'Date until when the quote is valid',
},
],
},
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/SalesOrderDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/SalesOrderDescription.ts
index 3ba26f67dd..0c5034ebe8 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/SalesOrderDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/SalesOrderDescription.ts
@@ -92,7 +92,7 @@ export const salesOrderFields: INodeProperties[] = [
{
displayName: 'Subject',
name: 'subject',
- description: 'Subject or title of the sales order.',
+ description: 'Subject or title of the sales order',
type: 'string',
required: true,
default: '',
@@ -182,7 +182,7 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Adjustment in the grand total, if any.',
+ description: 'Adjustment in the grand total, if any',
},
billingAddress,
{
@@ -190,7 +190,7 @@ export const salesOrderFields: INodeProperties[] = [
name: 'Carrier',
type: 'string',
default: '',
- description: 'Name of the carrier.',
+ description: 'Name of the carrier',
},
{
displayName: 'Contact ID',
@@ -206,7 +206,7 @@ export const salesOrderFields: INodeProperties[] = [
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('salesOrder'),
@@ -249,7 +249,7 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Grand Total',
@@ -259,14 +259,14 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product after deducting tax and discounts.',
+ description: 'Total amount for the product after deducting tax and discounts',
},
{
displayName: 'Sales Order Number',
name: 'SO_Number',
type: 'string',
default: '',
- description: 'ID of the sales order after creating a case.',
+ description: 'ID of the sales order after creating a case',
},
{
displayName: 'Sales Commission',
@@ -287,7 +287,7 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getSalesOrderStatus',
},
- description: 'Status of the sales order.',
+ description: 'Status of the sales order',
},
{
displayName: 'Sub Total',
@@ -297,7 +297,7 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product excluding tax.',
+ description: 'Total amount for the product excluding tax',
},
{
displayName: 'Tax',
@@ -307,14 +307,14 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Tax amount as the sum of sales tax and value-added tax.',
+ description: 'Tax amount as the sum of sales tax and value-added tax',
},
{
displayName: 'Terms and Conditions',
name: 'Terms_and_Conditions',
type: 'string',
default: '',
- description: 'Terms and conditions associated with the purchase order.',
+ description: 'Terms and conditions associated with the purchase order',
},
],
},
@@ -325,7 +325,7 @@ export const salesOrderFields: INodeProperties[] = [
{
displayName: 'Sales Order ID',
name: 'salesOrderId',
- description: 'ID of the sales order to delete.',
+ description: 'ID of the sales order to delete',
type: 'string',
required: true,
default: '',
@@ -347,7 +347,7 @@ export const salesOrderFields: INodeProperties[] = [
{
displayName: 'Sales Order ID',
name: 'salesOrderId',
- description: 'ID of the sales order to retrieve.',
+ description: 'ID of the sales order to retrieve',
type: 'string',
required: true,
default: '',
@@ -374,7 +374,7 @@ export const salesOrderFields: INodeProperties[] = [
{
displayName: 'Sales Order ID',
name: 'salesOrderId',
- description: 'ID of the sales order to update.',
+ description: 'ID of the sales order to update',
type: 'string',
required: true,
default: '',
@@ -414,7 +414,7 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getAccounts',
},
- description: 'ID of the account associated with this invoice.',
+ description: 'ID of the account associated with this invoice',
},
{
displayName: 'Adjustment',
@@ -424,7 +424,7 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Adjustment in the grand total, if any.',
+ description: 'Adjustment in the grand total, if any',
},
billingAddress,
{
@@ -432,7 +432,7 @@ export const salesOrderFields: INodeProperties[] = [
name: 'Carrier',
type: 'string',
default: '',
- description: 'Name of the carrier.',
+ description: 'Name of the carrier',
},
{
displayName: 'Contact ID',
@@ -448,7 +448,7 @@ export const salesOrderFields: INodeProperties[] = [
name: 'Currency',
type: 'options',
default: 'USD',
- description: 'Symbol of the currency in which revenue is generated.',
+ description: 'Symbol of the currency in which revenue is generated',
options: currencies,
},
makeCustomFieldsFixedCollection('salesOrder'),
@@ -490,7 +490,7 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Exchange rate of the default currency to the home currency.',
+ description: 'Exchange rate of the default currency to the home currency',
},
{
displayName: 'Grand Total',
@@ -500,14 +500,14 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product after deducting tax and discounts.',
+ description: 'Total amount for the product after deducting tax and discounts',
},
{
displayName: 'Sales Order Number',
name: 'SO_Number',
type: 'string',
default: '',
- description: 'ID of the sales order after creating a case.',
+ description: 'ID of the sales order after creating a case',
},
{
displayName: 'Sales Commission',
@@ -528,7 +528,7 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
loadOptionsMethod: 'getSalesOrderStatus',
},
- description: 'Status of the sales order.',
+ description: 'Status of the sales order',
},
{
displayName: 'Sub Total',
@@ -538,14 +538,14 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Total amount for the product excluding tax.',
+ description: 'Total amount for the product excluding tax',
},
{
displayName: 'Subject',
name: 'Subject',
type: 'string',
default: '',
- description: 'Subject or title of the sales order.',
+ description: 'Subject or title of the sales order',
},
{
displayName: 'Tax',
@@ -555,14 +555,14 @@ export const salesOrderFields: INodeProperties[] = [
typeOptions: {
minValue: 0,
},
- description: 'Tax amount as the sum of sales tax and value-added tax.',
+ description: 'Tax amount as the sum of sales tax and value-added tax',
},
{
displayName: 'Terms and Conditions',
name: 'Terms_and_Conditions',
type: 'string',
default: '',
- description: 'Terms and conditions associated with the purchase order.',
+ description: 'Terms and conditions associated with the purchase order',
},
],
},
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/SharedFields.ts b/packages/nodes-base/nodes/Zoho/descriptions/SharedFields.ts
index 64798505e7..1a329864e2 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/SharedFields.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/SharedFields.ts
@@ -323,7 +323,7 @@ export const makeGetAllFields = (resource: CamelCaseResource): INodeProperties[]
name: 'returnAll',
type: 'boolean',
default: false,
- description: 'Return all results.',
+ description: 'Return all results',
displayOptions: {
show: {
resource: [
@@ -340,7 +340,7 @@ export const makeGetAllFields = (resource: CamelCaseResource): INodeProperties[]
name: 'limit',
type: 'number',
default: 5,
- description: 'The number of results to return.',
+ description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
@@ -398,14 +398,14 @@ export const makeGetAllFields = (resource: CamelCaseResource): INodeProperties[]
loadOptionsMethod,
},
default: [],
- description: 'Return only these fields.',
+ description: 'Return only these fields',
},
{
displayName: 'Include Child',
name: 'include_child',
type: 'boolean',
default: false,
- description: 'Retrieve only records from child territories.',
+ description: 'Retrieve only records from child territories',
},
{
displayName: 'Sort By',
@@ -415,7 +415,7 @@ export const makeGetAllFields = (resource: CamelCaseResource): INodeProperties[]
loadOptionsMethod,
},
default: [],
- description: 'Field to sort records by.',
+ description: 'Field to sort records by',
},
{
displayName: 'Sort Order',
@@ -432,14 +432,14 @@ export const makeGetAllFields = (resource: CamelCaseResource): INodeProperties[]
},
],
default: 'desc',
- description: 'Ascending or descending order sort order.',
+ description: 'Ascending or descending order sort order',
},
{
displayName: 'Territory ID',
name: 'territory_id',
type: 'string',
default: '',
- description: 'Retrieve only records from this territory.',
+ description: 'Retrieve only records from this territory',
},
],
},
@@ -457,7 +457,7 @@ export const makeCustomFieldsFixedCollection = (resource: CamelCaseResource): IN
typeOptions: {
multipleValues: true,
},
- description: 'Filter by custom fields.',
+ description: 'Filter by custom fields',
default: {},
options: [
{
@@ -472,14 +472,14 @@ export const makeCustomFieldsFixedCollection = (resource: CamelCaseResource): IN
loadOptionsMethod,
},
default: '',
- description: 'Custom field to set a value to.',
+ description: 'Custom field to set a value to',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value to set on custom field.',
+ description: 'Value to set on custom field',
},
],
},
diff --git a/packages/nodes-base/nodes/Zoho/descriptions/VendorDescription.ts b/packages/nodes-base/nodes/Zoho/descriptions/VendorDescription.ts
index deb14ef412..7accef6251 100644
--- a/packages/nodes-base/nodes/Zoho/descriptions/VendorDescription.ts
+++ b/packages/nodes-base/nodes/Zoho/descriptions/VendorDescription.ts
@@ -171,7 +171,7 @@ export const vendorFields: INodeProperties[] = [
{
displayName: 'Vendor ID',
name: 'vendorId',
- description: 'ID of the vendor to delete.',
+ description: 'ID of the vendor to delete',
type: 'string',
required: true,
default: '',
@@ -193,7 +193,7 @@ export const vendorFields: INodeProperties[] = [
{
displayName: 'Vendor ID',
name: 'vendorId',
- description: 'ID of the vendor to retrieve.',
+ description: 'ID of the vendor to retrieve',
type: 'string',
required: true,
default: '',
@@ -220,7 +220,7 @@ export const vendorFields: INodeProperties[] = [
{
displayName: 'Vendor ID',
name: 'vendorId',
- description: 'ID of the vendor to update.',
+ description: 'ID of the vendor to update',
type: 'string',
required: true,
default: '',
diff --git a/packages/nodes-base/nodes/Zoom/MeetingDescription.ts b/packages/nodes-base/nodes/Zoom/MeetingDescription.ts
index d6bb48932c..7879e2cf66 100644
--- a/packages/nodes-base/nodes/Zoom/MeetingDescription.ts
+++ b/packages/nodes-base/nodes/Zoom/MeetingDescription.ts
@@ -69,7 +69,7 @@ export const meetingFields: INodeProperties[] = [
],
},
},
- description: `Topic of the meeting.`,
+ description: 'Topic of the meeting',
},
{
displayName: 'Additional Fields',
@@ -97,7 +97,7 @@ export const meetingFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Meeting agenda.',
+ description: 'Meeting agenda',
},
{
displayName: 'Duration',
@@ -107,21 +107,21 @@ export const meetingFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'Meeting duration (minutes).',
+ description: 'Meeting duration (minutes)',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
- description: 'Password to join the meeting with maximum 10 characters.',
+ description: 'Password to join the meeting with maximum 10 characters',
},
{
displayName: 'Schedule For',
name: 'scheduleFor',
type: 'string',
default: '',
- description: 'Schedule meeting for someone else from your account, provide their email ID.',
+ description: 'Schedule meeting for someone else from your account, provide their email ID',
},
{
displayName: 'Settings',
@@ -150,14 +150,14 @@ export const meetingFields: INodeProperties[] = [
],
default: 'both',
- description: 'Determine how participants can join audio portion of the meeting.',
+ description: 'Determine how participants can join audio portion of the meeting',
},
{
displayName: 'Alternative Hosts',
name: 'alternativeHosts',
type: 'string',
default: '',
- description: 'Alternative hosts email IDs.',
+ description: 'Alternative hosts email IDs',
},
{
displayName: 'Auto Recording',
@@ -178,49 +178,49 @@ export const meetingFields: INodeProperties[] = [
},
],
default: 'none',
- description: 'Auto recording.',
+ description: 'Auto recording',
},
{
displayName: 'Host Meeting in China',
name: 'cnMeeting',
type: 'boolean',
default: false,
- description: 'Host Meeting in China.',
+ description: 'Host Meeting in China',
},
{
displayName: 'Host Meeting in India',
name: 'inMeeting',
type: 'boolean',
default: false,
- description: 'Host Meeting in India.',
+ description: 'Host Meeting in India',
},
{
displayName: 'Host Video',
name: 'hostVideo',
type: 'boolean',
default: false,
- description: 'Start video when host joins the meeting.',
+ description: 'Start video when host joins the meeting',
},
{
displayName: 'Join Before Host',
name: 'joinBeforeHost',
type: 'boolean',
default: false,
- description: 'Allow participants to join the meeting before host starts it.',
+ description: 'Allow participants to join the meeting before host starts it',
},
{
displayName: 'Muting Upon Entry',
name: 'muteUponEntry',
type: 'boolean',
default: false,
- description: 'Mute participants upon entry.',
+ description: 'Mute participants upon entry',
},
{
displayName: 'Participant Video',
name: 'participantVideo',
type: 'boolean',
default: false,
- description: 'Start video when participant joins the meeting.',
+ description: 'Start video when participant joins the meeting',
},
{
displayName: 'Registration Type',
@@ -248,7 +248,7 @@ export const meetingFields: INodeProperties[] = [
name: 'watermark',
type: 'boolean',
default: false,
- description: 'Adds watermark when viewing a shared screen.',
+ description: 'Adds watermark when viewing a shared screen',
},
],
},
@@ -293,7 +293,7 @@ export const meetingFields: INodeProperties[] = [
],
default: 2,
- description: 'Meeting type.',
+ description: 'Meeting type',
},
],
},
@@ -316,7 +316,7 @@ export const meetingFields: INodeProperties[] = [
],
},
},
- description: 'Meeting ID.',
+ description: 'Meeting ID',
},
{
displayName: 'Additional Fields',
@@ -341,14 +341,14 @@ export const meetingFields: INodeProperties[] = [
name: 'occurrenceId',
type: 'string',
default: '',
- description: 'To view meeting details of a particular occurrence of the recurring meeting.',
+ description: 'To view meeting details of a particular occurrence of the recurring meeting',
},
{
displayName: 'Show Previous Occurrences',
name: 'showPreviousOccurrences',
type: 'boolean',
default: false,
- description: 'To view meeting details of all previous occurrences of the recurring meeting.',
+ description: 'To view meeting details of all previous occurrences of the recurring meeting',
},
],
},
@@ -370,7 +370,7 @@ export const meetingFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -394,7 +394,7 @@ export const meetingFields: INodeProperties[] = [
maxValue: 300,
},
default: 30,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Filters',
@@ -436,7 +436,7 @@ export const meetingFields: INodeProperties[] = [
},
],
default: 'live',
- description: `Meeting type.`,
+ description: 'Meeting type',
},
],
},
@@ -459,7 +459,7 @@ export const meetingFields: INodeProperties[] = [
],
},
},
- description: 'Meeting ID.',
+ description: 'Meeting ID',
},
{
displayName: 'Additional Fields',
@@ -483,7 +483,7 @@ export const meetingFields: INodeProperties[] = [
name: 'occurrenceId',
type: 'string',
default: '',
- description: 'Meeting occurrence ID.',
+ description: 'Meeting occurrence ID',
},
{
displayName: 'Schedule Reminder',
@@ -514,7 +514,7 @@ export const meetingFields: INodeProperties[] = [
],
},
},
- description: 'Meeting ID.',
+ description: 'Meeting ID',
},
{
displayName: 'Update Fields',
@@ -541,7 +541,7 @@ export const meetingFields: INodeProperties[] = [
alwaysOpenEditWindow: true,
},
default: '',
- description: 'Meeting agenda.',
+ description: 'Meeting agenda',
},
{
displayName: 'Duration',
@@ -551,21 +551,21 @@ export const meetingFields: INodeProperties[] = [
minValue: 0,
},
default: 0,
- description: 'Meeting duration (minutes).',
+ description: 'Meeting duration (minutes)',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
- description: 'Password to join the meeting with maximum 10 characters.',
+ description: 'Password to join the meeting with maximum 10 characters',
},
{
displayName: 'Schedule For',
name: 'scheduleFor',
type: 'string',
default: '',
- description: 'Schedule meeting for someone else from your account, provide their email ID.',
+ description: 'Schedule meeting for someone else from your account, provide their email ID',
},
{
displayName: 'Settings',
@@ -594,14 +594,14 @@ export const meetingFields: INodeProperties[] = [
],
default: 'both',
- description: 'Determine how participants can join audio portion of the meeting.',
+ description: 'Determine how participants can join audio portion of the meeting',
},
{
displayName: 'Alternative Hosts',
name: 'alternativeHosts',
type: 'string',
default: '',
- description: 'Alternative hosts email IDs.',
+ description: 'Alternative hosts email IDs',
},
{
displayName: 'Auto Recording',
@@ -622,49 +622,49 @@ export const meetingFields: INodeProperties[] = [
},
],
default: 'none',
- description: 'Auto recording.',
+ description: 'Auto recording',
},
{
displayName: 'Host Meeting in China',
name: 'cnMeeting',
type: 'boolean',
default: false,
- description: 'Host Meeting in China.',
+ description: 'Host Meeting in China',
},
{
displayName: 'Host Meeting in India',
name: 'inMeeting',
type: 'boolean',
default: false,
- description: 'Host Meeting in India.',
+ description: 'Host Meeting in India',
},
{
displayName: 'Host Video',
name: 'hostVideo',
type: 'boolean',
default: false,
- description: 'Start video when host joins the meeting.',
+ description: 'Start video when host joins the meeting',
},
{
displayName: 'Join Before Host',
name: 'joinBeforeHost',
type: 'boolean',
default: false,
- description: 'Allow participants to join the meeting before host starts it.',
+ description: 'Allow participants to join the meeting before host starts it',
},
{
displayName: 'Muting Upon Entry',
name: 'muteUponEntry',
type: 'boolean',
default: false,
- description: 'Mute participants upon entry.',
+ description: 'Mute participants upon entry',
},
{
displayName: 'Participant Video',
name: 'participantVideo',
type: 'boolean',
default: false,
- description: 'Start video when participant joins the meeting.',
+ description: 'Start video when participant joins the meeting',
},
{
displayName: 'Registration Type',
@@ -692,7 +692,7 @@ export const meetingFields: INodeProperties[] = [
name: 'watermark',
type: 'boolean',
default: false,
- description: 'Adds watermark when viewing a shared screen.',
+ description: 'Adds watermark when viewing a shared screen',
},
],
},
@@ -718,7 +718,7 @@ export const meetingFields: INodeProperties[] = [
name: 'topic',
type: 'string',
default: '',
- description: `Meeting topic.`,
+ description: 'Meeting topic',
},
{
displayName: 'Type',
@@ -744,7 +744,7 @@ export const meetingFields: INodeProperties[] = [
],
default: 2,
- description: 'Meeting type.',
+ description: 'Meeting type',
},
],
},
diff --git a/packages/nodes-base/nodes/Zoom/MeetingRegistrantDescription.ts b/packages/nodes-base/nodes/Zoom/MeetingRegistrantDescription.ts
index 3f889a41e5..d0171e85b9 100644
--- a/packages/nodes-base/nodes/Zoom/MeetingRegistrantDescription.ts
+++ b/packages/nodes-base/nodes/Zoom/MeetingRegistrantDescription.ts
@@ -57,7 +57,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
],
},
},
- description: 'Meeting ID.',
+ description: 'Meeting ID',
},
{
displayName: 'Email',
@@ -75,7 +75,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
],
},
},
- description: 'Valid Email-ID.',
+ description: 'Valid Email-ID',
},
{
displayName: 'First Name',
@@ -93,7 +93,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
],
},
},
- description: 'First Name.',
+ description: 'First Name',
},
{
displayName: 'Additional Fields',
@@ -118,63 +118,63 @@ export const meetingRegistrantFields: INodeProperties[] = [
name: 'address',
type: 'string',
default: '',
- description: 'Valid address of registrant.',
+ description: 'Valid address of registrant',
},
{
displayName: 'City',
name: 'city',
type: 'string',
default: '',
- description: 'Valid city of registrant.',
+ description: 'Valid city of registrant',
},
{
displayName: 'Comments',
name: 'comments',
type: 'string',
default: '',
- description: 'Allows registrants to provide any questions they have.',
+ description: 'Allows registrants to provide any questions they have',
},
{
displayName: 'Country',
name: 'country',
type: 'string',
default: '',
- description: 'Valid country of registrant.',
+ description: 'Valid country of registrant',
},
{
displayName: 'Job Title',
name: 'jobTitle',
type: 'string',
default: '',
- description: 'Job title of registrant.',
+ description: 'Job title of registrant',
},
{
displayName: 'Last Name',
name: 'lastName',
type: 'string',
default: '',
- description: 'Last Name.',
+ description: 'Last Name',
},
{
displayName: 'Occurrence IDs',
name: 'occurrenceId',
type: 'string',
default: '',
- description: 'Occurrence IDs separated by comma.',
+ description: 'Occurrence IDs separated by comma',
},
{
displayName: 'Organization',
name: 'org',
type: 'string',
default: '',
- description: 'Organization of registrant.',
+ description: 'Organization of registrant',
},
{
displayName: 'Phone Number',
name: 'phone',
type: 'string',
default: '',
- description: 'Valid phone number of registrant.',
+ description: 'Valid phone number of registrant',
},
{
displayName: 'Purchasing Time Frame',
@@ -203,7 +203,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
},
],
default: '',
- description: 'Meeting type.',
+ description: 'Meeting type',
},
{
displayName: 'Role in Purchase Process',
@@ -229,21 +229,21 @@ export const meetingRegistrantFields: INodeProperties[] = [
],
default: '',
- description: 'Role in purchase process.',
+ description: 'Role in purchase process',
},
{
displayName: 'State',
name: 'state',
type: 'string',
default: '',
- description: 'Valid state of registrant.',
+ description: 'Valid state of registrant',
},
{
displayName: 'Zip Code',
name: 'zip',
type: 'string',
default: '',
- description: 'Valid zip-code of registrant.',
+ description: 'Valid zip-code of registrant',
},
],
@@ -267,7 +267,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
],
},
},
- description: 'Meeting ID.',
+ description: 'Meeting ID',
},
{
displayName: 'Return All',
@@ -284,7 +284,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -308,7 +308,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
maxValue: 300,
},
default: 30,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
{
displayName: 'Additional Fields',
@@ -333,7 +333,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
name: 'occurrenceId',
type: 'string',
default: '',
- description: `Occurrence ID.`,
+ description: 'Occurrence ID',
},
{
displayName: 'Status',
@@ -354,7 +354,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
},
],
default: 'approved',
- description: `Registrant Status.`,
+ description: 'Registrant Status',
},
],
@@ -378,7 +378,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
],
},
},
- description: 'Meeting ID.',
+ description: 'Meeting ID',
},
{
displayName: 'Action',
@@ -410,7 +410,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
},
],
default: '',
- description: `Registrant Status.`,
+ description: 'Registrant Status',
},
{
displayName: 'Additional Fields',
@@ -434,7 +434,7 @@ export const meetingRegistrantFields: INodeProperties[] = [
name: 'occurrenceId',
type: 'string',
default: '',
- description: 'Occurrence ID.',
+ description: 'Occurrence ID',
},
],
diff --git a/packages/nodes-base/nodes/Zoom/WebinarDescription.ts b/packages/nodes-base/nodes/Zoom/WebinarDescription.ts
index 386e281f9d..b7cb04468c 100644
--- a/packages/nodes-base/nodes/Zoom/WebinarDescription.ts
+++ b/packages/nodes-base/nodes/Zoom/WebinarDescription.ts
@@ -66,7 +66,7 @@ export const webinarFields: INodeProperties[] = [
],
},
},
- description: 'User ID or email ID.',
+ description: 'User ID or email ID',
},
{
displayName: 'Additional Fields',
@@ -91,14 +91,14 @@ export const webinarFields: INodeProperties[] = [
name: 'agenda',
type: 'string',
default: '',
- description: 'Webinar agenda.',
+ description: 'Webinar agenda',
},
{
displayName: 'Alternative Hosts',
name: 'alternativeHosts',
type: 'string',
default: '',
- description: 'Alternative hosts email IDs.',
+ description: 'Alternative hosts email IDs',
},
{
displayName: 'Approval Type',
@@ -119,7 +119,7 @@ export const webinarFields: INodeProperties[] = [
},
],
default: 2,
- description: 'Approval type.',
+ description: 'Approval type',
},
{
displayName: 'Audio',
@@ -141,7 +141,7 @@ export const webinarFields: INodeProperties[] = [
],
default: 'both',
- description: 'Determine how participants can join audio portion of the webinar.',
+ description: 'Determine how participants can join audio portion of the webinar',
},
{
displayName: 'Auto Recording',
@@ -162,42 +162,42 @@ export const webinarFields: INodeProperties[] = [
},
],
default: 'none',
- description: 'Auto recording.',
+ description: 'Auto recording',
},
{
displayName: 'Duration',
name: 'duration',
type: 'string',
default: '',
- description: 'Duration.',
+ description: 'Duration',
},
{
displayName: 'Host Video',
name: 'hostVideo',
type: 'boolean',
default: false,
- description: 'Start video when host joins the webinar.',
+ description: 'Start video when host joins the webinar',
},
{
displayName: 'Panelists Video',
name: 'panelistsVideo',
type: 'boolean',
default: false,
- description: 'Start video when panelists joins the webinar.',
+ description: 'Start video when panelists joins the webinar',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
- description: 'Password to join the webinar with maximum 10 characters.',
+ description: 'Password to join the webinar with maximum 10 characters',
},
{
displayName: 'Practice Session',
name: 'practiceSession',
type: 'boolean',
default: false,
- description: 'Enable Practice session.',
+ description: 'Enable Practice session',
},
{
displayName: 'Registration Type',
@@ -242,7 +242,7 @@ export const webinarFields: INodeProperties[] = [
name: 'topic',
type: 'string',
default: '',
- description: `Webinar topic.`,
+ description: 'Webinar topic',
},
{
displayName: 'Webinar Type',
@@ -263,7 +263,7 @@ export const webinarFields: INodeProperties[] = [
},
],
default: 5,
- description: 'Webinar type.',
+ description: 'Webinar type',
},
],
@@ -287,7 +287,7 @@ export const webinarFields: INodeProperties[] = [
],
},
},
- description: 'Webinar ID.',
+ description: 'Webinar ID',
},
{
displayName: 'Additional Fields',
@@ -312,14 +312,14 @@ export const webinarFields: INodeProperties[] = [
name: 'occurrenceId',
type: 'string',
default: '',
- description: 'To view webinar details of a particular occurrence of the recurring webinar.',
+ description: 'To view webinar details of a particular occurrence of the recurring webinar',
},
{
displayName: 'Show Previous Occurrences',
name: 'showPreviousOccurrences',
type: 'boolean',
default: false,
- description: 'To view webinar details of all previous occurrences of the recurring webinar.',
+ description: 'To view webinar details of all previous occurrences of the recurring webinar',
},
],
},
@@ -342,7 +342,7 @@ export const webinarFields: INodeProperties[] = [
],
},
},
- description: 'User ID or email-ID.',
+ description: 'User ID or email-ID',
},
{
displayName: 'Return All',
@@ -359,7 +359,7 @@ export const webinarFields: INodeProperties[] = [
},
},
default: false,
- description: 'If all results should be returned or only up to a given limit.',
+ description: 'If all results should be returned or only up to a given limit',
},
{
displayName: 'Limit',
@@ -383,7 +383,7 @@ export const webinarFields: INodeProperties[] = [
maxValue: 300,
},
default: 30,
- description: 'How many results to return.',
+ description: 'How many results to return',
},
/* -------------------------------------------------------------------------- */
/* webinar:delete */
@@ -404,7 +404,7 @@ export const webinarFields: INodeProperties[] = [
],
},
},
- description: 'Webinar ID.',
+ description: 'Webinar ID',
},
{
displayName: 'Additional Fields',
@@ -428,7 +428,7 @@ export const webinarFields: INodeProperties[] = [
name: 'occurrenceId',
type: 'string',
default: '',
- description: 'Webinar occurrence ID.',
+ description: 'Webinar occurrence ID',
},
],
@@ -453,7 +453,7 @@ export const webinarFields: INodeProperties[] = [
],
},
},
- description: 'User ID or email address of user.',
+ description: 'User ID or email address of user',
},
{
displayName: 'Additional Fields',
@@ -478,14 +478,14 @@ export const webinarFields: INodeProperties[] = [
name: 'agenda',
type: 'string',
default: '',
- description: 'Webinar agenda.',
+ description: 'Webinar agenda',
},
{
displayName: 'Alternative Hosts',
name: 'alternativeHosts',
type: 'string',
default: '',
- description: 'Alternative hosts email IDs.',
+ description: 'Alternative hosts email IDs',
},
{
displayName: 'Approval Type',
@@ -506,7 +506,7 @@ export const webinarFields: INodeProperties[] = [
},
],
default: 2,
- description: 'Approval type.',
+ description: 'Approval type',
},
{
displayName: 'Auto Recording',
@@ -527,7 +527,7 @@ export const webinarFields: INodeProperties[] = [
},
],
default: 'none',
- description: 'Auto recording.',
+ description: 'Auto recording',
},
{
displayName: 'Audio',
@@ -549,49 +549,49 @@ export const webinarFields: INodeProperties[] = [
],
default: 'both',
- description: 'Determine how participants can join audio portion of the webinar.',
+ description: 'Determine how participants can join audio portion of the webinar',
},
{
displayName: 'Duration',
name: 'duration',
type: 'string',
default: '',
- description: 'Duration.',
+ description: 'Duration',
},
{
displayName: 'Host Video',
name: 'hostVideo',
type: 'boolean',
default: false,
- description: 'Start video when host joins the webinar.',
+ description: 'Start video when host joins the webinar',
},
{
displayName: 'Occurrence ID',
name: 'occurrenceId',
type: 'string',
default: '',
- description: `Webinar occurrence ID.`,
+ description: 'Webinar occurrence ID',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
default: '',
- description: 'Password to join the webinar with maximum 10 characters.',
+ description: 'Password to join the webinar with maximum 10 characters',
},
{
displayName: 'Panelists Video',
name: 'panelistsVideo',
type: 'boolean',
default: false,
- description: 'Start video when panelists joins the webinar.',
+ description: 'Start video when panelists joins the webinar',
},
{
displayName: 'Practice Session',
name: 'practiceSession',
type: 'boolean',
default: false,
- description: 'Enable Practice session.',
+ description: 'Enable Practice session',
},
{
displayName: 'Registration Type',
@@ -619,7 +619,7 @@ export const webinarFields: INodeProperties[] = [
name: 'startTime',
type: 'dateTime',
default: '',
- description: 'Start time should be used only for scheduled or recurring webinar with fixed time.',
+ description: 'Start time should be used only for scheduled or recurring webinar with fixed time',
},
{
displayName: 'Timezone',
@@ -636,7 +636,7 @@ export const webinarFields: INodeProperties[] = [
name: 'topic',
type: 'string',
default: '',
- description: `Webinar topic.`,
+ description: 'Webinar topic',
},
{
displayName: 'Webinar Type',
@@ -657,7 +657,7 @@ export const webinarFields: INodeProperties[] = [
},
],
default: 5,
- description: 'Webinar type.',
+ description: 'Webinar type',
},
],
},
diff --git a/packages/nodes-base/nodes/Zulip/MessageDescription.ts b/packages/nodes-base/nodes/Zulip/MessageDescription.ts
index 8c59f55ce7..c591fc1e12 100644
--- a/packages/nodes-base/nodes/Zulip/MessageDescription.ts
+++ b/packages/nodes-base/nodes/Zulip/MessageDescription.ts
@@ -73,7 +73,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'The destination stream, or a comma-separated list containing the usernames (emails) of the recipients.',
+ description: 'The destination stream, or a comma-separated list containing the usernames (emails) of the recipients',
},
{
displayName: 'Content',
@@ -94,7 +94,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'The content of the message.',
+ description: 'The content of the message',
},
/* -------------------------------------------------------------------------- */
/* message:sendStream */
@@ -118,7 +118,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'The destination stream, or a comma-separated list containing the usernames (emails) of the recipients.',
+ description: 'The destination stream, or a comma-separated list containing the usernames (emails) of the recipients',
},
{
displayName: 'Topic',
@@ -163,7 +163,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'The content of the message.',
+ description: 'The content of the message',
},
/* -------------------------------------------------------------------------- */
/* message:update */
@@ -184,7 +184,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the message.',
+ description: 'Unique identifier for the message',
},
{
displayName: 'Update Fields',
@@ -262,7 +262,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the message.',
+ description: 'Unique identifier for the message',
},
/* -------------------------------------------------------------------------- */
/* message:delete */
@@ -283,7 +283,7 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'Unique identifier for the message.',
+ description: 'Unique identifier for the message',
},
/* -------------------------------------------------------------------------- */
/* message:updateFile */
@@ -304,6 +304,6 @@ export const messageFields: INodeProperties[] = [
],
},
},
- description: 'Name of the binary property to which to write the data of the read file.',
+ description: 'Name of the binary property to which to write the data of the read file',
},
];
diff --git a/packages/nodes-base/nodes/Zulip/StreamDescription.ts b/packages/nodes-base/nodes/Zulip/StreamDescription.ts
index 4464adb069..e295e1bd98 100644
--- a/packages/nodes-base/nodes/Zulip/StreamDescription.ts
+++ b/packages/nodes-base/nodes/Zulip/StreamDescription.ts
@@ -16,27 +16,27 @@ export const streamOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
- description: 'Create a stream.',
+ description: 'Create a stream',
},
{
name: 'Delete',
value: 'delete',
- description: 'Delete a stream.',
+ description: 'Delete a stream',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all streams.',
+ description: 'Get all streams',
},
{
name: 'Get Subscribed',
value: 'getSubscribed',
- description: 'Get subscribed streams.',
+ description: 'Get subscribed streams',
},
{
name: 'Update',
value: 'update',
- description: 'Update a stream.',
+ description: 'Update a stream',
},
],
default: 'create',
@@ -85,7 +85,7 @@ export const streamFields: INodeProperties[] = [
],
},
},
- description: `JSON format parameters for stream creation.`,
+ description: 'JSON format parameters for stream creation',
},
{
displayName: 'Subscriptions',
@@ -121,7 +121,7 @@ export const streamFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Name of Subscription.',
+ description: 'Name of Subscription',
},
{
displayName: 'Description',
@@ -129,7 +129,7 @@ export const streamFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Description of Subscription.',
+ description: 'Description of Subscription',
},
],
},
@@ -174,14 +174,14 @@ export const streamFields: INodeProperties[] = [
name: 'historyPublicToSubscribers',
type: 'boolean',
default: false,
- description: 'Whether the streams message history should be available to newly subscribed members, or users can only access messages they actually received while subscribed to the stream.',
+ description: 'Whether the streams message history should be available to newly subscribed members, or users can only access messages they actually received while subscribed to the stream',
},
{
displayName: 'Invite Only',
name: 'inviteOnly',
type: 'boolean',
default: false,
- description: 'A boolean specifying whether the streams specified in subscriptions are invite-only or not.',
+ description: 'A boolean specifying whether the streams specified in subscriptions are invite-only or not',
},
{
displayName: 'Principals',
@@ -203,7 +203,7 @@ export const streamFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Principal email address.',
+ description: 'Principal email address',
},
],
},
@@ -214,22 +214,22 @@ export const streamFields: INodeProperties[] = [
name: 'streamPostPolicy',
type: 'options',
default: '',
- description: 'Policy for which users can post messages to the stream.',
+ description: 'Policy for which users can post messages to the stream',
options: [
{
name: '1',
value: 1,
- description: 'Any user can post.',
+ description: 'Any user can post',
},
{
name: '2',
value: 2,
- description: 'Only administrators can post.',
+ description: 'Only administrators can post',
},
{
name: '3',
value: 3,
- description: 'Only new members can post.',
+ description: 'Only new members can post',
},
],
},
@@ -268,28 +268,28 @@ export const streamFields: INodeProperties[] = [
name: 'includeDefault',
type: 'boolean',
default: true,
- description: 'Include all default streams for the users realm.',
+ description: 'Include all default streams for the users realm',
},
{
displayName: 'Include Owner Subscribed',
name: 'includeOwnersubscribed',
type: 'boolean',
default: true,
- description: 'If the user is a bot, include all streams that the bots owner is subscribed to.',
+ description: 'If the user is a bot, include all streams that the bots owner is subscribed to',
},
{
displayName: 'Include Public',
name: 'includePublic',
type: 'boolean',
default: true,
- description: 'Include all public streams.',
+ description: 'Include all public streams',
},
{
displayName: 'Include Subscribed',
name: 'includeSubscribed',
type: 'boolean',
default: true,
- description: 'Include all streams that the user is subscribed to.',
+ description: 'Include all streams that the user is subscribed to',
},
],
},
@@ -319,7 +319,7 @@ export const streamFields: INodeProperties[] = [
name: 'includeSubscribers',
type: 'boolean',
default: true,
- description: 'Whether each returned stream object should include a subscribers field containing a list of the user IDs of its subscribers.',
+ description: 'Whether each returned stream object should include a subscribers field containing a list of the user IDs of its subscribers',
},
],
},
@@ -343,7 +343,7 @@ export const streamFields: INodeProperties[] = [
],
},
},
- description: 'ID of stream to update.',
+ description: 'ID of stream to update',
},
{
displayName: 'JSON Parameters',
@@ -383,7 +383,7 @@ export const streamFields: INodeProperties[] = [
},
},
- description: `JSON format parameters for stream creation.`,
+ description: 'JSON format parameters for stream creation',
},
{
@@ -411,14 +411,14 @@ export const streamFields: INodeProperties[] = [
name: 'isAnnouncementOnly',
type: 'boolean',
default: false,
- description: 'Whether the stream is limited to announcements.',
+ description: 'Whether the stream is limited to announcements',
},
{
displayName: 'Description',
name: 'description',
type: 'string',
default: '',
- description: 'The new description for the stream.',
+ description: 'The new description for the stream',
placeholder: 'Place of discussion',
},
{
@@ -426,21 +426,21 @@ export const streamFields: INodeProperties[] = [
name: 'isPrivate',
type: 'boolean',
default: false,
- description: 'Change whether the stream is a private stream.',
+ description: 'Change whether the stream is a private stream',
},
{
displayName: 'History Public to Subscribers',
name: 'historyPublicToSubscribers',
type: 'boolean',
default: false,
- description: 'Whether the streams message history should be available to newly subscribed members, or users can only access messages they actually received while subscribed to the stream.',
+ description: 'Whether the streams message history should be available to newly subscribed members, or users can only access messages they actually received while subscribed to the stream',
},
{
displayName: 'New Name',
name: 'newName',
type: 'string',
default: '',
- description: 'The new name for the stream.',
+ description: 'The new name for the stream',
placeholder: 'Italy',
},
{
@@ -448,22 +448,22 @@ export const streamFields: INodeProperties[] = [
name: 'streamPostPolicy',
type: 'options',
default: '',
- description: 'Policy for which users can post messages to the stream.',
+ description: 'Policy for which users can post messages to the stream',
options: [
{
name: '1',
value: 1,
- description: 'Any user can post.',
+ description: 'Any user can post',
},
{
name: '2',
value: 2,
- description: 'Only administrators can post.',
+ description: 'Only administrators can post',
},
{
name: '3',
value: 3,
- description: 'Only new members can post.',
+ description: 'Only new members can post',
},
],
},
@@ -488,7 +488,7 @@ export const streamFields: INodeProperties[] = [
],
},
},
- description: 'ID of stream to delete.',
+ description: 'ID of stream to delete',
},
];
diff --git a/packages/nodes-base/nodes/Zulip/UserDescription.ts b/packages/nodes-base/nodes/Zulip/UserDescription.ts
index 0c137dd383..ea4d5b99dc 100644
--- a/packages/nodes-base/nodes/Zulip/UserDescription.ts
+++ b/packages/nodes-base/nodes/Zulip/UserDescription.ts
@@ -16,27 +16,27 @@ export const userOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
- description: 'Create a user.',
+ description: 'Create a user',
},
{
name: 'Deactivate',
value: 'deactivate',
- description: 'Deactivate a user.',
+ description: 'Deactivate a user',
},
{
name: 'Get',
value: 'get',
- description: 'Get a user.',
+ description: 'Get a user',
},
{
name: 'Get All',
value: 'getAll',
- description: 'Get all users.',
+ description: 'Get all users',
},
{
name: 'Update',
value: 'update',
- description: 'Update a user.',
+ description: 'Update a user',
},
],
default: 'create',
@@ -64,7 +64,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: 'The email address of the new user.',
+ description: 'The email address of the new user',
},
{
displayName: 'Full Name',
@@ -82,7 +82,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: 'The full name of the new user.',
+ description: 'The full name of the new user',
},
{
displayName: 'Password',
@@ -100,7 +100,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: 'The password of the new user.',
+ description: 'The password of the new user',
},
{
displayName: 'Short Name',
@@ -140,7 +140,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of user to get.',
+ description: 'The ID of user to get',
},
{
displayName: 'Additional Fields',
@@ -171,7 +171,7 @@ export const userFields: INodeProperties[] = [
name: 'includeCustomProfileFields',
type: 'boolean',
default: false,
- description: 'Whether the client wants custom profile field data to be included in the response.',
+ description: 'Whether the client wants custom profile field data to be included in the response',
},
],
},
@@ -195,7 +195,7 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of user to update.',
+ description: 'The ID of user to update',
},
{
displayName: 'Additional Fields',
@@ -219,7 +219,7 @@ export const userFields: INodeProperties[] = [
name: 'fullName',
type: 'string',
default: '',
- description: 'The users full name.',
+ description: 'The users full name',
},
{
displayName: 'Is Admin',
@@ -240,7 +240,7 @@ export const userFields: INodeProperties[] = [
name: 'profileData',
type: 'fixedCollection',
default: {},
- description: 'A dictionary containing the to be updated custom profile field data for the user.',
+ description: 'A dictionary containing the to be updated custom profile field data for the user',
typeOptions: {
multipleValues: true,
},
@@ -255,14 +255,14 @@ export const userFields: INodeProperties[] = [
type: 'string',
required: true,
default: '',
- description: 'Id of custom profile data value.',
+ description: 'Id of custom profile data value',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
- description: 'Value of custom profile data.',
+ description: 'Value of custom profile data',
},
],
},
@@ -319,6 +319,6 @@ export const userFields: INodeProperties[] = [
},
},
default: '',
- description: 'The ID of user to deactivate.',
+ description: 'The ID of user to deactivate',
},
];