mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor: Apply more eslint-plugin-n8n-nodes-base autofixable rules (#3243)
* ✏️ Alphabetize rules * 🔖 Update version * ⚡ Update lintfix command * ⚡ Run baseline lintfix * 📦 Update package-lock.json * 👕 Apply `node-param-description-untrimmed` (#3200) * Removing unneeded backticks (#3249) * 👕 Apply node-param-description-wrong-for-return-all (#3253) * 👕 Apply node-param-description-missing-limit (#3252) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-excess-final-period (#3250) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-unencoded-angle-brackets (#3256) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-url-missing-protocol (#3258) * 👕 Apply `node-param-description-miscased-id` (#3254) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-wrong-for-limit (#3257) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-description-wrong-for-ignore-ssl-issues (#3261) * 👕 Apply rule * ⚡ Restore lintfix script * ⚡ Restore lintfix script Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
This commit is contained in:
@@ -120,48 +120,48 @@ export class Chargebee implements INodeType {
|
||||
name: 'id',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Id for the new customer. If not given, this will be auto-generated.',
|
||||
description: 'ID for the new customer. If not given, this will be auto-generated.',
|
||||
},
|
||||
{
|
||||
displayName: 'First Name',
|
||||
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,
|
||||
|
||||
Reference in New Issue
Block a user