@commercelayer/cli-plugin-triggers 4.10.0 → 4.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -3
- package/lib/commands/easypost_pickup/index.d.ts +9 -0
- package/lib/commands/easypost_pickup/index.js +40 -0
- package/lib/commands/easypost_pickup/purchase.d.ts +9 -0
- package/lib/commands/easypost_pickup/purchase.js +22 -0
- package/lib/triggers/easypost_pickups.d.ts +3 -0
- package/lib/triggers/easypost_pickups.js +10 -0
- package/lib/triggers/orders.js +1 -1
- package/oclif.manifest.json +381 -205
- package/package.json +6 -6
package/oclif.manifest.json
CHANGED
|
@@ -2572,6 +2572,182 @@
|
|
|
2572
2572
|
"reset_password_token.js"
|
|
2573
2573
|
]
|
|
2574
2574
|
},
|
|
2575
|
+
"easypost_pickup": {
|
|
2576
|
+
"aliases": [],
|
|
2577
|
+
"args": {
|
|
2578
|
+
"id": {
|
|
2579
|
+
"description": "the unique id of the resource",
|
|
2580
|
+
"name": "id",
|
|
2581
|
+
"required": true
|
|
2582
|
+
}
|
|
2583
|
+
},
|
|
2584
|
+
"description": "execute an action on a resource of type easypost_pickups",
|
|
2585
|
+
"flags": {
|
|
2586
|
+
"organization": {
|
|
2587
|
+
"char": "o",
|
|
2588
|
+
"description": "the slug of your organization",
|
|
2589
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
2590
|
+
"hidden": true,
|
|
2591
|
+
"name": "organization",
|
|
2592
|
+
"required": true,
|
|
2593
|
+
"hasDynamicHelp": false,
|
|
2594
|
+
"multiple": false,
|
|
2595
|
+
"type": "option"
|
|
2596
|
+
},
|
|
2597
|
+
"domain": {
|
|
2598
|
+
"char": "d",
|
|
2599
|
+
"dependsOn": [
|
|
2600
|
+
"organization"
|
|
2601
|
+
],
|
|
2602
|
+
"env": "CL_CLI_DOMAIN",
|
|
2603
|
+
"hidden": true,
|
|
2604
|
+
"name": "domain",
|
|
2605
|
+
"required": false,
|
|
2606
|
+
"hasDynamicHelp": false,
|
|
2607
|
+
"multiple": false,
|
|
2608
|
+
"type": "option"
|
|
2609
|
+
},
|
|
2610
|
+
"accessToken": {
|
|
2611
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
2612
|
+
"hidden": true,
|
|
2613
|
+
"name": "accessToken",
|
|
2614
|
+
"required": true,
|
|
2615
|
+
"hasDynamicHelp": false,
|
|
2616
|
+
"multiple": false,
|
|
2617
|
+
"type": "option"
|
|
2618
|
+
},
|
|
2619
|
+
"print": {
|
|
2620
|
+
"char": "p",
|
|
2621
|
+
"description": "print out the modified resource",
|
|
2622
|
+
"name": "print",
|
|
2623
|
+
"allowNo": false,
|
|
2624
|
+
"type": "boolean"
|
|
2625
|
+
},
|
|
2626
|
+
"json": {
|
|
2627
|
+
"char": "j",
|
|
2628
|
+
"dependsOn": [
|
|
2629
|
+
"print"
|
|
2630
|
+
],
|
|
2631
|
+
"description": "print result in JSON format",
|
|
2632
|
+
"name": "json",
|
|
2633
|
+
"allowNo": false,
|
|
2634
|
+
"type": "boolean"
|
|
2635
|
+
},
|
|
2636
|
+
"unformatted": {
|
|
2637
|
+
"char": "u",
|
|
2638
|
+
"dependsOn": [
|
|
2639
|
+
"json"
|
|
2640
|
+
],
|
|
2641
|
+
"description": "print JSON output without indentation",
|
|
2642
|
+
"name": "unformatted",
|
|
2643
|
+
"allowNo": false,
|
|
2644
|
+
"type": "boolean"
|
|
2645
|
+
}
|
|
2646
|
+
},
|
|
2647
|
+
"hasDynamicHelp": false,
|
|
2648
|
+
"hiddenAliases": [],
|
|
2649
|
+
"id": "easypost_pickup",
|
|
2650
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2651
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2652
|
+
"pluginType": "core",
|
|
2653
|
+
"strict": true,
|
|
2654
|
+
"enableJsonFlag": false,
|
|
2655
|
+
"isESM": false,
|
|
2656
|
+
"relativePath": [
|
|
2657
|
+
"lib",
|
|
2658
|
+
"commands",
|
|
2659
|
+
"easypost_pickup",
|
|
2660
|
+
"index.js"
|
|
2661
|
+
]
|
|
2662
|
+
},
|
|
2663
|
+
"easypost_pickup:purchase": {
|
|
2664
|
+
"aliases": [],
|
|
2665
|
+
"args": {
|
|
2666
|
+
"id": {
|
|
2667
|
+
"description": "the unique id of the resource",
|
|
2668
|
+
"name": "id",
|
|
2669
|
+
"required": true
|
|
2670
|
+
}
|
|
2671
|
+
},
|
|
2672
|
+
"description": "Send this attribute if you want to purchase this pick up with the selected rate.",
|
|
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": "easypost_pickup:purchase",
|
|
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
|
+
"easypost_pickup",
|
|
2748
|
+
"purchase.js"
|
|
2749
|
+
]
|
|
2750
|
+
},
|
|
2575
2751
|
"event": {
|
|
2576
2752
|
"aliases": [],
|
|
2577
2753
|
"args": {
|
|
@@ -6884,7 +7060,7 @@
|
|
|
6884
7060
|
"index.js"
|
|
6885
7061
|
]
|
|
6886
7062
|
},
|
|
6887
|
-
"
|
|
7063
|
+
"order_subscription:activate": {
|
|
6888
7064
|
"aliases": [],
|
|
6889
7065
|
"args": {
|
|
6890
7066
|
"id": {
|
|
@@ -6893,7 +7069,7 @@
|
|
|
6893
7069
|
"required": true
|
|
6894
7070
|
}
|
|
6895
7071
|
},
|
|
6896
|
-
"description": "Send this attribute if you want to
|
|
7072
|
+
"description": "Send this attribute if you want to mark this subscription as active.",
|
|
6897
7073
|
"flags": {
|
|
6898
7074
|
"organization": {
|
|
6899
7075
|
"char": "o",
|
|
@@ -6958,7 +7134,7 @@
|
|
|
6958
7134
|
},
|
|
6959
7135
|
"hasDynamicHelp": false,
|
|
6960
7136
|
"hiddenAliases": [],
|
|
6961
|
-
"id": "
|
|
7137
|
+
"id": "order_subscription:activate",
|
|
6962
7138
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
6963
7139
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
6964
7140
|
"pluginType": "core",
|
|
@@ -6968,11 +7144,11 @@
|
|
|
6968
7144
|
"relativePath": [
|
|
6969
7145
|
"lib",
|
|
6970
7146
|
"commands",
|
|
6971
|
-
"
|
|
6972
|
-
"
|
|
7147
|
+
"order_subscription",
|
|
7148
|
+
"activate.js"
|
|
6973
7149
|
]
|
|
6974
7150
|
},
|
|
6975
|
-
"
|
|
7151
|
+
"order_subscription:cancel": {
|
|
6976
7152
|
"aliases": [],
|
|
6977
7153
|
"args": {
|
|
6978
7154
|
"id": {
|
|
@@ -6981,7 +7157,7 @@
|
|
|
6981
7157
|
"required": true
|
|
6982
7158
|
}
|
|
6983
7159
|
},
|
|
6984
|
-
"description": "Send this attribute if you want to
|
|
7160
|
+
"description": "Send this attribute if you want to mark this subscription as cancelled.",
|
|
6985
7161
|
"flags": {
|
|
6986
7162
|
"organization": {
|
|
6987
7163
|
"char": "o",
|
|
@@ -7046,7 +7222,7 @@
|
|
|
7046
7222
|
},
|
|
7047
7223
|
"hasDynamicHelp": false,
|
|
7048
7224
|
"hiddenAliases": [],
|
|
7049
|
-
"id": "
|
|
7225
|
+
"id": "order_subscription:cancel",
|
|
7050
7226
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7051
7227
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7052
7228
|
"pluginType": "core",
|
|
@@ -7056,11 +7232,11 @@
|
|
|
7056
7232
|
"relativePath": [
|
|
7057
7233
|
"lib",
|
|
7058
7234
|
"commands",
|
|
7059
|
-
"
|
|
7060
|
-
"
|
|
7235
|
+
"order_subscription",
|
|
7236
|
+
"cancel.js"
|
|
7061
7237
|
]
|
|
7062
7238
|
},
|
|
7063
|
-
"
|
|
7239
|
+
"order_subscription:convert": {
|
|
7064
7240
|
"aliases": [],
|
|
7065
7241
|
"args": {
|
|
7066
7242
|
"id": {
|
|
@@ -7069,7 +7245,7 @@
|
|
|
7069
7245
|
"required": true
|
|
7070
7246
|
}
|
|
7071
7247
|
},
|
|
7072
|
-
"description": "Send this attribute if you want to
|
|
7248
|
+
"description": "Send this attribute if you want to convert a manual subscription to an automatic one. A subscription model is required before conversion.",
|
|
7073
7249
|
"flags": {
|
|
7074
7250
|
"organization": {
|
|
7075
7251
|
"char": "o",
|
|
@@ -7134,7 +7310,7 @@
|
|
|
7134
7310
|
},
|
|
7135
7311
|
"hasDynamicHelp": false,
|
|
7136
7312
|
"hiddenAliases": [],
|
|
7137
|
-
"id": "
|
|
7313
|
+
"id": "order_subscription:convert",
|
|
7138
7314
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7139
7315
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7140
7316
|
"pluginType": "core",
|
|
@@ -7144,11 +7320,11 @@
|
|
|
7144
7320
|
"relativePath": [
|
|
7145
7321
|
"lib",
|
|
7146
7322
|
"commands",
|
|
7147
|
-
"
|
|
7148
|
-
"
|
|
7323
|
+
"order_subscription",
|
|
7324
|
+
"convert.js"
|
|
7149
7325
|
]
|
|
7150
7326
|
},
|
|
7151
|
-
"
|
|
7327
|
+
"order_subscription:deactivate": {
|
|
7152
7328
|
"aliases": [],
|
|
7153
7329
|
"args": {
|
|
7154
7330
|
"id": {
|
|
@@ -7157,7 +7333,7 @@
|
|
|
7157
7333
|
"required": true
|
|
7158
7334
|
}
|
|
7159
7335
|
},
|
|
7160
|
-
"description": "Send this attribute
|
|
7336
|
+
"description": "Send this attribute if you want to mark this subscription as inactive.",
|
|
7161
7337
|
"flags": {
|
|
7162
7338
|
"organization": {
|
|
7163
7339
|
"char": "o",
|
|
@@ -7222,7 +7398,7 @@
|
|
|
7222
7398
|
},
|
|
7223
7399
|
"hasDynamicHelp": false,
|
|
7224
7400
|
"hiddenAliases": [],
|
|
7225
|
-
"id": "
|
|
7401
|
+
"id": "order_subscription:deactivate",
|
|
7226
7402
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7227
7403
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7228
7404
|
"pluginType": "core",
|
|
@@ -7232,11 +7408,11 @@
|
|
|
7232
7408
|
"relativePath": [
|
|
7233
7409
|
"lib",
|
|
7234
7410
|
"commands",
|
|
7235
|
-
"
|
|
7236
|
-
"
|
|
7411
|
+
"order_subscription",
|
|
7412
|
+
"deactivate.js"
|
|
7237
7413
|
]
|
|
7238
7414
|
},
|
|
7239
|
-
"
|
|
7415
|
+
"order_subscription": {
|
|
7240
7416
|
"aliases": [],
|
|
7241
7417
|
"args": {
|
|
7242
7418
|
"id": {
|
|
@@ -7245,7 +7421,7 @@
|
|
|
7245
7421
|
"required": true
|
|
7246
7422
|
}
|
|
7247
7423
|
},
|
|
7248
|
-
"description": "
|
|
7424
|
+
"description": "execute an action on a resource of type order_subscriptions",
|
|
7249
7425
|
"flags": {
|
|
7250
7426
|
"organization": {
|
|
7251
7427
|
"char": "o",
|
|
@@ -7310,7 +7486,7 @@
|
|
|
7310
7486
|
},
|
|
7311
7487
|
"hasDynamicHelp": false,
|
|
7312
7488
|
"hiddenAliases": [],
|
|
7313
|
-
"id": "
|
|
7489
|
+
"id": "order_subscription",
|
|
7314
7490
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7315
7491
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7316
7492
|
"pluginType": "core",
|
|
@@ -7320,11 +7496,11 @@
|
|
|
7320
7496
|
"relativePath": [
|
|
7321
7497
|
"lib",
|
|
7322
7498
|
"commands",
|
|
7323
|
-
"
|
|
7324
|
-
"
|
|
7499
|
+
"order_subscription",
|
|
7500
|
+
"index.js"
|
|
7325
7501
|
]
|
|
7326
7502
|
},
|
|
7327
|
-
"
|
|
7503
|
+
"payment_method:disable": {
|
|
7328
7504
|
"aliases": [],
|
|
7329
7505
|
"args": {
|
|
7330
7506
|
"id": {
|
|
@@ -7333,7 +7509,7 @@
|
|
|
7333
7509
|
"required": true
|
|
7334
7510
|
}
|
|
7335
7511
|
},
|
|
7336
|
-
"description": "
|
|
7512
|
+
"description": "Send this attribute if you want to mark this resource as disabled.",
|
|
7337
7513
|
"flags": {
|
|
7338
7514
|
"organization": {
|
|
7339
7515
|
"char": "o",
|
|
@@ -7394,20 +7570,11 @@
|
|
|
7394
7570
|
"name": "unformatted",
|
|
7395
7571
|
"allowNo": false,
|
|
7396
7572
|
"type": "boolean"
|
|
7397
|
-
},
|
|
7398
|
-
"value": {
|
|
7399
|
-
"char": "v",
|
|
7400
|
-
"description": "the trigger attribute value",
|
|
7401
|
-
"name": "value",
|
|
7402
|
-
"required": true,
|
|
7403
|
-
"hasDynamicHelp": false,
|
|
7404
|
-
"multiple": false,
|
|
7405
|
-
"type": "option"
|
|
7406
7573
|
}
|
|
7407
7574
|
},
|
|
7408
7575
|
"hasDynamicHelp": false,
|
|
7409
7576
|
"hiddenAliases": [],
|
|
7410
|
-
"id": "
|
|
7577
|
+
"id": "payment_method:disable",
|
|
7411
7578
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7412
7579
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7413
7580
|
"pluginType": "core",
|
|
@@ -7417,11 +7584,11 @@
|
|
|
7417
7584
|
"relativePath": [
|
|
7418
7585
|
"lib",
|
|
7419
7586
|
"commands",
|
|
7420
|
-
"
|
|
7421
|
-
"
|
|
7587
|
+
"payment_method",
|
|
7588
|
+
"disable.js"
|
|
7422
7589
|
]
|
|
7423
7590
|
},
|
|
7424
|
-
"
|
|
7591
|
+
"payment_method:enable": {
|
|
7425
7592
|
"aliases": [],
|
|
7426
7593
|
"args": {
|
|
7427
7594
|
"id": {
|
|
@@ -7430,7 +7597,7 @@
|
|
|
7430
7597
|
"required": true
|
|
7431
7598
|
}
|
|
7432
7599
|
},
|
|
7433
|
-
"description": "Send this attribute if you want
|
|
7600
|
+
"description": "Send this attribute if you want to mark this resource as enabled.",
|
|
7434
7601
|
"flags": {
|
|
7435
7602
|
"organization": {
|
|
7436
7603
|
"char": "o",
|
|
@@ -7495,7 +7662,7 @@
|
|
|
7495
7662
|
},
|
|
7496
7663
|
"hasDynamicHelp": false,
|
|
7497
7664
|
"hiddenAliases": [],
|
|
7498
|
-
"id": "
|
|
7665
|
+
"id": "payment_method:enable",
|
|
7499
7666
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7500
7667
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7501
7668
|
"pluginType": "core",
|
|
@@ -7505,11 +7672,11 @@
|
|
|
7505
7672
|
"relativePath": [
|
|
7506
7673
|
"lib",
|
|
7507
7674
|
"commands",
|
|
7508
|
-
"
|
|
7509
|
-
"
|
|
7675
|
+
"payment_method",
|
|
7676
|
+
"enable.js"
|
|
7510
7677
|
]
|
|
7511
7678
|
},
|
|
7512
|
-
"
|
|
7679
|
+
"payment_method": {
|
|
7513
7680
|
"aliases": [],
|
|
7514
7681
|
"args": {
|
|
7515
7682
|
"id": {
|
|
@@ -7518,7 +7685,7 @@
|
|
|
7518
7685
|
"required": true
|
|
7519
7686
|
}
|
|
7520
7687
|
},
|
|
7521
|
-
"description": "
|
|
7688
|
+
"description": "execute an action on a resource of type payment_methods",
|
|
7522
7689
|
"flags": {
|
|
7523
7690
|
"organization": {
|
|
7524
7691
|
"char": "o",
|
|
@@ -7583,7 +7750,7 @@
|
|
|
7583
7750
|
},
|
|
7584
7751
|
"hasDynamicHelp": false,
|
|
7585
7752
|
"hiddenAliases": [],
|
|
7586
|
-
"id": "
|
|
7753
|
+
"id": "payment_method",
|
|
7587
7754
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7588
7755
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7589
7756
|
"pluginType": "core",
|
|
@@ -7593,11 +7760,11 @@
|
|
|
7593
7760
|
"relativePath": [
|
|
7594
7761
|
"lib",
|
|
7595
7762
|
"commands",
|
|
7596
|
-
"
|
|
7597
|
-
"
|
|
7598
|
-
]
|
|
7763
|
+
"payment_method",
|
|
7764
|
+
"index.js"
|
|
7765
|
+
]
|
|
7599
7766
|
},
|
|
7600
|
-
"order:
|
|
7767
|
+
"order:approve": {
|
|
7601
7768
|
"aliases": [],
|
|
7602
7769
|
"args": {
|
|
7603
7770
|
"id": {
|
|
@@ -7606,7 +7773,7 @@
|
|
|
7606
7773
|
"required": true
|
|
7607
7774
|
}
|
|
7608
7775
|
},
|
|
7609
|
-
"description": "Send this attribute if you want to
|
|
7776
|
+
"description": "Send this attribute if you want to approve a placed order. Cannot be passed by sales channels.",
|
|
7610
7777
|
"flags": {
|
|
7611
7778
|
"organization": {
|
|
7612
7779
|
"char": "o",
|
|
@@ -7671,7 +7838,7 @@
|
|
|
7671
7838
|
},
|
|
7672
7839
|
"hasDynamicHelp": false,
|
|
7673
7840
|
"hiddenAliases": [],
|
|
7674
|
-
"id": "order:
|
|
7841
|
+
"id": "order:approve",
|
|
7675
7842
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7676
7843
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7677
7844
|
"pluginType": "core",
|
|
@@ -7682,10 +7849,10 @@
|
|
|
7682
7849
|
"lib",
|
|
7683
7850
|
"commands",
|
|
7684
7851
|
"order",
|
|
7685
|
-
"
|
|
7852
|
+
"approve.js"
|
|
7686
7853
|
]
|
|
7687
7854
|
},
|
|
7688
|
-
"order:
|
|
7855
|
+
"order:approve_and_capture": {
|
|
7689
7856
|
"aliases": [],
|
|
7690
7857
|
"args": {
|
|
7691
7858
|
"id": {
|
|
@@ -7694,7 +7861,7 @@
|
|
|
7694
7861
|
"required": true
|
|
7695
7862
|
}
|
|
7696
7863
|
},
|
|
7697
|
-
"description": "Send this attribute if you want
|
|
7864
|
+
"description": "Send this attribute if you want to approve and capture a placed order. Cannot be passed by sales channels.",
|
|
7698
7865
|
"flags": {
|
|
7699
7866
|
"organization": {
|
|
7700
7867
|
"char": "o",
|
|
@@ -7759,7 +7926,7 @@
|
|
|
7759
7926
|
},
|
|
7760
7927
|
"hasDynamicHelp": false,
|
|
7761
7928
|
"hiddenAliases": [],
|
|
7762
|
-
"id": "order:
|
|
7929
|
+
"id": "order:approve_and_capture",
|
|
7763
7930
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7764
7931
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7765
7932
|
"pluginType": "core",
|
|
@@ -7770,10 +7937,10 @@
|
|
|
7770
7937
|
"lib",
|
|
7771
7938
|
"commands",
|
|
7772
7939
|
"order",
|
|
7773
|
-
"
|
|
7940
|
+
"approve_and_capture.js"
|
|
7774
7941
|
]
|
|
7775
7942
|
},
|
|
7776
|
-
"order:
|
|
7943
|
+
"order:archive": {
|
|
7777
7944
|
"aliases": [],
|
|
7778
7945
|
"args": {
|
|
7779
7946
|
"id": {
|
|
@@ -7782,7 +7949,7 @@
|
|
|
7782
7949
|
"required": true
|
|
7783
7950
|
}
|
|
7784
7951
|
},
|
|
7785
|
-
"description": "Send this attribute
|
|
7952
|
+
"description": "Send this attribute if you want to archive the order.",
|
|
7786
7953
|
"flags": {
|
|
7787
7954
|
"organization": {
|
|
7788
7955
|
"char": "o",
|
|
@@ -7847,7 +8014,7 @@
|
|
|
7847
8014
|
},
|
|
7848
8015
|
"hasDynamicHelp": false,
|
|
7849
8016
|
"hiddenAliases": [],
|
|
7850
|
-
"id": "order:
|
|
8017
|
+
"id": "order:archive",
|
|
7851
8018
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7852
8019
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7853
8020
|
"pluginType": "core",
|
|
@@ -7858,10 +8025,10 @@
|
|
|
7858
8025
|
"lib",
|
|
7859
8026
|
"commands",
|
|
7860
8027
|
"order",
|
|
7861
|
-
"
|
|
8028
|
+
"archive.js"
|
|
7862
8029
|
]
|
|
7863
8030
|
},
|
|
7864
|
-
"order:
|
|
8031
|
+
"order:authorization_amount_cents": {
|
|
7865
8032
|
"aliases": [],
|
|
7866
8033
|
"args": {
|
|
7867
8034
|
"id": {
|
|
@@ -7870,7 +8037,7 @@
|
|
|
7870
8037
|
"required": true
|
|
7871
8038
|
}
|
|
7872
8039
|
},
|
|
7873
|
-
"description": "
|
|
8040
|
+
"description": "Send this attribute as a value in cents if you want to overwrite the amount to be authorized.",
|
|
7874
8041
|
"flags": {
|
|
7875
8042
|
"organization": {
|
|
7876
8043
|
"char": "o",
|
|
@@ -7931,20 +8098,11 @@
|
|
|
7931
8098
|
"name": "unformatted",
|
|
7932
8099
|
"allowNo": false,
|
|
7933
8100
|
"type": "boolean"
|
|
7934
|
-
},
|
|
7935
|
-
"value": {
|
|
7936
|
-
"char": "v",
|
|
7937
|
-
"description": "the trigger attribute value",
|
|
7938
|
-
"name": "value",
|
|
7939
|
-
"required": true,
|
|
7940
|
-
"hasDynamicHelp": false,
|
|
7941
|
-
"multiple": false,
|
|
7942
|
-
"type": "option"
|
|
7943
8101
|
}
|
|
7944
8102
|
},
|
|
7945
8103
|
"hasDynamicHelp": false,
|
|
7946
8104
|
"hiddenAliases": [],
|
|
7947
|
-
"id": "order:
|
|
8105
|
+
"id": "order:authorization_amount_cents",
|
|
7948
8106
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
7949
8107
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
7950
8108
|
"pluginType": "core",
|
|
@@ -7955,10 +8113,10 @@
|
|
|
7955
8113
|
"lib",
|
|
7956
8114
|
"commands",
|
|
7957
8115
|
"order",
|
|
7958
|
-
"
|
|
8116
|
+
"authorization_amount_cents.js"
|
|
7959
8117
|
]
|
|
7960
8118
|
},
|
|
7961
|
-
"order:
|
|
8119
|
+
"order:authorize": {
|
|
7962
8120
|
"aliases": [],
|
|
7963
8121
|
"args": {
|
|
7964
8122
|
"id": {
|
|
@@ -7967,7 +8125,7 @@
|
|
|
7967
8125
|
"required": true
|
|
7968
8126
|
}
|
|
7969
8127
|
},
|
|
7970
|
-
"description": "Send this attribute if you want to
|
|
8128
|
+
"description": "Send this attribute if you want to authorize the order's payment source.",
|
|
7971
8129
|
"flags": {
|
|
7972
8130
|
"organization": {
|
|
7973
8131
|
"char": "o",
|
|
@@ -8032,7 +8190,7 @@
|
|
|
8032
8190
|
},
|
|
8033
8191
|
"hasDynamicHelp": false,
|
|
8034
8192
|
"hiddenAliases": [],
|
|
8035
|
-
"id": "order:
|
|
8193
|
+
"id": "order:authorize",
|
|
8036
8194
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8037
8195
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8038
8196
|
"pluginType": "core",
|
|
@@ -8043,10 +8201,10 @@
|
|
|
8043
8201
|
"lib",
|
|
8044
8202
|
"commands",
|
|
8045
8203
|
"order",
|
|
8046
|
-
"
|
|
8204
|
+
"authorize.js"
|
|
8047
8205
|
]
|
|
8048
8206
|
},
|
|
8049
|
-
"order:
|
|
8207
|
+
"order:billing_address_clone_id": {
|
|
8050
8208
|
"aliases": [],
|
|
8051
8209
|
"args": {
|
|
8052
8210
|
"id": {
|
|
@@ -8055,7 +8213,7 @@
|
|
|
8055
8213
|
"required": true
|
|
8056
8214
|
}
|
|
8057
8215
|
},
|
|
8058
|
-
"description": "
|
|
8216
|
+
"description": "The id of the address that you want to clone to create the order's billing address.",
|
|
8059
8217
|
"flags": {
|
|
8060
8218
|
"organization": {
|
|
8061
8219
|
"char": "o",
|
|
@@ -8116,11 +8274,20 @@
|
|
|
8116
8274
|
"name": "unformatted",
|
|
8117
8275
|
"allowNo": false,
|
|
8118
8276
|
"type": "boolean"
|
|
8277
|
+
},
|
|
8278
|
+
"value": {
|
|
8279
|
+
"char": "v",
|
|
8280
|
+
"description": "the trigger attribute value",
|
|
8281
|
+
"name": "value",
|
|
8282
|
+
"required": true,
|
|
8283
|
+
"hasDynamicHelp": false,
|
|
8284
|
+
"multiple": false,
|
|
8285
|
+
"type": "option"
|
|
8119
8286
|
}
|
|
8120
8287
|
},
|
|
8121
8288
|
"hasDynamicHelp": false,
|
|
8122
8289
|
"hiddenAliases": [],
|
|
8123
|
-
"id": "order:
|
|
8290
|
+
"id": "order:billing_address_clone_id",
|
|
8124
8291
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8125
8292
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8126
8293
|
"pluginType": "core",
|
|
@@ -8131,10 +8298,10 @@
|
|
|
8131
8298
|
"lib",
|
|
8132
8299
|
"commands",
|
|
8133
8300
|
"order",
|
|
8134
|
-
"
|
|
8301
|
+
"billing_address_clone_id.js"
|
|
8135
8302
|
]
|
|
8136
8303
|
},
|
|
8137
|
-
"order": {
|
|
8304
|
+
"order:billing_address_same_as_shipping": {
|
|
8138
8305
|
"aliases": [],
|
|
8139
8306
|
"args": {
|
|
8140
8307
|
"id": {
|
|
@@ -8143,7 +8310,7 @@
|
|
|
8143
8310
|
"required": true
|
|
8144
8311
|
}
|
|
8145
8312
|
},
|
|
8146
|
-
"description": "
|
|
8313
|
+
"description": "Send this attribute if you want the billing address to be cloned from the order's shipping address.",
|
|
8147
8314
|
"flags": {
|
|
8148
8315
|
"organization": {
|
|
8149
8316
|
"char": "o",
|
|
@@ -8208,7 +8375,7 @@
|
|
|
8208
8375
|
},
|
|
8209
8376
|
"hasDynamicHelp": false,
|
|
8210
8377
|
"hiddenAliases": [],
|
|
8211
|
-
"id": "order",
|
|
8378
|
+
"id": "order:billing_address_same_as_shipping",
|
|
8212
8379
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8213
8380
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8214
8381
|
"pluginType": "core",
|
|
@@ -8219,10 +8386,10 @@
|
|
|
8219
8386
|
"lib",
|
|
8220
8387
|
"commands",
|
|
8221
8388
|
"order",
|
|
8222
|
-
"
|
|
8389
|
+
"billing_address_same_as_shipping.js"
|
|
8223
8390
|
]
|
|
8224
8391
|
},
|
|
8225
|
-
"order:
|
|
8392
|
+
"order:cancel": {
|
|
8226
8393
|
"aliases": [],
|
|
8227
8394
|
"args": {
|
|
8228
8395
|
"id": {
|
|
@@ -8231,7 +8398,7 @@
|
|
|
8231
8398
|
"required": true
|
|
8232
8399
|
}
|
|
8233
8400
|
},
|
|
8234
|
-
"description": "Send this attribute if you want to
|
|
8401
|
+
"description": "Send this attribute if you want to cancel a placed order. The order's authorization will be automatically voided.",
|
|
8235
8402
|
"flags": {
|
|
8236
8403
|
"organization": {
|
|
8237
8404
|
"char": "o",
|
|
@@ -8296,7 +8463,7 @@
|
|
|
8296
8463
|
},
|
|
8297
8464
|
"hasDynamicHelp": false,
|
|
8298
8465
|
"hiddenAliases": [],
|
|
8299
|
-
"id": "order:
|
|
8466
|
+
"id": "order:cancel",
|
|
8300
8467
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8301
8468
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8302
8469
|
"pluginType": "core",
|
|
@@ -8307,10 +8474,10 @@
|
|
|
8307
8474
|
"lib",
|
|
8308
8475
|
"commands",
|
|
8309
8476
|
"order",
|
|
8310
|
-
"
|
|
8477
|
+
"cancel.js"
|
|
8311
8478
|
]
|
|
8312
8479
|
},
|
|
8313
|
-
"order:
|
|
8480
|
+
"order:capture": {
|
|
8314
8481
|
"aliases": [],
|
|
8315
8482
|
"args": {
|
|
8316
8483
|
"id": {
|
|
@@ -8319,7 +8486,7 @@
|
|
|
8319
8486
|
"required": true
|
|
8320
8487
|
}
|
|
8321
8488
|
},
|
|
8322
|
-
"description": "Send this attribute if you want to
|
|
8489
|
+
"description": "Send this attribute if you want to capture an authorized order. Cannot be passed by sales channels.",
|
|
8323
8490
|
"flags": {
|
|
8324
8491
|
"organization": {
|
|
8325
8492
|
"char": "o",
|
|
@@ -8384,7 +8551,7 @@
|
|
|
8384
8551
|
},
|
|
8385
8552
|
"hasDynamicHelp": false,
|
|
8386
8553
|
"hiddenAliases": [],
|
|
8387
|
-
"id": "order:
|
|
8554
|
+
"id": "order:capture",
|
|
8388
8555
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8389
8556
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8390
8557
|
"pluginType": "core",
|
|
@@ -8395,10 +8562,10 @@
|
|
|
8395
8562
|
"lib",
|
|
8396
8563
|
"commands",
|
|
8397
8564
|
"order",
|
|
8398
|
-
"
|
|
8565
|
+
"capture.js"
|
|
8399
8566
|
]
|
|
8400
8567
|
},
|
|
8401
|
-
"order:
|
|
8568
|
+
"order:commit_invoice": {
|
|
8402
8569
|
"aliases": [],
|
|
8403
8570
|
"args": {
|
|
8404
8571
|
"id": {
|
|
@@ -8407,7 +8574,7 @@
|
|
|
8407
8574
|
"required": true
|
|
8408
8575
|
}
|
|
8409
8576
|
},
|
|
8410
|
-
"description": "Send this attribute if you want to
|
|
8577
|
+
"description": "Send this attribute if you want commit the sales tax invoice to the associated tax calculator (currently supported by Avalara).",
|
|
8411
8578
|
"flags": {
|
|
8412
8579
|
"organization": {
|
|
8413
8580
|
"char": "o",
|
|
@@ -8472,7 +8639,7 @@
|
|
|
8472
8639
|
},
|
|
8473
8640
|
"hasDynamicHelp": false,
|
|
8474
8641
|
"hiddenAliases": [],
|
|
8475
|
-
"id": "order:
|
|
8642
|
+
"id": "order:commit_invoice",
|
|
8476
8643
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8477
8644
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8478
8645
|
"pluginType": "core",
|
|
@@ -8483,10 +8650,10 @@
|
|
|
8483
8650
|
"lib",
|
|
8484
8651
|
"commands",
|
|
8485
8652
|
"order",
|
|
8486
|
-
"
|
|
8653
|
+
"commit_invoice.js"
|
|
8487
8654
|
]
|
|
8488
8655
|
},
|
|
8489
|
-
"order:
|
|
8656
|
+
"order:create_subscriptions": {
|
|
8490
8657
|
"aliases": [],
|
|
8491
8658
|
"args": {
|
|
8492
8659
|
"id": {
|
|
@@ -8495,7 +8662,7 @@
|
|
|
8495
8662
|
"required": true
|
|
8496
8663
|
}
|
|
8497
8664
|
},
|
|
8498
|
-
"description": "Send this attribute if you want to
|
|
8665
|
+
"description": "Send this attribute upon/after placing the order if you want to create order subscriptions from the line items that have a frequency.",
|
|
8499
8666
|
"flags": {
|
|
8500
8667
|
"organization": {
|
|
8501
8668
|
"char": "o",
|
|
@@ -8560,7 +8727,7 @@
|
|
|
8560
8727
|
},
|
|
8561
8728
|
"hasDynamicHelp": false,
|
|
8562
8729
|
"hiddenAliases": [],
|
|
8563
|
-
"id": "order:
|
|
8730
|
+
"id": "order:create_subscriptions",
|
|
8564
8731
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8565
8732
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8566
8733
|
"pluginType": "core",
|
|
@@ -8571,10 +8738,10 @@
|
|
|
8571
8738
|
"lib",
|
|
8572
8739
|
"commands",
|
|
8573
8740
|
"order",
|
|
8574
|
-
"
|
|
8741
|
+
"create_subscriptions.js"
|
|
8575
8742
|
]
|
|
8576
8743
|
},
|
|
8577
|
-
"order:
|
|
8744
|
+
"order:customer_payment_source_id": {
|
|
8578
8745
|
"aliases": [],
|
|
8579
8746
|
"args": {
|
|
8580
8747
|
"id": {
|
|
@@ -8583,7 +8750,7 @@
|
|
|
8583
8750
|
"required": true
|
|
8584
8751
|
}
|
|
8585
8752
|
},
|
|
8586
|
-
"description": "
|
|
8753
|
+
"description": "The id of the customer payment source (i.e. credit card) that you want to use as the order's payment source.",
|
|
8587
8754
|
"flags": {
|
|
8588
8755
|
"organization": {
|
|
8589
8756
|
"char": "o",
|
|
@@ -8644,11 +8811,20 @@
|
|
|
8644
8811
|
"name": "unformatted",
|
|
8645
8812
|
"allowNo": false,
|
|
8646
8813
|
"type": "boolean"
|
|
8814
|
+
},
|
|
8815
|
+
"value": {
|
|
8816
|
+
"char": "v",
|
|
8817
|
+
"description": "the trigger attribute value",
|
|
8818
|
+
"name": "value",
|
|
8819
|
+
"required": true,
|
|
8820
|
+
"hasDynamicHelp": false,
|
|
8821
|
+
"multiple": false,
|
|
8822
|
+
"type": "option"
|
|
8647
8823
|
}
|
|
8648
8824
|
},
|
|
8649
8825
|
"hasDynamicHelp": false,
|
|
8650
8826
|
"hiddenAliases": [],
|
|
8651
|
-
"id": "order:
|
|
8827
|
+
"id": "order:customer_payment_source_id",
|
|
8652
8828
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8653
8829
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8654
8830
|
"pluginType": "core",
|
|
@@ -8659,10 +8835,10 @@
|
|
|
8659
8835
|
"lib",
|
|
8660
8836
|
"commands",
|
|
8661
8837
|
"order",
|
|
8662
|
-
"
|
|
8838
|
+
"customer_payment_source_id.js"
|
|
8663
8839
|
]
|
|
8664
8840
|
},
|
|
8665
|
-
"order:
|
|
8841
|
+
"order:fix_payment_source": {
|
|
8666
8842
|
"aliases": [],
|
|
8667
8843
|
"args": {
|
|
8668
8844
|
"id": {
|
|
@@ -8671,7 +8847,7 @@
|
|
|
8671
8847
|
"required": true
|
|
8672
8848
|
}
|
|
8673
8849
|
},
|
|
8674
|
-
"description": "Send this attribute if you want
|
|
8850
|
+
"description": "Send this attribute if you want to set the payment source associated with the last succeeded authorization. At the end of the fix the order should be placed and authorized and ready to be approved. A tentative to fix the payment source is done before approval automatically. Cannot be passed by sales channels.",
|
|
8675
8851
|
"flags": {
|
|
8676
8852
|
"organization": {
|
|
8677
8853
|
"char": "o",
|
|
@@ -8736,7 +8912,7 @@
|
|
|
8736
8912
|
},
|
|
8737
8913
|
"hasDynamicHelp": false,
|
|
8738
8914
|
"hiddenAliases": [],
|
|
8739
|
-
"id": "order:
|
|
8915
|
+
"id": "order:fix_payment_source",
|
|
8740
8916
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8741
8917
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8742
8918
|
"pluginType": "core",
|
|
@@ -8747,10 +8923,10 @@
|
|
|
8747
8923
|
"lib",
|
|
8748
8924
|
"commands",
|
|
8749
8925
|
"order",
|
|
8750
|
-
"
|
|
8926
|
+
"fix_payment_source.js"
|
|
8751
8927
|
]
|
|
8752
8928
|
},
|
|
8753
|
-
"order:
|
|
8929
|
+
"order:fulfill": {
|
|
8754
8930
|
"aliases": [],
|
|
8755
8931
|
"args": {
|
|
8756
8932
|
"id": {
|
|
@@ -8759,7 +8935,7 @@
|
|
|
8759
8935
|
"required": true
|
|
8760
8936
|
}
|
|
8761
8937
|
},
|
|
8762
|
-
"description": "Send this attribute if you want to
|
|
8938
|
+
"description": "Send this attribute if you want to mark as fulfilled the order (shipments must be cancelled, shipped or delivered, alternatively order must be approved). Cannot be passed by sales channels.",
|
|
8763
8939
|
"flags": {
|
|
8764
8940
|
"organization": {
|
|
8765
8941
|
"char": "o",
|
|
@@ -8824,7 +9000,7 @@
|
|
|
8824
9000
|
},
|
|
8825
9001
|
"hasDynamicHelp": false,
|
|
8826
9002
|
"hiddenAliases": [],
|
|
8827
|
-
"id": "order:
|
|
9003
|
+
"id": "order:fulfill",
|
|
8828
9004
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8829
9005
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8830
9006
|
"pluginType": "core",
|
|
@@ -8835,10 +9011,10 @@
|
|
|
8835
9011
|
"lib",
|
|
8836
9012
|
"commands",
|
|
8837
9013
|
"order",
|
|
8838
|
-
"
|
|
9014
|
+
"fulfill.js"
|
|
8839
9015
|
]
|
|
8840
9016
|
},
|
|
8841
|
-
"order
|
|
9017
|
+
"order": {
|
|
8842
9018
|
"aliases": [],
|
|
8843
9019
|
"args": {
|
|
8844
9020
|
"id": {
|
|
@@ -8847,7 +9023,7 @@
|
|
|
8847
9023
|
"required": true
|
|
8848
9024
|
}
|
|
8849
9025
|
},
|
|
8850
|
-
"description": "
|
|
9026
|
+
"description": "execute an action on a resource of type orders",
|
|
8851
9027
|
"flags": {
|
|
8852
9028
|
"organization": {
|
|
8853
9029
|
"char": "o",
|
|
@@ -8912,7 +9088,7 @@
|
|
|
8912
9088
|
},
|
|
8913
9089
|
"hasDynamicHelp": false,
|
|
8914
9090
|
"hiddenAliases": [],
|
|
8915
|
-
"id": "order
|
|
9091
|
+
"id": "order",
|
|
8916
9092
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8917
9093
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8918
9094
|
"pluginType": "core",
|
|
@@ -8923,10 +9099,10 @@
|
|
|
8923
9099
|
"lib",
|
|
8924
9100
|
"commands",
|
|
8925
9101
|
"order",
|
|
8926
|
-
"
|
|
9102
|
+
"index.js"
|
|
8927
9103
|
]
|
|
8928
9104
|
},
|
|
8929
|
-
"order:
|
|
9105
|
+
"order:nullify_payment_source": {
|
|
8930
9106
|
"aliases": [],
|
|
8931
9107
|
"args": {
|
|
8932
9108
|
"id": {
|
|
@@ -8935,7 +9111,7 @@
|
|
|
8935
9111
|
"required": true
|
|
8936
9112
|
}
|
|
8937
9113
|
},
|
|
8938
|
-
"description": "Send this attribute if you want
|
|
9114
|
+
"description": "Send this attribute if you want to nullify the payment source for this order.",
|
|
8939
9115
|
"flags": {
|
|
8940
9116
|
"organization": {
|
|
8941
9117
|
"char": "o",
|
|
@@ -9000,7 +9176,7 @@
|
|
|
9000
9176
|
},
|
|
9001
9177
|
"hasDynamicHelp": false,
|
|
9002
9178
|
"hiddenAliases": [],
|
|
9003
|
-
"id": "order:
|
|
9179
|
+
"id": "order:nullify_payment_source",
|
|
9004
9180
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9005
9181
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9006
9182
|
"pluginType": "core",
|
|
@@ -9011,10 +9187,10 @@
|
|
|
9011
9187
|
"lib",
|
|
9012
9188
|
"commands",
|
|
9013
9189
|
"order",
|
|
9014
|
-
"
|
|
9190
|
+
"nullify_payment_source.js"
|
|
9015
9191
|
]
|
|
9016
9192
|
},
|
|
9017
|
-
"order:
|
|
9193
|
+
"order:pending": {
|
|
9018
9194
|
"aliases": [],
|
|
9019
9195
|
"args": {
|
|
9020
9196
|
"id": {
|
|
@@ -9023,7 +9199,7 @@
|
|
|
9023
9199
|
"required": true
|
|
9024
9200
|
}
|
|
9025
9201
|
},
|
|
9026
|
-
"description": "Send this attribute if you want
|
|
9202
|
+
"description": "Send this attribute if you want to move a draft or placing order to pending. Cannot be passed by sales channels.",
|
|
9027
9203
|
"flags": {
|
|
9028
9204
|
"organization": {
|
|
9029
9205
|
"char": "o",
|
|
@@ -9088,7 +9264,7 @@
|
|
|
9088
9264
|
},
|
|
9089
9265
|
"hasDynamicHelp": false,
|
|
9090
9266
|
"hiddenAliases": [],
|
|
9091
|
-
"id": "order:
|
|
9267
|
+
"id": "order:pending",
|
|
9092
9268
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9093
9269
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9094
9270
|
"pluginType": "core",
|
|
@@ -9099,10 +9275,10 @@
|
|
|
9099
9275
|
"lib",
|
|
9100
9276
|
"commands",
|
|
9101
9277
|
"order",
|
|
9102
|
-
"
|
|
9278
|
+
"pending.js"
|
|
9103
9279
|
]
|
|
9104
9280
|
},
|
|
9105
|
-
"order:
|
|
9281
|
+
"order:place": {
|
|
9106
9282
|
"aliases": [],
|
|
9107
9283
|
"args": {
|
|
9108
9284
|
"id": {
|
|
@@ -9111,7 +9287,7 @@
|
|
|
9111
9287
|
"required": true
|
|
9112
9288
|
}
|
|
9113
9289
|
},
|
|
9114
|
-
"description": "
|
|
9290
|
+
"description": "Send this attribute if you want to place the order.",
|
|
9115
9291
|
"flags": {
|
|
9116
9292
|
"organization": {
|
|
9117
9293
|
"char": "o",
|
|
@@ -9172,20 +9348,11 @@
|
|
|
9172
9348
|
"name": "unformatted",
|
|
9173
9349
|
"allowNo": false,
|
|
9174
9350
|
"type": "boolean"
|
|
9175
|
-
},
|
|
9176
|
-
"value": {
|
|
9177
|
-
"char": "v",
|
|
9178
|
-
"description": "the trigger attribute value",
|
|
9179
|
-
"name": "value",
|
|
9180
|
-
"required": true,
|
|
9181
|
-
"hasDynamicHelp": false,
|
|
9182
|
-
"multiple": false,
|
|
9183
|
-
"type": "option"
|
|
9184
9351
|
}
|
|
9185
9352
|
},
|
|
9186
9353
|
"hasDynamicHelp": false,
|
|
9187
9354
|
"hiddenAliases": [],
|
|
9188
|
-
"id": "order:
|
|
9355
|
+
"id": "order:place",
|
|
9189
9356
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9190
9357
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9191
9358
|
"pluginType": "core",
|
|
@@ -9196,10 +9363,10 @@
|
|
|
9196
9363
|
"lib",
|
|
9197
9364
|
"commands",
|
|
9198
9365
|
"order",
|
|
9199
|
-
"
|
|
9366
|
+
"place.js"
|
|
9200
9367
|
]
|
|
9201
9368
|
},
|
|
9202
|
-
"order:
|
|
9369
|
+
"order:refresh": {
|
|
9203
9370
|
"aliases": [],
|
|
9204
9371
|
"args": {
|
|
9205
9372
|
"id": {
|
|
@@ -9208,7 +9375,7 @@
|
|
|
9208
9375
|
"required": true
|
|
9209
9376
|
}
|
|
9210
9377
|
},
|
|
9211
|
-
"description": "Send this attribute if you want
|
|
9378
|
+
"description": "Send this attribute if you want to manually refresh the order.",
|
|
9212
9379
|
"flags": {
|
|
9213
9380
|
"organization": {
|
|
9214
9381
|
"char": "o",
|
|
@@ -9273,7 +9440,7 @@
|
|
|
9273
9440
|
},
|
|
9274
9441
|
"hasDynamicHelp": false,
|
|
9275
9442
|
"hiddenAliases": [],
|
|
9276
|
-
"id": "order:
|
|
9443
|
+
"id": "order:refresh",
|
|
9277
9444
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9278
9445
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9279
9446
|
"pluginType": "core",
|
|
@@ -9284,10 +9451,10 @@
|
|
|
9284
9451
|
"lib",
|
|
9285
9452
|
"commands",
|
|
9286
9453
|
"order",
|
|
9287
|
-
"
|
|
9454
|
+
"refresh.js"
|
|
9288
9455
|
]
|
|
9289
9456
|
},
|
|
9290
|
-
"order:
|
|
9457
|
+
"order:refund": {
|
|
9291
9458
|
"aliases": [],
|
|
9292
9459
|
"args": {
|
|
9293
9460
|
"id": {
|
|
@@ -9296,7 +9463,7 @@
|
|
|
9296
9463
|
"required": true
|
|
9297
9464
|
}
|
|
9298
9465
|
},
|
|
9299
|
-
"description": "Send this attribute if you want to
|
|
9466
|
+
"description": "Send this attribute if you want to refund a captured order. Cannot be passed by sales channels.",
|
|
9300
9467
|
"flags": {
|
|
9301
9468
|
"organization": {
|
|
9302
9469
|
"char": "o",
|
|
@@ -9361,7 +9528,7 @@
|
|
|
9361
9528
|
},
|
|
9362
9529
|
"hasDynamicHelp": false,
|
|
9363
9530
|
"hiddenAliases": [],
|
|
9364
|
-
"id": "order:
|
|
9531
|
+
"id": "order:refund",
|
|
9365
9532
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9366
9533
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9367
9534
|
"pluginType": "core",
|
|
@@ -9372,10 +9539,10 @@
|
|
|
9372
9539
|
"lib",
|
|
9373
9540
|
"commands",
|
|
9374
9541
|
"order",
|
|
9375
|
-
"
|
|
9542
|
+
"refund.js"
|
|
9376
9543
|
]
|
|
9377
9544
|
},
|
|
9378
|
-
"order:
|
|
9545
|
+
"order:refund_invoice": {
|
|
9379
9546
|
"aliases": [],
|
|
9380
9547
|
"args": {
|
|
9381
9548
|
"id": {
|
|
@@ -9384,7 +9551,7 @@
|
|
|
9384
9551
|
"required": true
|
|
9385
9552
|
}
|
|
9386
9553
|
},
|
|
9387
|
-
"description": "Send this attribute
|
|
9554
|
+
"description": "Send this attribute if you want refund the sales tax invoice to the associated tax calculator (currently supported by Avalara).",
|
|
9388
9555
|
"flags": {
|
|
9389
9556
|
"organization": {
|
|
9390
9557
|
"char": "o",
|
|
@@ -9449,7 +9616,7 @@
|
|
|
9449
9616
|
},
|
|
9450
9617
|
"hasDynamicHelp": false,
|
|
9451
9618
|
"hiddenAliases": [],
|
|
9452
|
-
"id": "order:
|
|
9619
|
+
"id": "order:refund_invoice",
|
|
9453
9620
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9454
9621
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9455
9622
|
"pluginType": "core",
|
|
@@ -9460,10 +9627,10 @@
|
|
|
9460
9627
|
"lib",
|
|
9461
9628
|
"commands",
|
|
9462
9629
|
"order",
|
|
9463
|
-
"
|
|
9630
|
+
"refund_invoice.js"
|
|
9464
9631
|
]
|
|
9465
9632
|
},
|
|
9466
|
-
"order:
|
|
9633
|
+
"order:reset_circuit": {
|
|
9467
9634
|
"aliases": [],
|
|
9468
9635
|
"args": {
|
|
9469
9636
|
"id": {
|
|
@@ -9472,7 +9639,7 @@
|
|
|
9472
9639
|
"required": true
|
|
9473
9640
|
}
|
|
9474
9641
|
},
|
|
9475
|
-
"description": "Send this attribute if you want to
|
|
9642
|
+
"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.",
|
|
9476
9643
|
"flags": {
|
|
9477
9644
|
"organization": {
|
|
9478
9645
|
"char": "o",
|
|
@@ -9537,7 +9704,7 @@
|
|
|
9537
9704
|
},
|
|
9538
9705
|
"hasDynamicHelp": false,
|
|
9539
9706
|
"hiddenAliases": [],
|
|
9540
|
-
"id": "order:
|
|
9707
|
+
"id": "order:reset_circuit",
|
|
9541
9708
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9542
9709
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9543
9710
|
"pluginType": "core",
|
|
@@ -9548,10 +9715,10 @@
|
|
|
9548
9715
|
"lib",
|
|
9549
9716
|
"commands",
|
|
9550
9717
|
"order",
|
|
9551
|
-
"
|
|
9718
|
+
"reset_circuit.js"
|
|
9552
9719
|
]
|
|
9553
9720
|
},
|
|
9554
|
-
"order:
|
|
9721
|
+
"order:save_billing_address_to_customer_address_book": {
|
|
9555
9722
|
"aliases": [],
|
|
9556
9723
|
"args": {
|
|
9557
9724
|
"id": {
|
|
@@ -9560,7 +9727,7 @@
|
|
|
9560
9727
|
"required": true
|
|
9561
9728
|
}
|
|
9562
9729
|
},
|
|
9563
|
-
"description": "Send this attribute if you want
|
|
9730
|
+
"description": "Send this attribute if you want the order's billing address to be saved in the customer's address book as a customer address.",
|
|
9564
9731
|
"flags": {
|
|
9565
9732
|
"organization": {
|
|
9566
9733
|
"char": "o",
|
|
@@ -9625,7 +9792,7 @@
|
|
|
9625
9792
|
},
|
|
9626
9793
|
"hasDynamicHelp": false,
|
|
9627
9794
|
"hiddenAliases": [],
|
|
9628
|
-
"id": "order:
|
|
9795
|
+
"id": "order:save_billing_address_to_customer_address_book",
|
|
9629
9796
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9630
9797
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9631
9798
|
"pluginType": "core",
|
|
@@ -9636,10 +9803,10 @@
|
|
|
9636
9803
|
"lib",
|
|
9637
9804
|
"commands",
|
|
9638
9805
|
"order",
|
|
9639
|
-
"
|
|
9806
|
+
"save_billing_address_to_customer_address_book.js"
|
|
9640
9807
|
]
|
|
9641
9808
|
},
|
|
9642
|
-
"order:
|
|
9809
|
+
"order:save_payment_source_to_customer_wallet": {
|
|
9643
9810
|
"aliases": [],
|
|
9644
9811
|
"args": {
|
|
9645
9812
|
"id": {
|
|
@@ -9648,7 +9815,7 @@
|
|
|
9648
9815
|
"required": true
|
|
9649
9816
|
}
|
|
9650
9817
|
},
|
|
9651
|
-
"description": "Send this attribute if you want to
|
|
9818
|
+
"description": "Send this attribute if you want the order's payment source to be saved in the customer's wallet as a customer payment source.",
|
|
9652
9819
|
"flags": {
|
|
9653
9820
|
"organization": {
|
|
9654
9821
|
"char": "o",
|
|
@@ -9713,7 +9880,7 @@
|
|
|
9713
9880
|
},
|
|
9714
9881
|
"hasDynamicHelp": false,
|
|
9715
9882
|
"hiddenAliases": [],
|
|
9716
|
-
"id": "order:
|
|
9883
|
+
"id": "order:save_payment_source_to_customer_wallet",
|
|
9717
9884
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9718
9885
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9719
9886
|
"pluginType": "core",
|
|
@@ -9724,10 +9891,10 @@
|
|
|
9724
9891
|
"lib",
|
|
9725
9892
|
"commands",
|
|
9726
9893
|
"order",
|
|
9727
|
-
"
|
|
9894
|
+
"save_payment_source_to_customer_wallet.js"
|
|
9728
9895
|
]
|
|
9729
9896
|
},
|
|
9730
|
-
"
|
|
9897
|
+
"order:save_shipping_address_to_customer_address_book": {
|
|
9731
9898
|
"aliases": [],
|
|
9732
9899
|
"args": {
|
|
9733
9900
|
"id": {
|
|
@@ -9736,7 +9903,7 @@
|
|
|
9736
9903
|
"required": true
|
|
9737
9904
|
}
|
|
9738
9905
|
},
|
|
9739
|
-
"description": "Send this attribute if you want to
|
|
9906
|
+
"description": "Send this attribute if you want the order's shipping address to be saved in the customer's address book as a customer address.",
|
|
9740
9907
|
"flags": {
|
|
9741
9908
|
"organization": {
|
|
9742
9909
|
"char": "o",
|
|
@@ -9801,7 +9968,7 @@
|
|
|
9801
9968
|
},
|
|
9802
9969
|
"hasDynamicHelp": false,
|
|
9803
9970
|
"hiddenAliases": [],
|
|
9804
|
-
"id": "
|
|
9971
|
+
"id": "order:save_shipping_address_to_customer_address_book",
|
|
9805
9972
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9806
9973
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9807
9974
|
"pluginType": "core",
|
|
@@ -9811,11 +9978,11 @@
|
|
|
9811
9978
|
"relativePath": [
|
|
9812
9979
|
"lib",
|
|
9813
9980
|
"commands",
|
|
9814
|
-
"
|
|
9815
|
-
"
|
|
9981
|
+
"order",
|
|
9982
|
+
"save_shipping_address_to_customer_address_book.js"
|
|
9816
9983
|
]
|
|
9817
9984
|
},
|
|
9818
|
-
"
|
|
9985
|
+
"order:shipping_address_clone_id": {
|
|
9819
9986
|
"aliases": [],
|
|
9820
9987
|
"args": {
|
|
9821
9988
|
"id": {
|
|
@@ -9824,7 +9991,7 @@
|
|
|
9824
9991
|
"required": true
|
|
9825
9992
|
}
|
|
9826
9993
|
},
|
|
9827
|
-
"description": "
|
|
9994
|
+
"description": "The id of the address that you want to clone to create the order's shipping address.",
|
|
9828
9995
|
"flags": {
|
|
9829
9996
|
"organization": {
|
|
9830
9997
|
"char": "o",
|
|
@@ -9885,11 +10052,20 @@
|
|
|
9885
10052
|
"name": "unformatted",
|
|
9886
10053
|
"allowNo": false,
|
|
9887
10054
|
"type": "boolean"
|
|
10055
|
+
},
|
|
10056
|
+
"value": {
|
|
10057
|
+
"char": "v",
|
|
10058
|
+
"description": "the trigger attribute value",
|
|
10059
|
+
"name": "value",
|
|
10060
|
+
"required": true,
|
|
10061
|
+
"hasDynamicHelp": false,
|
|
10062
|
+
"multiple": false,
|
|
10063
|
+
"type": "option"
|
|
9888
10064
|
}
|
|
9889
10065
|
},
|
|
9890
10066
|
"hasDynamicHelp": false,
|
|
9891
10067
|
"hiddenAliases": [],
|
|
9892
|
-
"id": "
|
|
10068
|
+
"id": "order:shipping_address_clone_id",
|
|
9893
10069
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9894
10070
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9895
10071
|
"pluginType": "core",
|
|
@@ -9899,11 +10075,11 @@
|
|
|
9899
10075
|
"relativePath": [
|
|
9900
10076
|
"lib",
|
|
9901
10077
|
"commands",
|
|
9902
|
-
"
|
|
9903
|
-
"
|
|
10078
|
+
"order",
|
|
10079
|
+
"shipping_address_clone_id.js"
|
|
9904
10080
|
]
|
|
9905
10081
|
},
|
|
9906
|
-
"
|
|
10082
|
+
"order:shipping_address_same_as_billing": {
|
|
9907
10083
|
"aliases": [],
|
|
9908
10084
|
"args": {
|
|
9909
10085
|
"id": {
|
|
@@ -9912,7 +10088,7 @@
|
|
|
9912
10088
|
"required": true
|
|
9913
10089
|
}
|
|
9914
10090
|
},
|
|
9915
|
-
"description": "Send this attribute if you want
|
|
10091
|
+
"description": "Send this attribute if you want the shipping address to be cloned from the order's billing address.",
|
|
9916
10092
|
"flags": {
|
|
9917
10093
|
"organization": {
|
|
9918
10094
|
"char": "o",
|
|
@@ -9977,7 +10153,7 @@
|
|
|
9977
10153
|
},
|
|
9978
10154
|
"hasDynamicHelp": false,
|
|
9979
10155
|
"hiddenAliases": [],
|
|
9980
|
-
"id": "
|
|
10156
|
+
"id": "order:shipping_address_same_as_billing",
|
|
9981
10157
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
9982
10158
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
9983
10159
|
"pluginType": "core",
|
|
@@ -9987,11 +10163,11 @@
|
|
|
9987
10163
|
"relativePath": [
|
|
9988
10164
|
"lib",
|
|
9989
10165
|
"commands",
|
|
9990
|
-
"
|
|
9991
|
-
"
|
|
10166
|
+
"order",
|
|
10167
|
+
"shipping_address_same_as_billing.js"
|
|
9992
10168
|
]
|
|
9993
10169
|
},
|
|
9994
|
-
"
|
|
10170
|
+
"order:start_editing": {
|
|
9995
10171
|
"aliases": [],
|
|
9996
10172
|
"args": {
|
|
9997
10173
|
"id": {
|
|
@@ -10000,7 +10176,7 @@
|
|
|
10000
10176
|
"required": true
|
|
10001
10177
|
}
|
|
10002
10178
|
},
|
|
10003
|
-
"description": "Send this attribute if you want to
|
|
10179
|
+
"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.",
|
|
10004
10180
|
"flags": {
|
|
10005
10181
|
"organization": {
|
|
10006
10182
|
"char": "o",
|
|
@@ -10065,7 +10241,7 @@
|
|
|
10065
10241
|
},
|
|
10066
10242
|
"hasDynamicHelp": false,
|
|
10067
10243
|
"hiddenAliases": [],
|
|
10068
|
-
"id": "
|
|
10244
|
+
"id": "order:start_editing",
|
|
10069
10245
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
10070
10246
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
10071
10247
|
"pluginType": "core",
|
|
@@ -10075,11 +10251,11 @@
|
|
|
10075
10251
|
"relativePath": [
|
|
10076
10252
|
"lib",
|
|
10077
10253
|
"commands",
|
|
10078
|
-
"
|
|
10079
|
-
"
|
|
10254
|
+
"order",
|
|
10255
|
+
"start_editing.js"
|
|
10080
10256
|
]
|
|
10081
10257
|
},
|
|
10082
|
-
"
|
|
10258
|
+
"order:stop_editing": {
|
|
10083
10259
|
"aliases": [],
|
|
10084
10260
|
"args": {
|
|
10085
10261
|
"id": {
|
|
@@ -10088,7 +10264,7 @@
|
|
|
10088
10264
|
"required": true
|
|
10089
10265
|
}
|
|
10090
10266
|
},
|
|
10091
|
-
"description": "
|
|
10267
|
+
"description": "Send this attribute to stop the editing for the order and return back to placed status. Cannot be passed by sales channels.",
|
|
10092
10268
|
"flags": {
|
|
10093
10269
|
"organization": {
|
|
10094
10270
|
"char": "o",
|
|
@@ -10153,7 +10329,7 @@
|
|
|
10153
10329
|
},
|
|
10154
10330
|
"hasDynamicHelp": false,
|
|
10155
10331
|
"hiddenAliases": [],
|
|
10156
|
-
"id": "
|
|
10332
|
+
"id": "order:stop_editing",
|
|
10157
10333
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
10158
10334
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
10159
10335
|
"pluginType": "core",
|
|
@@ -10163,11 +10339,11 @@
|
|
|
10163
10339
|
"relativePath": [
|
|
10164
10340
|
"lib",
|
|
10165
10341
|
"commands",
|
|
10166
|
-
"
|
|
10167
|
-
"
|
|
10342
|
+
"order",
|
|
10343
|
+
"stop_editing.js"
|
|
10168
10344
|
]
|
|
10169
10345
|
},
|
|
10170
|
-
"
|
|
10346
|
+
"order:unarchive": {
|
|
10171
10347
|
"aliases": [],
|
|
10172
10348
|
"args": {
|
|
10173
10349
|
"id": {
|
|
@@ -10176,7 +10352,7 @@
|
|
|
10176
10352
|
"required": true
|
|
10177
10353
|
}
|
|
10178
10354
|
},
|
|
10179
|
-
"description": "Send this attribute if you want to
|
|
10355
|
+
"description": "Send this attribute if you want to unarchive the order.",
|
|
10180
10356
|
"flags": {
|
|
10181
10357
|
"organization": {
|
|
10182
10358
|
"char": "o",
|
|
@@ -10241,7 +10417,7 @@
|
|
|
10241
10417
|
},
|
|
10242
10418
|
"hasDynamicHelp": false,
|
|
10243
10419
|
"hiddenAliases": [],
|
|
10244
|
-
"id": "
|
|
10420
|
+
"id": "order:unarchive",
|
|
10245
10421
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
10246
10422
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
10247
10423
|
"pluginType": "core",
|
|
@@ -10251,11 +10427,11 @@
|
|
|
10251
10427
|
"relativePath": [
|
|
10252
10428
|
"lib",
|
|
10253
10429
|
"commands",
|
|
10254
|
-
"
|
|
10255
|
-
"
|
|
10430
|
+
"order",
|
|
10431
|
+
"unarchive.js"
|
|
10256
10432
|
]
|
|
10257
10433
|
},
|
|
10258
|
-
"
|
|
10434
|
+
"order:update_taxes": {
|
|
10259
10435
|
"aliases": [],
|
|
10260
10436
|
"args": {
|
|
10261
10437
|
"id": {
|
|
@@ -10264,7 +10440,7 @@
|
|
|
10264
10440
|
"required": true
|
|
10265
10441
|
}
|
|
10266
10442
|
},
|
|
10267
|
-
"description": "Send this attribute if you want to
|
|
10443
|
+
"description": "Send this attribute if you want to force tax calculation for this order (a tax calculator must be associated to the order's market).",
|
|
10268
10444
|
"flags": {
|
|
10269
10445
|
"organization": {
|
|
10270
10446
|
"char": "o",
|
|
@@ -10329,7 +10505,7 @@
|
|
|
10329
10505
|
},
|
|
10330
10506
|
"hasDynamicHelp": false,
|
|
10331
10507
|
"hiddenAliases": [],
|
|
10332
|
-
"id": "
|
|
10508
|
+
"id": "order:update_taxes",
|
|
10333
10509
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
10334
10510
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
10335
10511
|
"pluginType": "core",
|
|
@@ -10339,11 +10515,11 @@
|
|
|
10339
10515
|
"relativePath": [
|
|
10340
10516
|
"lib",
|
|
10341
10517
|
"commands",
|
|
10342
|
-
"
|
|
10343
|
-
"
|
|
10518
|
+
"order",
|
|
10519
|
+
"update_taxes.js"
|
|
10344
10520
|
]
|
|
10345
10521
|
},
|
|
10346
|
-
"
|
|
10522
|
+
"order:validate": {
|
|
10347
10523
|
"aliases": [],
|
|
10348
10524
|
"args": {
|
|
10349
10525
|
"id": {
|
|
@@ -10352,7 +10528,7 @@
|
|
|
10352
10528
|
"required": true
|
|
10353
10529
|
}
|
|
10354
10530
|
},
|
|
10355
|
-
"description": "
|
|
10531
|
+
"description": "Send this attribute if you want to trigger the external validation for the order.",
|
|
10356
10532
|
"flags": {
|
|
10357
10533
|
"organization": {
|
|
10358
10534
|
"char": "o",
|
|
@@ -10417,7 +10593,7 @@
|
|
|
10417
10593
|
},
|
|
10418
10594
|
"hasDynamicHelp": false,
|
|
10419
10595
|
"hiddenAliases": [],
|
|
10420
|
-
"id": "
|
|
10596
|
+
"id": "order:validate",
|
|
10421
10597
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
10422
10598
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
10423
10599
|
"pluginType": "core",
|
|
@@ -10427,8 +10603,8 @@
|
|
|
10427
10603
|
"relativePath": [
|
|
10428
10604
|
"lib",
|
|
10429
10605
|
"commands",
|
|
10430
|
-
"
|
|
10431
|
-
"
|
|
10606
|
+
"order",
|
|
10607
|
+
"validate.js"
|
|
10432
10608
|
]
|
|
10433
10609
|
},
|
|
10434
10610
|
"percentage_discount_promotion:disable": {
|
|
@@ -16416,5 +16592,5 @@
|
|
|
16416
16592
|
]
|
|
16417
16593
|
}
|
|
16418
16594
|
},
|
|
16419
|
-
"version": "4.
|
|
16595
|
+
"version": "4.11.0"
|
|
16420
16596
|
}
|