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 rules (#3534)
* ⚡ Update `lintfix` script * ⚡ Run baseline `lintfix` * 🔥 Remove unneeded exceptions (#3538) * 🔥 Remove exceptions for `node-param-default-wrong-for-simplify` * 🔥 Remove exceptions for `node-param-placeholder-miscased-id` * ⚡ Update version * 👕 Apply `node-param-placeholder-missing` (#3542) * 👕 Apply `filesystem-wrong-cred-filename` (#3543) * 👕 Apply `node-param-description-missing-from-dynamic-options` (#3545) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-class-description-empty-string` (#3546) * 👕 Apply `node-class-description-icon-not-svg` (#3548) * 👕 Apply `filesystem-wrong-node-filename` (#3549) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Expand lintings to credentials (#3550) * 👕 Apply `node-param-multi-options-type-unsorted-items` (#3552) * ⚡ fix * ⚡ Minor fixes Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `node-param-description-wrong-for-dynamic-multi-options` (#3541) * ⚡ Add new lint rule, node-param-description-wrong-for-dynamic-multi-options * ⚡ Fix with updated linting rules * ⚡ Minor fixes Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-boolean-without-whether` (#3553) * ⚡ fix * Update packages/nodes-base/nodes/Clockify/ProjectDescription.ts Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply node-param-display-name-wrong-for-dynamic-multi-options (#3537) * 👕 Add exceptions * 👕 Add exception * ✏️ Alphabetize rules * ⚡ Restore `lintfix` command Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
This commit is contained in:
@@ -14,6 +14,7 @@ export class ChargebeeTrigger implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Chargebee Trigger',
|
||||
name: 'chargebeeTrigger',
|
||||
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
||||
icon: 'file:chargebee.png',
|
||||
group: ['trigger'],
|
||||
version: 1,
|
||||
@@ -45,64 +46,134 @@ export class ChargebeeTrigger implements INodeType {
|
||||
description: 'Any time any event is triggered (Wildcard Event)',
|
||||
},
|
||||
{
|
||||
name: 'Customer Created',
|
||||
value: 'customer_created',
|
||||
description: 'Triggered when a customer is created',
|
||||
name: 'Card Added',
|
||||
value: 'card_added',
|
||||
description: 'Triggered when a card is added for a customer',
|
||||
},
|
||||
{
|
||||
name: 'Card Deleted',
|
||||
value: 'card_deleted',
|
||||
description: 'Triggered when a card is deleted for a customer',
|
||||
},
|
||||
{
|
||||
name: 'Card Expired',
|
||||
value: 'card_expired',
|
||||
description: 'Triggered when the card for a customer has expired',
|
||||
},
|
||||
{
|
||||
name: 'Card Expiring',
|
||||
value: 'card_expiring',
|
||||
description: 'Triggered when the customer\'s credit card is expiring soon.Triggered 30 days before the expiry date',
|
||||
},
|
||||
{
|
||||
name: 'Card Updated',
|
||||
value: 'card_updated',
|
||||
description: 'Triggered when the card is updated for a customer',
|
||||
},
|
||||
{
|
||||
name: 'Customer Changed',
|
||||
value: 'customer_changed',
|
||||
description: 'Triggered when a customer is changed',
|
||||
},
|
||||
{
|
||||
name: 'Customer Created',
|
||||
value: 'customer_created',
|
||||
description: 'Triggered when a customer is created',
|
||||
},
|
||||
{
|
||||
name: 'Customer Deleted',
|
||||
value: 'customer_deleted',
|
||||
description: 'Triggered when a customer is deleted',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Created',
|
||||
value: 'subscription_created',
|
||||
description: 'Triggered when a new subscription is created',
|
||||
name: 'Invoice Created',
|
||||
value: 'invoice_created',
|
||||
description: 'Event triggered (in the case of metered billing) when a \'Pending\' invoice is created that has usage related charges or line items to be added, before being closed. This is triggered only when the “Notify for Pending Invoices” option is enabled.',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Started',
|
||||
value: 'subscription_started',
|
||||
description: 'Triggered when a "future" subscription gets started',
|
||||
name: 'Invoice Deleted',
|
||||
value: 'invoice_deleted',
|
||||
description: 'Event triggered when an invoice is deleted',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Trial Ending',
|
||||
value: 'subscription_trial_ending',
|
||||
description: 'Triggered 6 days prior to the trial period\'s end date',
|
||||
name: 'Invoice Generated',
|
||||
value: 'invoice_generated',
|
||||
description: 'Event triggered when a new invoice is generated. In case of metered billing, this event is triggered when a \'Pending\' invoice is closed.',
|
||||
},
|
||||
{
|
||||
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',
|
||||
},
|
||||
{
|
||||
name: 'Payment Failed',
|
||||
value: 'payment_failed',
|
||||
description: 'Triggered when attempt to charge customer\'s credit card fails',
|
||||
},
|
||||
{
|
||||
name: 'Payment Initiated',
|
||||
value: 'payment_initiated',
|
||||
description: 'Triggered when a payment is initiated via direct debit',
|
||||
},
|
||||
{
|
||||
name: 'Payment Refunded',
|
||||
value: 'payment_refunded',
|
||||
description: 'Triggered when a payment refund is made',
|
||||
},
|
||||
{
|
||||
name: 'Payment Succeeded',
|
||||
value: 'payment_succeeded',
|
||||
description: 'Triggered when the payment is successfully collected',
|
||||
},
|
||||
{
|
||||
name: 'Refund Initiated',
|
||||
value: 'refund_initiated',
|
||||
description: 'Triggered when a refund is initiated via direct debit',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Activated',
|
||||
value: 'subscription_activated',
|
||||
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 after the subscription has been moved from \'Trial\' to \'Active\' state',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Cancellation Scheduled',
|
||||
value: 'subscription_cancellation_scheduled',
|
||||
description: 'Triggered when subscription is scheduled to cancel at end of current term',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Cancelled',
|
||||
value: 'subscription_cancelled',
|
||||
description: 'Triggered when the subscription is cancelled. If it is cancelled due to non payment or because the card details are not present, the subscription will have the possible reason as \'cancel_reason\'.',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Cancelling',
|
||||
value: 'subscription_cancelling',
|
||||
description: 'Triggered 6 days prior to the scheduled cancellation date',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Cancelled',
|
||||
value: 'subscription_cancelled',
|
||||
description: 'Triggered when the subscription is cancelled. If it is cancelled due to non payment or because the card details are not present, the subscription will have the possible reason as "cancel_reason".',
|
||||
name: 'Subscription Changed',
|
||||
value: 'subscription_changed',
|
||||
description: 'Triggered when the subscription\'s recurring items are changed',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Created',
|
||||
value: 'subscription_created',
|
||||
description: 'Triggered when a new subscription is created',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Deleted',
|
||||
value: 'subscription_deleted',
|
||||
description: 'Triggered when a subscription is deleted',
|
||||
},
|
||||
{
|
||||
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 Renewal Reminder',
|
||||
value: 'subscription_renewal_reminder',
|
||||
description: 'Triggered 3 days before each subscription\'s renewal',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Renewed',
|
||||
@@ -120,99 +191,29 @@ export class ChargebeeTrigger implements INodeType {
|
||||
description: 'Triggered when shipping address is added or updated for a subscription',
|
||||
},
|
||||
{
|
||||
name: 'Subscription Deleted',
|
||||
value: 'subscription_deleted',
|
||||
description: 'Triggered when a subscription is deleted',
|
||||
name: 'Subscription Started',
|
||||
value: 'subscription_started',
|
||||
description: 'Triggered when a \'future\' subscription gets started',
|
||||
},
|
||||
{
|
||||
name: 'Invoice Created',
|
||||
value: 'invoice_created',
|
||||
description: 'Event triggered (in the case of metered billing) when a "Pending" invoice is created that has usage related charges or line items to be added, before being closed. This is triggered only when the “Notify for Pending Invoices” option is enabled.',
|
||||
},
|
||||
{
|
||||
name: 'Invoice Generated',
|
||||
value: 'invoice_generated',
|
||||
description: 'Event triggered when a new invoice is generated. In case of metered billing, this event is triggered when a "Pending" invoice is closed.',
|
||||
},
|
||||
{
|
||||
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',
|
||||
},
|
||||
{
|
||||
name: 'Invoice Deleted',
|
||||
value: 'invoice_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',
|
||||
name: 'Subscription Trial Ending',
|
||||
value: 'subscription_trial_ending',
|
||||
description: 'Triggered 6 days prior to the trial period\'s end date',
|
||||
},
|
||||
{
|
||||
name: 'Transaction Created',
|
||||
value: 'transaction_created',
|
||||
description: 'Triggered when a transaction is recorded',
|
||||
},
|
||||
{
|
||||
name: 'Transaction Updated',
|
||||
value: 'transaction_updated',
|
||||
description: 'Triggered when a transaction is updated. E.g. (1) When a transaction is removed, (2) or when an excess payment is applied on an invoice, (3) or when amount_capturable gets updated.',
|
||||
},
|
||||
{
|
||||
name: 'Transaction Deleted',
|
||||
value: 'transaction_deleted',
|
||||
description: 'Triggered when a transaction is deleted',
|
||||
},
|
||||
{
|
||||
name: 'Payment Succeeded',
|
||||
value: 'payment_succeeded',
|
||||
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',
|
||||
},
|
||||
{
|
||||
name: 'Payment Refunded',
|
||||
value: 'payment_refunded',
|
||||
description: 'Triggered when a payment refund is made',
|
||||
},
|
||||
{
|
||||
name: 'Payment Initiated',
|
||||
value: 'payment_initiated',
|
||||
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',
|
||||
},
|
||||
{
|
||||
name: 'Card Added',
|
||||
value: 'card_added',
|
||||
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',
|
||||
},
|
||||
{
|
||||
name: 'Card Expiring',
|
||||
value: 'card_expiring',
|
||||
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',
|
||||
},
|
||||
{
|
||||
name: 'Card Deleted',
|
||||
value: 'card_deleted',
|
||||
description: 'Triggered when a card is deleted for a customer',
|
||||
name: 'Transaction Updated',
|
||||
value: 'transaction_updated',
|
||||
description: 'Triggered when a transaction is updated. E.g. (1) When a transaction is removed, (2) or when an excess payment is applied on an invoice, (3) or when amount_capturable gets updated.',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user