@commercelayer/cli-plugin-triggers 4.15.0 → 4.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/README.md +690 -23
  2. package/lib/commands/adyen_gateway/disable.d.ts +9 -0
  3. package/lib/commands/adyen_gateway/disable.js +22 -0
  4. package/lib/commands/adyen_gateway/enable.d.ts +9 -0
  5. package/lib/commands/adyen_gateway/enable.js +22 -0
  6. package/lib/commands/adyen_gateway/index.d.ts +9 -0
  7. package/lib/commands/adyen_gateway/index.js +40 -0
  8. package/lib/commands/axerve_gateway/disable.d.ts +9 -0
  9. package/lib/commands/axerve_gateway/disable.js +22 -0
  10. package/lib/commands/axerve_gateway/enable.d.ts +9 -0
  11. package/lib/commands/axerve_gateway/enable.js +22 -0
  12. package/lib/commands/axerve_gateway/index.d.ts +9 -0
  13. package/lib/commands/axerve_gateway/index.js +40 -0
  14. package/lib/commands/braintree_gateway/disable.d.ts +9 -0
  15. package/lib/commands/braintree_gateway/disable.js +22 -0
  16. package/lib/commands/braintree_gateway/enable.d.ts +9 -0
  17. package/lib/commands/braintree_gateway/enable.js +22 -0
  18. package/lib/commands/braintree_gateway/index.d.ts +9 -0
  19. package/lib/commands/braintree_gateway/index.js +40 -0
  20. package/lib/commands/checkout_com_gateway/disable.d.ts +9 -0
  21. package/lib/commands/checkout_com_gateway/disable.js +22 -0
  22. package/lib/commands/checkout_com_gateway/enable.d.ts +9 -0
  23. package/lib/commands/checkout_com_gateway/enable.js +22 -0
  24. package/lib/commands/checkout_com_gateway/index.d.ts +9 -0
  25. package/lib/commands/checkout_com_gateway/index.js +40 -0
  26. package/lib/commands/external_gateway/disable.d.ts +9 -0
  27. package/lib/commands/external_gateway/disable.js +22 -0
  28. package/lib/commands/external_gateway/enable.d.ts +9 -0
  29. package/lib/commands/external_gateway/enable.js +22 -0
  30. package/lib/commands/klarna_gateway/disable.d.ts +9 -0
  31. package/lib/commands/klarna_gateway/disable.js +22 -0
  32. package/lib/commands/klarna_gateway/enable.d.ts +9 -0
  33. package/lib/commands/klarna_gateway/enable.js +22 -0
  34. package/lib/commands/klarna_gateway/index.d.ts +9 -0
  35. package/lib/commands/klarna_gateway/index.js +40 -0
  36. package/lib/commands/manual_gateway/disable.d.ts +9 -0
  37. package/lib/commands/manual_gateway/disable.js +22 -0
  38. package/lib/commands/manual_gateway/enable.d.ts +9 -0
  39. package/lib/commands/manual_gateway/enable.js +22 -0
  40. package/lib/commands/manual_gateway/index.d.ts +9 -0
  41. package/lib/commands/manual_gateway/index.js +40 -0
  42. package/lib/commands/paypal_gateway/disable.d.ts +9 -0
  43. package/lib/commands/paypal_gateway/disable.js +22 -0
  44. package/lib/commands/paypal_gateway/enable.d.ts +9 -0
  45. package/lib/commands/paypal_gateway/enable.js +22 -0
  46. package/lib/commands/paypal_gateway/index.d.ts +9 -0
  47. package/lib/commands/paypal_gateway/index.js +40 -0
  48. package/lib/commands/satispay_gateway/disable.d.ts +9 -0
  49. package/lib/commands/satispay_gateway/disable.js +22 -0
  50. package/lib/commands/satispay_gateway/enable.d.ts +9 -0
  51. package/lib/commands/satispay_gateway/enable.js +22 -0
  52. package/lib/commands/satispay_gateway/index.d.ts +9 -0
  53. package/lib/commands/satispay_gateway/index.js +40 -0
  54. package/lib/commands/stripe_gateway/disable.d.ts +9 -0
  55. package/lib/commands/stripe_gateway/disable.js +22 -0
  56. package/lib/commands/stripe_gateway/enable.d.ts +9 -0
  57. package/lib/commands/stripe_gateway/enable.js +22 -0
  58. package/lib/commands/stripe_gateway/index.d.ts +9 -0
  59. package/lib/commands/stripe_gateway/index.js +40 -0
  60. package/lib/triggers/adyen_gateways.d.ts +3 -0
  61. package/lib/triggers/adyen_gateways.js +15 -0
  62. package/lib/triggers/axerve_gateways.d.ts +3 -0
  63. package/lib/triggers/axerve_gateways.js +15 -0
  64. package/lib/triggers/braintree_gateways.d.ts +3 -0
  65. package/lib/triggers/braintree_gateways.js +15 -0
  66. package/lib/triggers/checkout_com_gateways.d.ts +3 -0
  67. package/lib/triggers/checkout_com_gateways.js +15 -0
  68. package/lib/triggers/external_gateways.d.ts +1 -1
  69. package/lib/triggers/external_gateways.js +10 -0
  70. package/lib/triggers/klarna_gateways.d.ts +3 -0
  71. package/lib/triggers/klarna_gateways.js +15 -0
  72. package/lib/triggers/manual_gateways.d.ts +3 -0
  73. package/lib/triggers/manual_gateways.js +15 -0
  74. package/lib/triggers/paypal_gateways.d.ts +3 -0
  75. package/lib/triggers/paypal_gateways.js +15 -0
  76. package/lib/triggers/satispay_gateways.d.ts +3 -0
  77. package/lib/triggers/satispay_gateways.js +15 -0
  78. package/lib/triggers/stripe_gateways.d.ts +3 -0
  79. package/lib/triggers/stripe_gateways.js +15 -0
  80. package/oclif.manifest.json +3676 -1124
  81. package/package.json +7 -7
