@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.
- package/README.md +690 -23
- package/lib/commands/adyen_gateway/disable.d.ts +9 -0
- package/lib/commands/adyen_gateway/disable.js +22 -0
- package/lib/commands/adyen_gateway/enable.d.ts +9 -0
- package/lib/commands/adyen_gateway/enable.js +22 -0
- package/lib/commands/adyen_gateway/index.d.ts +9 -0
- package/lib/commands/adyen_gateway/index.js +40 -0
- package/lib/commands/axerve_gateway/disable.d.ts +9 -0
- package/lib/commands/axerve_gateway/disable.js +22 -0
- package/lib/commands/axerve_gateway/enable.d.ts +9 -0
- package/lib/commands/axerve_gateway/enable.js +22 -0
- package/lib/commands/axerve_gateway/index.d.ts +9 -0
- package/lib/commands/axerve_gateway/index.js +40 -0
- package/lib/commands/braintree_gateway/disable.d.ts +9 -0
- package/lib/commands/braintree_gateway/disable.js +22 -0
- package/lib/commands/braintree_gateway/enable.d.ts +9 -0
- package/lib/commands/braintree_gateway/enable.js +22 -0
- package/lib/commands/braintree_gateway/index.d.ts +9 -0
- package/lib/commands/braintree_gateway/index.js +40 -0
- package/lib/commands/checkout_com_gateway/disable.d.ts +9 -0
- package/lib/commands/checkout_com_gateway/disable.js +22 -0
- package/lib/commands/checkout_com_gateway/enable.d.ts +9 -0
- package/lib/commands/checkout_com_gateway/enable.js +22 -0
- package/lib/commands/checkout_com_gateway/index.d.ts +9 -0
- package/lib/commands/checkout_com_gateway/index.js +40 -0
- package/lib/commands/external_gateway/disable.d.ts +9 -0
- package/lib/commands/external_gateway/disable.js +22 -0
- package/lib/commands/external_gateway/enable.d.ts +9 -0
- package/lib/commands/external_gateway/enable.js +22 -0
- package/lib/commands/klarna_gateway/disable.d.ts +9 -0
- package/lib/commands/klarna_gateway/disable.js +22 -0
- package/lib/commands/klarna_gateway/enable.d.ts +9 -0
- package/lib/commands/klarna_gateway/enable.js +22 -0
- package/lib/commands/klarna_gateway/index.d.ts +9 -0
- package/lib/commands/klarna_gateway/index.js +40 -0
- package/lib/commands/manual_gateway/disable.d.ts +9 -0
- package/lib/commands/manual_gateway/disable.js +22 -0
- package/lib/commands/manual_gateway/enable.d.ts +9 -0
- package/lib/commands/manual_gateway/enable.js +22 -0
- package/lib/commands/manual_gateway/index.d.ts +9 -0
- package/lib/commands/manual_gateway/index.js +40 -0
- package/lib/commands/paypal_gateway/disable.d.ts +9 -0
- package/lib/commands/paypal_gateway/disable.js +22 -0
- package/lib/commands/paypal_gateway/enable.d.ts +9 -0
- package/lib/commands/paypal_gateway/enable.js +22 -0
- package/lib/commands/paypal_gateway/index.d.ts +9 -0
- package/lib/commands/paypal_gateway/index.js +40 -0
- package/lib/commands/satispay_gateway/disable.d.ts +9 -0
- package/lib/commands/satispay_gateway/disable.js +22 -0
- package/lib/commands/satispay_gateway/enable.d.ts +9 -0
- package/lib/commands/satispay_gateway/enable.js +22 -0
- package/lib/commands/satispay_gateway/index.d.ts +9 -0
- package/lib/commands/satispay_gateway/index.js +40 -0
- package/lib/commands/stripe_gateway/disable.d.ts +9 -0
- package/lib/commands/stripe_gateway/disable.js +22 -0
- package/lib/commands/stripe_gateway/enable.d.ts +9 -0
- package/lib/commands/stripe_gateway/enable.js +22 -0
- package/lib/commands/stripe_gateway/index.d.ts +9 -0
- package/lib/commands/stripe_gateway/index.js +40 -0
- package/lib/triggers/adyen_gateways.d.ts +3 -0
- package/lib/triggers/adyen_gateways.js +15 -0
- package/lib/triggers/axerve_gateways.d.ts +3 -0
- package/lib/triggers/axerve_gateways.js +15 -0
- package/lib/triggers/braintree_gateways.d.ts +3 -0
- package/lib/triggers/braintree_gateways.js +15 -0
- package/lib/triggers/checkout_com_gateways.d.ts +3 -0
- package/lib/triggers/checkout_com_gateways.js +15 -0
- package/lib/triggers/external_gateways.d.ts +1 -1
- package/lib/triggers/external_gateways.js +10 -0
- package/lib/triggers/klarna_gateways.d.ts +3 -0
- package/lib/triggers/klarna_gateways.js +15 -0
- package/lib/triggers/manual_gateways.d.ts +3 -0
- package/lib/triggers/manual_gateways.js +15 -0
- package/lib/triggers/paypal_gateways.d.ts +3 -0
- package/lib/triggers/paypal_gateways.js +15 -0
- package/lib/triggers/satispay_gateways.d.ts +3 -0
- package/lib/triggers/satispay_gateways.js +15 -0
- package/lib/triggers/stripe_gateways.d.ts +3 -0
- package/lib/triggers/stripe_gateways.js +15 -0
- package/oclif.manifest.json +3676 -1124
- package/package.json +7 -7
|
@@ -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,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,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,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
|
+
};
|