@commercelayer/cli-plugin-triggers 3.6.0 → 3.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -57,6 +57,8 @@ $ commercelayer plugins:install triggers
57
57
  * [`commercelayer in_stock_subscription:deactivate ID`](#commercelayer-in_stock_subscriptiondeactivate-id)
58
58
  * [`commercelayer klarna_payment ID`](#commercelayer-klarna_payment-id)
59
59
  * [`commercelayer klarna_payment:update ID`](#commercelayer-klarna_paymentupdate-id)
60
+ * [`commercelayer line_item ID`](#commercelayer-line_item-id)
61
+ * [`commercelayer line_item:external_price ID`](#commercelayer-line_itemexternal_price-id)
60
62
  * [`commercelayer market ID`](#commercelayer-market-id)
61
63
  * [`commercelayer market:disable ID`](#commercelayer-marketdisable-id)
62
64
  * [`commercelayer market:enable ID`](#commercelayer-marketenable-id)
@@ -750,6 +752,53 @@ DESCRIPTION
750
752
 
751
753
  _See code: [src/commands/klarna_payment/update.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/klarna_payment/update.ts)_
752
754
 
755
+ ### `commercelayer line_item ID`
756
+
757
+ Execute an action on a resource of type line_items.
758
+
759
+ ```sh-session
760
+ USAGE
761
+ $ commercelayer line_item [ID] -o <value> [-u [-j -p]]
762
+
763
+ ARGUMENTS
764
+ ID the unique id of the resource
765
+
766
+ FLAGS
767
+ -j, --json print result in JSON format
768
+ -o, --organization=<value> (required) the slug of your organization
769
+ -p, --print print out the modified resource
770
+ -u, --unformatted print JSON output without indentation
771
+
772
+ DESCRIPTION
773
+ execute an action on a resource of type line_items
774
+ ```
775
+
776
+ _See code: [src/commands/line_item/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/line_item/index.ts)_
777
+
778
+ ### `commercelayer line_item:external_price ID`
779
+
780
+ When creating or updating a new line item, set this attribute to '1' if you want to inject the unit_amount_cents price from an external source.
781
+
782
+ ```sh-session
783
+ USAGE
784
+ $ commercelayer line_item:external_price [ID] -o <value> [-u [-j -p]]
785
+
786
+ ARGUMENTS
787
+ ID the unique id of the resource
788
+
789
+ FLAGS
790
+ -j, --json print result in JSON format
791
+ -o, --organization=<value> (required) the slug of your organization
792
+ -p, --print print out the modified resource
793
+ -u, --unformatted print JSON output without indentation
794
+
795
+ DESCRIPTION
796
+ When creating or updating a new line item, set this attribute to '1' if you want to inject the unit_amount_cents price
797
+ from an external source.
798
+ ```
799
+
800
+ _See code: [src/commands/line_item/external_price.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/line_item/external_price.ts)_
801
+
753
802
  ### `commercelayer market ID`
754
803
 
755
804
  Execute an action on a resource of type markets.
@@ -0,0 +1,18 @@
1
+ import Command from '../../base';
2
+ export default class LineItemExternalPrice extends Command {
3
+ static description: string;
4
+ static flags: {
5
+ organization: import("@oclif/core/lib/interfaces").OptionFlag<string>;
6
+ domain: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
7
+ accessToken: import("@oclif/core/lib/interfaces").OptionFlag<string>;
8
+ print: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
9
+ json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
10
+ unformatted: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
11
+ };
12
+ static args: {
13
+ name: string;
14
+ description: string;
15
+ required: boolean;
16
+ }[];
17
+ run(): Promise<any>;
18
+ }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const base_1 = tslib_1.__importDefault(require("../../base"));
5
+ const exec_1 = tslib_1.__importDefault(require("../../exec"));
6
+ const line_items_1 = require("../../triggers/line_items");
7
+ const TRIGGER = 'external_price';
8
+ class LineItemExternalPrice extends base_1.default {
9
+ async run() {
10
+ const { args, flags } = await this.parse(LineItemExternalPrice);
11
+ const res = await (0, exec_1.default)('line_items', args.id, TRIGGER, flags);
12
+ if (flags.print)
13
+ this.printOutput(res, flags);
14
+ this.successMessage('line_item', TRIGGER, res.id);
15
+ return res;
16
+ }
17
+ }
18
+ exports.default = LineItemExternalPrice;
19
+ LineItemExternalPrice.description = line_items_1.triggers[TRIGGER].description;
20
+ LineItemExternalPrice.flags = Object.assign({}, base_1.default.flags);
21
+ LineItemExternalPrice.args = [
22
+ ...base_1.default.args,
23
+ ];
@@ -0,0 +1,18 @@
1
+ import Command from '../../base';
2
+ export default class LineItemIndex extends Command {
3
+ static description: string;
4
+ static flags: {
5
+ organization: import("@oclif/core/lib/interfaces").OptionFlag<string>;
6
+ domain: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
7
+ accessToken: import("@oclif/core/lib/interfaces").OptionFlag<string>;
8
+ print: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
9
+ json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
10
+ unformatted: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
11
+ };
12
+ static args: {
13
+ name: string;
14
+ description: string;
15
+ required: boolean;
16
+ }[];
17
+ run(): Promise<any>;
18
+ }
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ const base_1 = tslib_1.__importDefault(require("../../base"));
5
+ const exec_1 = tslib_1.__importDefault(require("../../exec"));
6
+ const inquirer_1 = tslib_1.__importDefault(require("inquirer"));
7
+ const cli_core_1 = require("@commercelayer/cli-core");
8
+ const line_items_1 = require("../../triggers/line_items");
9
+ const promptAction = async (id) => {
10
+ const answers = await inquirer_1.default.prompt([{
11
+ type: 'list',
12
+ name: 'trigger',
13
+ message: `Select an action to execute on line item ${cli_core_1.clColor.api.id(id)}:`,
14
+ choices: Object.keys(line_items_1.triggers).sort().map(a => {
15
+ return { name: a, value: a };
16
+ }),
17
+ loop: false,
18
+ pageSize: 10,
19
+ }]);
20
+ return answers.trigger;
21
+ };
22
+ class LineItemIndex extends base_1.default {
23
+ async run() {
24
+ const { args, flags } = await this.parse(LineItemIndex);
25
+ const id = args.id;
26
+ const action = await promptAction(id);
27
+ const fields = [];
28
+ const res = await (0, exec_1.default)('line_items', id, action, flags, fields);
29
+ this.log();
30
+ this.printOutput(res, flags);
31
+ this.successMessage('line item', action, res.id);
32
+ return res;
33
+ }
34
+ }
35
+ exports.default = LineItemIndex;
36
+ LineItemIndex.description = 'execute an action on a resource of type line_items';
37
+ LineItemIndex.flags = Object.assign({}, base_1.default.flags);
38
+ LineItemIndex.args = [
39
+ ...base_1.default.args,
40
+ ];
@@ -0,0 +1,5 @@
1
+ import type { Trigger } from '../common';
2
+ export declare const triggers: {
3
+ [key: string]: Trigger;
4
+ };
5
+ export type ActionType = 'external_price';
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.triggers = void 0;
4
+ exports.triggers = {
5
+ external_price: {
6
+ action: 'external_price',
7
+ trigger: '_external_price',
8
+ description: 'When creating or updating a new line item, set this attribute to \'1\' if you want to inject the unit_amount_cents price from an external source.',
9
+ },
10
+ };
@@ -1 +1 @@
1
- {"version":"3.6.0","commands":{"noc":{"id":"noc","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"market:disable":{"id":"market:disable","description":"Send this attribute if you want to mark the market as disabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"market:enable":{"id":"market:enable","description":"Send this attribute if you want to mark the market as enabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"market":{"id":"market","description":"execute an action on a resource of type markets","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true,"multiple":false}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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 authorized order.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:commit_invoice":{"id":"order:commit_invoice","description":"Send this attribute if you want commit the sales tax invoice to the associated tax calculator (currently supported by Avalara).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true,"multiple":false}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:nullify_payment_source":{"id":"order:nullify_payment_source","description":"Send this attribute if you want to nullify the payment source for this order.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:refund_invoice":{"id":"order:refund_invoice","description":"Send this attribute if you want refund the sales tax invoice to the associated tax calculator (currently supported by Avalara).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true,"multiple":false}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"payment_method:disable":{"id":"payment_method:disable","description":"Send this attribute if you want to mark the payment method as disabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"payment_method:enable":{"id":"payment_method:enable","description":"Send this attribute if you want to mark the payment method as enabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"payment_method":{"id":"payment_method","description":"execute an action on a resource of type payment_methods","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipping_method:disable":{"id":"shipping_method:disable","description":"Send this attribute if you want to mark the shipping method as disabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipping_method:enable":{"id":"shipping_method:enable","description":"Send this attribute if you want to mark the shipping method as enabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipping_method":{"id":"shipping_method","description":"execute an action on a resource of type shipping_methods","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]}}}
1
+ {"version":"3.7.0","commands":{"noc":{"id":"noc","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"line_item:external_price":{"id":"line_item:external_price","description":"When creating or updating a new line item, set this attribute to '1' if you want to inject the unit_amount_cents price from an external source.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"line_item":{"id":"line_item","description":"execute an action on a resource of type line_items","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"market:disable":{"id":"market:disable","description":"Send this attribute if you want to mark the market as disabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"market:enable":{"id":"market:enable","description":"Send this attribute if you want to mark the market as enabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"market":{"id":"market","description":"execute an action on a resource of type markets","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true,"multiple":false}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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 authorized order.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:commit_invoice":{"id":"order:commit_invoice","description":"Send this attribute if you want commit the sales tax invoice to the associated tax calculator (currently supported by Avalara).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true,"multiple":false}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:nullify_payment_source":{"id":"order:nullify_payment_source","description":"Send this attribute if you want to nullify the payment source for this order.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"order:refund_invoice":{"id":"order:refund_invoice","description":"Send this attribute if you want refund the sales tax invoice to the associated tax calculator (currently supported by Avalara).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]},"value":{"name":"value","type":"option","char":"v","description":"the trigger attribute value","required":true,"multiple":false}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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).","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"payment_method:disable":{"id":"payment_method:disable","description":"Send this attribute if you want to mark the payment method as disabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"payment_method:enable":{"id":"payment_method:enable","description":"Send this attribute if you want to mark the payment method as enabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"payment_method":{"id":"payment_method","description":"execute an action on a resource of type payment_methods","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipping_method:disable":{"id":"shipping_method:disable","description":"Send this attribute if you want to mark the shipping method as disabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipping_method:enable":{"id":"shipping_method:enable","description":"Send this attribute if you want to mark the shipping method as enabled.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]},"shipping_method":{"id":"shipping_method","description":"execute an action on a resource of type shipping_methods","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"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.","strict":true,"pluginName":"@commercelayer/cli-plugin-triggers","pluginAlias":"@commercelayer/cli-plugin-triggers","pluginType":"core","aliases":[],"flags":{"organization":{"name":"organization","type":"option","char":"o","description":"the slug of your organization","required":true,"multiple":false},"domain":{"name":"domain","type":"option","char":"d","hidden":true,"required":false,"multiple":false,"dependsOn":["organization"]},"accessToken":{"name":"accessToken","type":"option","hidden":true,"required":true,"multiple":false},"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,"dependsOn":["print"]},"unformatted":{"name":"unformatted","type":"boolean","char":"u","description":"print JSON output without indentation","allowNo":false,"dependsOn":["json"]}},"args":[{"name":"id","description":"the unique id of the resource","required":true}]}}}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@commercelayer/cli-plugin-triggers",
3
3
  "description": "Commerce Layer CLI Triggers plugin",
4
- "version": "3.6.0",
4
+ "version": "3.7.0",
5
5
  "author": "Pierluigi Viti <pierluigi@commercelayer.io>",
6
6
  "bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-triggers/issues",
7
7
  "engines": {
@@ -44,29 +44,29 @@
44
44
  "repository": "commercelayer/commercelayer-cli-plugin-triggers",
45
45
  "types": "lib/index.d.ts",
46
46
  "devDependencies": {
47
- "@commercelayer/cli-dev": "^0.1.10",
47
+ "@commercelayer/cli-dev": "^1.0.0",
48
48
  "@commercelayer/eslint-config-ts": "^0.1.4",
49
- "@oclif/plugin-help": "^5.1.19",
50
- "@oclif/test": "^2.2.12",
49
+ "@oclif/plugin-help": "^5.1.20",
50
+ "@oclif/test": "^2.2.16",
51
51
  "@types/chai": "^4.3.4",
52
52
  "@types/inquirer": "^8.2.5",
53
- "@types/lodash": "^4.14.189",
54
- "@types/mocha": "^10.0.0",
55
- "@types/node": "^18.11.9",
53
+ "@types/lodash": "^4.14.191",
54
+ "@types/mocha": "^10.0.1",
55
+ "@types/node": "^18.11.17",
56
56
  "chai": "^4.3.7",
57
- "eslint": "^8.28.0",
57
+ "eslint": "^8.30.0",
58
58
  "inflector-js": "^1.0.1",
59
59
  "lodash": "^4.17.21",
60
- "mocha": "^10.1.0",
60
+ "mocha": "^10.2.0",
61
61
  "nyc": "^15.1.0",
62
62
  "ts-node": "^10.9.1",
63
- "typescript": "4.9.3"
63
+ "typescript": "4.9.4"
64
64
  },
65
65
  "dependencies": {
66
- "@commercelayer/cli-core": "^2.0.0",
66
+ "@commercelayer/cli-core": "^2.0.4",
67
67
  "@commercelayer/js-auth": "^2.3.0",
68
- "@commercelayer/sdk": "^4.18.0",
69
- "@oclif/core": "^1.20.4",
68
+ "@commercelayer/sdk": "^4.21.0",
69
+ "@oclif/core": "^1.22.0",
70
70
  "inquirer": "^8.2.5",
71
71
  "tslib": "^2.4.1"
72
72
  },