@@ -0,0 +1,3 @@
1
+ import type { Trigger } from '../common';
2
+ export declare const triggers: Record<string, Trigger>;
3
+ export type ActionType = 'disable' | 'enable';
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.triggers = void 0;
4
+ exports.triggers = {
5
+ disable: {
6
+ action: 'disable',
7
+ trigger: '_disable',
8
+ description: 'Send this attribute if you want to mark this resource as disabled.',
9
+ },
10
+ enable: {
11
+ action: 'enable',
12
+ trigger: '_enable',
13
+ description: 'Send this attribute if you want to mark this resource as enabled.',
14
+ },
15
+ };
@@ -0,0 +1,3 @@
1
+ import type { Trigger } from '../common';
2
+ export declare const triggers: Record<string, Trigger>;
3
+ export type ActionType = 'disable' | 'enable';
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.triggers = void 0;
4
+ exports.triggers = {
5
+ disable: {
6
+ action: 'disable',
7
+ trigger: '_disable',
8
+ description: 'Send this attribute if you want to mark this resource as disabled.',
9
+ },
10
+ enable: {
11
+ action: 'enable',
12
+ trigger: '_enable',
13
+ description: 'Send this attribute if you want to mark this resource as enabled.',
14
+ },
15
+ };
@@ -0,0 +1,3 @@
1
+ import type { Trigger } from '../common';
2
+ export declare const triggers: Record<string, Trigger>;
3
+ export type ActionType = 'disable' | 'enable';
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.triggers = void 0;
4
+ exports.triggers = {
5
+ disable: {
6
+ action: 'disable',
7
+ trigger: '_disable',
8
+ description: 'Send this attribute if you want to mark this resource as disabled.',
9
+ },
10
+ enable: {
11
+ action: 'enable',
12
+ trigger: '_enable',
13
+ description: 'Send this attribute if you want to mark this resource as enabled.',
14
+ },
15
+ };
@@ -0,0 +1,3 @@
1
+ import type { Trigger } from '../common';
2
+ export declare const triggers: Record<string, Trigger>;
3
+ export type ActionType = 'disable' | 'enable';
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.triggers = void 0;
4
+ exports.triggers = {
5
+ disable: {
6
+ action: 'disable',
7
+ trigger: '_disable',
8
+ description: 'Send this attribute if you want to mark this resource as disabled.',
9
+ },
10
+ enable: {
11
+ action: 'enable',
12
+ trigger: '_enable',
13
+ description: 'Send this attribute if you want to mark this resource as enabled.',
14
+ },
15
+ };