@commercelayer/cli-plugin-triggers 2.1.5 → 2.2.0-beta.1
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
CHANGED
|
@@ -245,7 +245,7 @@ _See code: [src/commands/bundle/index.ts](https://github.com/commercelayer/comme
|
|
|
245
245
|
|
|
246
246
|
### `commercelayer bundle:compute_compare_at_amount ID`
|
|
247
247
|
|
|
248
|
-
Send this attribute if you want to compute the compare_at_amount_cents as the sum of the prices of the bundle
|
|
248
|
+
Send this attribute if you want to compute the compare_at_amount_cents as the sum of the prices of the bundle SKUs for the market..
|
|
249
249
|
|
|
250
250
|
```
|
|
251
251
|
USAGE
|
|
@@ -265,7 +265,7 @@ _See code: [src/commands/bundle/compute_compare_at_amount.ts](https://github.com
|
|
|
265
265
|
|
|
266
266
|
### `commercelayer bundle:compute_price_amount ID`
|
|
267
267
|
|
|
268
|
-
Send this attribute if you want to compute the price_amount_cents as the sum of the prices of the bundle
|
|
268
|
+
Send this attribute if you want to compute the price_amount_cents as the sum of the prices of the bundle SKUs for the market..
|
|
269
269
|
|
|
270
270
|
```
|
|
271
271
|
USAGE
|
|
@@ -365,7 +365,7 @@ _See code: [src/commands/checkout_com_payment/index.ts](https://github.com/comme
|
|
|
365
365
|
|
|
366
366
|
### `commercelayer checkout_com_payment:details ID`
|
|
367
367
|
|
|
368
|
-
Send this attribute if you want to send additional details the payment request (i.e. upon
|
|
368
|
+
Send this attribute if you want to send additional details the payment request (i.e. upon 3DS check)..
|
|
369
369
|
|
|
370
370
|
```
|
|
371
371
|
USAGE
|
|
@@ -485,7 +485,7 @@ _See code: [src/commands/gift_card/activate.ts](https://github.com/commercelayer
|
|
|
485
485
|
|
|
486
486
|
### `commercelayer gift_card:balance_change_cents ID`
|
|
487
487
|
|
|
488
|
-
The balance change, in cents.
|
|
488
|
+
The balance change, in cents. Send a negative value to reduces the card balance by the specified amount. Send a positive value to recharge the gift card (if rechargeable)..
|
|
489
489
|
|
|
490
490
|
```
|
|
491
491
|
USAGE
|
|
@@ -525,7 +525,7 @@ _See code: [src/commands/gift_card/deactivate.ts](https://github.com/commercelay
|
|
|
525
525
|
|
|
526
526
|
### `commercelayer gift_card:purchase ID`
|
|
527
527
|
|
|
528
|
-
Send this attribute if you want to confirm a draft gift card.
|
|
528
|
+
Send this attribute if you want to confirm a draft gift card. The gift card becomes 'inactive', waiting to be activated..
|
|
529
529
|
|
|
530
530
|
```
|
|
531
531
|
USAGE
|
|
@@ -806,7 +806,7 @@ _See code: [src/commands/order/billing_address_same_as_shipping.ts](https://gith
|
|
|
806
806
|
|
|
807
807
|
### `commercelayer order:cancel ID`
|
|
808
808
|
|
|
809
|
-
Send this attribute if you want to cancel a placed order.
|
|
809
|
+
Send this attribute if you want to cancel a placed order. The order's authorization will be automatically voided..
|
|
810
810
|
|
|
811
811
|
```
|
|
812
812
|
USAGE
|
package/lib/base.js
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Flags = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
4
|
const sdk_1 = require("@commercelayer/sdk");
|
|
6
5
|
const core_1 = require("@oclif/core");
|
|
7
6
|
Object.defineProperty(exports, "Flags", { enumerable: true, get: function () { return core_1.Flags; } });
|
|
8
|
-
const chalk_1 = (0, tslib_1.__importDefault)(require("chalk"));
|
|
9
7
|
const cli_core_1 = require("@commercelayer/cli-core");
|
|
10
8
|
const pkg = require('../package.json');
|
|
11
9
|
class default_1 extends core_1.Command {
|
|
@@ -23,7 +21,7 @@ class default_1 extends core_1.Command {
|
|
|
23
21
|
if (error.status === 401) {
|
|
24
22
|
const err = error.first();
|
|
25
23
|
const res = ((_a = error.code) === null || _a === void 0 ? void 0 : _a.startsWith('RES_')) ? error.code.replace('RES_', '') : '';
|
|
26
|
-
this.error(
|
|
24
|
+
this.error(cli_core_1.clColor.msg.error(`${err.title}: ${err.detail}`), { suggestions: [`Execute login with sufficient privileges to get access to the organization's resources${res ? ` of type ${cli_core_1.clColor.api.resource(res)}` : ''}`] });
|
|
27
25
|
}
|
|
28
26
|
else
|
|
29
27
|
this.error(cli_core_1.clOutput.formatError(error, flags));
|
|
@@ -35,7 +33,7 @@ class default_1 extends core_1.Command {
|
|
|
35
33
|
this.log(cli_core_1.clOutput.formatOutput(res, flags));
|
|
36
34
|
}
|
|
37
35
|
successMessage(resource, action, id) {
|
|
38
|
-
this.log(`\nAction ${
|
|
36
|
+
this.log(`\nAction ${cli_core_1.clColor.api.trigger(action)} executed without errors on ${resource.replace(/_/g, ' ')} ${cli_core_1.clColor.api.id(id)}\n`);
|
|
39
37
|
}
|
|
40
38
|
}
|
|
41
39
|
exports.default = default_1;
|
package/lib/triggers/bundles.js
CHANGED
|
@@ -5,11 +5,11 @@ exports.triggers = {
|
|
|
5
5
|
compute_price_amount: {
|
|
6
6
|
action: 'compute_price_amount',
|
|
7
7
|
trigger: '_compute_price_amount',
|
|
8
|
-
description: 'Send this attribute if you want to compute the price_amount_cents as the sum of the prices of the bundle
|
|
8
|
+
description: 'Send this attribute if you want to compute the price_amount_cents as the sum of the prices of the bundle SKUs for the market.',
|
|
9
9
|
},
|
|
10
10
|
compute_compare_at_amount: {
|
|
11
11
|
action: 'compute_compare_at_amount',
|
|
12
12
|
trigger: '_compute_compare_at_amount',
|
|
13
|
-
description: 'Send this attribute if you want to compute the compare_at_amount_cents as the sum of the prices of the bundle
|
|
13
|
+
description: 'Send this attribute if you want to compute the compare_at_amount_cents as the sum of the prices of the bundle SKUs for the market.',
|
|
14
14
|
},
|
|
15
15
|
};
|
|
@@ -5,7 +5,7 @@ exports.triggers = {
|
|
|
5
5
|
details: {
|
|
6
6
|
action: 'details',
|
|
7
7
|
trigger: '_details',
|
|
8
|
-
description: 'Send this attribute if you want to send additional details the payment request (i.e. upon
|
|
8
|
+
description: 'Send this attribute if you want to send additional details the payment request (i.e. upon 3DS check).',
|
|
9
9
|
},
|
|
10
10
|
refresh: {
|
|
11
11
|
action: 'refresh',
|
|
@@ -5,7 +5,7 @@ exports.triggers = {
|
|
|
5
5
|
purchase: {
|
|
6
6
|
action: 'purchase',
|
|
7
7
|
trigger: '_purchase',
|
|
8
|
-
description: 'Send this attribute if you want to confirm a draft gift card.
|
|
8
|
+
description: 'Send this attribute if you want to confirm a draft gift card. The gift card becomes \'inactive\', waiting to be activated.',
|
|
9
9
|
},
|
|
10
10
|
activate: {
|
|
11
11
|
action: 'activate',
|
|
@@ -20,6 +20,6 @@ exports.triggers = {
|
|
|
20
20
|
balance_change_cents: {
|
|
21
21
|
action: 'balance_change_cents',
|
|
22
22
|
trigger: '_balance_change_cents',
|
|
23
|
-
description: 'The balance change, in cents.
|
|
23
|
+
description: 'The balance change, in cents. Send a negative value to reduces the card balance by the specified amount. Send a positive value to recharge the gift card (if rechargeable).',
|
|
24
24
|
},
|
|
25
25
|
};
|
package/lib/triggers/orders.js
CHANGED
|
@@ -20,7 +20,7 @@ exports.triggers = {
|
|
|
20
20
|
cancel: {
|
|
21
21
|
action: 'cancel',
|
|
22
22
|
trigger: '_cancel',
|
|
23
|
-
description: 'Send this attribute if you want to cancel a placed order.
|
|
23
|
+
description: 'Send this attribute if you want to cancel a placed order. The order\'s authorization will be automatically voided.',
|
|
24
24
|
},
|
|
25
25
|
approve: {
|
|
26
26
|
action: 'approve',
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"2.1.5","commands":{"noc":{"id":"noc","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"adyen_payment:details":{"id":"adyen_payment:details","description":"Send this attribute if you want to send additional details the payment request.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"adyen_payment":{"id":"adyen_payment","description":"execute an action on a resource of type adyen_payments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"authorization:capture":{"id":"authorization:capture","description":"Send this attribute if you want to create a capture for this authorization.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"authorization:capture_amount_cents":{"id":"authorization:capture_amount_cents","description":"The associated capture amount, in cents.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"authorization":{"id":"authorization","description":"execute an action on a resource of type authorizations","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"authorization:void":{"id":"authorization:void","description":"Send this attribute if you want to create a void for this authorization.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"bundle:compute_compare_at_amount":{"id":"bundle:compute_compare_at_amount","description":"Send this attribute if you want to compute the compare_at_amount_cents as the sum of the prices of the bundle skus for the market.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"bundle:compute_price_amount":{"id":"bundle:compute_price_amount","description":"Send this attribute if you want to compute the price_amount_cents as the sum of the prices of the bundle skus for the market.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"bundle":{"id":"bundle","description":"execute an action on a resource of type bundles","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"capture":{"id":"capture","description":"execute an action on a resource of type captures","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"capture:refund":{"id":"capture:refund","description":"Send this attribute if you want to create a refund for this capture.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"capture:refund_amount_cents":{"id":"capture:refund_amount_cents","description":"The associated refund amount, in cents.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"checkout_com_payment:details":{"id":"checkout_com_payment:details","description":"Send this attribute if you want to send additional details the payment request (i.e. upon 3ds check).","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"checkout_com_payment":{"id":"checkout_com_payment","description":"execute an action on a resource of type checkout_com_payments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"checkout_com_payment:refresh":{"id":"checkout_com_payment:refresh","description":"Send this attribute if you want to refresh all the pending transactions, can be used as webhooks fallback logic.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"customer_password_reset":{"id":"customer_password_reset","description":"execute an action on a resource of type customer_password_resets","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"customer_password_reset:reset_password_token":{"id":"customer_password_reset:reset_password_token","description":"Send the 'reset_password_token' that you got on create when updating the customer password.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card:activate":{"id":"gift_card:activate","description":"Send this attribute if you want to activate a gift card.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card:balance_change_cents":{"id":"gift_card:balance_change_cents","description":"The balance change, in cents. send a negative value to reduces the card balance by the specified amount. send a positive value to recharge the gift card (if rechargeable).","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card:deactivate":{"id":"gift_card:deactivate","description":"Send this attribute if you want to deactivate a gift card.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card":{"id":"gift_card","description":"execute an action on a resource of type gift_cards","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card:purchase":{"id":"gift_card:purchase","description":"Send this attribute if you want to confirm a draft gift card. the gift card becomes 'inactive', waiting to be activated.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"in_stock_subscription:activate":{"id":"in_stock_subscription:activate","description":"Send this attribute if you want to activate an inactive subscription.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"in_stock_subscription:deactivate":{"id":"in_stock_subscription:deactivate","description":"Send this attribute if you want to dactivate an active subscription.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"in_stock_subscription":{"id":"in_stock_subscription","description":"execute an action on a resource of type in_stock_subscriptions","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"klarna_payment":{"id":"klarna_payment","description":"execute an action on a resource of type klarna_payments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"klarna_payment:update":{"id":"klarna_payment:update","description":"Send this attribute if you want to update the payment session with fresh order data.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:approve":{"id":"order:approve","description":"Send this attribute if you want to approve a placed order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:approve_and_capture":{"id":"order:approve_and_capture","description":"Send this attribute if you want to approve and capture a placed order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:archive":{"id":"order:archive","description":"Send this attribute if you want to archive the order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:authorization_amount_cents":{"id":"order:authorization_amount_cents","description":"The authorization amount, in cents.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:authorize":{"id":"order:authorize","description":"Send this attribute if you want to authorize the order's payment source.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:billing_address_clone_id":{"id":"order:billing_address_clone_id","description":"The id of the address that you want to clone to create the order's billing address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:billing_address_same_as_shipping":{"id":"order:billing_address_same_as_shipping","description":"Send this attribute if you want the billing address to be cloned from the order's shipping address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:cancel":{"id":"order:cancel","description":"Send this attribute if you want to cancel a placed order. the order's authorization will be automatically voided.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:capture":{"id":"order:capture","description":"Send this attribute if you want to capture an approved order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:customer_payment_source_id":{"id":"order:customer_payment_source_id","description":"The id of the customer payment source (i.e. credit card) that you want to use as the order's payment source.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order":{"id":"order","description":"execute an action on a resource of type orders","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:place":{"id":"order:place","description":"Send this attribute if you want to place the order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:refresh":{"id":"order:refresh","description":"Send this attribute if you want to manually refresh the order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:refund":{"id":"order:refund","description":"Send this attribute if you want to refund a captured order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:save_billing_address_to_customer_address_book":{"id":"order:save_billing_address_to_customer_address_book","description":"Send this attribute if you want the order's billing address to be saved in the customer's address book as a customer address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:save_payment_source_to_customer_wallet":{"id":"order:save_payment_source_to_customer_wallet","description":"Send this attribute if you want the order's payment source to be saved in the customer's wallet as a customer payment source.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:save_shipping_address_to_customer_address_book":{"id":"order:save_shipping_address_to_customer_address_book","description":"Send this attribute if you want the order's shipping address to be saved in the customer's address book as a customer address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:shipping_address_clone_id":{"id":"order:shipping_address_clone_id","description":"The id of the address that you want to clone to create the order's shipping address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:shipping_address_same_as_billing":{"id":"order:shipping_address_same_as_billing","description":"Send this attribute if you want the shipping address to be cloned from the order's billing address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:unarchive":{"id":"order:unarchive","description":"Send this attribute if you want to unarchive the order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:update_taxes":{"id":"order:update_taxes","description":"Send this attribute if you want to force tax calculation for this order (a tax calculator must be associated to the order's market).","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order_subscription:activate":{"id":"order_subscription:activate","description":"Send this attribute if you want to mark this subscription as active.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order_subscription:cancel":{"id":"order_subscription:cancel","description":"Send this attribute if you want to mark this subscription as cancelled.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order_subscription:deactivate":{"id":"order_subscription:deactivate","description":"Send this attribute if you want to mark this subscription as inactive.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order_subscription":{"id":"order_subscription","description":"execute an action on a resource of type order_subscriptions","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:approve":{"id":"return:approve","description":"Send this attribute if you want to mark this return as approved.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:archive":{"id":"return:archive","description":"Send this attribute if you want to archive the return.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:cancel":{"id":"return:cancel","description":"Send this attribute if you want to mark this return as cancelled.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return":{"id":"return","description":"execute an action on a resource of type returns","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:receive":{"id":"return:receive","description":"Send this attribute if you want to mark this return as received.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:reject":{"id":"return:reject","description":"Send this attribute if you want to mark this return as rejected.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:request":{"id":"return:request","description":"Send this attribute if you want to activate this return.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:restock":{"id":"return:restock","description":"Send this attribute if you want to restock all of the return line items.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:ship":{"id":"return:ship","description":"Send this attribute if you want to mark this return as shipped.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:unarchive":{"id":"return:unarchive","description":"Send this attribute if you want to unarchive the return.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return_line_item":{"id":"return_line_item","description":"execute an action on a resource of type return_line_items","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return_line_item:restock":{"id":"return_line_item:restock","description":"Send this attribute if you want to restock the line item.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:get_rates":{"id":"shipment:get_rates","description":"Send this attribute if you want get the shipping rates from the associated carrier accounts.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment":{"id":"shipment","description":"execute an action on a resource of type shipments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:on_hold":{"id":"shipment:on_hold","description":"Send this attribute if you want to put this shipment on hold.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:packing":{"id":"shipment:packing","description":"Send this attribute if you want to start packing this shipment.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:picking":{"id":"shipment:picking","description":"Send this attribute if you want to start picking this shipment.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:purchase":{"id":"shipment:purchase","description":"Send this attribute if you want to purchase this shipment with the selected rate.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:ready_to_ship":{"id":"shipment:ready_to_ship","description":"Send this attribute if you want to mark this shipment as ready to ship.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:ship":{"id":"shipment:ship","description":"Send this attribute if you want to mark this shipment as shipped.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:cancel":{"id":"stock_transfer:cancel","description":"Send this attribute if you want to cancel this stock transfer.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:complete":{"id":"stock_transfer:complete","description":"Send this attribute if you want to complete this stock transfer.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:in_transit":{"id":"stock_transfer:in_transit","description":"Send this attribute if you want to mark this stock transfer as in transit.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer":{"id":"stock_transfer","description":"execute an action on a resource of type stock_transfers","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:picking":{"id":"stock_transfer:picking","description":"Send this attribute if you want to start picking this stock transfer.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:upcoming":{"id":"stock_transfer:upcoming","description":"Send this attribute if you want to mark this stock transfer as upcoming.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stripe_payment":{"id":"stripe_payment","description":"execute an action on a resource of type stripe_payments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stripe_payment:refresh":{"id":"stripe_payment:refresh","description":"Send this attribute if you want to refresh the payment status, can be used as webhooks fallback logic.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"webhook":{"id":"webhook","description":"execute an action on a resource of type webhooks","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"webhook:reset_circuit":{"id":"webhook:reset_circuit","description":"Send this attribute if you want to reset the circuit breaker associated to this webhook to 'closed' state and zero failures count.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]}}}
|
|
1
|
+
{"version":"2.2.0-beta.1","commands":{"noc":{"id":"noc","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"adyen_payment:details":{"id":"adyen_payment:details","description":"Send this attribute if you want to send additional details the payment request.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"adyen_payment":{"id":"adyen_payment","description":"execute an action on a resource of type adyen_payments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"authorization:capture":{"id":"authorization:capture","description":"Send this attribute if you want to create a capture for this authorization.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"authorization:capture_amount_cents":{"id":"authorization:capture_amount_cents","description":"The associated capture amount, in cents.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"authorization":{"id":"authorization","description":"execute an action on a resource of type authorizations","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"authorization:void":{"id":"authorization:void","description":"Send this attribute if you want to create a void for this authorization.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"bundle:compute_compare_at_amount":{"id":"bundle:compute_compare_at_amount","description":"Send this attribute if you want to compute the compare_at_amount_cents as the sum of the prices of the bundle SKUs for the market.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"bundle:compute_price_amount":{"id":"bundle:compute_price_amount","description":"Send this attribute if you want to compute the price_amount_cents as the sum of the prices of the bundle SKUs for the market.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"bundle":{"id":"bundle","description":"execute an action on a resource of type bundles","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"capture":{"id":"capture","description":"execute an action on a resource of type captures","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"capture:refund":{"id":"capture:refund","description":"Send this attribute if you want to create a refund for this capture.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"capture:refund_amount_cents":{"id":"capture:refund_amount_cents","description":"The associated refund amount, in cents.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"checkout_com_payment:details":{"id":"checkout_com_payment:details","description":"Send this attribute if you want to send additional details the payment request (i.e. upon 3DS check).","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"checkout_com_payment":{"id":"checkout_com_payment","description":"execute an action on a resource of type checkout_com_payments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"checkout_com_payment:refresh":{"id":"checkout_com_payment:refresh","description":"Send this attribute if you want to refresh all the pending transactions, can be used as webhooks fallback logic.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"customer_password_reset":{"id":"customer_password_reset","description":"execute an action on a resource of type customer_password_resets","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"customer_password_reset:reset_password_token":{"id":"customer_password_reset:reset_password_token","description":"Send the 'reset_password_token' that you got on create when updating the customer password.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card:activate":{"id":"gift_card:activate","description":"Send this attribute if you want to activate a gift card.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card:balance_change_cents":{"id":"gift_card:balance_change_cents","description":"The balance change, in cents. Send a negative value to reduces the card balance by the specified amount. Send a positive value to recharge the gift card (if rechargeable).","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card:deactivate":{"id":"gift_card:deactivate","description":"Send this attribute if you want to deactivate a gift card.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card":{"id":"gift_card","description":"execute an action on a resource of type gift_cards","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"gift_card:purchase":{"id":"gift_card:purchase","description":"Send this attribute if you want to confirm a draft gift card. The gift card becomes 'inactive', waiting to be activated.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"in_stock_subscription:activate":{"id":"in_stock_subscription:activate","description":"Send this attribute if you want to activate an inactive subscription.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"in_stock_subscription:deactivate":{"id":"in_stock_subscription:deactivate","description":"Send this attribute if you want to dactivate an active subscription.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"in_stock_subscription":{"id":"in_stock_subscription","description":"execute an action on a resource of type in_stock_subscriptions","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"klarna_payment":{"id":"klarna_payment","description":"execute an action on a resource of type klarna_payments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"klarna_payment:update":{"id":"klarna_payment:update","description":"Send this attribute if you want to update the payment session with fresh order data.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:approve":{"id":"order:approve","description":"Send this attribute if you want to approve a placed order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:approve_and_capture":{"id":"order:approve_and_capture","description":"Send this attribute if you want to approve and capture a placed order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:archive":{"id":"order:archive","description":"Send this attribute if you want to archive the order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:authorization_amount_cents":{"id":"order:authorization_amount_cents","description":"The authorization amount, in cents.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:authorize":{"id":"order:authorize","description":"Send this attribute if you want to authorize the order's payment source.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:billing_address_clone_id":{"id":"order:billing_address_clone_id","description":"The id of the address that you want to clone to create the order's billing address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:billing_address_same_as_shipping":{"id":"order:billing_address_same_as_shipping","description":"Send this attribute if you want the billing address to be cloned from the order's shipping address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:cancel":{"id":"order:cancel","description":"Send this attribute if you want to cancel a placed order. The order's authorization will be automatically voided.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:capture":{"id":"order:capture","description":"Send this attribute if you want to capture an approved order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:customer_payment_source_id":{"id":"order:customer_payment_source_id","description":"The id of the customer payment source (i.e. credit card) that you want to use as the order's payment source.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order":{"id":"order","description":"execute an action on a resource of type orders","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:place":{"id":"order:place","description":"Send this attribute if you want to place the order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:refresh":{"id":"order:refresh","description":"Send this attribute if you want to manually refresh the order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:refund":{"id":"order:refund","description":"Send this attribute if you want to refund a captured order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:save_billing_address_to_customer_address_book":{"id":"order:save_billing_address_to_customer_address_book","description":"Send this attribute if you want the order's billing address to be saved in the customer's address book as a customer address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:save_payment_source_to_customer_wallet":{"id":"order:save_payment_source_to_customer_wallet","description":"Send this attribute if you want the order's payment source to be saved in the customer's wallet as a customer payment source.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:save_shipping_address_to_customer_address_book":{"id":"order:save_shipping_address_to_customer_address_book","description":"Send this attribute if you want the order's shipping address to be saved in the customer's address book as a customer address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:shipping_address_clone_id":{"id":"order:shipping_address_clone_id","description":"The id of the address that you want to clone to create the order's shipping address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:shipping_address_same_as_billing":{"id":"order:shipping_address_same_as_billing","description":"Send this attribute if you want the shipping address to be cloned from the order's billing address.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:unarchive":{"id":"order:unarchive","description":"Send this attribute if you want to unarchive the order.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:update_taxes":{"id":"order:update_taxes","description":"Send this attribute if you want to force tax calculation for this order (a tax calculator must be associated to the order's market).","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order_subscription:activate":{"id":"order_subscription:activate","description":"Send this attribute if you want to mark this subscription as active.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order_subscription:cancel":{"id":"order_subscription:cancel","description":"Send this attribute if you want to mark this subscription as cancelled.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order_subscription:deactivate":{"id":"order_subscription:deactivate","description":"Send this attribute if you want to mark this subscription as inactive.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order_subscription":{"id":"order_subscription","description":"execute an action on a resource of type order_subscriptions","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:approve":{"id":"return:approve","description":"Send this attribute if you want to mark this return as approved.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:archive":{"id":"return:archive","description":"Send this attribute if you want to archive the return.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:cancel":{"id":"return:cancel","description":"Send this attribute if you want to mark this return as cancelled.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return":{"id":"return","description":"execute an action on a resource of type returns","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:receive":{"id":"return:receive","description":"Send this attribute if you want to mark this return as received.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:reject":{"id":"return:reject","description":"Send this attribute if you want to mark this return as rejected.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:request":{"id":"return:request","description":"Send this attribute if you want to activate this return.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:restock":{"id":"return:restock","description":"Send this attribute if you want to restock all of the return line items.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:ship":{"id":"return:ship","description":"Send this attribute if you want to mark this return as shipped.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return:unarchive":{"id":"return:unarchive","description":"Send this attribute if you want to unarchive the return.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return_line_item":{"id":"return_line_item","description":"execute an action on a resource of type return_line_items","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"return_line_item:restock":{"id":"return_line_item:restock","description":"Send this attribute if you want to restock the line item.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:get_rates":{"id":"shipment:get_rates","description":"Send this attribute if you want get the shipping rates from the associated carrier accounts.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment":{"id":"shipment","description":"execute an action on a resource of type shipments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:on_hold":{"id":"shipment:on_hold","description":"Send this attribute if you want to put this shipment on hold.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:packing":{"id":"shipment:packing","description":"Send this attribute if you want to start packing this shipment.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:picking":{"id":"shipment:picking","description":"Send this attribute if you want to start picking this shipment.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:purchase":{"id":"shipment:purchase","description":"Send this attribute if you want to purchase this shipment with the selected rate.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:ready_to_ship":{"id":"shipment:ready_to_ship","description":"Send this attribute if you want to mark this shipment as ready to ship.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipment:ship":{"id":"shipment:ship","description":"Send this attribute if you want to mark this shipment as shipped.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:cancel":{"id":"stock_transfer:cancel","description":"Send this attribute if you want to cancel this stock transfer.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:complete":{"id":"stock_transfer:complete","description":"Send this attribute if you want to complete this stock transfer.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:in_transit":{"id":"stock_transfer:in_transit","description":"Send this attribute if you want to mark this stock transfer as in transit.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer":{"id":"stock_transfer","description":"execute an action on a resource of type stock_transfers","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:picking":{"id":"stock_transfer:picking","description":"Send this attribute if you want to start picking this stock transfer.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stock_transfer:upcoming":{"id":"stock_transfer:upcoming","description":"Send this attribute if you want to mark this stock transfer as upcoming.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stripe_payment":{"id":"stripe_payment","description":"execute an action on a resource of type stripe_payments","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"stripe_payment:refresh":{"id":"stripe_payment:refresh","description":"Send this attribute if you want to refresh the payment status, can be used as webhooks fallback logic.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"webhook":{"id":"webhook","description":"execute an action on a resource of type webhooks","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"webhook:reset_circuit":{"id":"webhook:reset_circuit","description":"Send this attribute if you want to reset the circuit breaker associated to this webhook to 'closed' state and zero failures count.","pluginName":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true},"print":{"name":"print","type":"boolean","char":"p","description":"print out the modified resource","allowNo":false},"json":{"name":"json","type":"boolean","char":"j","description":"print result in JSON format","allowNo":false},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]}}}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercelayer/cli-plugin-triggers",
|
|
3
3
|
"description": "Commerce Layer CLI Triggers plugin",
|
|
4
|
-
"version": "2.1
|
|
4
|
+
"version": "2.2.0-beta.1",
|
|
5
5
|
"author": "Pierluigi Viti <pierluigi@commercelayer.io>",
|
|
6
6
|
"bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-triggers/issues",
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"@oclif/dev-cli": "git+https://github.com/pviti/dev-cli.git",
|
|
9
|
-
"@oclif/test": "^2.0.3",
|
|
10
9
|
"@oclif/plugin-help": "^5.1.10",
|
|
10
|
+
"@oclif/test": "^2.0.3",
|
|
11
11
|
"@types/chai": "^4.2.22",
|
|
12
12
|
"@types/inquirer": "^8.1.3",
|
|
13
13
|
"@types/lodash": "^4.14.178",
|
|
@@ -74,11 +74,10 @@
|
|
|
74
74
|
},
|
|
75
75
|
"types": "lib/index.d.ts",
|
|
76
76
|
"dependencies": {
|
|
77
|
-
"@commercelayer/cli-core": "^1.
|
|
77
|
+
"@commercelayer/cli-core": "^1.3.6",
|
|
78
78
|
"@commercelayer/js-auth": "^2.2.4",
|
|
79
79
|
"@commercelayer/sdk": "^4.3.0",
|
|
80
80
|
"@oclif/core": "^1.1.2",
|
|
81
|
-
"chalk": "^4.1.2",
|
|
82
81
|
"cli-ux": "^6.0.8",
|
|
83
82
|
"inquirer": "^8.2.0",
|
|
84
83
|
"tslib": "^2.3.1"
|