@commercelayer/cli-plugin-triggers 4.7.1 → 4.9.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 (43) hide show
  1. package/README.md +263 -50
  2. package/lib/commands/authorization/cancel.d.ts +9 -0
  3. package/lib/commands/authorization/cancel.js +22 -0
  4. package/lib/commands/capture/cancel.d.ts +9 -0
  5. package/lib/commands/capture/cancel.js +22 -0
  6. package/lib/commands/flex_promotion/disable.d.ts +9 -0
  7. package/lib/commands/flex_promotion/disable.js +22 -0
  8. package/lib/commands/flex_promotion/enable.d.ts +9 -0
  9. package/lib/commands/flex_promotion/enable.js +22 -0
  10. package/lib/commands/flex_promotion/index.d.ts +9 -0
  11. package/lib/commands/flex_promotion/index.js +40 -0
  12. package/lib/commands/refund/forward.d.ts +9 -0
  13. package/lib/commands/refund/forward.js +22 -0
  14. package/lib/commands/refund/index.d.ts +9 -0
  15. package/lib/commands/refund/index.js +40 -0
  16. package/lib/commands/void/forward.d.ts +9 -0
  17. package/lib/commands/void/forward.js +22 -0
  18. package/lib/commands/void/index.d.ts +9 -0
  19. package/lib/commands/void/index.js +40 -0
  20. package/lib/index.js +0 -1
  21. package/lib/triggers/authorizations.d.ts +1 -1
  22. package/lib/triggers/authorizations.js +5 -0
  23. package/lib/triggers/captures.d.ts +1 -1
  24. package/lib/triggers/captures.js +5 -0
  25. package/lib/triggers/events.js +1 -1
  26. package/lib/triggers/external_gateways.js +1 -1
  27. package/lib/triggers/external_promotions.js +1 -1
  28. package/lib/triggers/external_tax_calculators.js +1 -1
  29. package/lib/triggers/flex_promotions.d.ts +3 -0
  30. package/lib/triggers/flex_promotions.js +15 -0
  31. package/lib/triggers/line_items.js +2 -2
  32. package/lib/triggers/orders.js +9 -9
  33. package/lib/triggers/refunds.d.ts +3 -0
  34. package/lib/triggers/refunds.js +10 -0
  35. package/lib/triggers/shipments.js +5 -5
  36. package/lib/triggers/shipping_methods.js +1 -1
  37. package/lib/triggers/stock_items.js +1 -1
  38. package/lib/triggers/stock_line_items.js +3 -3
  39. package/lib/triggers/voids.d.ts +3 -0
  40. package/lib/triggers/voids.js +10 -0
  41. package/lib/triggers/webhooks.js +1 -1
  42. package/oclif.manifest.json +941 -149
  43. package/package.json +14 -14
@@ -196,7 +196,7 @@
196
196
  "index.js"
197
197
  ]
198
198
  },
