@commercelayer/cli-plugin-triggers 4.15.0 → 4.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/README.md +690 -23
  2. package/lib/commands/adyen_gateway/disable.d.ts +9 -0
  3. package/lib/commands/adyen_gateway/disable.js +22 -0
  4. package/lib/commands/adyen_gateway/enable.d.ts +9 -0
  5. package/lib/commands/adyen_gateway/enable.js +22 -0
  6. package/lib/commands/adyen_gateway/index.d.ts +9 -0
  7. package/lib/commands/adyen_gateway/index.js +40 -0
  8. package/lib/commands/axerve_gateway/disable.d.ts +9 -0
  9. package/lib/commands/axerve_gateway/disable.js +22 -0
  10. package/lib/commands/axerve_gateway/enable.d.ts +9 -0
  11. package/lib/commands/axerve_gateway/enable.js +22 -0
  12. package/lib/commands/axerve_gateway/index.d.ts +9 -0
  13. package/lib/commands/axerve_gateway/index.js +40 -0
  14. package/lib/commands/braintree_gateway/disable.d.ts +9 -0
  15. package/lib/commands/braintree_gateway/disable.js +22 -0
  16. package/lib/commands/braintree_gateway/enable.d.ts +9 -0
  17. package/lib/commands/braintree_gateway/enable.js +22 -0
  18. package/lib/commands/braintree_gateway/index.d.ts +9 -0
  19. package/lib/commands/braintree_gateway/index.js +40 -0
  20. package/lib/commands/checkout_com_gateway/disable.d.ts +9 -0
  21. package/lib/commands/checkout_com_gateway/disable.js +22 -0
  22. package/lib/commands/checkout_com_gateway/enable.d.ts +9 -0
  23. package/lib/commands/checkout_com_gateway/enable.js +22 -0
  24. package/lib/commands/checkout_com_gateway/index.d.ts +9 -0
  25. package/lib/commands/checkout_com_gateway/index.js +40 -0
  26. package/lib/commands/external_gateway/disable.d.ts +9 -0
  27. package/lib/commands/external_gateway/disable.js +22 -0
  28. package/lib/commands/external_gateway/enable.d.ts +9 -0
  29. package/lib/commands/external_gateway/enable.js +22 -0
  30. package/lib/commands/klarna_gateway/disable.d.ts +9 -0
  31. package/lib/commands/klarna_gateway/disable.js +22 -0
  32. package/lib/commands/klarna_gateway/enable.d.ts +9 -0
  33. package/lib/commands/klarna_gateway/enable.js +22 -0
  34. package/lib/commands/klarna_gateway/index.d.ts +9 -0
  35. package/lib/commands/klarna_gateway/index.js +40 -0
  36. package/lib/commands/manual_gateway/disable.d.ts +9 -0
  37. package/lib/commands/manual_gateway/disable.js +22 -0
  38. package/lib/commands/manual_gateway/enable.d.ts +9 -0
  39. package/lib/commands/manual_gateway/enable.js +22 -0
  40. package/lib/commands/manual_gateway/index.d.ts +9 -0
  41. package/lib/commands/manual_gateway/index.js +40 -0
  42. package/lib/commands/paypal_gateway/disable.d.ts +9 -0
  43. package/lib/commands/paypal_gateway/disable.js +22 -0
  44. package/lib/commands/paypal_gateway/enable.d.ts +9 -0
  45. package/lib/commands/paypal_gateway/enable.js +22 -0
  46. package/lib/commands/paypal_gateway/index.d.ts +9 -0
  47. package/lib/commands/paypal_gateway/index.js +40 -0
  48. package/lib/commands/satispay_gateway/disable.d.ts +9 -0
  49. package/lib/commands/satispay_gateway/disable.js +22 -0
  50. package/lib/commands/satispay_gateway/enable.d.ts +9 -0
  51. package/lib/commands/satispay_gateway/enable.js +22 -0
  52. package/lib/commands/satispay_gateway/index.d.ts +9 -0
  53. package/lib/commands/satispay_gateway/index.js +40 -0
  54. package/lib/commands/stripe_gateway/disable.d.ts +9 -0
  55. package/lib/commands/stripe_gateway/disable.js +22 -0
  56. package/lib/commands/stripe_gateway/enable.d.ts +9 -0
  57. package/lib/commands/stripe_gateway/enable.js +22 -0
  58. package/lib/commands/stripe_gateway/index.d.ts +9 -0
  59. package/lib/commands/stripe_gateway/index.js +40 -0
  60. package/lib/triggers/adyen_gateways.d.ts +3 -0
  61. package/lib/triggers/adyen_gateways.js +15 -0
  62. package/lib/triggers/axerve_gateways.d.ts +3 -0
  63. package/lib/triggers/axerve_gateways.js +15 -0
  64. package/lib/triggers/braintree_gateways.d.ts +3 -0
  65. package/lib/triggers/braintree_gateways.js +15 -0
  66. package/lib/triggers/checkout_com_gateways.d.ts +3 -0
  67. package/lib/triggers/checkout_com_gateways.js +15 -0
  68. package/lib/triggers/external_gateways.d.ts +1 -1
  69. package/lib/triggers/external_gateways.js +10 -0
  70. package/lib/triggers/klarna_gateways.d.ts +3 -0
  71. package/lib/triggers/klarna_gateways.js +15 -0
  72. package/lib/triggers/manual_gateways.d.ts +3 -0
  73. package/lib/triggers/manual_gateways.js +15 -0
  74. package/lib/triggers/paypal_gateways.d.ts +3 -0
  75. package/lib/triggers/paypal_gateways.js +15 -0
  76. package/lib/triggers/satispay_gateways.d.ts +3 -0
  77. package/lib/triggers/satispay_gateways.js +15 -0
  78. package/lib/triggers/stripe_gateways.d.ts +3 -0
  79. package/lib/triggers/stripe_gateways.js +15 -0
  80. package/oclif.manifest.json +3676 -1124
  81. package/package.json +7 -7