199
- "authorization:capture": {
199
+ "axerve_payment": {
200
200
  "aliases": [],
201
201
  "args": {
202
202
  "id": {
@@ -205,7 +205,7 @@
205
205
  "required": true
206
206
  }
207
207
  },
208
- "description": "Send this attribute if you want to create a capture for this authorization.",
208
+ "description": "execute an action on a resource of type axerve_payments",
209
209
  "flags": {
210
210
  "organization": {
211
211
  "char": "o",
@@ -270,7 +270,7 @@
270
270
  },
271
271
  "hasDynamicHelp": false,
272
272
  "hiddenAliases": [],
273
- "id": "authorization:capture",
273
+ "id": "axerve_payment",
274
274
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
275
275
  "pluginName": "@commercelayer/cli-plugin-triggers",
276
276
  "pluginType": "core",
@@ -280,11 +280,11 @@
280
280
  "relativePath": [
281
281
  "lib",
282
282
  "commands",
283
- "authorization",
284
- "capture.js"
283
+ "axerve_payment",
284
+ "index.js"
285
285
  ]
286
286
  },
287
- "authorization:capture_amount_cents": {
287
+ "axerve_payment:update": {
288
288
  "aliases": [],
289
289
  "args": {
290
290
  "id": {
@@ -293,7 +293,7 @@
293
293
  "required": true
294
294
  }
295
295
  },
296
- "description": "Send this attribute as a value in cents if you want to overwrite the amount to be captured.",
296
+ "description": "Send this attribute if you want to update the payment with fresh order data.",
297
297
  "flags": {
298
298
  "organization": {
299
299
  "char": "o",
@@ -358,7 +358,95 @@
358
358
  },
359
359
  "hasDynamicHelp": false,
360
360
  "hiddenAliases": [],
361
- "id": "authorization:capture_amount_cents",
361
+ "id": "axerve_payment:update",
362
+ "pluginAlias": "@commercelayer/cli-plugin-triggers",
363
+ "pluginName": "@commercelayer/cli-plugin-triggers",
364
+ "pluginType": "core",
365
+ "strict": true,
366
+ "enableJsonFlag": false,
367
+ "isESM": false,
368
+ "relativePath": [
369
+ "lib",
370
+ "commands",
371
+ "axerve_payment",
372
+ "update.js"
373
+ ]
374
+ },
375
+ "authorization:cancel": {
376
+ "aliases": [],
377
+ "args": {
378
+ "id": {
379
+ "description": "the unique id of the resource",
380
+ "name": "id",
381
+ "required": true
382
+ }
383
+ },
384
+ "description": "Send this attribute if you want to void a succeeded authorization of a pending order (which is left unpaid).",
385
+ "flags": {
386
+ "organization": {
387
+ "char": "o",
388
+ "description": "the slug of your organization",
389
+ "env": "CL_CLI_ORGANIZATION",
390
+ "hidden": true,
391
+ "name": "organization",
392
+ "required": true,
393
+ "hasDynamicHelp": false,
394
+ "multiple": false,
395
+ "type": "option"
396
+ },
397
+ "domain": {
398
+ "char": "d",
399
+ "dependsOn": [
400
+ "organization"
401
+ ],
402
+ "env": "CL_CLI_DOMAIN",
403
+ "hidden": true,
404
+ "name": "domain",
405
+ "required": false,
406
+ "hasDynamicHelp": false,
407
+ "multiple": false,
408
+ "type": "option"
409
+ },
410
+ "accessToken": {
411
+ "env": "CL_CLI_ACCESS_TOKEN",
412
+ "hidden": true,
413
+ "name": "accessToken",
414
+ "required": true,
415
+ "hasDynamicHelp": false,
416
+ "multiple": false,
417
+ "type": "option"
418
+ },
419
+ "print": {
420
+ "char": "p",
421
+ "description": "print out the modified resource",
422
+ "name": "print",
423
+ "allowNo": false,
424
+ "type": "boolean"
425
+ },
426
+ "json": {
427
+ "char": "j",
428
+ "dependsOn": [
429
+ "print"
430
+ ],
431
+ "description": "print result in JSON format",
432
+ "name": "json",
433
+ "allowNo": false,
434
+ "type": "boolean"
435
+ },
436
+ "unformatted": {
437
+ "char": "u",
438
+ "dependsOn": [
439
+ "json"
440
+ ],
441
+ "description": "print JSON output without indentation",
442
+ "name": "unformatted",
443
+ "allowNo": false,
444
+ "type": "boolean"
445
+ }
446
+ },
447
+ "hasDynamicHelp": false,
448
+ "hiddenAliases": [],
449
+ "id": "authorization:cancel",
362
450
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
363
451
  "pluginName": "@commercelayer/cli-plugin-triggers",
364
452
  "pluginType": "core",
@@ -369,10 +457,10 @@
369
457
  "lib",
370
458
  "commands",
371
459
  "authorization",
372
- "capture_amount_cents.js"
460
+ "cancel.js"
373
461
  ]
374
462
  },
375
- "authorization:forward": {
463
+ "authorization:capture": {
376
464
  "aliases": [],
377
465
  "args": {
378
466
  "id": {
@@ -381,7 +469,7 @@
381
469
  "required": true
382
470
  }
383
471
  },
384
- "description": "Send this attribute if you want to forward a stuck transaction to succeeded and update associated order states accordingly.",
472
+ "description": "Send this attribute if you want to create a capture for this authorization.",
385
473
  "flags": {
386
474
  "organization": {
387
475
  "char": "o",
@@ -446,7 +534,7 @@
446
534
  },
447
535
  "hasDynamicHelp": false,
448
536
  "hiddenAliases": [],
449
- "id": "authorization:forward",
537
+ "id": "authorization:capture",
450
538
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
451
539
  "pluginName": "@commercelayer/cli-plugin-triggers",
452
540
  "pluginType": "core",
@@ -457,10 +545,10 @@
457
545
  "lib",
458
546
  "commands",
459
547
  "authorization",
460
- "forward.js"
548
+ "capture.js"
461
549
  ]
462
550
  },
463
- "authorization": {
551
+ "authorization:capture_amount_cents": {
464
552
  "aliases": [],
465
553
  "args": {
466
554
  "id": {
@@ -469,7 +557,7 @@
469
557
  "required": true
470
558
  }
471
559
  },
472
- "description": "execute an action on a resource of type authorizations",
560
+ "description": "Send this attribute as a value in cents if you want to overwrite the amount to be captured.",
473
561
  "flags": {
474
562
  "organization": {
475
563
  "char": "o",
@@ -534,7 +622,7 @@
534
622
  },
535
623
  "hasDynamicHelp": false,
536
624
  "hiddenAliases": [],
537
- "id": "authorization",
625
+ "id": "authorization:capture_amount_cents",
538
626
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
539
627
  "pluginName": "@commercelayer/cli-plugin-triggers",
540
628
  "pluginType": "core",
@@ -545,10 +633,10 @@
545
633
  "lib",
546
634
  "commands",
547
635
  "authorization",
548
- "index.js"
636
+ "capture_amount_cents.js"
549
637
  ]
550
638
  },
551
- "authorization:void": {
639
+ "authorization:forward": {
552
640
  "aliases": [],
553
641
  "args": {
554
642
  "id": {
@@ -557,7 +645,7 @@
557
645
  "required": true
558
646
  }
559
647
  },
560
- "description": "Send this attribute if you want to create a void for this authorization.",
648
+ "description": "Send this attribute if you want to forward a stuck transaction to succeeded and update associated order states accordingly.",
561
649
  "flags": {
562
650
  "organization": {
563
651
  "char": "o",
@@ -622,7 +710,7 @@
622
710
  },
623
711
  "hasDynamicHelp": false,
624
712
  "hiddenAliases": [],
625
- "id": "authorization:void",
713
+ "id": "authorization:forward",
626
714
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
627
715
  "pluginName": "@commercelayer/cli-plugin-triggers",
628
716
  "pluginType": "core",
@@ -633,10 +721,10 @@
633
721
  "lib",
634
722
  "commands",
635
723
  "authorization",
636
- "void.js"
724
+ "forward.js"
637
725
  ]
638
726
  },
639
- "axerve_payment": {
727
+ "authorization": {
640
728
  "aliases": [],
641
729
  "args": {
642
730
  "id": {
@@ -645,7 +733,7 @@
645
733
  "required": true
646
734
  }
647
735
  },
648
- "description": "execute an action on a resource of type axerve_payments",
736
+ "description": "execute an action on a resource of type authorizations",
649
737
  "flags": {
650
738
  "organization": {
651
739
  "char": "o",
@@ -710,7 +798,7 @@
710
798
  },
711
799
  "hasDynamicHelp": false,
712
800
  "hiddenAliases": [],
713
- "id": "axerve_payment",
801
+ "id": "authorization",
714
802
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
715
803
  "pluginName": "@commercelayer/cli-plugin-triggers",
716
804
  "pluginType": "core",
@@ -720,11 +808,11 @@
720
808
  "relativePath": [
721
809
  "lib",
722
810
  "commands",
723
- "axerve_payment",
811
+ "authorization",
724
812
  "index.js"
725
813
  ]
726
814
  },
727
- "axerve_payment:update": {
815
+ "authorization:void": {
728
816
  "aliases": [],
729
817
  "args": {
730
818
  "id": {
@@ -733,7 +821,7 @@
733
821
  "required": true
734
822
  }
735
823
  },
736
- "description": "Send this attribute if you want to update the payment with fresh order data.",
824
+ "description": "Send this attribute if you want to create a void for this authorization.",
737
825
  "flags": {
738
826
  "organization": {
739
827
  "char": "o",
@@ -798,7 +886,7 @@
798
886
  },
799
887
  "hasDynamicHelp": false,
800
888
  "hiddenAliases": [],
801
- "id": "axerve_payment:update",
889
+ "id": "authorization:void",
802
890
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
803
891
  "pluginName": "@commercelayer/cli-plugin-triggers",
804
892
  "pluginType": "core",
@@ -808,8 +896,8 @@
808
896
  "relativePath": [
809
897
  "lib",
810
898
  "commands",
811
- "axerve_payment",
812
- "update.js"
899
+ "authorization",
900
+ "void.js"
813
901
  ]
814
902
  },
815
903
  "bundle:compute_compare_at_amount": {
@@ -1340,6 +1428,94 @@
1340
1428
  "index.js"
1341
1429
  ]
1342
1430
  },
1431
+ "capture:cancel": {
1432
+ "aliases": [],
1433
+ "args": {
1434
+ "id": {
1435
+ "description": "the unique id of the resource",
1436
+ "name": "id",
1437
+ "required": true
1438
+ }
1439
+ },
1440
+ "description": "Send this attribute if you want to refund a succeeded capture of a pending order (which is left unpaid).",
1441
+ "flags": {
1442
+ "organization": {
1443
+ "char": "o",
1444
+ "description": "the slug of your organization",
1445
+ "env": "CL_CLI_ORGANIZATION",
1446
+ "hidden": true,
1447
+ "name": "organization",
1448
+ "required": true,
1449
+ "hasDynamicHelp": false,
1450
+ "multiple": false,
1451
+ "type": "option"
1452
+ },
1453
+ "domain": {
1454
+ "char": "d",
1455
+ "dependsOn": [
1456
+ "organization"
1457
+ ],
1458
+ "env": "CL_CLI_DOMAIN",
1459
+ "hidden": true,
1460
+ "name": "domain",
1461
+ "required": false,
1462
+ "hasDynamicHelp": false,
1463
+ "multiple": false,
1464
+ "type": "option"
1465
+ },
1466
+ "accessToken": {
1467
+ "env": "CL_CLI_ACCESS_TOKEN",
1468
+ "hidden": true,
1469
+ "name": "accessToken",
1470
+ "required": true,
1471
+ "hasDynamicHelp": false,
1472
+ "multiple": false,
1473
+ "type": "option"
1474
+ },
1475
+ "print": {
1476
+ "char": "p",
1477
+ "description": "print out the modified resource",
1478
+ "name": "print",
1479
+ "allowNo": false,
1480
+ "type": "boolean"
1481
+ },
1482
+ "json": {
1483
+ "char": "j",
1484
+ "dependsOn": [
1485
+ "print"
1486
+ ],
1487
+ "description": "print result in JSON format",
1488
+ "name": "json",
1489
+ "allowNo": false,
1490
+ "type": "boolean"
1491
+ },
1492
+ "unformatted": {
1493
+ "char": "u",
1494
+ "dependsOn": [
1495
+ "json"
1496
+ ],
1497
+ "description": "print JSON output without indentation",
1498
+ "name": "unformatted",
1499
+ "allowNo": false,
1500
+ "type": "boolean"
1501
+ }
1502
+ },
1503
+ "hasDynamicHelp": false,
1504
+ "hiddenAliases": [],
1505
+ "id": "capture:cancel",
1506
+ "pluginAlias": "@commercelayer/cli-plugin-triggers",
1507
+ "pluginName": "@commercelayer/cli-plugin-triggers",
1508
+ "pluginType": "core",
1509
+ "strict": true,
1510
+ "enableJsonFlag": false,
1511
+ "isESM": false,
1512
+ "relativePath": [
1513
+ "lib",
1514
+ "commands",
1515
+ "capture",
1516
+ "cancel.js"
1517
+ ]
1518
+ },
1343
1519
  "capture:forward": {
1344
1520
  "aliases": [],
1345
1521
  "args": {
@@ -2229,7 +2405,7 @@
2229
2405
  "required": true
2230
2406
  }
2231
2407
  },
2232
- "description": "Send this attribute if you want to force webhooks execution for this event.",
2408
+ "description": "Send this attribute if you want to force webhooks execution for this event. Cannot be passed by sales channels.",
2233
2409
  "flags": {
2234
2410
  "organization": {
2235
2411
  "char": "o",
@@ -2405,7 +2581,7 @@
2405
2581
  "required": true
2406
2582
  }
2407
2583
  },
2408
- "description": "Send this attribute if you want to reset the circuit breaker associated to this resource to 'closed' state and zero failures count.",
2584
+ "description": "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.",
2409
2585
  "flags": {
2410
2586
  "organization": {
2411
2587
  "char": "o",
@@ -2493,7 +2669,271 @@
2493
2669
  "required": true
2494
2670
  }
2495
2671
  },
2496
- "description": "Send this attribute if you want to mark this resource as disabled.",
2672
+ "description": "Send this attribute if you want to mark this resource as disabled.",
2673
+ "flags": {
2674
+ "organization": {
2675
+ "char": "o",
2676
+ "description": "the slug of your organization",
2677
+ "env": "CL_CLI_ORGANIZATION",
2678
+ "hidden": true,
2679
+ "name": "organization",
2680
+ "required": true,
2681
+ "hasDynamicHelp": false,
2682
+ "multiple": false,
2683
+ "type": "option"
2684
+ },
2685
+ "domain": {
2686
+ "char": "d",
2687
+ "dependsOn": [
2688
+ "organization"
2689
+ ],
2690
+ "env": "CL_CLI_DOMAIN",
2691
+ "hidden": true,
2692
+ "name": "domain",
2693
+ "required": false,
2694
+ "hasDynamicHelp": false,
2695
+ "multiple": false,
2696
+ "type": "option"
2697
+ },
2698
+ "accessToken": {
2699
+ "env": "CL_CLI_ACCESS_TOKEN",
2700
+ "hidden": true,
2701
+ "name": "accessToken",
2702
+ "required": true,
2703
+ "hasDynamicHelp": false,
2704
+ "multiple": false,
2705
+ "type": "option"
2706
+ },
2707
+ "print": {
2708
+ "char": "p",
2709
+ "description": "print out the modified resource",
2710
+ "name": "print",
2711
+ "allowNo": false,
2712
+ "type": "boolean"
2713
+ },
2714
+ "json": {
2715
+ "char": "j",
2716
+ "dependsOn": [
2717
+ "print"
2718
+ ],
2719
+ "description": "print result in JSON format",
2720
+ "name": "json",
2721
+ "allowNo": false,
2722
+ "type": "boolean"
2723
+ },
2724
+ "unformatted": {
2725
+ "char": "u",
2726
+ "dependsOn": [
2727
+ "json"
2728
+ ],
2729
+ "description": "print JSON output without indentation",
2730
+ "name": "unformatted",
2731
+ "allowNo": false,
2732
+ "type": "boolean"
2733
+ }
2734
+ },
2735
+ "hasDynamicHelp": false,
2736
+ "hiddenAliases": [],
2737
+ "id": "external_promotion:disable",
2738
+ "pluginAlias": "@commercelayer/cli-plugin-triggers",
2739
+ "pluginName": "@commercelayer/cli-plugin-triggers",
2740
+ "pluginType": "core",
2741
+ "strict": true,
2742
+ "enableJsonFlag": false,
2743
+ "isESM": false,
2744
+ "relativePath": [
2745
+ "lib",
2746
+ "commands",
2747
+ "external_promotion",
2748
+ "disable.js"
2749
+ ]
2750
+ },
2751
+ "external_promotion:enable": {
2752
+ "aliases": [],
2753
+ "args": {
2754
+ "id": {
2755
+ "description": "the unique id of the resource",
2756
+ "name": "id",
2757
+ "required": true
2758
+ }
2759
+ },
2760
+ "description": "Send this attribute if you want to mark this resource as enabled.",
2761
+ "flags": {
2762
+ "organization": {
2763
+ "char": "o",
2764
+ "description": "the slug of your organization",
2765
+ "env": "CL_CLI_ORGANIZATION",
2766
+ "hidden": true,
2767
+ "name": "organization",
2768
+ "required": true,
2769
+ "hasDynamicHelp": false,
2770
+ "multiple": false,
2771
+ "type": "option"
2772
+ },
2773
+ "domain": {
2774
+ "char": "d",
2775
+ "dependsOn": [
2776
+ "organization"
2777
+ ],
2778
+ "env": "CL_CLI_DOMAIN",
2779
+ "hidden": true,
2780
+ "name": "domain",
2781
+ "required": false,
2782
+ "hasDynamicHelp": false,
2783
+ "multiple": false,
2784
+ "type": "option"
2785
+ },
2786
+ "accessToken": {
2787
+ "env": "CL_CLI_ACCESS_TOKEN",
2788
+ "hidden": true,
2789
+ "name": "accessToken",
2790
+ "required": true,
2791
+ "hasDynamicHelp": false,
2792
+ "multiple": false,
2793
+ "type": "option"
2794
+ },
2795
+ "print": {
2796
+ "char": "p",
2797
+ "description": "print out the modified resource",
2798
+ "name": "print",
2799
+ "allowNo": false,
2800
+ "type": "boolean"
2801
+ },
2802
+ "json": {
2803
+ "char": "j",
2804
+ "dependsOn": [
2805
+ "print"
2806
+ ],
2807
+ "description": "print result in JSON format",
2808
+ "name": "json",
2809
+ "allowNo": false,
2810
+ "type": "boolean"
2811
+ },
2812
+ "unformatted": {
2813
+ "char": "u",
2814
+ "dependsOn": [
2815
+ "json"
2816
+ ],
2817
+ "description": "print JSON output without indentation",
2818
+ "name": "unformatted",
2819
+ "allowNo": false,
2820
+ "type": "boolean"
2821
+ }
2822
+ },
2823
+ "hasDynamicHelp": false,
2824
+ "hiddenAliases": [],
2825
+ "id": "external_promotion:enable",
2826
+ "pluginAlias": "@commercelayer/cli-plugin-triggers",
2827
+ "pluginName": "@commercelayer/cli-plugin-triggers",
2828
+ "pluginType": "core",
2829
+ "strict": true,
2830
+ "enableJsonFlag": false,
2831
+ "isESM": false,
2832
+ "relativePath": [
2833
+ "lib",
2834
+ "commands",
2835
+ "external_promotion",
2836
+ "enable.js"
2837
+ ]
2838
+ },
2839
+ "external_promotion": {
2840
+ "aliases": [],
2841
+ "args": {
2842
+ "id": {
2843
+ "description": "the unique id of the resource",
2844
+ "name": "id",
2845
+ "required": true
2846
+ }
2847
+ },
2848
+ "description": "execute an action on a resource of type external_promotions",
2849
+ "flags": {
2850
+ "organization": {
2851
+ "char": "o",
2852
+ "description": "the slug of your organization",
2853
+ "env": "CL_CLI_ORGANIZATION",
2854
+ "hidden": true,
2855
+ "name": "organization",
2856
+ "required": true,
2857
+ "hasDynamicHelp": false,
2858
+ "multiple": false,
2859
+ "type": "option"
2860
+ },
2861
+ "domain": {
2862
+ "char": "d",
2863
+ "dependsOn": [
2864
+ "organization"
2865
+ ],
2866
+ "env": "CL_CLI_DOMAIN",
2867
+ "hidden": true,
2868
+ "name": "domain",
2869
+ "required": false,
2870
+ "hasDynamicHelp": false,
2871
+ "multiple": false,
2872
+ "type": "option"
2873
+ },
2874
+ "accessToken": {
2875
+ "env": "CL_CLI_ACCESS_TOKEN",
2876
+ "hidden": true,
2877
+ "name": "accessToken",
2878
+ "required": true,
2879
+ "hasDynamicHelp": false,
2880
+ "multiple": false,
2881
+ "type": "option"
2882
+ },
2883
+ "print": {
2884
+ "char": "p",
2885
+ "description": "print out the modified resource",
2886
+ "name": "print",
2887
+ "allowNo": false,
2888
+ "type": "boolean"
2889
+ },
2890
+ "json": {
2891
+ "char": "j",
2892
+ "dependsOn": [
2893
+ "print"
2894
+ ],
2895
+ "description": "print result in JSON format",
2896
+ "name": "json",
2897
+ "allowNo": false,
2898
+ "type": "boolean"
2899
+ },
2900
+ "unformatted": {
2901
+ "char": "u",
2902
+ "dependsOn": [
2903
+ "json"
2904
+ ],
2905
+ "description": "print JSON output without indentation",
2906
+ "name": "unformatted",
2907
+ "allowNo": false,
2908
+ "type": "boolean"
2909
+ }
2910
+ },
2911
+ "hasDynamicHelp": false,
2912
+ "hiddenAliases": [],
2913
+ "id": "external_promotion",
2914
+ "pluginAlias": "@commercelayer/cli-plugin-triggers",
2915
+ "pluginName": "@commercelayer/cli-plugin-triggers",
2916
+ "pluginType": "core",
2917
+ "strict": true,
2918
+ "enableJsonFlag": false,
2919
+ "isESM": false,
2920
+ "relativePath": [
2921
+ "lib",
2922
+ "commands",
2923
+ "external_promotion",
2924
+ "index.js"
2925
+ ]
2926
+ },
2927
+ "external_promotion:reset_circuit": {
2928
+ "aliases": [],
2929
+ "args": {
2930
+ "id": {
2931
+ "description": "the unique id of the resource",
2932
+ "name": "id",
2933
+ "required": true
2934
+ }
2935
+ },
2936
+ "description": "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.",
2497
2937
  "flags": {
2498
2938
  "organization": {
2499
2939
  "char": "o",
@@ -2558,7 +2998,7 @@
2558
2998
  },
2559
2999
  "hasDynamicHelp": false,
2560
3000
  "hiddenAliases": [],
2561
- "id": "external_promotion:disable",
3001
+ "id": "external_promotion:reset_circuit",
2562
3002
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
2563
3003
  "pluginName": "@commercelayer/cli-plugin-triggers",
2564
3004
  "pluginType": "core",
@@ -2569,10 +3009,10 @@
2569
3009
  "lib",
2570
3010
  "commands",
2571
3011
  "external_promotion",
2572
- "disable.js"
3012
+ "reset_circuit.js"
2573
3013
  ]
2574
3014
  },
2575
- "external_promotion:enable": {
3015
+ "external_tax_calculator": {
2576
3016
  "aliases": [],
2577
3017
  "args": {
2578
3018
  "id": {
@@ -2581,7 +3021,7 @@
2581
3021
  "required": true
2582
3022
  }
2583
3023
  },
2584
- "description": "Send this attribute if you want to mark this resource as enabled.",
3024
+ "description": "execute an action on a resource of type external_tax_calculators",
2585
3025
  "flags": {
2586
3026
  "organization": {
2587
3027
  "char": "o",
@@ -2646,7 +3086,7 @@
2646
3086
  },
2647
3087
  "hasDynamicHelp": false,
2648
3088
  "hiddenAliases": [],
2649
- "id": "external_promotion:enable",
3089
+ "id": "external_tax_calculator",
2650
3090
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
2651
3091
  "pluginName": "@commercelayer/cli-plugin-triggers",
2652
3092
  "pluginType": "core",
@@ -2656,11 +3096,11 @@
2656
3096
  "relativePath": [
2657
3097
  "lib",
2658
3098
  "commands",
2659
- "external_promotion",
2660
- "enable.js"
3099
+ "external_tax_calculator",
3100
+ "index.js"
2661
3101
  ]
2662
3102
  },
2663
- "external_promotion": {
3103
+ "external_tax_calculator:reset_circuit": {
2664
3104
  "aliases": [],
2665
3105
  "args": {
2666
3106
  "id": {
@@ -2669,7 +3109,7 @@
2669
3109
  "required": true
2670
3110
  }
2671
3111
  },
2672
- "description": "execute an action on a resource of type external_promotions",
3112
+ "description": "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.",
2673
3113
  "flags": {
2674
3114
  "organization": {
2675
3115
  "char": "o",
@@ -2734,7 +3174,7 @@
2734
3174
  },
2735
3175
  "hasDynamicHelp": false,
2736
3176
  "hiddenAliases": [],
2737
- "id": "external_promotion",
3177
+ "id": "external_tax_calculator:reset_circuit",
2738
3178
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
2739
3179
  "pluginName": "@commercelayer/cli-plugin-triggers",
2740
3180
  "pluginType": "core",
@@ -2744,11 +3184,11 @@
2744
3184
  "relativePath": [
2745
3185
  "lib",
2746
3186
  "commands",
2747
- "external_promotion",
2748
- "index.js"
3187
+ "external_tax_calculator",
3188
+ "reset_circuit.js"
2749
3189
  ]
2750
3190
  },
2751
- "external_promotion:reset_circuit": {
3191
+ "fixed_amount_promotion:disable": {
2752
3192
  "aliases": [],
2753
3193
  "args": {
2754
3194
  "id": {
@@ -2757,7 +3197,7 @@
2757
3197
  "required": true
2758
3198
  }
2759
3199
  },
2760
- "description": "Send this attribute if you want to reset the circuit breaker associated to this resource to 'closed' state and zero failures count.",
3200
+ "description": "Send this attribute if you want to mark this resource as disabled.",
2761
3201
  "flags": {
2762
3202
  "organization": {
2763
3203
  "char": "o",
@@ -2822,7 +3262,7 @@
2822
3262
  },
2823
3263
  "hasDynamicHelp": false,
2824
3264
  "hiddenAliases": [],
2825
- "id": "external_promotion:reset_circuit",
3265
+ "id": "fixed_amount_promotion:disable",
2826
3266
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
2827
3267
  "pluginName": "@commercelayer/cli-plugin-triggers",
2828
3268
  "pluginType": "core",
@@ -2832,11 +3272,11 @@
2832
3272
  "relativePath": [
2833
3273
  "lib",
2834
3274
  "commands",
2835
- "external_promotion",
2836
- "reset_circuit.js"
3275
+ "fixed_amount_promotion",
3276
+ "disable.js"
2837
3277
  ]
2838
3278
  },
2839
- "external_tax_calculator": {
3279
+ "fixed_amount_promotion:enable": {
2840
3280
  "aliases": [],
2841
3281
  "args": {
2842
3282
  "id": {
@@ -2845,7 +3285,7 @@
2845
3285
  "required": true
2846
3286
  }
2847
3287
  },
2848
- "description": "execute an action on a resource of type external_tax_calculators",
3288
+ "description": "Send this attribute if you want to mark this resource as enabled.",
2849
3289
  "flags": {
2850
3290
  "organization": {
2851
3291
  "char": "o",
@@ -2910,7 +3350,7 @@
2910
3350
  },
2911
3351
  "hasDynamicHelp": false,
2912
3352
  "hiddenAliases": [],
2913
- "id": "external_tax_calculator",
3353
+ "id": "fixed_amount_promotion:enable",
2914
3354
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
2915
3355
  "pluginName": "@commercelayer/cli-plugin-triggers",
2916
3356
  "pluginType": "core",
@@ -2920,11 +3360,11 @@
2920
3360
  "relativePath": [
2921
3361
  "lib",
2922
3362
  "commands",
2923
- "external_tax_calculator",
2924
- "index.js"
3363
+ "fixed_amount_promotion",
3364
+ "enable.js"
2925
3365
  ]
2926
3366
  },
2927
- "external_tax_calculator:reset_circuit": {
3367
+ "fixed_amount_promotion": {
2928
3368
  "aliases": [],
2929
3369
  "args": {
2930
3370
  "id": {
@@ -2933,7 +3373,7 @@
2933
3373
  "required": true
2934
3374
  }
2935
3375
  },
2936
- "description": "Send this attribute if you want to reset the circuit breaker associated to this resource to 'closed' state and zero failures count.",
3376
+ "description": "execute an action on a resource of type fixed_amount_promotions",
2937
3377
  "flags": {
2938
3378
  "organization": {
2939
3379
  "char": "o",
@@ -2998,7 +3438,7 @@
2998
3438
  },
2999
3439
  "hasDynamicHelp": false,
3000
3440
  "hiddenAliases": [],
3001
- "id": "external_tax_calculator:reset_circuit",
3441
+ "id": "fixed_amount_promotion",
3002
3442
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
3003
3443
  "pluginName": "@commercelayer/cli-plugin-triggers",
3004
3444
  "pluginType": "core",
@@ -3008,11 +3448,11 @@
3008
3448
  "relativePath": [
3009
3449
  "lib",
3010
3450
  "commands",
3011
- "external_tax_calculator",
3012
- "reset_circuit.js"
3451
+ "fixed_amount_promotion",
3452
+ "index.js"
3013
3453
  ]
3014
3454
  },
3015
- "fixed_amount_promotion:disable": {
3455
+ "fixed_price_promotion:disable": {
3016
3456
  "aliases": [],
3017
3457
  "args": {
3018
3458
  "id": {
@@ -3086,7 +3526,7 @@
3086
3526
  },
3087
3527
  "hasDynamicHelp": false,
3088
3528
  "hiddenAliases": [],
3089
- "id": "fixed_amount_promotion:disable",
3529
+ "id": "fixed_price_promotion:disable",
3090
3530
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
3091
3531
  "pluginName": "@commercelayer/cli-plugin-triggers",
3092
3532
  "pluginType": "core",
@@ -3096,11 +3536,11 @@
3096
3536
  "relativePath": [
3097
3537
  "lib",
3098
3538
  "commands",
3099
- "fixed_amount_promotion",
3539
+ "fixed_price_promotion",
3100
3540
  "disable.js"
3101
3541
  ]
3102
3542
  },
3103
- "fixed_amount_promotion:enable": {
3543
+ "fixed_price_promotion:enable": {
3104
3544
  "aliases": [],
3105
3545
  "args": {
3106
3546
  "id": {
@@ -3174,7 +3614,7 @@
3174
3614
  },
3175
3615
  "hasDynamicHelp": false,
3176
3616
  "hiddenAliases": [],
3177
- "id": "fixed_amount_promotion:enable",
3617
+ "id": "fixed_price_promotion:enable",
3178
3618
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
3179
3619
  "pluginName": "@commercelayer/cli-plugin-triggers",
3180
3620
  "pluginType": "core",
@@ -3184,11 +3624,11 @@
3184
3624
  "relativePath": [
3185
3625
  "lib",
3186
3626
  "commands",
3187
- "fixed_amount_promotion",
3627
+ "fixed_price_promotion",
3188
3628
  "enable.js"
3189
3629
  ]
3190
3630
  },
3191
- "fixed_amount_promotion": {
3631
+ "fixed_price_promotion": {
3192
3632
  "aliases": [],
3193
3633
  "args": {
3194
3634
  "id": {
@@ -3197,7 +3637,7 @@
3197
3637
  "required": true
3198
3638
  }
3199
3639
  },
3200
- "description": "execute an action on a resource of type fixed_amount_promotions",
3640
+ "description": "execute an action on a resource of type fixed_price_promotions",
3201
3641
  "flags": {
3202
3642
  "organization": {
3203
3643
  "char": "o",
@@ -3262,7 +3702,7 @@
3262
3702
  },
3263
3703
  "hasDynamicHelp": false,
3264
3704
  "hiddenAliases": [],
3265
- "id": "fixed_amount_promotion",
3705
+ "id": "fixed_price_promotion",
3266
3706
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
3267
3707
  "pluginName": "@commercelayer/cli-plugin-triggers",
3268
3708
  "pluginType": "core",
@@ -3272,11 +3712,11 @@
3272
3712
  "relativePath": [
3273
3713
  "lib",
3274
3714
  "commands",
3275
- "fixed_amount_promotion",
3715
+ "fixed_price_promotion",
3276
3716
  "index.js"
3277
3717
  ]
3278
3718
  },
3279
- "fixed_price_promotion:disable": {
3719
+ "flex_promotion:disable": {
3280
3720
  "aliases": [],
3281
3721
  "args": {
3282
3722
  "id": {
@@ -3350,7 +3790,7 @@
3350
3790
  },
3351
3791
  "hasDynamicHelp": false,
3352
3792
  "hiddenAliases": [],
3353
- "id": "fixed_price_promotion:disable",
3793
+ "id": "flex_promotion:disable",
3354
3794
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
3355
3795
  "pluginName": "@commercelayer/cli-plugin-triggers",
3356
3796
  "pluginType": "core",
@@ -3360,11 +3800,11 @@
3360
3800
  "relativePath": [
3361
3801
  "lib",
3362
3802
  "commands",
3363
- "fixed_price_promotion",
3803
+ "flex_promotion",
3364
3804
  "disable.js"
3365
3805
  ]
3366
3806
  },
3367
- "fixed_price_promotion:enable": {
3807
+ "flex_promotion:enable": {
3368
3808
  "aliases": [],
3369
3809
  "args": {
3370
3810
  "id": {
@@ -3438,7 +3878,7 @@
3438
3878
  },
3439
3879
  "hasDynamicHelp": false,
3440
3880
  "hiddenAliases": [],
3441
- "id": "fixed_price_promotion:enable",
3881
+ "id": "flex_promotion:enable",
3442
3882
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
3443
3883
  "pluginName": "@commercelayer/cli-plugin-triggers",
3444
3884
  "pluginType": "core",
@@ -3448,11 +3888,11 @@
3448
3888
  "relativePath": [
3449
3889
  "lib",
3450
3890
  "commands",
3451
- "fixed_price_promotion",
3891
+ "flex_promotion",
3452
3892
  "enable.js"
3453
3893
  ]
3454
3894
  },
3455
- "fixed_price_promotion": {
3895
+ "flex_promotion": {
3456
3896
  "aliases": [],
3457
3897
  "args": {
3458
3898
  "id": {
@@ -3461,7 +3901,7 @@
3461
3901
  "required": true
3462
3902
  }
3463
3903
  },
3464
- "description": "execute an action on a resource of type fixed_price_promotions",
3904
+ "description": "execute an action on a resource of type flex_promotions",
3465
3905
  "flags": {
3466
3906
  "organization": {
3467
3907
  "char": "o",
@@ -3526,7 +3966,7 @@
3526
3966
  },
3527
3967
  "hasDynamicHelp": false,
3528
3968
  "hiddenAliases": [],
3529
- "id": "fixed_price_promotion",
3969
+ "id": "flex_promotion",
3530
3970
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
3531
3971
  "pluginName": "@commercelayer/cli-plugin-triggers",
3532
3972
  "pluginType": "core",
@@ -3536,7 +3976,7 @@
3536
3976
  "relativePath": [
3537
3977
  "lib",
3538
3978
  "commands",
3539
- "fixed_price_promotion",
3979
+ "flex_promotion",
3540
3980
  "index.js"
3541
3981
  ]
3542
3982
  },
@@ -5133,7 +5573,7 @@
5133
5573
  "required": true
5134
5574
  }
5135
5575
  },
5136
- "description": "Send this attribute if you want to reserve the stock for the line item's SKUs quantity. Stock reservations expiration depends on the inventory model's cutoff. When used on update the existing active stock reservations are renewed.",
5576
+ "description": "Send this attribute if you want to reserve the stock for the line item's SKUs quantity. Stock reservations expiration depends on the inventory model's cutoff. When used on update the existing active stock reservations are renewed. Cannot be passed by sales channels.",
5137
5577
  "flags": {
5138
5578
  "organization": {
5139
5579
  "char": "o",
@@ -5221,7 +5661,7 @@
5221
5661
  "required": true
5222
5662
  }
5223
5663
  },
5224
- "description": "Send this attribute if you want to reset the circuit breaker associated to this resource to 'closed' state and zero failures count.",
5664
+ "description": "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.",
5225
5665
  "flags": {
5226
5666
  "organization": {
5227
5667
  "char": "o",
@@ -5837,7 +6277,7 @@
5837
6277
  "required": true
5838
6278
  }
5839
6279
  },
5840
- "description": "Send this attribute if you want to approve a placed order.",
6280
+ "description": "Send this attribute if you want to approve a placed order. Cannot be passed by sales channels.",
5841
6281
  "flags": {
5842
6282
  "organization": {
5843
6283
  "char": "o",
@@ -5925,7 +6365,7 @@
5925
6365
  "required": true
5926
6366
  }
5927
6367
  },
5928
- "description": "Send this attribute if you want to approve and capture a placed order.",
6368
+ "description": "Send this attribute if you want to approve and capture a placed order. Cannot be passed by sales channels.",
5929
6369
  "flags": {
5930
6370
  "organization": {
5931
6371
  "char": "o",
@@ -6550,7 +6990,7 @@
6550
6990
  "required": true
6551
6991
  }
6552
6992
  },
6553
- "description": "Send this attribute if you want to capture an authorized order.",
6993
+ "description": "Send this attribute if you want to capture an authorized order. Cannot be passed by sales channels.",
6554
6994
  "flags": {
6555
6995
  "organization": {
6556
6996
  "char": "o",
@@ -6911,7 +7351,7 @@
6911
7351
  "required": true
6912
7352
  }
6913
7353
  },
6914
- "description": "Send this attribute if you want to mark as fulfilled the order (shipments must be cancelled, shipped or delivered).",
7354
+ "description": "Send this attribute if you want to mark as fulfilled the order (shipments must be cancelled, shipped or delivered). Cannot be passed by sales channels.",
6915
7355
  "flags": {
6916
7356
  "organization": {
6917
7357
  "char": "o",
@@ -7175,7 +7615,7 @@
7175
7615
  "required": true
7176
7616
  }
7177
7617
  },
7178
- "description": "Send this attribute if you want to move a draft or placing order to pending.",
7618
+ "description": "Send this attribute if you want to move a draft or placing order to pending. Cannot be passed by sales channels.",
7179
7619
  "flags": {
7180
7620
  "organization": {
7181
7621
  "char": "o",
@@ -7439,7 +7879,7 @@
7439
7879
  "required": true
7440
7880
  }
7441
7881
  },
7442
- "description": "Send this attribute if you want to refund a captured order.",
7882
+ "description": "Send this attribute if you want to refund a captured order. Cannot be passed by sales channels.",
7443
7883
  "flags": {
7444
7884
  "organization": {
7445
7885
  "char": "o",
@@ -7615,7 +8055,7 @@
7615
8055
  "required": true
7616
8056
  }
7617
8057
  },
7618
- "description": "Send this attribute if you want to reset the circuit breaker associated to this resource to 'closed' state and zero failures count.",
8058
+ "description": "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.",
7619
8059
  "flags": {
7620
8060
  "organization": {
7621
8061
  "char": "o",
@@ -8152,7 +8592,7 @@
8152
8592
  "required": true
8153
8593
  }
8154
8594
  },
8155
- "description": "Send this attribute if you want to edit the order after it is placed. Remember you cannot exceed the original total amount.",
8595
+ "description": "Send this attribute if you want to edit the order after it is placed. Remember you cannot exceed the original total amount. Cannot be passed by sales channels.",
8156
8596
  "flags": {
8157
8597
  "organization": {
8158
8598
  "char": "o",
@@ -8240,7 +8680,7 @@
8240
8680
  "required": true
8241
8681
  }
8242
8682
  },
8243
- "description": "Send this attribute to stop the editing for the order and return back to placed status.",
8683
+ "description": "Send this attribute to stop the editing for the order and return back to placed status. Cannot be passed by sales channels.",
8244
8684
  "flags": {
8245
8685
  "organization": {
8246
8686
  "char": "o",
@@ -8935,7 +9375,183 @@
8935
9375
  "deactivate.js"
8936
9376
  ]
8937
9377
  },
8938
- "order_subscription": {
9378
+ "order_subscription": {
9379
+ "aliases": [],
9380
+ "args": {
9381
+ "id": {
9382
+ "description": "the unique id of the resource",
9383
+ "name": "id",
9384
+ "required": true
9385
+ }
9386
+ },
9387
+ "description": "execute an action on a resource of type order_subscriptions",
9388
+ "flags": {
9389
+ "organization": {
9390
+ "char": "o",
9391
+ "description": "the slug of your organization",
9392
+ "env": "CL_CLI_ORGANIZATION",
9393
+ "hidden": true,
9394
+ "name": "organization",
9395
+ "required": true,
9396
+ "hasDynamicHelp": false,
9397
+ "multiple": false,
9398
+ "type": "option"
9399
+ },
9400
+ "domain": {
9401
+ "char": "d",
9402
+ "dependsOn": [
9403
+ "organization"
9404
+ ],
9405
+ "env": "CL_CLI_DOMAIN",
9406
+ "hidden": true,
9407
+ "name": "domain",
9408
+ "required": false,
9409
+ "hasDynamicHelp": false,
9410
+ "multiple": false,
9411
+ "type": "option"
9412
+ },
9413
+ "accessToken": {
9414
+ "env": "CL_CLI_ACCESS_TOKEN",
9415
+ "hidden": true,
9416
+ "name": "accessToken",
9417
+ "required": true,
9418
+ "hasDynamicHelp": false,
9419
+ "multiple": false,
9420
+ "type": "option"
9421
+ },
9422
+ "print": {
9423
+ "char": "p",
9424
+ "description": "print out the modified resource",
9425
+ "name": "print",
9426
+ "allowNo": false,
9427
+ "type": "boolean"
9428
+ },
9429
+ "json": {
9430
+ "char": "j",
9431
+ "dependsOn": [
9432
+ "print"
9433
+ ],
9434
+ "description": "print result in JSON format",
9435
+ "name": "json",
9436
+ "allowNo": false,
9437
+ "type": "boolean"
9438
+ },
9439
+ "unformatted": {
9440
+ "char": "u",
9441
+ "dependsOn": [
9442
+ "json"
9443
+ ],
9444
+ "description": "print JSON output without indentation",
9445
+ "name": "unformatted",
9446
+ "allowNo": false,
9447
+ "type": "boolean"
9448
+ }
9449
+ },
9450
+ "hasDynamicHelp": false,
9451
+ "hiddenAliases": [],
9452
+ "id": "order_subscription",
9453
+ "pluginAlias": "@commercelayer/cli-plugin-triggers",
9454
+ "pluginName": "@commercelayer/cli-plugin-triggers",
9455
+ "pluginType": "core",
9456
+ "strict": true,
9457
+ "enableJsonFlag": false,
9458
+ "isESM": false,
9459
+ "relativePath": [
9460
+ "lib",
9461
+ "commands",
9462
+ "order_subscription",
9463
+ "index.js"
9464
+ ]
9465
+ },
9466
+ "payment_method:disable": {
9467
+ "aliases": [],
9468
+ "args": {
9469
+ "id": {
9470
+ "description": "the unique id of the resource",
9471
+ "name": "id",
9472
+ "required": true
9473
+ }
9474
+ },
9475
+ "description": "Send this attribute if you want to mark this resource as disabled.",
9476
+ "flags": {
9477
+ "organization": {
9478
+ "char": "o",
9479
+ "description": "the slug of your organization",
9480
+ "env": "CL_CLI_ORGANIZATION",
9481
+ "hidden": true,
9482
+ "name": "organization",
9483
+ "required": true,
9484
+ "hasDynamicHelp": false,
9485
+ "multiple": false,
9486
+ "type": "option"
9487
+ },
9488
+ "domain": {
9489
+ "char": "d",
9490
+ "dependsOn": [
9491
+ "organization"
9492
+ ],
9493
+ "env": "CL_CLI_DOMAIN",
9494
+ "hidden": true,
9495
+ "name": "domain",
9496
+ "required": false,
9497
+ "hasDynamicHelp": false,
9498
+ "multiple": false,
9499
+ "type": "option"
9500
+ },
9501
+ "accessToken": {
9502
+ "env": "CL_CLI_ACCESS_TOKEN",
9503
+ "hidden": true,
9504
+ "name": "accessToken",
9505
+ "required": true,
9506
+ "hasDynamicHelp": false,
9507
+ "multiple": false,
9508
+ "type": "option"
9509
+ },
9510
+ "print": {
9511
+ "char": "p",
9512
+ "description": "print out the modified resource",
9513
+ "name": "print",
9514
+ "allowNo": false,
9515
+ "type": "boolean"
9516
+ },
9517
+ "json": {
9518
+ "char": "j",
9519
+ "dependsOn": [
9520
+ "print"
9521
+ ],
9522
+ "description": "print result in JSON format",
9523
+ "name": "json",
9524
+ "allowNo": false,
9525
+ "type": "boolean"
9526
+ },
9527
+ "unformatted": {
9528
+ "char": "u",
9529
+ "dependsOn": [
9530
+ "json"
9531
+ ],
9532
+ "description": "print JSON output without indentation",
9533
+ "name": "unformatted",
9534
+ "allowNo": false,
9535
+ "type": "boolean"
9536
+ }
9537
+ },
9538
+ "hasDynamicHelp": false,
9539
+ "hiddenAliases": [],
9540
+ "id": "payment_method:disable",
9541
+ "pluginAlias": "@commercelayer/cli-plugin-triggers",
9542
+ "pluginName": "@commercelayer/cli-plugin-triggers",
9543
+ "pluginType": "core",
9544
+ "strict": true,
9545
+ "enableJsonFlag": false,
9546
+ "isESM": false,
9547
+ "relativePath": [
9548
+ "lib",
9549
+ "commands",
9550
+ "payment_method",
9551
+ "disable.js"
9552
+ ]
9553
+ },
9554
+ "payment_method:enable": {
8939
9555
  "aliases": [],
8940
9556
  "args": {
8941
9557
  "id": {
@@ -8944,7 +9560,7 @@
8944
9560
  "required": true
8945
9561
  }
8946
9562
  },
8947
- "description": "execute an action on a resource of type order_subscriptions",
9563
+ "description": "Send this attribute if you want to mark this resource as enabled.",
8948
9564
  "flags": {
8949
9565
  "organization": {
8950
9566
  "char": "o",
@@ -9009,7 +9625,7 @@
9009
9625
  },
9010
9626
  "hasDynamicHelp": false,
9011
9627
  "hiddenAliases": [],
9012
- "id": "order_subscription",
9628
+ "id": "payment_method:enable",
9013
9629
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9014
9630
  "pluginName": "@commercelayer/cli-plugin-triggers",
9015
9631
  "pluginType": "core",
@@ -9019,11 +9635,11 @@
9019
9635
  "relativePath": [
9020
9636
  "lib",
9021
9637
  "commands",
9022
- "order_subscription",
9023
- "index.js"
9638
+ "payment_method",
9639
+ "enable.js"
9024
9640
  ]
9025
9641
  },
9026
- "payment_method:disable": {
9642
+ "payment_method": {
9027
9643
  "aliases": [],
9028
9644
  "args": {
9029
9645
  "id": {
@@ -9032,7 +9648,7 @@
9032
9648
  "required": true
9033
9649
  }
9034
9650
  },
9035
- "description": "Send this attribute if you want to mark this resource as disabled.",
9651
+ "description": "execute an action on a resource of type payment_methods",
9036
9652
  "flags": {
9037
9653
  "organization": {
9038
9654
  "char": "o",
@@ -9097,7 +9713,7 @@
9097
9713
  },
9098
9714
  "hasDynamicHelp": false,
9099
9715
  "hiddenAliases": [],
9100
- "id": "payment_method:disable",
9716
+ "id": "payment_method",
9101
9717
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9102
9718
  "pluginName": "@commercelayer/cli-plugin-triggers",
9103
9719
  "pluginType": "core",
@@ -9108,10 +9724,10 @@
9108
9724
  "lib",
9109
9725
  "commands",
9110
9726
  "payment_method",
9111
- "disable.js"
9727
+ "index.js"
9112
9728
  ]
9113
9729
  },
9114
- "payment_method:enable": {
9730
+ "percentage_discount_promotion:disable": {
9115
9731
  "aliases": [],
9116
9732
  "args": {
9117
9733
  "id": {
@@ -9120,7 +9736,7 @@
9120
9736
  "required": true
9121
9737
  }
9122
9738
  },
9123
- "description": "Send this attribute if you want to mark this resource as enabled.",
9739
+ "description": "Send this attribute if you want to mark this resource as disabled.",
9124
9740
  "flags": {
9125
9741
  "organization": {
9126
9742
  "char": "o",
@@ -9185,7 +9801,7 @@
9185
9801
  },
9186
9802
  "hasDynamicHelp": false,
9187
9803
  "hiddenAliases": [],
9188
- "id": "payment_method:enable",
9804
+ "id": "percentage_discount_promotion:disable",
9189
9805
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9190
9806
  "pluginName": "@commercelayer/cli-plugin-triggers",
9191
9807
  "pluginType": "core",
@@ -9195,11 +9811,11 @@
9195
9811
  "relativePath": [
9196
9812
  "lib",
9197
9813
  "commands",
9198
- "payment_method",
9199
- "enable.js"
9814
+ "percentage_discount_promotion",
9815
+ "disable.js"
9200
9816
  ]
9201
9817
  },
9202
- "payment_method": {
9818
+ "percentage_discount_promotion:enable": {
9203
9819
  "aliases": [],
9204
9820
  "args": {
9205
9821
  "id": {
@@ -9208,7 +9824,7 @@
9208
9824
  "required": true
9209
9825
  }
9210
9826
  },
9211
- "description": "execute an action on a resource of type payment_methods",
9827
+ "description": "Send this attribute if you want to mark this resource as enabled.",
9212
9828
  "flags": {
9213
9829
  "organization": {
9214
9830
  "char": "o",
@@ -9273,7 +9889,7 @@
9273
9889
  },
9274
9890
  "hasDynamicHelp": false,
9275
9891
  "hiddenAliases": [],
9276
- "id": "payment_method",
9892
+ "id": "percentage_discount_promotion:enable",
9277
9893
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9278
9894
  "pluginName": "@commercelayer/cli-plugin-triggers",
9279
9895
  "pluginType": "core",
@@ -9283,11 +9899,11 @@
9283
9899
  "relativePath": [
9284
9900
  "lib",
9285
9901
  "commands",
9286
- "payment_method",
9287
- "index.js"
9902
+ "percentage_discount_promotion",
9903
+ "enable.js"
9288
9904
  ]
9289
9905
  },
9290
- "percentage_discount_promotion:disable": {
9906
+ "percentage_discount_promotion": {
9291
9907
  "aliases": [],
9292
9908
  "args": {
9293
9909
  "id": {
@@ -9296,7 +9912,7 @@
9296
9912
  "required": true
9297
9913
  }
9298
9914
  },
9299
- "description": "Send this attribute if you want to mark this resource as disabled.",
9915
+ "description": "execute an action on a resource of type percentage_discount_promotions",
9300
9916
  "flags": {
9301
9917
  "organization": {
9302
9918
  "char": "o",
@@ -9361,7 +9977,7 @@
9361
9977
  },
9362
9978
  "hasDynamicHelp": false,
9363
9979
  "hiddenAliases": [],
9364
- "id": "percentage_discount_promotion:disable",
9980
+ "id": "percentage_discount_promotion",
9365
9981
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9366
9982
  "pluginName": "@commercelayer/cli-plugin-triggers",
9367
9983
  "pluginType": "core",
@@ -9372,10 +9988,10 @@
9372
9988
  "lib",
9373
9989
  "commands",
9374
9990
  "percentage_discount_promotion",
9375
- "disable.js"
9991
+ "index.js"
9376
9992
  ]
9377
9993
  },
9378
- "percentage_discount_promotion:enable": {
9994
+ "price_list_scheduler:disable": {
9379
9995
  "aliases": [],
9380
9996
  "args": {
9381
9997
  "id": {
@@ -9384,7 +10000,7 @@
9384
10000
  "required": true
9385
10001
  }
9386
10002
  },
9387
- "description": "Send this attribute if you want to mark this resource as enabled.",
10003
+ "description": "Send this attribute if you want to mark this resource as disabled.",
9388
10004
  "flags": {
9389
10005
  "organization": {
9390
10006
  "char": "o",
@@ -9449,7 +10065,7 @@
9449
10065
  },
9450
10066
  "hasDynamicHelp": false,
9451
10067
  "hiddenAliases": [],
9452
- "id": "percentage_discount_promotion:enable",
10068
+ "id": "price_list_scheduler:disable",
9453
10069
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9454
10070
  "pluginName": "@commercelayer/cli-plugin-triggers",
9455
10071
  "pluginType": "core",
@@ -9459,11 +10075,11 @@
9459
10075
  "relativePath": [
9460
10076
  "lib",
9461
10077
  "commands",
9462
- "percentage_discount_promotion",
9463
- "enable.js"
10078
+ "price_list_scheduler",
10079
+ "disable.js"
9464
10080
  ]
9465
10081
  },
9466
- "percentage_discount_promotion": {
10082
+ "price_list_scheduler:enable": {
9467
10083
  "aliases": [],
9468
10084
  "args": {
9469
10085
  "id": {
@@ -9472,7 +10088,7 @@
9472
10088
  "required": true
9473
10089
  }
9474
10090
  },
9475
- "description": "execute an action on a resource of type percentage_discount_promotions",
10091
+ "description": "Send this attribute if you want to mark this resource as enabled.",
9476
10092
  "flags": {
9477
10093
  "organization": {
9478
10094
  "char": "o",
@@ -9537,7 +10153,7 @@
9537
10153
  },
9538
10154
  "hasDynamicHelp": false,
9539
10155
  "hiddenAliases": [],
9540
- "id": "percentage_discount_promotion",
10156
+ "id": "price_list_scheduler:enable",
9541
10157
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9542
10158
  "pluginName": "@commercelayer/cli-plugin-triggers",
9543
10159
  "pluginType": "core",
@@ -9547,11 +10163,11 @@
9547
10163
  "relativePath": [
9548
10164
  "lib",
9549
10165
  "commands",
9550
- "percentage_discount_promotion",
9551
- "index.js"
10166
+ "price_list_scheduler",
10167
+ "enable.js"
9552
10168
  ]
9553
10169
  },
9554
- "price_list_scheduler:disable": {
10170
+ "price_list_scheduler": {
9555
10171
  "aliases": [],
9556
10172
  "args": {
9557
10173
  "id": {
@@ -9560,7 +10176,7 @@
9560
10176
  "required": true
9561
10177
  }
9562
10178
  },
9563
- "description": "Send this attribute if you want to mark this resource as disabled.",
10179
+ "description": "execute an action on a resource of type price_list_schedulers",
9564
10180
  "flags": {
9565
10181
  "organization": {
9566
10182
  "char": "o",
@@ -9625,7 +10241,7 @@
9625
10241
  },
9626
10242
  "hasDynamicHelp": false,
9627
10243
  "hiddenAliases": [],
9628
- "id": "price_list_scheduler:disable",
10244
+ "id": "price_list_scheduler",
9629
10245
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9630
10246
  "pluginName": "@commercelayer/cli-plugin-triggers",
9631
10247
  "pluginType": "core",
@@ -9636,10 +10252,10 @@
9636
10252
  "lib",
9637
10253
  "commands",
9638
10254
  "price_list_scheduler",
9639
- "disable.js"
10255
+ "index.js"
9640
10256
  ]
9641
10257
  },
9642
- "price_list_scheduler:enable": {
10258
+ "refund:forward": {
9643
10259
  "aliases": [],
9644
10260
  "args": {
9645
10261
  "id": {
@@ -9648,7 +10264,7 @@
9648
10264
  "required": true
9649
10265
  }
9650
10266
  },
9651
- "description": "Send this attribute if you want to mark this resource as enabled.",
10267
+ "description": "Send this attribute if you want to forward a stuck transaction to succeeded and update associated order states accordingly.",
9652
10268
  "flags": {
9653
10269
  "organization": {
9654
10270
  "char": "o",
@@ -9713,7 +10329,7 @@
9713
10329
  },
9714
10330
  "hasDynamicHelp": false,
9715
10331
  "hiddenAliases": [],
9716
- "id": "price_list_scheduler:enable",
10332
+ "id": "refund:forward",
9717
10333
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9718
10334
  "pluginName": "@commercelayer/cli-plugin-triggers",
9719
10335
  "pluginType": "core",
@@ -9723,11 +10339,11 @@
9723
10339
  "relativePath": [
9724
10340
  "lib",
9725
10341
  "commands",
9726
- "price_list_scheduler",
9727
- "enable.js"
10342
+ "refund",
10343
+ "forward.js"
9728
10344
  ]
9729
10345
  },
9730
- "price_list_scheduler": {
10346
+ "refund": {
9731
10347
  "aliases": [],
9732
10348
  "args": {
9733
10349
  "id": {
@@ -9736,7 +10352,7 @@
9736
10352
  "required": true
9737
10353
  }
9738
10354
  },
9739
- "description": "execute an action on a resource of type price_list_schedulers",
10355
+ "description": "execute an action on a resource of type refunds",
9740
10356
  "flags": {
9741
10357
  "organization": {
9742
10358
  "char": "o",
@@ -9801,7 +10417,7 @@
9801
10417
  },
9802
10418
  "hasDynamicHelp": false,
9803
10419
  "hiddenAliases": [],
9804
- "id": "price_list_scheduler",
10420
+ "id": "refund",
9805
10421
  "pluginAlias": "@commercelayer/cli-plugin-triggers",
9806
10422
  "pluginName": "@commercelayer/cli-plugin-triggers",
9807
10423
  "pluginType": "core",
@@ -9811,7 +10427,7 @@
9811
10427
  "relativePath": [
9812
10428
  "lib",
9813
10429
  "commands",
9814
- "price_list_scheduler",
10430
+ "refund",
9815
10431
  "index.js"
9816
10432
  ]
9817
10433
  },
@@ -11232,7 +11848,7 @@
11232
11848
  "required": true
11233
11849
  }
11234
11850
  },
11235
- "description": "Send this attribute if you want to mark this shipment as cancelled (unless already shipped or delivered).",
11851
+ "description": "Send this attribute if you want to mark this shipment as cancelled (unless already shipped or delivered). Cannot be passed by sales channels.",
11236
11852
  "flags": {
11237
11853
  "organization": {
11238
11854
  "char": "o",
@@ -11320,7 +11936,7 @@
11320
11936
  "required": true
11321
11937
  }
11322
11938
  },
11323
- "description": "Send this attribute if you want to automatically decrement and release the stock for each of the associated stock line item. Can be done only when fulfillment is in progress.",
11939
+ "description": "Send this attribute if you want to automatically decrement and release the stock for each of the associated stock line item. Can be done only when fulfillment is in progress. Cannot be passed by sales channels.",
11324
11940
  "flags": {
11325
11941
  "organization": {
11326
11942
  "char": "o",
@@ -12112,7 +12728,7 @@
12112
12728
  "required": true
12113
12729
  }
12114
12730
  },
12115
- "description": "Send this attribute if you want to automatically destroy the stock reservations for each of the associated stock line item. Can be done only when fulfillment is in progress.",
12731
+ "description": "Send this attribute if you want to automatically destroy the stock reservations for each of the associated stock line item. Can be done only when fulfillment is in progress. Cannot be passed by sales channels.",
12116
12732
  "flags": {
12117
12733
  "organization": {
12118
12734
  "char": "o",
@@ -12200,7 +12816,7 @@
12200
12816
  "required": true
12201
12817
  }
12202
12818
  },
12203
- "description": "Send this attribute if you want to automatically reserve the stock for each of the associated stock line item. Can be done only when fulfillment is in progress.",
12819
+ "description": "Send this attribute if you want to automatically reserve the stock for each of the associated stock line item. Can be done only when fulfillment is in progress. Cannot be passed by sales channels.",
12204
12820
  "flags": {
12205
12821
  "organization": {
12206
12822
  "char": "o",
@@ -12376,7 +12992,7 @@
12376
12992
  "required": true
12377
12993
  }
12378
12994
  },
12379
- "description": "Send this attribute if you want to mark this shipment as upcoming.",
12995
+ "description": "Send this attribute if you want to mark this shipment as upcoming. Cannot be passed by sales channels.",
12380
12996
  "flags": {
12381
12997
  "organization": {
12382
12998
  "char": "o",
@@ -12728,7 +13344,7 @@
12728
13344
  "required": true
12729
13345
  }
12730
13346
  },
12731
- "description": "Send this attribute if you want to reset the circuit breaker associated to this resource to 'closed' state and zero failures count.",
13347
+ "description": "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.",
12732
13348
  "flags": {
12733
13349
  "organization": {
12734
13350
  "char": "o",
@@ -12904,7 +13520,7 @@
12904
13520
  "required": true
12905
13521
  }
12906
13522
  },
12907
- "description": "Send this attribute if you want to validate the stock item quantity against the existing reserved stock one, returns an error in case the former is smaller.",
13523
+ "description": "Send this attribute if you want to validate the stock item quantity against the existing reserved stock one, returns an error in case the former is smaller. Cannot be passed by sales channels.",
12908
13524
  "flags": {
12909
13525
  "organization": {
12910
13526
  "char": "o",
@@ -12992,7 +13608,7 @@
12992
13608
  "required": true
12993
13609
  }
12994
13610
  },
12995
- "description": "Send this attribute if you want to automatically decrement and release the stock this stock line item. Can be done only when fulfillment is in progress.",
13611
+ "description": "Send this attribute if you want to automatically decrement and release the stock this stock line item. Can be done only when fulfillment is in progress. Cannot be passed by sales channels.",
12996
13612
  "flags": {
12997
13613
  "organization": {
12998
13614
  "char": "o",
@@ -13168,7 +13784,7 @@
13168
13784
  "required": true
13169
13785
  }
13170
13786
  },
13171
- "description": "Send this attribute if you want to automatically destroy the stock reservation for this stock line item. Can be done only when fulfillment is in progress.",
13787
+ "description": "Send this attribute if you want to automatically destroy the stock reservation for this stock line item. Can be done only when fulfillment is in progress. Cannot be passed by sales channels.",
13172
13788
  "flags": {
13173
13789
  "organization": {
13174
13790
  "char": "o",
@@ -13256,7 +13872,7 @@
13256
13872
  "required": true
13257
13873
  }
13258
13874
  },
13259
- "description": "Send this attribute if you want to automatically reserve the stock for this stock line item. Can be done only when fulfillment is in progress.",
13875
+ "description": "Send this attribute if you want to automatically reserve the stock for this stock line item. Can be done only when fulfillment is in progress. Cannot be passed by sales channels.",
13260
13876
  "flags": {
13261
13877
  "organization": {
13262
13878
  "char": "o",
@@ -14391,6 +15007,182 @@
14391
15007
  "update.js"
14392
15008
  ]
14393
15009
  },
15010
+ "void:forward": {
15011
+ "aliases": [],
15012
+ "args": {
15013
+ "id": {
15014
+ "description": "the unique id of the resource",
15015
+ "name": "id",
15016
+ "required": true
15017
+ }
15018
+ },
15019
+ "description": "Send this attribute if you want to forward a stuck transaction to succeeded and update associated order states accordingly.",
15020
+ "flags": {
15021
+ "organization": {
15022
+ "char": "o",
15023
+ "description": "the slug of your organization",
15024
+ "env": "CL_CLI_ORGANIZATION",
15025
+ "hidden": true,
15026
+ "name": "organization",
15027
+ "required": true,
15028
+ "hasDynamicHelp": false,
15029
+ "multiple": false,
15030
+ "type": "option"
15031
+ },
15032
+ "domain": {
15033
+ "char": "d",
15034
+ "dependsOn": [
15035
+ "organization"
15036
+ ],
15037
+ "env": "CL_CLI_DOMAIN",
15038
+ "hidden": true,
15039
+ "name": "domain",
15040
+ "required": false,
15041
+ "hasDynamicHelp": false,
15042
+ "multiple": false,
15043
+ "type": "option"
15044
+ },
15045
+ "accessToken": {
15046
+ "env": "CL_CLI_ACCESS_TOKEN",
15047
+ "hidden": true,
15048
+ "name": "accessToken",
15049
+ "required": true,
15050
+ "hasDynamicHelp": false,
15051
+ "multiple": false,
15052
+ "type": "option"
15053
+ },
15054
+ "print": {
15055
+ "char": "p",
15056
+ "description": "print out the modified resource",
15057
+ "name": "print",
15058
+ "allowNo": false,
15059
+ "type": "boolean"
15060
+ },
15061
+ "json": {
15062
+ "char": "j",
15063
+ "dependsOn": [
15064
+ "print"
15065
+ ],
15066
+ "description": "print result in JSON format",
15067
+ "name": "json",
15068
+ "allowNo": false,
15069
+ "type": "boolean"
15070
+ },
15071
+ "unformatted": {
15072
+ "char": "u",
15073
+ "dependsOn": [
15074
+ "json"
15075
+ ],
15076
+ "description": "print JSON output without indentation",
15077
+ "name": "unformatted",
15078
+ "allowNo": false,
15079
+ "type": "boolean"
15080
+ }
15081
+ },
15082
+ "hasDynamicHelp": false,
15083
+ "hiddenAliases": [],
15084
+ "id": "void:forward",
15085
+ "pluginAlias": "@commercelayer/cli-plugin-triggers",
15086
+ "pluginName": "@commercelayer/cli-plugin-triggers",
15087
+ "pluginType": "core",
15088
+ "strict": true,
15089
+ "enableJsonFlag": false,
15090
+ "isESM": false,
15091
+ "relativePath": [
15092
+ "lib",
15093
+ "commands",
15094
+ "void",
15095
+ "forward.js"
15096
+ ]
15097
+ },
15098
+ "void": {
15099
+ "aliases": [],
15100
+ "args": {
15101
+ "id": {
15102
+ "description": "the unique id of the resource",
15103
+ "name": "id",
15104
+ "required": true
15105
+ }
15106
+ },
15107
+ "description": "execute an action on a resource of type voids",
15108
+ "flags": {
15109
+ "organization": {
15110
+ "char": "o",
15111
+ "description": "the slug of your organization",
15112
+ "env": "CL_CLI_ORGANIZATION",
15113
+ "hidden": true,
15114
+ "name": "organization",
15115
+ "required": true,
15116
+ "hasDynamicHelp": false,
15117
+ "multiple": false,
15118
+ "type": "option"
15119
+ },
15120
+ "domain": {
15121
+ "char": "d",
15122
+ "dependsOn": [
15123
+ "organization"
15124
+ ],
15125
+ "env": "CL_CLI_DOMAIN",
15126
+ "hidden": true,
15127
+ "name": "domain",
15128
+ "required": false,
15129
+ "hasDynamicHelp": false,
15130
+ "multiple": false,
15131
+ "type": "option"
15132
+ },
15133
+ "accessToken": {
15134
+ "env": "CL_CLI_ACCESS_TOKEN",
15135
+ "hidden": true,
15136
+ "name": "accessToken",
15137
+ "required": true,
15138
+ "hasDynamicHelp": false,
15139
+ "multiple": false,
15140
+ "type": "option"
15141
+ },
15142
+ "print": {
15143
+ "char": "p",
15144
+ "description": "print out the modified resource",
15145
+ "name": "print",
15146
+ "allowNo": false,
15147
+ "type": "boolean"
15148
+ },
15149
+ "json": {
15150
+ "char": "j",
15151
+ "dependsOn": [
15152
+ "print"
15153
+ ],
15154
+ "description": "print result in JSON format",
15155
+ "name": "json",
15156
+ "allowNo": false,
15157
+ "type": "boolean"
15158
+ },
15159
+ "unformatted": {
15160
+ "char": "u",
15161
+ "dependsOn": [
15162
+ "json"
15163
+ ],
15164
+ "description": "print JSON output without indentation",
15165
+ "name": "unformatted",
15166
+ "allowNo": false,
15167
+ "type": "boolean"
15168
+ }
15169
+ },
15170
+ "hasDynamicHelp": false,
15171
+ "hiddenAliases": [],
15172
+ "id": "void",
15173
+ "pluginAlias": "@commercelayer/cli-plugin-triggers",
15174
+ "pluginName": "@commercelayer/cli-plugin-triggers",
15175
+ "pluginType": "core",
15176
+ "strict": true,
15177
+ "enableJsonFlag": false,
15178
+ "isESM": false,
15179
+ "relativePath": [
15180
+ "lib",
15181
+ "commands",
15182
+ "void",
15183
+ "index.js"
15184
+ ]
15185
+ },
14394
15186
  "webhook:disable": {
14395
15187
  "aliases": [],
14396
15188
  "args": {
@@ -14664,7 +15456,7 @@
14664
15456
  "required": true
14665
15457
  }
14666
15458
  },
14667
- "description": "Send this attribute if you want to reset the circuit breaker associated to this resource to 'closed' state and zero failures count.",
15459
+ "description": "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.",
14668
15460
  "flags": {
14669
15461
  "organization": {
14670
15462
  "char": "o",
@@ -14744,5 +15536,5 @@
14744
15536
  ]
14745
15537
  }
14746
15538
  },
14747
- "version": "4.7.1"
15539
+ "version": "4.9.0"
14748
15540
  }