package/README.md CHANGED
@@ -33,6 +33,9 @@ $ commercelayer plugins:install triggers
33
33
  * [`commercelayer address ID`](#commercelayer-address-id)
34
34
  * [`commercelayer address:add_tags ID`](#commercelayer-addressadd_tags-id)
35
35
  * [`commercelayer address:remove_tags ID`](#commercelayer-addressremove_tags-id)
36
+ * [`commercelayer adyen_gateway ID`](#commercelayer-adyen_gateway-id)
37
+ * [`commercelayer adyen_gateway:disable ID`](#commercelayer-adyen_gatewaydisable-id)
38
+ * [`commercelayer adyen_gateway:enable ID`](#commercelayer-adyen_gatewayenable-id)
36
39
  * [`commercelayer adyen_payment ID`](#commercelayer-adyen_payment-id)
37
40
  * [`commercelayer adyen_payment:authorize ID`](#commercelayer-adyen_paymentauthorize-id)
38
41
  * [`commercelayer adyen_payment:balance ID`](#commercelayer-adyen_paymentbalance-id)
@@ -43,8 +46,14 @@ $ commercelayer plugins:install triggers
43
46
  * [`commercelayer authorization:capture_amount_cents ID`](#commercelayer-authorizationcapture_amount_cents-id)
44
47
  * [`commercelayer authorization:forward ID`](#commercelayer-authorizationforward-id)
45
48
  * [`commercelayer authorization:void ID`](#commercelayer-authorizationvoid-id)
49
+ * [`commercelayer axerve_gateway ID`](#commercelayer-axerve_gateway-id)
50
+ * [`commercelayer axerve_gateway:disable ID`](#commercelayer-axerve_gatewaydisable-id)
51
+ * [`commercelayer axerve_gateway:enable ID`](#commercelayer-axerve_gatewayenable-id)
46
52
  * [`commercelayer axerve_payment ID`](#commercelayer-axerve_payment-id)
47
53
  * [`commercelayer axerve_payment:update ID`](#commercelayer-axerve_paymentupdate-id)
54
+ * [`commercelayer braintree_gateway ID`](#commercelayer-braintree_gateway-id)
55
+ * [`commercelayer braintree_gateway:disable ID`](#commercelayer-braintree_gatewaydisable-id)
56
+ * [`commercelayer braintree_gateway:enable ID`](#commercelayer-braintree_gatewayenable-id)
48
57
  * [`commercelayer bundle ID`](#commercelayer-bundle-id)
49
58
  * [`commercelayer bundle:add_tags ID`](#commercelayer-bundleadd_tags-id)
50
59
  * [`commercelayer bundle:compute_compare_at_amount ID`](#commercelayer-bundlecompute_compare_at_amount-id)
@@ -60,6 +69,9 @@ $ commercelayer plugins:install triggers
60
69
  * [`commercelayer capture:forward ID`](#commercelayer-captureforward-id)
61
70
  * [`commercelayer capture:refund ID`](#commercelayer-capturerefund-id)
62
71
  * [`commercelayer capture:refund_amount_cents ID`](#commercelayer-capturerefund_amount_cents-id)
72
+ * [`commercelayer checkout_com_gateway ID`](#commercelayer-checkout_com_gateway-id)
73
+ * [`commercelayer checkout_com_gateway:disable ID`](#commercelayer-checkout_com_gatewaydisable-id)
74
+ * [`commercelayer checkout_com_gateway:enable ID`](#commercelayer-checkout_com_gatewayenable-id)
63
75
  * [`commercelayer checkout_com_payment ID`](#commercelayer-checkout_com_payment-id)
64
76
  * [`commercelayer checkout_com_payment:details ID`](#commercelayer-checkout_com_paymentdetails-id)
65
77
  * [`commercelayer checkout_com_payment:refresh ID`](#commercelayer-checkout_com_paymentrefresh-id)
@@ -82,6 +94,8 @@ $ commercelayer plugins:install triggers
82
94
  * [`commercelayer export ID`](#commercelayer-export-id)
83
95
  * [`commercelayer export:interrupt ID`](#commercelayer-exportinterrupt-id)
84
96
  * [`commercelayer external_gateway ID`](#commercelayer-external_gateway-id)
97
+ * [`commercelayer external_gateway:disable ID`](#commercelayer-external_gatewaydisable-id)
98
+ * [`commercelayer external_gateway:enable ID`](#commercelayer-external_gatewayenable-id)
85
99
  * [`commercelayer external_gateway:reset_circuit ID`](#commercelayer-external_gatewayreset_circuit-id)
86
100
  * [`commercelayer external_promotion ID`](#commercelayer-external_promotion-id)
87
101
  * [`commercelayer external_promotion:add_tags ID`](#commercelayer-external_promotionadd_tags-id)
@@ -128,6 +142,9 @@ $ commercelayer plugins:install triggers
128
142
  * [`commercelayer in_stock_subscription ID`](#commercelayer-in_stock_subscription-id)
129
143
  * [`commercelayer in_stock_subscription:activate ID`](#commercelayer-in_stock_subscriptionactivate-id)
130
144
  * [`commercelayer in_stock_subscription:deactivate ID`](#commercelayer-in_stock_subscriptiondeactivate-id)
145
+ * [`commercelayer klarna_gateway ID`](#commercelayer-klarna_gateway-id)
146
+ * [`commercelayer klarna_gateway:disable ID`](#commercelayer-klarna_gatewaydisable-id)
147
+ * [`commercelayer klarna_gateway:enable ID`](#commercelayer-klarna_gatewayenable-id)
131
148
  * [`commercelayer klarna_payment ID`](#commercelayer-klarna_payment-id)
132
149
  * [`commercelayer klarna_payment:update ID`](#commercelayer-klarna_paymentupdate-id)
133
150
  * [`commercelayer line_item ID`](#commercelayer-line_item-id)
@@ -143,6 +160,9 @@ $ commercelayer plugins:install triggers
143
160
  * [`commercelayer link ID`](#commercelayer-link-id)
144
161
  * [`commercelayer link:disable ID`](#commercelayer-linkdisable-id)
145
162
  * [`commercelayer link:enable ID`](#commercelayer-linkenable-id)
163
+ * [`commercelayer manual_gateway ID`](#commercelayer-manual_gateway-id)
164
+ * [`commercelayer manual_gateway:disable ID`](#commercelayer-manual_gatewaydisable-id)
165
+ * [`commercelayer manual_gateway:enable ID`](#commercelayer-manual_gatewayenable-id)
146
166
  * [`commercelayer market ID`](#commercelayer-market-id)
147
167
  * [`commercelayer market:disable ID`](#commercelayer-marketdisable-id)
148
168
  * [`commercelayer market:enable ID`](#commercelayer-marketenable-id)
@@ -190,6 +210,9 @@ $ commercelayer plugins:install triggers
190
210
  * [`commercelayer payment_method ID`](#commercelayer-payment_method-id)
191
211
  * [`commercelayer payment_method:disable ID`](#commercelayer-payment_methoddisable-id)
192
212
  * [`commercelayer payment_method:enable ID`](#commercelayer-payment_methodenable-id)
213
+ * [`commercelayer paypal_gateway ID`](#commercelayer-paypal_gateway-id)
214
+ * [`commercelayer paypal_gateway:disable ID`](#commercelayer-paypal_gatewaydisable-id)
215
+ * [`commercelayer paypal_gateway:enable ID`](#commercelayer-paypal_gatewayenable-id)
193
216
  * [`commercelayer percentage_discount_promotion ID`](#commercelayer-percentage_discount_promotion-id)
194
217
  * [`commercelayer percentage_discount_promotion:add_tags ID`](#commercelayer-percentage_discount_promotionadd_tags-id)
195
218
  * [`commercelayer percentage_discount_promotion:disable ID`](#commercelayer-percentage_discount_promotiondisable-id)
@@ -216,6 +239,9 @@ $ commercelayer plugins:install triggers
216
239
  * [`commercelayer return:unarchive ID`](#commercelayer-returnunarchive-id)
217
240
  * [`commercelayer return_line_item ID`](#commercelayer-return_line_item-id)
218
241
  * [`commercelayer return_line_item:restock ID`](#commercelayer-return_line_itemrestock-id)
242
+ * [`commercelayer satispay_gateway ID`](#commercelayer-satispay_gateway-id)
243
+ * [`commercelayer satispay_gateway:disable ID`](#commercelayer-satispay_gatewaydisable-id)
244
+ * [`commercelayer satispay_gateway:enable ID`](#commercelayer-satispay_gatewayenable-id)
219
245
  * [`commercelayer satispay_payment ID`](#commercelayer-satispay_payment-id)
220
246
  * [`commercelayer satispay_payment:refresh ID`](#commercelayer-satispay_paymentrefresh-id)
221
247
  * [`commercelayer shipment ID`](#commercelayer-shipment-id)
@@ -259,6 +285,9 @@ $ commercelayer plugins:install triggers
259
285
  * [`commercelayer stock_transfer:on_hold ID`](#commercelayer-stock_transferon_hold-id)
260
286
  * [`commercelayer stock_transfer:picking ID`](#commercelayer-stock_transferpicking-id)
261
287
  * [`commercelayer stock_transfer:upcoming ID`](#commercelayer-stock_transferupcoming-id)
288
+ * [`commercelayer stripe_gateway ID`](#commercelayer-stripe_gateway-id)
289
+ * [`commercelayer stripe_gateway:disable ID`](#commercelayer-stripe_gatewaydisable-id)
290
+ * [`commercelayer stripe_gateway:enable ID`](#commercelayer-stripe_gatewayenable-id)
262
291
  * [`commercelayer stripe_payment ID`](#commercelayer-stripe_payment-id)
263
292
  * [`commercelayer stripe_payment:refresh ID`](#commercelayer-stripe_paymentrefresh-id)
264
293
  * [`commercelayer stripe_payment:update ID`](#commercelayer-stripe_paymentupdate-id)
@@ -339,6 +368,72 @@ DESCRIPTION
339
368
 
340
369
  _See code: [src/commands/address/remove_tags.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/address/remove_tags.ts)_
341
370
 
371
+ ### `commercelayer adyen_gateway ID`
372
+
373
+ Execute an action on a resource of type adyen_gateways.
374
+
375
+ ```sh-session
376
+ USAGE
377
+ $ commercelayer adyen_gateway ID [-u [-j -p]]
378
+
379
+ ARGUMENTS
380
+ ID the unique id of the resource
381
+
382
+ FLAGS
383
+ -j, --json print result in JSON format
384
+ -p, --print print out the modified resource
385
+ -u, --unformatted print JSON output without indentation
386
+
387
+ DESCRIPTION
388
+ execute an action on a resource of type adyen_gateways
389
+ ```
390
+
391
+ _See code: [src/commands/adyen_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/adyen_gateway/index.ts)_
392
+
393
+ ### `commercelayer adyen_gateway:disable ID`
394
+
395
+ Send this attribute if you want to mark this resource as disabled.
396
+
397
+ ```sh-session
398
+ USAGE
399
+ $ commercelayer adyen_gateway:disable ID [-u [-j -p]]
400
+
401
+ ARGUMENTS
402
+ ID the unique id of the resource
403
+
404
+ FLAGS
405
+ -j, --json print result in JSON format
406
+ -p, --print print out the modified resource
407
+ -u, --unformatted print JSON output without indentation
408
+
409
+ DESCRIPTION
410
+ Send this attribute if you want to mark this resource as disabled.
411
+ ```
412
+
413
+ _See code: [src/commands/adyen_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/adyen_gateway/disable.ts)_
414
+
415
+ ### `commercelayer adyen_gateway:enable ID`
416
+
417
+ Send this attribute if you want to mark this resource as enabled.
418
+
419
+ ```sh-session
420
+ USAGE
421
+ $ commercelayer adyen_gateway:enable ID [-u [-j -p]]
422
+
423
+ ARGUMENTS
424
+ ID the unique id of the resource
425
+
426
+ FLAGS
427
+ -j, --json print result in JSON format
428
+ -p, --print print out the modified resource
429
+ -u, --unformatted print JSON output without indentation
430
+
431
+ DESCRIPTION
432
+ Send this attribute if you want to mark this resource as enabled.
433
+ ```
434
+
435
+ _See code: [src/commands/adyen_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/adyen_gateway/enable.ts)_
436
+
342
437
  ### `commercelayer adyen_payment ID`
343
438
 
344
439
  Execute an action on a resource of type adyen_payments.
@@ -560,6 +655,72 @@ DESCRIPTION
560
655
 
561
656
  _See code: [src/commands/authorization/void.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/authorization/void.ts)_
562
657
 
658
+ ### `commercelayer axerve_gateway ID`
659
+
660
+ Execute an action on a resource of type axerve_gateways.
661
+
662
+ ```sh-session
663
+ USAGE
664
+ $ commercelayer axerve_gateway ID [-u [-j -p]]
665
+
666
+ ARGUMENTS
667
+ ID the unique id of the resource
668
+
669
+ FLAGS
670
+ -j, --json print result in JSON format
671
+ -p, --print print out the modified resource
672
+ -u, --unformatted print JSON output without indentation
673
+
674
+ DESCRIPTION
675
+ execute an action on a resource of type axerve_gateways
676
+ ```
677
+
678
+ _See code: [src/commands/axerve_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/axerve_gateway/index.ts)_
679
+
680
+ ### `commercelayer axerve_gateway:disable ID`
681
+
682
+ Send this attribute if you want to mark this resource as disabled.
683
+
684
+ ```sh-session
685
+ USAGE
686
+ $ commercelayer axerve_gateway:disable ID [-u [-j -p]]
687
+
688
+ ARGUMENTS
689
+ ID the unique id of the resource
690
+
691
+ FLAGS
692
+ -j, --json print result in JSON format
693
+ -p, --print print out the modified resource
694
+ -u, --unformatted print JSON output without indentation
695
+
696
+ DESCRIPTION
697
+ Send this attribute if you want to mark this resource as disabled.
698
+ ```
699
+
700
+ _See code: [src/commands/axerve_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/axerve_gateway/disable.ts)_
701
+
702
+ ### `commercelayer axerve_gateway:enable ID`
703
+
704
+ Send this attribute if you want to mark this resource as enabled.
705
+
706
+ ```sh-session
707
+ USAGE
708
+ $ commercelayer axerve_gateway:enable ID [-u [-j -p]]
709
+
710
+ ARGUMENTS
711
+ ID the unique id of the resource
712
+
713
+ FLAGS
714
+ -j, --json print result in JSON format
715
+ -p, --print print out the modified resource
716
+ -u, --unformatted print JSON output without indentation
717
+
718
+ DESCRIPTION
719
+ Send this attribute if you want to mark this resource as enabled.
720
+ ```
721
+
722
+ _See code: [src/commands/axerve_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/axerve_gateway/enable.ts)_
723
+
563
724
  ### `commercelayer axerve_payment ID`
564
725
 
565
726
  Execute an action on a resource of type axerve_payments.
@@ -604,6 +765,72 @@ DESCRIPTION
604
765
 
605
766
  _See code: [src/commands/axerve_payment/update.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/axerve_payment/update.ts)_
606
767
 
768
+ ### `commercelayer braintree_gateway ID`
769
+
770
+ Execute an action on a resource of type braintree_gateways.
771
+
772
+ ```sh-session
773
+ USAGE
774
+ $ commercelayer braintree_gateway ID [-u [-j -p]]
775
+
776
+ ARGUMENTS
777
+ ID the unique id of the resource
778
+
779
+ FLAGS
780
+ -j, --json print result in JSON format
781
+ -p, --print print out the modified resource
782
+ -u, --unformatted print JSON output without indentation
783
+
784
+ DESCRIPTION
785
+ execute an action on a resource of type braintree_gateways
786
+ ```
787
+
788
+ _See code: [src/commands/braintree_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/braintree_gateway/index.ts)_
789
+
790
+ ### `commercelayer braintree_gateway:disable ID`
791
+
792
+ Send this attribute if you want to mark this resource as disabled.
793
+
794
+ ```sh-session
795
+ USAGE
796
+ $ commercelayer braintree_gateway:disable ID [-u [-j -p]]
797
+
798
+ ARGUMENTS
799
+ ID the unique id of the resource
800
+
801
+ FLAGS
802
+ -j, --json print result in JSON format
803
+ -p, --print print out the modified resource
804
+ -u, --unformatted print JSON output without indentation
805
+
806
+ DESCRIPTION
807
+ Send this attribute if you want to mark this resource as disabled.
808
+ ```
809
+
810
+ _See code: [src/commands/braintree_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/braintree_gateway/disable.ts)_
811
+
812
+ ### `commercelayer braintree_gateway:enable ID`
813
+
814
+ Send this attribute if you want to mark this resource as enabled.
815
+
816
+ ```sh-session
817
+ USAGE
818
+ $ commercelayer braintree_gateway:enable ID [-u [-j -p]]
819
+
820
+ ARGUMENTS
821
+ ID the unique id of the resource
822
+
823
+ FLAGS
824
+ -j, --json print result in JSON format
825
+ -p, --print print out the modified resource
826
+ -u, --unformatted print JSON output without indentation
827
+
828
+ DESCRIPTION
829
+ Send this attribute if you want to mark this resource as enabled.
830
+ ```
831
+
832
+ _See code: [src/commands/braintree_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/braintree_gateway/enable.ts)_
833
+
607
834
  ### `commercelayer bundle ID`
608
835
 
609
836
  Execute an action on a resource of type bundles.
@@ -941,6 +1168,72 @@ DESCRIPTION
941
1168
 
942
1169
  _See code: [src/commands/capture/refund_amount_cents.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/capture/refund_amount_cents.ts)_
943
1170
 
1171
+ ### `commercelayer checkout_com_gateway ID`
1172
+
1173
+ Execute an action on a resource of type checkout_com_gateways.
1174
+
1175
+ ```sh-session
1176
+ USAGE
1177
+ $ commercelayer checkout_com_gateway ID [-u [-j -p]]
1178
+
1179
+ ARGUMENTS
1180
+ ID the unique id of the resource
1181
+
1182
+ FLAGS
1183
+ -j, --json print result in JSON format
1184
+ -p, --print print out the modified resource
1185
+ -u, --unformatted print JSON output without indentation
1186
+
1187
+ DESCRIPTION
1188
+ execute an action on a resource of type checkout_com_gateways
1189
+ ```
1190
+
1191
+ _See code: [src/commands/checkout_com_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/checkout_com_gateway/index.ts)_
1192
+
1193
+ ### `commercelayer checkout_com_gateway:disable ID`
1194
+
1195
+ Send this attribute if you want to mark this resource as disabled.
1196
+
1197
+ ```sh-session
1198
+ USAGE
1199
+ $ commercelayer checkout_com_gateway:disable ID [-u [-j -p]]
1200
+
1201
+ ARGUMENTS
1202
+ ID the unique id of the resource
1203
+
1204
+ FLAGS
1205
+ -j, --json print result in JSON format
1206
+ -p, --print print out the modified resource
1207
+ -u, --unformatted print JSON output without indentation
1208
+
1209
+ DESCRIPTION
1210
+ Send this attribute if you want to mark this resource as disabled.
1211
+ ```
1212
+
1213
+ _See code: [src/commands/checkout_com_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/checkout_com_gateway/disable.ts)_
1214
+
1215
+ ### `commercelayer checkout_com_gateway:enable ID`
1216
+
1217
+ Send this attribute if you want to mark this resource as enabled.
1218
+
1219
+ ```sh-session
1220
+ USAGE
1221
+ $ commercelayer checkout_com_gateway:enable ID [-u [-j -p]]
1222
+
1223
+ ARGUMENTS
1224
+ ID the unique id of the resource
1225
+
1226
+ FLAGS
1227
+ -j, --json print result in JSON format
1228
+ -p, --print print out the modified resource
1229
+ -u, --unformatted print JSON output without indentation
1230
+
1231
+ DESCRIPTION
1232
+ Send this attribute if you want to mark this resource as enabled.
1233
+ ```
1234
+
1235
+ _See code: [src/commands/checkout_com_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/checkout_com_gateway/enable.ts)_
1236
+
944
1237
  ### `commercelayer checkout_com_payment ID`
945
1238
 
946
1239
  Execute an action on a resource of type checkout_com_payments.
@@ -1429,6 +1722,50 @@ DESCRIPTION
1429
1722
 
1430
1723
  _See code: [src/commands/external_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/external_gateway/index.ts)_
1431
1724
 
1725
+ ### `commercelayer external_gateway:disable ID`
1726
+
1727
+ Send this attribute if you want to mark this resource as disabled.
1728
+
1729
+ ```sh-session
1730
+ USAGE
1731
+ $ commercelayer external_gateway:disable ID [-u [-j -p]]
1732
+
1733
+ ARGUMENTS
1734
+ ID the unique id of the resource
1735
+
1736
+ FLAGS
1737
+ -j, --json print result in JSON format
1738
+ -p, --print print out the modified resource
1739
+ -u, --unformatted print JSON output without indentation
1740
+
1741
+ DESCRIPTION
1742
+ Send this attribute if you want to mark this resource as disabled.
1743
+ ```
1744
+
1745
+ _See code: [src/commands/external_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/external_gateway/disable.ts)_
1746
+
1747
+ ### `commercelayer external_gateway:enable ID`
1748
+
1749
+ Send this attribute if you want to mark this resource as enabled.
1750
+
1751
+ ```sh-session
1752
+ USAGE
1753
+ $ commercelayer external_gateway:enable ID [-u [-j -p]]
1754
+
1755
+ ARGUMENTS
1756
+ ID the unique id of the resource
1757
+
1758
+ FLAGS
1759
+ -j, --json print result in JSON format
1760
+ -p, --print print out the modified resource
1761
+ -u, --unformatted print JSON output without indentation
1762
+
1763
+ DESCRIPTION
1764
+ Send this attribute if you want to mark this resource as enabled.
1765
+ ```
1766
+
1767
+ _See code: [src/commands/external_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/external_gateway/enable.ts)_
1768
+
1432
1769
  ### `commercelayer external_gateway:reset_circuit ID`
1433
1770
 
1434
1771
  Send this attribute if you want to reset the circuit breaker associated to this resource to 'closed' state and zero failures count. Cannot be passed by sales channels.
@@ -2356,7 +2693,73 @@ Execute an action on a resource of type imports.
2356
2693
 
2357
2694
  ```sh-session
2358
2695
  USAGE
2359
- $ commercelayer import ID [-u [-j -p]]
2696
+ $ commercelayer import ID [-u [-j -p]]
2697
+
2698
+ ARGUMENTS
2699
+ ID the unique id of the resource
2700
+
2701
+ FLAGS
2702
+ -j, --json print result in JSON format
2703
+ -p, --print print out the modified resource
2704
+ -u, --unformatted print JSON output without indentation
2705
+
2706
+ DESCRIPTION
2707
+ execute an action on a resource of type imports
2708
+ ```
2709
+
2710
+ _See code: [src/commands/import/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/import/index.ts)_
2711
+
2712
+ ### `commercelayer import:interrupt ID`
2713
+
2714
+ Send this attribute if you want to mark status as 'interrupted'.
2715
+
2716
+ ```sh-session
2717
+ USAGE
2718
+ $ commercelayer import:interrupt ID [-u [-j -p]]
2719
+
2720
+ ARGUMENTS
2721
+ ID the unique id of the resource
2722
+
2723
+ FLAGS
2724
+ -j, --json print result in JSON format
2725
+ -p, --print print out the modified resource
2726
+ -u, --unformatted print JSON output without indentation
2727
+
2728
+ DESCRIPTION
2729
+ Send this attribute if you want to mark status as 'interrupted'.
2730
+ ```
2731
+
2732
+ _See code: [src/commands/import/interrupt.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/import/interrupt.ts)_
2733
+
2734
+ ### `commercelayer in_stock_subscription ID`
2735
+
2736
+ Execute an action on a resource of type in_stock_subscriptions.
2737
+
2738
+ ```sh-session
2739
+ USAGE
2740
+ $ commercelayer in_stock_subscription ID [-u [-j -p]]
2741
+
2742
+ ARGUMENTS
2743
+ ID the unique id of the resource
2744
+
2745
+ FLAGS
2746
+ -j, --json print result in JSON format
2747
+ -p, --print print out the modified resource
2748
+ -u, --unformatted print JSON output without indentation
2749
+
2750
+ DESCRIPTION
2751
+ execute an action on a resource of type in_stock_subscriptions
2752
+ ```
2753
+
2754
+ _See code: [src/commands/in_stock_subscription/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/in_stock_subscription/index.ts)_
2755
+
2756
+ ### `commercelayer in_stock_subscription:activate ID`
2757
+
2758
+ Send this attribute if you want to activate an inactive subscription.
2759
+
2760
+ ```sh-session
2761
+ USAGE
2762
+ $ commercelayer in_stock_subscription:activate ID [-u [-j -p]]
2360
2763
 
2361
2764
  ARGUMENTS
2362
2765
  ID the unique id of the resource
@@ -2367,18 +2770,18 @@ FLAGS
2367
2770
  -u, --unformatted print JSON output without indentation
2368
2771
 
2369
2772
  DESCRIPTION
2370
- execute an action on a resource of type imports
2773
+ Send this attribute if you want to activate an inactive subscription.
2371
2774
  ```
2372
2775
 
2373
- _See code: [src/commands/import/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/import/index.ts)_
2776
+ _See code: [src/commands/in_stock_subscription/activate.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/in_stock_subscription/activate.ts)_
2374
2777
 
2375
- ### `commercelayer import:interrupt ID`
2778
+ ### `commercelayer in_stock_subscription:deactivate ID`
2376
2779
 
2377
- Send this attribute if you want to mark status as 'interrupted'.
2780
+ Send this attribute if you want to dactivate an active subscription.
2378
2781
 
2379
2782
  ```sh-session
2380
2783
  USAGE
2381
- $ commercelayer import:interrupt ID [-u [-j -p]]
2784
+ $ commercelayer in_stock_subscription:deactivate ID [-u [-j -p]]
2382
2785
 
2383
2786
  ARGUMENTS
2384
2787
  ID the unique id of the resource
@@ -2389,18 +2792,18 @@ FLAGS
2389
2792
  -u, --unformatted print JSON output without indentation
2390
2793
 
2391
2794
  DESCRIPTION
2392
- Send this attribute if you want to mark status as 'interrupted'.
2795
+ Send this attribute if you want to dactivate an active subscription.
2393
2796
  ```
2394
2797
 
2395
- _See code: [src/commands/import/interrupt.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/import/interrupt.ts)_
2798
+ _See code: [src/commands/in_stock_subscription/deactivate.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/in_stock_subscription/deactivate.ts)_
2396
2799
 
2397
- ### `commercelayer in_stock_subscription ID`
2800
+ ### `commercelayer klarna_gateway ID`
2398
2801
 
2399
- Execute an action on a resource of type in_stock_subscriptions.
2802
+ Execute an action on a resource of type klarna_gateways.
2400
2803
 
2401
2804
  ```sh-session
2402
2805
  USAGE
2403
- $ commercelayer in_stock_subscription ID [-u [-j -p]]
2806
+ $ commercelayer klarna_gateway ID [-u [-j -p]]
2404
2807
 
2405
2808
  ARGUMENTS
2406
2809
  ID the unique id of the resource
@@ -2411,18 +2814,18 @@ FLAGS
2411
2814
  -u, --unformatted print JSON output without indentation
2412
2815
 
2413
2816
  DESCRIPTION
2414
- execute an action on a resource of type in_stock_subscriptions
2817
+ execute an action on a resource of type klarna_gateways
2415
2818
  ```
2416
2819
 
2417
- _See code: [src/commands/in_stock_subscription/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/in_stock_subscription/index.ts)_
2820
+ _See code: [src/commands/klarna_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/klarna_gateway/index.ts)_
2418
2821
 
2419
- ### `commercelayer in_stock_subscription:activate ID`
2822
+ ### `commercelayer klarna_gateway:disable ID`
2420
2823
 
2421
- Send this attribute if you want to activate an inactive subscription.
2824
+ Send this attribute if you want to mark this resource as disabled.
2422
2825
 
2423
2826
  ```sh-session
2424
2827
  USAGE
2425
- $ commercelayer in_stock_subscription:activate ID [-u [-j -p]]
2828
+ $ commercelayer klarna_gateway:disable ID [-u [-j -p]]
2426
2829
 
2427
2830
  ARGUMENTS
2428
2831
  ID the unique id of the resource
@@ -2433,18 +2836,18 @@ FLAGS
2433
2836
  -u, --unformatted print JSON output without indentation
2434
2837
 
2435
2838
  DESCRIPTION
2436
- Send this attribute if you want to activate an inactive subscription.
2839
+ Send this attribute if you want to mark this resource as disabled.
2437
2840
  ```
2438
2841
 
2439
- _See code: [src/commands/in_stock_subscription/activate.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/in_stock_subscription/activate.ts)_
2842
+ _See code: [src/commands/klarna_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/klarna_gateway/disable.ts)_
2440
2843
 
2441
- ### `commercelayer in_stock_subscription:deactivate ID`
2844
+ ### `commercelayer klarna_gateway:enable ID`
2442
2845
 
2443
- Send this attribute if you want to dactivate an active subscription.
2846
+ Send this attribute if you want to mark this resource as enabled.
2444
2847
 
2445
2848
  ```sh-session
2446
2849
  USAGE
2447
- $ commercelayer in_stock_subscription:deactivate ID [-u [-j -p]]
2850
+ $ commercelayer klarna_gateway:enable ID [-u [-j -p]]
2448
2851
 
2449
2852
  ARGUMENTS
2450
2853
  ID the unique id of the resource
@@ -2455,10 +2858,10 @@ FLAGS
2455
2858
  -u, --unformatted print JSON output without indentation
2456
2859
 
2457
2860
  DESCRIPTION
2458
- Send this attribute if you want to dactivate an active subscription.
2861
+ Send this attribute if you want to mark this resource as enabled.
2459
2862
  ```
2460
2863
 
2461
- _See code: [src/commands/in_stock_subscription/deactivate.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/in_stock_subscription/deactivate.ts)_
2864
+ _See code: [src/commands/klarna_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/klarna_gateway/enable.ts)_
2462
2865
 
2463
2866
  ### `commercelayer klarna_payment ID`
2464
2867
 
@@ -2800,6 +3203,72 @@ DESCRIPTION
2800
3203
 
2801
3204
  _See code: [src/commands/link/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/link/enable.ts)_
2802
3205
 
3206
+ ### `commercelayer manual_gateway ID`
3207
+
3208
+ Execute an action on a resource of type manual_gateways.
3209
+
3210
+ ```sh-session
3211
+ USAGE
3212
+ $ commercelayer manual_gateway ID [-u [-j -p]]
3213
+
3214
+ ARGUMENTS
3215
+ ID the unique id of the resource
3216
+
3217
+ FLAGS
3218
+ -j, --json print result in JSON format
3219
+ -p, --print print out the modified resource
3220
+ -u, --unformatted print JSON output without indentation
3221
+
3222
+ DESCRIPTION
3223
+ execute an action on a resource of type manual_gateways
3224
+ ```
3225
+
3226
+ _See code: [src/commands/manual_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/manual_gateway/index.ts)_
3227
+
3228
+ ### `commercelayer manual_gateway:disable ID`
3229
+
3230
+ Send this attribute if you want to mark this resource as disabled.
3231
+
3232
+ ```sh-session
3233
+ USAGE
3234
+ $ commercelayer manual_gateway:disable ID [-u [-j -p]]
3235
+
3236
+ ARGUMENTS
3237
+ ID the unique id of the resource
3238
+
3239
+ FLAGS
3240
+ -j, --json print result in JSON format
3241
+ -p, --print print out the modified resource
3242
+ -u, --unformatted print JSON output without indentation
3243
+
3244
+ DESCRIPTION
3245
+ Send this attribute if you want to mark this resource as disabled.
3246
+ ```
3247
+
3248
+ _See code: [src/commands/manual_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/manual_gateway/disable.ts)_
3249
+
3250
+ ### `commercelayer manual_gateway:enable ID`
3251
+
3252
+ Send this attribute if you want to mark this resource as enabled.
3253
+
3254
+ ```sh-session
3255
+ USAGE
3256
+ $ commercelayer manual_gateway:enable ID [-u [-j -p]]
3257
+
3258
+ ARGUMENTS
3259
+ ID the unique id of the resource
3260
+
3261
+ FLAGS
3262
+ -j, --json print result in JSON format
3263
+ -p, --print print out the modified resource
3264
+ -u, --unformatted print JSON output without indentation
3265
+
3266
+ DESCRIPTION
3267
+ Send this attribute if you want to mark this resource as enabled.
3268
+ ```
3269
+
3270
+ _See code: [src/commands/manual_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/manual_gateway/enable.ts)_
3271
+
2803
3272
  ### `commercelayer market ID`
2804
3273
 
2805
3274
  Execute an action on a resource of type markets.
@@ -3855,6 +4324,72 @@ DESCRIPTION
3855
4324
 
3856
4325
  _See code: [src/commands/payment_method/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/payment_method/enable.ts)_
3857
4326
 
4327
+ ### `commercelayer paypal_gateway ID`
4328
+
4329
+ Execute an action on a resource of type paypal_gateways.
4330
+
4331
+ ```sh-session
4332
+ USAGE
4333
+ $ commercelayer paypal_gateway ID [-u [-j -p]]
4334
+
4335
+ ARGUMENTS
4336
+ ID the unique id of the resource
4337
+
4338
+ FLAGS
4339
+ -j, --json print result in JSON format
4340
+ -p, --print print out the modified resource
4341
+ -u, --unformatted print JSON output without indentation
4342
+
4343
+ DESCRIPTION
4344
+ execute an action on a resource of type paypal_gateways
4345
+ ```
4346
+
4347
+ _See code: [src/commands/paypal_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/paypal_gateway/index.ts)_
4348
+
4349
+ ### `commercelayer paypal_gateway:disable ID`
4350
+
4351
+ Send this attribute if you want to mark this resource as disabled.
4352
+
4353
+ ```sh-session
4354
+ USAGE
4355
+ $ commercelayer paypal_gateway:disable ID [-u [-j -p]]
4356
+
4357
+ ARGUMENTS
4358
+ ID the unique id of the resource
4359
+
4360
+ FLAGS
4361
+ -j, --json print result in JSON format
4362
+ -p, --print print out the modified resource
4363
+ -u, --unformatted print JSON output without indentation
4364
+
4365
+ DESCRIPTION
4366
+ Send this attribute if you want to mark this resource as disabled.
4367
+ ```
4368
+
4369
+ _See code: [src/commands/paypal_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/paypal_gateway/disable.ts)_
4370
+
4371
+ ### `commercelayer paypal_gateway:enable ID`
4372
+
4373
+ Send this attribute if you want to mark this resource as enabled.
4374
+
4375
+ ```sh-session
4376
+ USAGE
4377
+ $ commercelayer paypal_gateway:enable ID [-u [-j -p]]
4378
+
4379
+ ARGUMENTS
4380
+ ID the unique id of the resource
4381
+
4382
+ FLAGS
4383
+ -j, --json print result in JSON format
4384
+ -p, --print print out the modified resource
4385
+ -u, --unformatted print JSON output without indentation
4386
+
4387
+ DESCRIPTION
4388
+ Send this attribute if you want to mark this resource as enabled.
4389
+ ```
4390
+
4391
+ _See code: [src/commands/paypal_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/paypal_gateway/enable.ts)_
4392
+
3858
4393
  ### `commercelayer percentage_discount_promotion ID`
3859
4394
 
3860
4395
  Execute an action on a resource of type percentage_discount_promotions.
@@ -4432,6 +4967,72 @@ DESCRIPTION
4432
4967
 
4433
4968
  _See code: [src/commands/return_line_item/restock.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/return_line_item/restock.ts)_
4434
4969
 
4970
+ ### `commercelayer satispay_gateway ID`
4971
+
4972
+ Execute an action on a resource of type satispay_gateways.
4973
+
4974
+ ```sh-session
4975
+ USAGE
4976
+ $ commercelayer satispay_gateway ID [-u [-j -p]]
4977
+
4978
+ ARGUMENTS
4979
+ ID the unique id of the resource
4980
+
4981
+ FLAGS
4982
+ -j, --json print result in JSON format
4983
+ -p, --print print out the modified resource
4984
+ -u, --unformatted print JSON output without indentation
4985
+
4986
+ DESCRIPTION
4987
+ execute an action on a resource of type satispay_gateways
4988
+ ```
4989
+
4990
+ _See code: [src/commands/satispay_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/satispay_gateway/index.ts)_
4991
+
4992
+ ### `commercelayer satispay_gateway:disable ID`
4993
+
4994
+ Send this attribute if you want to mark this resource as disabled.
4995
+
4996
+ ```sh-session
4997
+ USAGE
4998
+ $ commercelayer satispay_gateway:disable ID [-u [-j -p]]
4999
+
5000
+ ARGUMENTS
5001
+ ID the unique id of the resource
5002
+
5003
+ FLAGS
5004
+ -j, --json print result in JSON format
5005
+ -p, --print print out the modified resource
5006
+ -u, --unformatted print JSON output without indentation
5007
+
5008
+ DESCRIPTION
5009
+ Send this attribute if you want to mark this resource as disabled.
5010
+ ```
5011
+
5012
+ _See code: [src/commands/satispay_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/satispay_gateway/disable.ts)_
5013
+
5014
+ ### `commercelayer satispay_gateway:enable ID`
5015
+
5016
+ Send this attribute if you want to mark this resource as enabled.
5017
+
5018
+ ```sh-session
5019
+ USAGE
5020
+ $ commercelayer satispay_gateway:enable ID [-u [-j -p]]
5021
+
5022
+ ARGUMENTS
5023
+ ID the unique id of the resource
5024
+
5025
+ FLAGS
5026
+ -j, --json print result in JSON format
5027
+ -p, --print print out the modified resource
5028
+ -u, --unformatted print JSON output without indentation
5029
+
5030
+ DESCRIPTION
5031
+ Send this attribute if you want to mark this resource as enabled.
5032
+ ```
5033
+
5034
+ _See code: [src/commands/satispay_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/satispay_gateway/enable.ts)_
5035
+
4435
5036
  ### `commercelayer satispay_payment ID`
4436
5037
 
4437
5038
  Execute an action on a resource of type satispay_payments.
@@ -5393,6 +5994,72 @@ DESCRIPTION
5393
5994
 
5394
5995
  _See code: [src/commands/stock_transfer/upcoming.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/stock_transfer/upcoming.ts)_
5395
5996
 
5997
+ ### `commercelayer stripe_gateway ID`
5998
+
5999
+ Execute an action on a resource of type stripe_gateways.
6000
+
6001
+ ```sh-session
6002
+ USAGE
6003
+ $ commercelayer stripe_gateway ID [-u [-j -p]]
6004
+
6005
+ ARGUMENTS
6006
+ ID the unique id of the resource
6007
+
6008
+ FLAGS
6009
+ -j, --json print result in JSON format
6010
+ -p, --print print out the modified resource
6011
+ -u, --unformatted print JSON output without indentation
6012
+
6013
+ DESCRIPTION
6014
+ execute an action on a resource of type stripe_gateways
6015
+ ```
6016
+
6017
+ _See code: [src/commands/stripe_gateway/index.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/stripe_gateway/index.ts)_
6018
+
6019
+ ### `commercelayer stripe_gateway:disable ID`
6020
+
6021
+ Send this attribute if you want to mark this resource as disabled.
6022
+
6023
+ ```sh-session
6024
+ USAGE
6025
+ $ commercelayer stripe_gateway:disable ID [-u [-j -p]]
6026
+
6027
+ ARGUMENTS
6028
+ ID the unique id of the resource
6029
+
6030
+ FLAGS
6031
+ -j, --json print result in JSON format
6032
+ -p, --print print out the modified resource
6033
+ -u, --unformatted print JSON output without indentation
6034
+
6035
+ DESCRIPTION
6036
+ Send this attribute if you want to mark this resource as disabled.
6037
+ ```
6038
+
6039
+ _See code: [src/commands/stripe_gateway/disable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/stripe_gateway/disable.ts)_
6040
+
6041
+ ### `commercelayer stripe_gateway:enable ID`
6042
+
6043
+ Send this attribute if you want to mark this resource as enabled.
6044
+
6045
+ ```sh-session
6046
+ USAGE
6047
+ $ commercelayer stripe_gateway:enable ID [-u [-j -p]]
6048
+
6049
+ ARGUMENTS
6050
+ ID the unique id of the resource
6051
+
6052
+ FLAGS
6053
+ -j, --json print result in JSON format
6054
+ -p, --print print out the modified resource
6055
+ -u, --unformatted print JSON output without indentation
6056
+
6057
+ DESCRIPTION
6058
+ Send this attribute if you want to mark this resource as enabled.
6059
+ ```
6060
+
6061
+ _See code: [src/commands/stripe_gateway/enable.ts](https://github.com/commercelayer/commercelayer-cli-plugin-triggers/blob/main/src/commands/stripe_gateway/enable.ts)_
6062
+
5396
6063
  ### `commercelayer stripe_payment ID`
5397
6064
 
5398
6065
  Execute an action on a resource of type stripe_payments.