@commercelayer/cli-plugin-triggers 4.9.1 → 4.10.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 +232 -0
- package/lib/commands/adyen_payment/authorize.d.ts +9 -0
- package/lib/commands/adyen_payment/authorize.js +22 -0
- package/lib/commands/cleanup/index.d.ts +9 -0
- package/lib/commands/cleanup/index.js +40 -0
- package/lib/commands/cleanup/interrupt.d.ts +9 -0
- package/lib/commands/cleanup/interrupt.js +22 -0
- package/lib/commands/export/index.d.ts +9 -0
- package/lib/commands/export/index.js +40 -0
- package/lib/commands/export/interrupt.d.ts +9 -0
- package/lib/commands/export/interrupt.js +22 -0
- package/lib/commands/import/index.d.ts +9 -0
- package/lib/commands/import/index.js +40 -0
- package/lib/commands/import/interrupt.d.ts +9 -0
- package/lib/commands/import/interrupt.js +22 -0
- package/lib/commands/order/fix_payment_source.d.ts +9 -0
- package/lib/commands/order/fix_payment_source.js +22 -0
- package/lib/commands/vertex_account/index.d.ts +9 -0
- package/lib/commands/vertex_account/index.js +40 -0
- package/lib/commands/vertex_account/refresh_token.d.ts +9 -0
- package/lib/commands/vertex_account/refresh_token.js +22 -0
- package/lib/triggers/adyen_payments.d.ts +1 -1
- package/lib/triggers/adyen_payments.js +5 -0
- package/lib/triggers/cleanups.d.ts +3 -0
- package/lib/triggers/cleanups.js +10 -0
- package/lib/triggers/exports.d.ts +3 -0
- package/lib/triggers/exports.js +10 -0
- package/lib/triggers/imports.d.ts +3 -0
- package/lib/triggers/imports.js +10 -0
- package/lib/triggers/orders.d.ts +1 -1
- package/lib/triggers/orders.js +5 -0
- package/lib/triggers/vertex_accounts.d.ts +3 -0
- package/lib/triggers/vertex_accounts.js +10 -0
- package/oclif.manifest.json +981 -101
- package/package.json +9 -8
package/oclif.manifest.json
CHANGED
|
@@ -20,6 +20,94 @@
|
|
|
20
20
|
"noc.js"
|
|
21
21
|
]
|
|
22
22
|
},
|
|
23
|
+
"adyen_payment:authorize": {
|
|
24
|
+
"aliases": [],
|
|
25
|
+
"args": {
|
|
26
|
+
"id": {
|
|
27
|
+
"description": "the unique id of the resource",
|
|
28
|
+
"name": "id",
|
|
29
|
+
"required": true
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"description": "Send this attribute if you want to authorize the payment.",
|
|
33
|
+
"flags": {
|
|
34
|
+
"organization": {
|
|
35
|
+
"char": "o",
|
|
36
|
+
"description": "the slug of your organization",
|
|
37
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
38
|
+
"hidden": true,
|
|
39
|
+
"name": "organization",
|
|
40
|
+
"required": true,
|
|
41
|
+
"hasDynamicHelp": false,
|
|
42
|
+
"multiple": false,
|
|
43
|
+
"type": "option"
|
|
44
|
+
},
|
|
45
|
+
"domain": {
|
|
46
|
+
"char": "d",
|
|
47
|
+
"dependsOn": [
|
|
48
|
+
"organization"
|
|
49
|
+
],
|
|
50
|
+
"env": "CL_CLI_DOMAIN",
|
|
51
|
+
"hidden": true,
|
|
52
|
+
"name": "domain",
|
|
53
|
+
"required": false,
|
|
54
|
+
"hasDynamicHelp": false,
|
|
55
|
+
"multiple": false,
|
|
56
|
+
"type": "option"
|
|
57
|
+
},
|
|
58
|
+
"accessToken": {
|
|
59
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
60
|
+
"hidden": true,
|
|
61
|
+
"name": "accessToken",
|
|
62
|
+
"required": true,
|
|
63
|
+
"hasDynamicHelp": false,
|
|
64
|
+
"multiple": false,
|
|
65
|
+
"type": "option"
|
|
66
|
+
},
|
|
67
|
+
"print": {
|
|
68
|
+
"char": "p",
|
|
69
|
+
"description": "print out the modified resource",
|
|
70
|
+
"name": "print",
|
|
71
|
+
"allowNo": false,
|
|
72
|
+
"type": "boolean"
|
|
73
|
+
},
|
|
74
|
+
"json": {
|
|
75
|
+
"char": "j",
|
|
76
|
+
"dependsOn": [
|
|
77
|
+
"print"
|
|
78
|
+
],
|
|
79
|
+
"description": "print result in JSON format",
|
|
80
|
+
"name": "json",
|
|
81
|
+
"allowNo": false,
|
|
82
|
+
"type": "boolean"
|
|
83
|
+
},
|
|
84
|
+
"unformatted": {
|
|
85
|
+
"char": "u",
|
|
86
|
+
"dependsOn": [
|
|
87
|
+
"json"
|
|
88
|
+
],
|
|
89
|
+
"description": "print JSON output without indentation",
|
|
90
|
+
"name": "unformatted",
|
|
91
|
+
"allowNo": false,
|
|
92
|
+
"type": "boolean"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"hasDynamicHelp": false,
|
|
96
|
+
"hiddenAliases": [],
|
|
97
|
+
"id": "adyen_payment:authorize",
|
|
98
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
99
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
100
|
+
"pluginType": "core",
|
|
101
|
+
"strict": true,
|
|
102
|
+
"enableJsonFlag": false,
|
|
103
|
+
"isESM": false,
|
|
104
|
+
"relativePath": [
|
|
105
|
+
"lib",
|
|
106
|
+
"commands",
|
|
107
|
+
"adyen_payment",
|
|
108
|
+
"authorize.js"
|
|
109
|
+
]
|
|
110
|
+
},
|
|
23
111
|
"adyen_payment:details": {
|
|
24
112
|
"aliases": [],
|
|
25
113
|
"args": {
|
|
@@ -2132,7 +2220,7 @@
|
|
|
2132
2220
|
"refresh.js"
|
|
2133
2221
|
]
|
|
2134
2222
|
},
|
|
2135
|
-
"
|
|
2223
|
+
"cleanup": {
|
|
2136
2224
|
"aliases": [],
|
|
2137
2225
|
"args": {
|
|
2138
2226
|
"id": {
|
|
@@ -2141,7 +2229,7 @@
|
|
|
2141
2229
|
"required": true
|
|
2142
2230
|
}
|
|
2143
2231
|
},
|
|
2144
|
-
"description": "execute an action on a resource of type
|
|
2232
|
+
"description": "execute an action on a resource of type cleanups",
|
|
2145
2233
|
"flags": {
|
|
2146
2234
|
"organization": {
|
|
2147
2235
|
"char": "o",
|
|
@@ -2206,7 +2294,7 @@
|
|
|
2206
2294
|
},
|
|
2207
2295
|
"hasDynamicHelp": false,
|
|
2208
2296
|
"hiddenAliases": [],
|
|
2209
|
-
"id": "
|
|
2297
|
+
"id": "cleanup",
|
|
2210
2298
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2211
2299
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2212
2300
|
"pluginType": "core",
|
|
@@ -2216,11 +2304,11 @@
|
|
|
2216
2304
|
"relativePath": [
|
|
2217
2305
|
"lib",
|
|
2218
2306
|
"commands",
|
|
2219
|
-
"
|
|
2307
|
+
"cleanup",
|
|
2220
2308
|
"index.js"
|
|
2221
2309
|
]
|
|
2222
2310
|
},
|
|
2223
|
-
"
|
|
2311
|
+
"cleanup:interrupt": {
|
|
2224
2312
|
"aliases": [],
|
|
2225
2313
|
"args": {
|
|
2226
2314
|
"id": {
|
|
@@ -2229,7 +2317,7 @@
|
|
|
2229
2317
|
"required": true
|
|
2230
2318
|
}
|
|
2231
2319
|
},
|
|
2232
|
-
"description": "Send
|
|
2320
|
+
"description": "Send this attribute if you want to mark status as 'interrupted'.",
|
|
2233
2321
|
"flags": {
|
|
2234
2322
|
"organization": {
|
|
2235
2323
|
"char": "o",
|
|
@@ -2294,7 +2382,7 @@
|
|
|
2294
2382
|
},
|
|
2295
2383
|
"hasDynamicHelp": false,
|
|
2296
2384
|
"hiddenAliases": [],
|
|
2297
|
-
"id": "
|
|
2385
|
+
"id": "cleanup:interrupt",
|
|
2298
2386
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2299
2387
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2300
2388
|
"pluginType": "core",
|
|
@@ -2304,11 +2392,11 @@
|
|
|
2304
2392
|
"relativePath": [
|
|
2305
2393
|
"lib",
|
|
2306
2394
|
"commands",
|
|
2307
|
-
"
|
|
2308
|
-
"
|
|
2395
|
+
"cleanup",
|
|
2396
|
+
"interrupt.js"
|
|
2309
2397
|
]
|
|
2310
2398
|
},
|
|
2311
|
-
"
|
|
2399
|
+
"customer_password_reset": {
|
|
2312
2400
|
"aliases": [],
|
|
2313
2401
|
"args": {
|
|
2314
2402
|
"id": {
|
|
@@ -2317,7 +2405,7 @@
|
|
|
2317
2405
|
"required": true
|
|
2318
2406
|
}
|
|
2319
2407
|
},
|
|
2320
|
-
"description": "execute an action on a resource of type
|
|
2408
|
+
"description": "execute an action on a resource of type customer_password_resets",
|
|
2321
2409
|
"flags": {
|
|
2322
2410
|
"organization": {
|
|
2323
2411
|
"char": "o",
|
|
@@ -2382,7 +2470,7 @@
|
|
|
2382
2470
|
},
|
|
2383
2471
|
"hasDynamicHelp": false,
|
|
2384
2472
|
"hiddenAliases": [],
|
|
2385
|
-
"id": "
|
|
2473
|
+
"id": "customer_password_reset",
|
|
2386
2474
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2387
2475
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2388
2476
|
"pluginType": "core",
|
|
@@ -2392,11 +2480,11 @@
|
|
|
2392
2480
|
"relativePath": [
|
|
2393
2481
|
"lib",
|
|
2394
2482
|
"commands",
|
|
2395
|
-
"
|
|
2483
|
+
"customer_password_reset",
|
|
2396
2484
|
"index.js"
|
|
2397
2485
|
]
|
|
2398
2486
|
},
|
|
2399
|
-
"
|
|
2487
|
+
"customer_password_reset:reset_password_token": {
|
|
2400
2488
|
"aliases": [],
|
|
2401
2489
|
"args": {
|
|
2402
2490
|
"id": {
|
|
@@ -2405,7 +2493,7 @@
|
|
|
2405
2493
|
"required": true
|
|
2406
2494
|
}
|
|
2407
2495
|
},
|
|
2408
|
-
"description": "Send
|
|
2496
|
+
"description": "Send the 'reset_password_token' that you got on create when updating the customer password.",
|
|
2409
2497
|
"flags": {
|
|
2410
2498
|
"organization": {
|
|
2411
2499
|
"char": "o",
|
|
@@ -2470,7 +2558,7 @@
|
|
|
2470
2558
|
},
|
|
2471
2559
|
"hasDynamicHelp": false,
|
|
2472
2560
|
"hiddenAliases": [],
|
|
2473
|
-
"id": "
|
|
2561
|
+
"id": "customer_password_reset:reset_password_token",
|
|
2474
2562
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2475
2563
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2476
2564
|
"pluginType": "core",
|
|
@@ -2480,11 +2568,11 @@
|
|
|
2480
2568
|
"relativePath": [
|
|
2481
2569
|
"lib",
|
|
2482
2570
|
"commands",
|
|
2483
|
-
"
|
|
2484
|
-
"
|
|
2571
|
+
"customer_password_reset",
|
|
2572
|
+
"reset_password_token.js"
|
|
2485
2573
|
]
|
|
2486
2574
|
},
|
|
2487
|
-
"
|
|
2575
|
+
"event": {
|
|
2488
2576
|
"aliases": [],
|
|
2489
2577
|
"args": {
|
|
2490
2578
|
"id": {
|
|
@@ -2493,7 +2581,7 @@
|
|
|
2493
2581
|
"required": true
|
|
2494
2582
|
}
|
|
2495
2583
|
},
|
|
2496
|
-
"description": "execute an action on a resource of type
|
|
2584
|
+
"description": "execute an action on a resource of type events",
|
|
2497
2585
|
"flags": {
|
|
2498
2586
|
"organization": {
|
|
2499
2587
|
"char": "o",
|
|
@@ -2558,7 +2646,7 @@
|
|
|
2558
2646
|
},
|
|
2559
2647
|
"hasDynamicHelp": false,
|
|
2560
2648
|
"hiddenAliases": [],
|
|
2561
|
-
"id": "
|
|
2649
|
+
"id": "event",
|
|
2562
2650
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2563
2651
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2564
2652
|
"pluginType": "core",
|
|
@@ -2568,11 +2656,11 @@
|
|
|
2568
2656
|
"relativePath": [
|
|
2569
2657
|
"lib",
|
|
2570
2658
|
"commands",
|
|
2571
|
-
"
|
|
2659
|
+
"event",
|
|
2572
2660
|
"index.js"
|
|
2573
2661
|
]
|
|
2574
2662
|
},
|
|
2575
|
-
"
|
|
2663
|
+
"event:trigger": {
|
|
2576
2664
|
"aliases": [],
|
|
2577
2665
|
"args": {
|
|
2578
2666
|
"id": {
|
|
@@ -2581,7 +2669,7 @@
|
|
|
2581
2669
|
"required": true
|
|
2582
2670
|
}
|
|
2583
2671
|
},
|
|
2584
|
-
"description": "Send this attribute if you want to
|
|
2672
|
+
"description": "Send this attribute if you want to force webhooks execution for this event. Cannot be passed by sales channels.",
|
|
2585
2673
|
"flags": {
|
|
2586
2674
|
"organization": {
|
|
2587
2675
|
"char": "o",
|
|
@@ -2646,7 +2734,7 @@
|
|
|
2646
2734
|
},
|
|
2647
2735
|
"hasDynamicHelp": false,
|
|
2648
2736
|
"hiddenAliases": [],
|
|
2649
|
-
"id": "
|
|
2737
|
+
"id": "event:trigger",
|
|
2650
2738
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2651
2739
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2652
2740
|
"pluginType": "core",
|
|
@@ -2656,11 +2744,11 @@
|
|
|
2656
2744
|
"relativePath": [
|
|
2657
2745
|
"lib",
|
|
2658
2746
|
"commands",
|
|
2659
|
-
"
|
|
2660
|
-
"
|
|
2747
|
+
"event",
|
|
2748
|
+
"trigger.js"
|
|
2661
2749
|
]
|
|
2662
2750
|
},
|
|
2663
|
-
"
|
|
2751
|
+
"export": {
|
|
2664
2752
|
"aliases": [],
|
|
2665
2753
|
"args": {
|
|
2666
2754
|
"id": {
|
|
@@ -2669,7 +2757,7 @@
|
|
|
2669
2757
|
"required": true
|
|
2670
2758
|
}
|
|
2671
2759
|
},
|
|
2672
|
-
"description": "
|
|
2760
|
+
"description": "execute an action on a resource of type exports",
|
|
2673
2761
|
"flags": {
|
|
2674
2762
|
"organization": {
|
|
2675
2763
|
"char": "o",
|
|
@@ -2734,7 +2822,7 @@
|
|
|
2734
2822
|
},
|
|
2735
2823
|
"hasDynamicHelp": false,
|
|
2736
2824
|
"hiddenAliases": [],
|
|
2737
|
-
"id": "
|
|
2825
|
+
"id": "export",
|
|
2738
2826
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2739
2827
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2740
2828
|
"pluginType": "core",
|
|
@@ -2744,11 +2832,11 @@
|
|
|
2744
2832
|
"relativePath": [
|
|
2745
2833
|
"lib",
|
|
2746
2834
|
"commands",
|
|
2747
|
-
"
|
|
2748
|
-
"
|
|
2835
|
+
"export",
|
|
2836
|
+
"index.js"
|
|
2749
2837
|
]
|
|
2750
2838
|
},
|
|
2751
|
-
"
|
|
2839
|
+
"export:interrupt": {
|
|
2752
2840
|
"aliases": [],
|
|
2753
2841
|
"args": {
|
|
2754
2842
|
"id": {
|
|
@@ -2757,7 +2845,7 @@
|
|
|
2757
2845
|
"required": true
|
|
2758
2846
|
}
|
|
2759
2847
|
},
|
|
2760
|
-
"description": "Send this attribute if you want to mark
|
|
2848
|
+
"description": "Send this attribute if you want to mark status as 'interrupted'.",
|
|
2761
2849
|
"flags": {
|
|
2762
2850
|
"organization": {
|
|
2763
2851
|
"char": "o",
|
|
@@ -2822,7 +2910,7 @@
|
|
|
2822
2910
|
},
|
|
2823
2911
|
"hasDynamicHelp": false,
|
|
2824
2912
|
"hiddenAliases": [],
|
|
2825
|
-
"id": "
|
|
2913
|
+
"id": "export:interrupt",
|
|
2826
2914
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2827
2915
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2828
2916
|
"pluginType": "core",
|
|
@@ -2832,11 +2920,11 @@
|
|
|
2832
2920
|
"relativePath": [
|
|
2833
2921
|
"lib",
|
|
2834
2922
|
"commands",
|
|
2835
|
-
"
|
|
2836
|
-
"
|
|
2923
|
+
"export",
|
|
2924
|
+
"interrupt.js"
|
|
2837
2925
|
]
|
|
2838
2926
|
},
|
|
2839
|
-
"
|
|
2927
|
+
"external_gateway": {
|
|
2840
2928
|
"aliases": [],
|
|
2841
2929
|
"args": {
|
|
2842
2930
|
"id": {
|
|
@@ -2845,7 +2933,7 @@
|
|
|
2845
2933
|
"required": true
|
|
2846
2934
|
}
|
|
2847
2935
|
},
|
|
2848
|
-
"description": "execute an action on a resource of type
|
|
2936
|
+
"description": "execute an action on a resource of type external_gateways",
|
|
2849
2937
|
"flags": {
|
|
2850
2938
|
"organization": {
|
|
2851
2939
|
"char": "o",
|
|
@@ -2910,7 +2998,7 @@
|
|
|
2910
2998
|
},
|
|
2911
2999
|
"hasDynamicHelp": false,
|
|
2912
3000
|
"hiddenAliases": [],
|
|
2913
|
-
"id": "
|
|
3001
|
+
"id": "external_gateway",
|
|
2914
3002
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
2915
3003
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
2916
3004
|
"pluginType": "core",
|
|
@@ -2920,11 +3008,11 @@
|
|
|
2920
3008
|
"relativePath": [
|
|
2921
3009
|
"lib",
|
|
2922
3010
|
"commands",
|
|
2923
|
-
"
|
|
3011
|
+
"external_gateway",
|
|
2924
3012
|
"index.js"
|
|
2925
3013
|
]
|
|
2926
3014
|
},
|
|
2927
|
-
"
|
|
3015
|
+
"external_gateway:reset_circuit": {
|
|
2928
3016
|
"aliases": [],
|
|
2929
3017
|
"args": {
|
|
2930
3018
|
"id": {
|
|
@@ -2998,7 +3086,7 @@
|
|
|
2998
3086
|
},
|
|
2999
3087
|
"hasDynamicHelp": false,
|
|
3000
3088
|
"hiddenAliases": [],
|
|
3001
|
-
"id": "
|
|
3089
|
+
"id": "external_gateway:reset_circuit",
|
|
3002
3090
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3003
3091
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3004
3092
|
"pluginType": "core",
|
|
@@ -3008,11 +3096,11 @@
|
|
|
3008
3096
|
"relativePath": [
|
|
3009
3097
|
"lib",
|
|
3010
3098
|
"commands",
|
|
3011
|
-
"
|
|
3099
|
+
"external_gateway",
|
|
3012
3100
|
"reset_circuit.js"
|
|
3013
3101
|
]
|
|
3014
3102
|
},
|
|
3015
|
-
"
|
|
3103
|
+
"external_promotion:disable": {
|
|
3016
3104
|
"aliases": [],
|
|
3017
3105
|
"args": {
|
|
3018
3106
|
"id": {
|
|
@@ -3021,7 +3109,7 @@
|
|
|
3021
3109
|
"required": true
|
|
3022
3110
|
}
|
|
3023
3111
|
},
|
|
3024
|
-
"description": "
|
|
3112
|
+
"description": "Send this attribute if you want to mark this resource as disabled.",
|
|
3025
3113
|
"flags": {
|
|
3026
3114
|
"organization": {
|
|
3027
3115
|
"char": "o",
|
|
@@ -3086,7 +3174,7 @@
|
|
|
3086
3174
|
},
|
|
3087
3175
|
"hasDynamicHelp": false,
|
|
3088
3176
|
"hiddenAliases": [],
|
|
3089
|
-
"id": "
|
|
3177
|
+
"id": "external_promotion:disable",
|
|
3090
3178
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3091
3179
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3092
3180
|
"pluginType": "core",
|
|
@@ -3096,11 +3184,11 @@
|
|
|
3096
3184
|
"relativePath": [
|
|
3097
3185
|
"lib",
|
|
3098
3186
|
"commands",
|
|
3099
|
-
"
|
|
3100
|
-
"
|
|
3187
|
+
"external_promotion",
|
|
3188
|
+
"disable.js"
|
|
3101
3189
|
]
|
|
3102
3190
|
},
|
|
3103
|
-
"
|
|
3191
|
+
"external_promotion:enable": {
|
|
3104
3192
|
"aliases": [],
|
|
3105
3193
|
"args": {
|
|
3106
3194
|
"id": {
|
|
@@ -3109,7 +3197,7 @@
|
|
|
3109
3197
|
"required": true
|
|
3110
3198
|
}
|
|
3111
3199
|
},
|
|
3112
|
-
"description": "Send this attribute if you want to
|
|
3200
|
+
"description": "Send this attribute if you want to mark this resource as enabled.",
|
|
3113
3201
|
"flags": {
|
|
3114
3202
|
"organization": {
|
|
3115
3203
|
"char": "o",
|
|
@@ -3174,7 +3262,7 @@
|
|
|
3174
3262
|
},
|
|
3175
3263
|
"hasDynamicHelp": false,
|
|
3176
3264
|
"hiddenAliases": [],
|
|
3177
|
-
"id": "
|
|
3265
|
+
"id": "external_promotion:enable",
|
|
3178
3266
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3179
3267
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3180
3268
|
"pluginType": "core",
|
|
@@ -3184,11 +3272,11 @@
|
|
|
3184
3272
|
"relativePath": [
|
|
3185
3273
|
"lib",
|
|
3186
3274
|
"commands",
|
|
3187
|
-
"
|
|
3188
|
-
"
|
|
3275
|
+
"external_promotion",
|
|
3276
|
+
"enable.js"
|
|
3189
3277
|
]
|
|
3190
3278
|
},
|
|
3191
|
-
"
|
|
3279
|
+
"external_promotion": {
|
|
3192
3280
|
"aliases": [],
|
|
3193
3281
|
"args": {
|
|
3194
3282
|
"id": {
|
|
@@ -3197,7 +3285,7 @@
|
|
|
3197
3285
|
"required": true
|
|
3198
3286
|
}
|
|
3199
3287
|
},
|
|
3200
|
-
"description": "
|
|
3288
|
+
"description": "execute an action on a resource of type external_promotions",
|
|
3201
3289
|
"flags": {
|
|
3202
3290
|
"organization": {
|
|
3203
3291
|
"char": "o",
|
|
@@ -3262,7 +3350,7 @@
|
|
|
3262
3350
|
},
|
|
3263
3351
|
"hasDynamicHelp": false,
|
|
3264
3352
|
"hiddenAliases": [],
|
|
3265
|
-
"id": "
|
|
3353
|
+
"id": "external_promotion",
|
|
3266
3354
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3267
3355
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3268
3356
|
"pluginType": "core",
|
|
@@ -3272,11 +3360,11 @@
|
|
|
3272
3360
|
"relativePath": [
|
|
3273
3361
|
"lib",
|
|
3274
3362
|
"commands",
|
|
3275
|
-
"
|
|
3276
|
-
"
|
|
3363
|
+
"external_promotion",
|
|
3364
|
+
"index.js"
|
|
3277
3365
|
]
|
|
3278
3366
|
},
|
|
3279
|
-
"
|
|
3367
|
+
"external_promotion:reset_circuit": {
|
|
3280
3368
|
"aliases": [],
|
|
3281
3369
|
"args": {
|
|
3282
3370
|
"id": {
|
|
@@ -3285,7 +3373,7 @@
|
|
|
3285
3373
|
"required": true
|
|
3286
3374
|
}
|
|
3287
3375
|
},
|
|
3288
|
-
"description": "Send this attribute if you want to
|
|
3376
|
+
"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.",
|
|
3289
3377
|
"flags": {
|
|
3290
3378
|
"organization": {
|
|
3291
3379
|
"char": "o",
|
|
@@ -3350,7 +3438,7 @@
|
|
|
3350
3438
|
},
|
|
3351
3439
|
"hasDynamicHelp": false,
|
|
3352
3440
|
"hiddenAliases": [],
|
|
3353
|
-
"id": "
|
|
3441
|
+
"id": "external_promotion:reset_circuit",
|
|
3354
3442
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3355
3443
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3356
3444
|
"pluginType": "core",
|
|
@@ -3360,11 +3448,11 @@
|
|
|
3360
3448
|
"relativePath": [
|
|
3361
3449
|
"lib",
|
|
3362
3450
|
"commands",
|
|
3363
|
-
"
|
|
3364
|
-
"
|
|
3451
|
+
"external_promotion",
|
|
3452
|
+
"reset_circuit.js"
|
|
3365
3453
|
]
|
|
3366
3454
|
},
|
|
3367
|
-
"
|
|
3455
|
+
"external_tax_calculator": {
|
|
3368
3456
|
"aliases": [],
|
|
3369
3457
|
"args": {
|
|
3370
3458
|
"id": {
|
|
@@ -3373,7 +3461,7 @@
|
|
|
3373
3461
|
"required": true
|
|
3374
3462
|
}
|
|
3375
3463
|
},
|
|
3376
|
-
"description": "execute an action on a resource of type
|
|
3464
|
+
"description": "execute an action on a resource of type external_tax_calculators",
|
|
3377
3465
|
"flags": {
|
|
3378
3466
|
"organization": {
|
|
3379
3467
|
"char": "o",
|
|
@@ -3438,7 +3526,7 @@
|
|
|
3438
3526
|
},
|
|
3439
3527
|
"hasDynamicHelp": false,
|
|
3440
3528
|
"hiddenAliases": [],
|
|
3441
|
-
"id": "
|
|
3529
|
+
"id": "external_tax_calculator",
|
|
3442
3530
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3443
3531
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3444
3532
|
"pluginType": "core",
|
|
@@ -3448,11 +3536,11 @@
|
|
|
3448
3536
|
"relativePath": [
|
|
3449
3537
|
"lib",
|
|
3450
3538
|
"commands",
|
|
3451
|
-
"
|
|
3539
|
+
"external_tax_calculator",
|
|
3452
3540
|
"index.js"
|
|
3453
3541
|
]
|
|
3454
3542
|
},
|
|
3455
|
-
"
|
|
3543
|
+
"external_tax_calculator:reset_circuit": {
|
|
3456
3544
|
"aliases": [],
|
|
3457
3545
|
"args": {
|
|
3458
3546
|
"id": {
|
|
@@ -3461,7 +3549,7 @@
|
|
|
3461
3549
|
"required": true
|
|
3462
3550
|
}
|
|
3463
3551
|
},
|
|
3464
|
-
"description": "Send this attribute if you want to
|
|
3552
|
+
"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.",
|
|
3465
3553
|
"flags": {
|
|
3466
3554
|
"organization": {
|
|
3467
3555
|
"char": "o",
|
|
@@ -3526,7 +3614,7 @@
|
|
|
3526
3614
|
},
|
|
3527
3615
|
"hasDynamicHelp": false,
|
|
3528
3616
|
"hiddenAliases": [],
|
|
3529
|
-
"id": "
|
|
3617
|
+
"id": "external_tax_calculator:reset_circuit",
|
|
3530
3618
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3531
3619
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3532
3620
|
"pluginType": "core",
|
|
@@ -3536,11 +3624,11 @@
|
|
|
3536
3624
|
"relativePath": [
|
|
3537
3625
|
"lib",
|
|
3538
3626
|
"commands",
|
|
3539
|
-
"
|
|
3540
|
-
"
|
|
3627
|
+
"external_tax_calculator",
|
|
3628
|
+
"reset_circuit.js"
|
|
3541
3629
|
]
|
|
3542
3630
|
},
|
|
3543
|
-
"
|
|
3631
|
+
"fixed_amount_promotion:disable": {
|
|
3544
3632
|
"aliases": [],
|
|
3545
3633
|
"args": {
|
|
3546
3634
|
"id": {
|
|
@@ -3549,7 +3637,7 @@
|
|
|
3549
3637
|
"required": true
|
|
3550
3638
|
}
|
|
3551
3639
|
},
|
|
3552
|
-
"description": "Send this attribute if you want to mark this resource as
|
|
3640
|
+
"description": "Send this attribute if you want to mark this resource as disabled.",
|
|
3553
3641
|
"flags": {
|
|
3554
3642
|
"organization": {
|
|
3555
3643
|
"char": "o",
|
|
@@ -3614,7 +3702,7 @@
|
|
|
3614
3702
|
},
|
|
3615
3703
|
"hasDynamicHelp": false,
|
|
3616
3704
|
"hiddenAliases": [],
|
|
3617
|
-
"id": "
|
|
3705
|
+
"id": "fixed_amount_promotion:disable",
|
|
3618
3706
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3619
3707
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3620
3708
|
"pluginType": "core",
|
|
@@ -3624,11 +3712,11 @@
|
|
|
3624
3712
|
"relativePath": [
|
|
3625
3713
|
"lib",
|
|
3626
3714
|
"commands",
|
|
3627
|
-
"
|
|
3628
|
-
"
|
|
3715
|
+
"fixed_amount_promotion",
|
|
3716
|
+
"disable.js"
|
|
3629
3717
|
]
|
|
3630
3718
|
},
|
|
3631
|
-
"
|
|
3719
|
+
"fixed_amount_promotion:enable": {
|
|
3632
3720
|
"aliases": [],
|
|
3633
3721
|
"args": {
|
|
3634
3722
|
"id": {
|
|
@@ -3637,7 +3725,7 @@
|
|
|
3637
3725
|
"required": true
|
|
3638
3726
|
}
|
|
3639
3727
|
},
|
|
3640
|
-
"description": "
|
|
3728
|
+
"description": "Send this attribute if you want to mark this resource as enabled.",
|
|
3641
3729
|
"flags": {
|
|
3642
3730
|
"organization": {
|
|
3643
3731
|
"char": "o",
|
|
@@ -3702,7 +3790,7 @@
|
|
|
3702
3790
|
},
|
|
3703
3791
|
"hasDynamicHelp": false,
|
|
3704
3792
|
"hiddenAliases": [],
|
|
3705
|
-
"id": "
|
|
3793
|
+
"id": "fixed_amount_promotion:enable",
|
|
3706
3794
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3707
3795
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3708
3796
|
"pluginType": "core",
|
|
@@ -3712,11 +3800,11 @@
|
|
|
3712
3800
|
"relativePath": [
|
|
3713
3801
|
"lib",
|
|
3714
3802
|
"commands",
|
|
3715
|
-
"
|
|
3716
|
-
"
|
|
3803
|
+
"fixed_amount_promotion",
|
|
3804
|
+
"enable.js"
|
|
3717
3805
|
]
|
|
3718
3806
|
},
|
|
3719
|
-
"
|
|
3807
|
+
"fixed_amount_promotion": {
|
|
3720
3808
|
"aliases": [],
|
|
3721
3809
|
"args": {
|
|
3722
3810
|
"id": {
|
|
@@ -3725,7 +3813,7 @@
|
|
|
3725
3813
|
"required": true
|
|
3726
3814
|
}
|
|
3727
3815
|
},
|
|
3728
|
-
"description": "
|
|
3816
|
+
"description": "execute an action on a resource of type fixed_amount_promotions",
|
|
3729
3817
|
"flags": {
|
|
3730
3818
|
"organization": {
|
|
3731
3819
|
"char": "o",
|
|
@@ -3790,7 +3878,7 @@
|
|
|
3790
3878
|
},
|
|
3791
3879
|
"hasDynamicHelp": false,
|
|
3792
3880
|
"hiddenAliases": [],
|
|
3793
|
-
"id": "
|
|
3881
|
+
"id": "fixed_amount_promotion",
|
|
3794
3882
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3795
3883
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3796
3884
|
"pluginType": "core",
|
|
@@ -3800,11 +3888,11 @@
|
|
|
3800
3888
|
"relativePath": [
|
|
3801
3889
|
"lib",
|
|
3802
3890
|
"commands",
|
|
3803
|
-
"
|
|
3804
|
-
"
|
|
3891
|
+
"fixed_amount_promotion",
|
|
3892
|
+
"index.js"
|
|
3805
3893
|
]
|
|
3806
3894
|
},
|
|
3807
|
-
"
|
|
3895
|
+
"fixed_price_promotion:disable": {
|
|
3808
3896
|
"aliases": [],
|
|
3809
3897
|
"args": {
|
|
3810
3898
|
"id": {
|
|
@@ -3813,7 +3901,7 @@
|
|
|
3813
3901
|
"required": true
|
|
3814
3902
|
}
|
|
3815
3903
|
},
|
|
3816
|
-
"description": "Send this attribute if you want to mark this resource as
|
|
3904
|
+
"description": "Send this attribute if you want to mark this resource as disabled.",
|
|
3817
3905
|
"flags": {
|
|
3818
3906
|
"organization": {
|
|
3819
3907
|
"char": "o",
|
|
@@ -3878,7 +3966,7 @@
|
|
|
3878
3966
|
},
|
|
3879
3967
|
"hasDynamicHelp": false,
|
|
3880
3968
|
"hiddenAliases": [],
|
|
3881
|
-
"id": "
|
|
3969
|
+
"id": "fixed_price_promotion:disable",
|
|
3882
3970
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
3883
3971
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
3884
3972
|
"pluginType": "core",
|
|
@@ -3888,11 +3976,11 @@
|
|
|
3888
3976
|
"relativePath": [
|
|
3889
3977
|
"lib",
|
|
3890
3978
|
"commands",
|
|
3891
|
-
"
|
|
3892
|
-
"
|
|
3979
|
+
"fixed_price_promotion",
|
|
3980
|
+
"disable.js"
|
|
3893
3981
|
]
|
|
3894
3982
|
},
|
|
3895
|
-
"
|
|
3983
|
+
"fixed_price_promotion:enable": {
|
|
3896
3984
|
"aliases": [],
|
|
3897
3985
|
"args": {
|
|
3898
3986
|
"id": {
|
|
@@ -3901,7 +3989,359 @@
|
|
|
3901
3989
|
"required": true
|
|
3902
3990
|
}
|
|
3903
3991
|
},
|
|
3904
|
-
"description": "
|
|
3992
|
+
"description": "Send this attribute if you want to mark this resource as enabled.",
|
|
3993
|
+
"flags": {
|
|
3994
|
+
"organization": {
|
|
3995
|
+
"char": "o",
|
|
3996
|
+
"description": "the slug of your organization",
|
|
3997
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
3998
|
+
"hidden": true,
|
|
3999
|
+
"name": "organization",
|
|
4000
|
+
"required": true,
|
|
4001
|
+
"hasDynamicHelp": false,
|
|
4002
|
+
"multiple": false,
|
|
4003
|
+
"type": "option"
|
|
4004
|
+
},
|
|
4005
|
+
"domain": {
|
|
4006
|
+
"char": "d",
|
|
4007
|
+
"dependsOn": [
|
|
4008
|
+
"organization"
|
|
4009
|
+
],
|
|
4010
|
+
"env": "CL_CLI_DOMAIN",
|
|
4011
|
+
"hidden": true,
|
|
4012
|
+
"name": "domain",
|
|
4013
|
+
"required": false,
|
|
4014
|
+
"hasDynamicHelp": false,
|
|
4015
|
+
"multiple": false,
|
|
4016
|
+
"type": "option"
|
|
4017
|
+
},
|
|
4018
|
+
"accessToken": {
|
|
4019
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
4020
|
+
"hidden": true,
|
|
4021
|
+
"name": "accessToken",
|
|
4022
|
+
"required": true,
|
|
4023
|
+
"hasDynamicHelp": false,
|
|
4024
|
+
"multiple": false,
|
|
4025
|
+
"type": "option"
|
|
4026
|
+
},
|
|
4027
|
+
"print": {
|
|
4028
|
+
"char": "p",
|
|
4029
|
+
"description": "print out the modified resource",
|
|
4030
|
+
"name": "print",
|
|
4031
|
+
"allowNo": false,
|
|
4032
|
+
"type": "boolean"
|
|
4033
|
+
},
|
|
4034
|
+
"json": {
|
|
4035
|
+
"char": "j",
|
|
4036
|
+
"dependsOn": [
|
|
4037
|
+
"print"
|
|
4038
|
+
],
|
|
4039
|
+
"description": "print result in JSON format",
|
|
4040
|
+
"name": "json",
|
|
4041
|
+
"allowNo": false,
|
|
4042
|
+
"type": "boolean"
|
|
4043
|
+
},
|
|
4044
|
+
"unformatted": {
|
|
4045
|
+
"char": "u",
|
|
4046
|
+
"dependsOn": [
|
|
4047
|
+
"json"
|
|
4048
|
+
],
|
|
4049
|
+
"description": "print JSON output without indentation",
|
|
4050
|
+
"name": "unformatted",
|
|
4051
|
+
"allowNo": false,
|
|
4052
|
+
"type": "boolean"
|
|
4053
|
+
}
|
|
4054
|
+
},
|
|
4055
|
+
"hasDynamicHelp": false,
|
|
4056
|
+
"hiddenAliases": [],
|
|
4057
|
+
"id": "fixed_price_promotion:enable",
|
|
4058
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
4059
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
4060
|
+
"pluginType": "core",
|
|
4061
|
+
"strict": true,
|
|
4062
|
+
"enableJsonFlag": false,
|
|
4063
|
+
"isESM": false,
|
|
4064
|
+
"relativePath": [
|
|
4065
|
+
"lib",
|
|
4066
|
+
"commands",
|
|
4067
|
+
"fixed_price_promotion",
|
|
4068
|
+
"enable.js"
|
|
4069
|
+
]
|
|
4070
|
+
},
|
|
4071
|
+
"fixed_price_promotion": {
|
|
4072
|
+
"aliases": [],
|
|
4073
|
+
"args": {
|
|
4074
|
+
"id": {
|
|
4075
|
+
"description": "the unique id of the resource",
|
|
4076
|
+
"name": "id",
|
|
4077
|
+
"required": true
|
|
4078
|
+
}
|
|
4079
|
+
},
|
|
4080
|
+
"description": "execute an action on a resource of type fixed_price_promotions",
|
|
4081
|
+
"flags": {
|
|
4082
|
+
"organization": {
|
|
4083
|
+
"char": "o",
|
|
4084
|
+
"description": "the slug of your organization",
|
|
4085
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
4086
|
+
"hidden": true,
|
|
4087
|
+
"name": "organization",
|
|
4088
|
+
"required": true,
|
|
4089
|
+
"hasDynamicHelp": false,
|
|
4090
|
+
"multiple": false,
|
|
4091
|
+
"type": "option"
|
|
4092
|
+
},
|
|
4093
|
+
"domain": {
|
|
4094
|
+
"char": "d",
|
|
4095
|
+
"dependsOn": [
|
|
4096
|
+
"organization"
|
|
4097
|
+
],
|
|
4098
|
+
"env": "CL_CLI_DOMAIN",
|
|
4099
|
+
"hidden": true,
|
|
4100
|
+
"name": "domain",
|
|
4101
|
+
"required": false,
|
|
4102
|
+
"hasDynamicHelp": false,
|
|
4103
|
+
"multiple": false,
|
|
4104
|
+
"type": "option"
|
|
4105
|
+
},
|
|
4106
|
+
"accessToken": {
|
|
4107
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
4108
|
+
"hidden": true,
|
|
4109
|
+
"name": "accessToken",
|
|
4110
|
+
"required": true,
|
|
4111
|
+
"hasDynamicHelp": false,
|
|
4112
|
+
"multiple": false,
|
|
4113
|
+
"type": "option"
|
|
4114
|
+
},
|
|
4115
|
+
"print": {
|
|
4116
|
+
"char": "p",
|
|
4117
|
+
"description": "print out the modified resource",
|
|
4118
|
+
"name": "print",
|
|
4119
|
+
"allowNo": false,
|
|
4120
|
+
"type": "boolean"
|
|
4121
|
+
},
|
|
4122
|
+
"json": {
|
|
4123
|
+
"char": "j",
|
|
4124
|
+
"dependsOn": [
|
|
4125
|
+
"print"
|
|
4126
|
+
],
|
|
4127
|
+
"description": "print result in JSON format",
|
|
4128
|
+
"name": "json",
|
|
4129
|
+
"allowNo": false,
|
|
4130
|
+
"type": "boolean"
|
|
4131
|
+
},
|
|
4132
|
+
"unformatted": {
|
|
4133
|
+
"char": "u",
|
|
4134
|
+
"dependsOn": [
|
|
4135
|
+
"json"
|
|
4136
|
+
],
|
|
4137
|
+
"description": "print JSON output without indentation",
|
|
4138
|
+
"name": "unformatted",
|
|
4139
|
+
"allowNo": false,
|
|
4140
|
+
"type": "boolean"
|
|
4141
|
+
}
|
|
4142
|
+
},
|
|
4143
|
+
"hasDynamicHelp": false,
|
|
4144
|
+
"hiddenAliases": [],
|
|
4145
|
+
"id": "fixed_price_promotion",
|
|
4146
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
4147
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
4148
|
+
"pluginType": "core",
|
|
4149
|
+
"strict": true,
|
|
4150
|
+
"enableJsonFlag": false,
|
|
4151
|
+
"isESM": false,
|
|
4152
|
+
"relativePath": [
|
|
4153
|
+
"lib",
|
|
4154
|
+
"commands",
|
|
4155
|
+
"fixed_price_promotion",
|
|
4156
|
+
"index.js"
|
|
4157
|
+
]
|
|
4158
|
+
},
|
|
4159
|
+
"flex_promotion:disable": {
|
|
4160
|
+
"aliases": [],
|
|
4161
|
+
"args": {
|
|
4162
|
+
"id": {
|
|
4163
|
+
"description": "the unique id of the resource",
|
|
4164
|
+
"name": "id",
|
|
4165
|
+
"required": true
|
|
4166
|
+
}
|
|
4167
|
+
},
|
|
4168
|
+
"description": "Send this attribute if you want to mark this resource as disabled.",
|
|
4169
|
+
"flags": {
|
|
4170
|
+
"organization": {
|
|
4171
|
+
"char": "o",
|
|
4172
|
+
"description": "the slug of your organization",
|
|
4173
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
4174
|
+
"hidden": true,
|
|
4175
|
+
"name": "organization",
|
|
4176
|
+
"required": true,
|
|
4177
|
+
"hasDynamicHelp": false,
|
|
4178
|
+
"multiple": false,
|
|
4179
|
+
"type": "option"
|
|
4180
|
+
},
|
|
4181
|
+
"domain": {
|
|
4182
|
+
"char": "d",
|
|
4183
|
+
"dependsOn": [
|
|
4184
|
+
"organization"
|
|
4185
|
+
],
|
|
4186
|
+
"env": "CL_CLI_DOMAIN",
|
|
4187
|
+
"hidden": true,
|
|
4188
|
+
"name": "domain",
|
|
4189
|
+
"required": false,
|
|
4190
|
+
"hasDynamicHelp": false,
|
|
4191
|
+
"multiple": false,
|
|
4192
|
+
"type": "option"
|
|
4193
|
+
},
|
|
4194
|
+
"accessToken": {
|
|
4195
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
4196
|
+
"hidden": true,
|
|
4197
|
+
"name": "accessToken",
|
|
4198
|
+
"required": true,
|
|
4199
|
+
"hasDynamicHelp": false,
|
|
4200
|
+
"multiple": false,
|
|
4201
|
+
"type": "option"
|
|
4202
|
+
},
|
|
4203
|
+
"print": {
|
|
4204
|
+
"char": "p",
|
|
4205
|
+
"description": "print out the modified resource",
|
|
4206
|
+
"name": "print",
|
|
4207
|
+
"allowNo": false,
|
|
4208
|
+
"type": "boolean"
|
|
4209
|
+
},
|
|
4210
|
+
"json": {
|
|
4211
|
+
"char": "j",
|
|
4212
|
+
"dependsOn": [
|
|
4213
|
+
"print"
|
|
4214
|
+
],
|
|
4215
|
+
"description": "print result in JSON format",
|
|
4216
|
+
"name": "json",
|
|
4217
|
+
"allowNo": false,
|
|
4218
|
+
"type": "boolean"
|
|
4219
|
+
},
|
|
4220
|
+
"unformatted": {
|
|
4221
|
+
"char": "u",
|
|
4222
|
+
"dependsOn": [
|
|
4223
|
+
"json"
|
|
4224
|
+
],
|
|
4225
|
+
"description": "print JSON output without indentation",
|
|
4226
|
+
"name": "unformatted",
|
|
4227
|
+
"allowNo": false,
|
|
4228
|
+
"type": "boolean"
|
|
4229
|
+
}
|
|
4230
|
+
},
|
|
4231
|
+
"hasDynamicHelp": false,
|
|
4232
|
+
"hiddenAliases": [],
|
|
4233
|
+
"id": "flex_promotion:disable",
|
|
4234
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
4235
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
4236
|
+
"pluginType": "core",
|
|
4237
|
+
"strict": true,
|
|
4238
|
+
"enableJsonFlag": false,
|
|
4239
|
+
"isESM": false,
|
|
4240
|
+
"relativePath": [
|
|
4241
|
+
"lib",
|
|
4242
|
+
"commands",
|
|
4243
|
+
"flex_promotion",
|
|
4244
|
+
"disable.js"
|
|
4245
|
+
]
|
|
4246
|
+
},
|
|
4247
|
+
"flex_promotion:enable": {
|
|
4248
|
+
"aliases": [],
|
|
4249
|
+
"args": {
|
|
4250
|
+
"id": {
|
|
4251
|
+
"description": "the unique id of the resource",
|
|
4252
|
+
"name": "id",
|
|
4253
|
+
"required": true
|
|
4254
|
+
}
|
|
4255
|
+
},
|
|
4256
|
+
"description": "Send this attribute if you want to mark this resource as enabled.",
|
|
4257
|
+
"flags": {
|
|
4258
|
+
"organization": {
|
|
4259
|
+
"char": "o",
|
|
4260
|
+
"description": "the slug of your organization",
|
|
4261
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
4262
|
+
"hidden": true,
|
|
4263
|
+
"name": "organization",
|
|
4264
|
+
"required": true,
|
|
4265
|
+
"hasDynamicHelp": false,
|
|
4266
|
+
"multiple": false,
|
|
4267
|
+
"type": "option"
|
|
4268
|
+
},
|
|
4269
|
+
"domain": {
|
|
4270
|
+
"char": "d",
|
|
4271
|
+
"dependsOn": [
|
|
4272
|
+
"organization"
|
|
4273
|
+
],
|
|
4274
|
+
"env": "CL_CLI_DOMAIN",
|
|
4275
|
+
"hidden": true,
|
|
4276
|
+
"name": "domain",
|
|
4277
|
+
"required": false,
|
|
4278
|
+
"hasDynamicHelp": false,
|
|
4279
|
+
"multiple": false,
|
|
4280
|
+
"type": "option"
|
|
4281
|
+
},
|
|
4282
|
+
"accessToken": {
|
|
4283
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
4284
|
+
"hidden": true,
|
|
4285
|
+
"name": "accessToken",
|
|
4286
|
+
"required": true,
|
|
4287
|
+
"hasDynamicHelp": false,
|
|
4288
|
+
"multiple": false,
|
|
4289
|
+
"type": "option"
|
|
4290
|
+
},
|
|
4291
|
+
"print": {
|
|
4292
|
+
"char": "p",
|
|
4293
|
+
"description": "print out the modified resource",
|
|
4294
|
+
"name": "print",
|
|
4295
|
+
"allowNo": false,
|
|
4296
|
+
"type": "boolean"
|
|
4297
|
+
},
|
|
4298
|
+
"json": {
|
|
4299
|
+
"char": "j",
|
|
4300
|
+
"dependsOn": [
|
|
4301
|
+
"print"
|
|
4302
|
+
],
|
|
4303
|
+
"description": "print result in JSON format",
|
|
4304
|
+
"name": "json",
|
|
4305
|
+
"allowNo": false,
|
|
4306
|
+
"type": "boolean"
|
|
4307
|
+
},
|
|
4308
|
+
"unformatted": {
|
|
4309
|
+
"char": "u",
|
|
4310
|
+
"dependsOn": [
|
|
4311
|
+
"json"
|
|
4312
|
+
],
|
|
4313
|
+
"description": "print JSON output without indentation",
|
|
4314
|
+
"name": "unformatted",
|
|
4315
|
+
"allowNo": false,
|
|
4316
|
+
"type": "boolean"
|
|
4317
|
+
}
|
|
4318
|
+
},
|
|
4319
|
+
"hasDynamicHelp": false,
|
|
4320
|
+
"hiddenAliases": [],
|
|
4321
|
+
"id": "flex_promotion:enable",
|
|
4322
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
4323
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
4324
|
+
"pluginType": "core",
|
|
4325
|
+
"strict": true,
|
|
4326
|
+
"enableJsonFlag": false,
|
|
4327
|
+
"isESM": false,
|
|
4328
|
+
"relativePath": [
|
|
4329
|
+
"lib",
|
|
4330
|
+
"commands",
|
|
4331
|
+
"flex_promotion",
|
|
4332
|
+
"enable.js"
|
|
4333
|
+
]
|
|
4334
|
+
},
|
|
4335
|
+
"flex_promotion": {
|
|
4336
|
+
"aliases": [],
|
|
4337
|
+
"args": {
|
|
4338
|
+
"id": {
|
|
4339
|
+
"description": "the unique id of the resource",
|
|
4340
|
+
"name": "id",
|
|
4341
|
+
"required": true
|
|
4342
|
+
}
|
|
4343
|
+
},
|
|
4344
|
+
"description": "execute an action on a resource of type flex_promotions",
|
|
3905
4345
|
"flags": {
|
|
3906
4346
|
"organization": {
|
|
3907
4347
|
"char": "o",
|
|
@@ -4860,7 +5300,183 @@
|
|
|
4860
5300
|
"index.js"
|
|
4861
5301
|
]
|
|
4862
5302
|
},
|
|
4863
|
-
"gift_card:purchase": {
|
|
5303
|
+
"gift_card:purchase": {
|
|
5304
|
+
"aliases": [],
|
|
5305
|
+
"args": {
|
|
5306
|
+
"id": {
|
|
5307
|
+
"description": "the unique id of the resource",
|
|
5308
|
+
"name": "id",
|
|
5309
|
+
"required": true
|
|
5310
|
+
}
|
|
5311
|
+
},
|
|
5312
|
+
"description": "Send this attribute if you want to confirm a draft gift card. The gift card becomes 'inactive', waiting to be activated.",
|
|
5313
|
+
"flags": {
|
|
5314
|
+
"organization": {
|
|
5315
|
+
"char": "o",
|
|
5316
|
+
"description": "the slug of your organization",
|
|
5317
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
5318
|
+
"hidden": true,
|
|
5319
|
+
"name": "organization",
|
|
5320
|
+
"required": true,
|
|
5321
|
+
"hasDynamicHelp": false,
|
|
5322
|
+
"multiple": false,
|
|
5323
|
+
"type": "option"
|
|
5324
|
+
},
|
|
5325
|
+
"domain": {
|
|
5326
|
+
"char": "d",
|
|
5327
|
+
"dependsOn": [
|
|
5328
|
+
"organization"
|
|
5329
|
+
],
|
|
5330
|
+
"env": "CL_CLI_DOMAIN",
|
|
5331
|
+
"hidden": true,
|
|
5332
|
+
"name": "domain",
|
|
5333
|
+
"required": false,
|
|
5334
|
+
"hasDynamicHelp": false,
|
|
5335
|
+
"multiple": false,
|
|
5336
|
+
"type": "option"
|
|
5337
|
+
},
|
|
5338
|
+
"accessToken": {
|
|
5339
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
5340
|
+
"hidden": true,
|
|
5341
|
+
"name": "accessToken",
|
|
5342
|
+
"required": true,
|
|
5343
|
+
"hasDynamicHelp": false,
|
|
5344
|
+
"multiple": false,
|
|
5345
|
+
"type": "option"
|
|
5346
|
+
},
|
|
5347
|
+
"print": {
|
|
5348
|
+
"char": "p",
|
|
5349
|
+
"description": "print out the modified resource",
|
|
5350
|
+
"name": "print",
|
|
5351
|
+
"allowNo": false,
|
|
5352
|
+
"type": "boolean"
|
|
5353
|
+
},
|
|
5354
|
+
"json": {
|
|
5355
|
+
"char": "j",
|
|
5356
|
+
"dependsOn": [
|
|
5357
|
+
"print"
|
|
5358
|
+
],
|
|
5359
|
+
"description": "print result in JSON format",
|
|
5360
|
+
"name": "json",
|
|
5361
|
+
"allowNo": false,
|
|
5362
|
+
"type": "boolean"
|
|
5363
|
+
},
|
|
5364
|
+
"unformatted": {
|
|
5365
|
+
"char": "u",
|
|
5366
|
+
"dependsOn": [
|
|
5367
|
+
"json"
|
|
5368
|
+
],
|
|
5369
|
+
"description": "print JSON output without indentation",
|
|
5370
|
+
"name": "unformatted",
|
|
5371
|
+
"allowNo": false,
|
|
5372
|
+
"type": "boolean"
|
|
5373
|
+
}
|
|
5374
|
+
},
|
|
5375
|
+
"hasDynamicHelp": false,
|
|
5376
|
+
"hiddenAliases": [],
|
|
5377
|
+
"id": "gift_card:purchase",
|
|
5378
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
5379
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
5380
|
+
"pluginType": "core",
|
|
5381
|
+
"strict": true,
|
|
5382
|
+
"enableJsonFlag": false,
|
|
5383
|
+
"isESM": false,
|
|
5384
|
+
"relativePath": [
|
|
5385
|
+
"lib",
|
|
5386
|
+
"commands",
|
|
5387
|
+
"gift_card",
|
|
5388
|
+
"purchase.js"
|
|
5389
|
+
]
|
|
5390
|
+
},
|
|
5391
|
+
"import": {
|
|
5392
|
+
"aliases": [],
|
|
5393
|
+
"args": {
|
|
5394
|
+
"id": {
|
|
5395
|
+
"description": "the unique id of the resource",
|
|
5396
|
+
"name": "id",
|
|
5397
|
+
"required": true
|
|
5398
|
+
}
|
|
5399
|
+
},
|
|
5400
|
+
"description": "execute an action on a resource of type imports",
|
|
5401
|
+
"flags": {
|
|
5402
|
+
"organization": {
|
|
5403
|
+
"char": "o",
|
|
5404
|
+
"description": "the slug of your organization",
|
|
5405
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
5406
|
+
"hidden": true,
|
|
5407
|
+
"name": "organization",
|
|
5408
|
+
"required": true,
|
|
5409
|
+
"hasDynamicHelp": false,
|
|
5410
|
+
"multiple": false,
|
|
5411
|
+
"type": "option"
|
|
5412
|
+
},
|
|
5413
|
+
"domain": {
|
|
5414
|
+
"char": "d",
|
|
5415
|
+
"dependsOn": [
|
|
5416
|
+
"organization"
|
|
5417
|
+
],
|
|
5418
|
+
"env": "CL_CLI_DOMAIN",
|
|
5419
|
+
"hidden": true,
|
|
5420
|
+
"name": "domain",
|
|
5421
|
+
"required": false,
|
|
5422
|
+
"hasDynamicHelp": false,
|
|
5423
|
+
"multiple": false,
|
|
5424
|
+
"type": "option"
|
|
5425
|
+
},
|
|
5426
|
+
"accessToken": {
|
|
5427
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
5428
|
+
"hidden": true,
|
|
5429
|
+
"name": "accessToken",
|
|
5430
|
+
"required": true,
|
|
5431
|
+
"hasDynamicHelp": false,
|
|
5432
|
+
"multiple": false,
|
|
5433
|
+
"type": "option"
|
|
5434
|
+
},
|
|
5435
|
+
"print": {
|
|
5436
|
+
"char": "p",
|
|
5437
|
+
"description": "print out the modified resource",
|
|
5438
|
+
"name": "print",
|
|
5439
|
+
"allowNo": false,
|
|
5440
|
+
"type": "boolean"
|
|
5441
|
+
},
|
|
5442
|
+
"json": {
|
|
5443
|
+
"char": "j",
|
|
5444
|
+
"dependsOn": [
|
|
5445
|
+
"print"
|
|
5446
|
+
],
|
|
5447
|
+
"description": "print result in JSON format",
|
|
5448
|
+
"name": "json",
|
|
5449
|
+
"allowNo": false,
|
|
5450
|
+
"type": "boolean"
|
|
5451
|
+
},
|
|
5452
|
+
"unformatted": {
|
|
5453
|
+
"char": "u",
|
|
5454
|
+
"dependsOn": [
|
|
5455
|
+
"json"
|
|
5456
|
+
],
|
|
5457
|
+
"description": "print JSON output without indentation",
|
|
5458
|
+
"name": "unformatted",
|
|
5459
|
+
"allowNo": false,
|
|
5460
|
+
"type": "boolean"
|
|
5461
|
+
}
|
|
5462
|
+
},
|
|
5463
|
+
"hasDynamicHelp": false,
|
|
5464
|
+
"hiddenAliases": [],
|
|
5465
|
+
"id": "import",
|
|
5466
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
5467
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
5468
|
+
"pluginType": "core",
|
|
5469
|
+
"strict": true,
|
|
5470
|
+
"enableJsonFlag": false,
|
|
5471
|
+
"isESM": false,
|
|
5472
|
+
"relativePath": [
|
|
5473
|
+
"lib",
|
|
5474
|
+
"commands",
|
|
5475
|
+
"import",
|
|
5476
|
+
"index.js"
|
|
5477
|
+
]
|
|
5478
|
+
},
|
|
5479
|
+
"import:interrupt": {
|
|
4864
5480
|
"aliases": [],
|
|
4865
5481
|
"args": {
|
|
4866
5482
|
"id": {
|
|
@@ -4869,7 +5485,7 @@
|
|
|
4869
5485
|
"required": true
|
|
4870
5486
|
}
|
|
4871
5487
|
},
|
|
4872
|
-
"description": "Send this attribute if you want to
|
|
5488
|
+
"description": "Send this attribute if you want to mark status as 'interrupted'.",
|
|
4873
5489
|
"flags": {
|
|
4874
5490
|
"organization": {
|
|
4875
5491
|
"char": "o",
|
|
@@ -4934,7 +5550,7 @@
|
|
|
4934
5550
|
},
|
|
4935
5551
|
"hasDynamicHelp": false,
|
|
4936
5552
|
"hiddenAliases": [],
|
|
4937
|
-
"id": "
|
|
5553
|
+
"id": "import:interrupt",
|
|
4938
5554
|
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
4939
5555
|
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
4940
5556
|
"pluginType": "core",
|
|
@@ -4944,8 +5560,8 @@
|
|
|
4944
5560
|
"relativePath": [
|
|
4945
5561
|
"lib",
|
|
4946
5562
|
"commands",
|
|
4947
|
-
"
|
|
4948
|
-
"
|
|
5563
|
+
"import",
|
|
5564
|
+
"interrupt.js"
|
|
4949
5565
|
]
|
|
4950
5566
|
},
|
|
4951
5567
|
"in_stock_subscription:activate": {
|
|
@@ -7342,6 +7958,94 @@
|
|
|
7342
7958
|
"customer_payment_source_id.js"
|
|
7343
7959
|
]
|
|
7344
7960
|
},
|
|
7961
|
+
"order:fix_payment_source": {
|
|
7962
|
+
"aliases": [],
|
|
7963
|
+
"args": {
|
|
7964
|
+
"id": {
|
|
7965
|
+
"description": "the unique id of the resource",
|
|
7966
|
+
"name": "id",
|
|
7967
|
+
"required": true
|
|
7968
|
+
}
|
|
7969
|
+
},
|
|
7970
|
+
"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.",
|
|
7971
|
+
"flags": {
|
|
7972
|
+
"organization": {
|
|
7973
|
+
"char": "o",
|
|
7974
|
+
"description": "the slug of your organization",
|
|
7975
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
7976
|
+
"hidden": true,
|
|
7977
|
+
"name": "organization",
|
|
7978
|
+
"required": true,
|
|
7979
|
+
"hasDynamicHelp": false,
|
|
7980
|
+
"multiple": false,
|
|
7981
|
+
"type": "option"
|
|
7982
|
+
},
|
|
7983
|
+
"domain": {
|
|
7984
|
+
"char": "d",
|
|
7985
|
+
"dependsOn": [
|
|
7986
|
+
"organization"
|
|
7987
|
+
],
|
|
7988
|
+
"env": "CL_CLI_DOMAIN",
|
|
7989
|
+
"hidden": true,
|
|
7990
|
+
"name": "domain",
|
|
7991
|
+
"required": false,
|
|
7992
|
+
"hasDynamicHelp": false,
|
|
7993
|
+
"multiple": false,
|
|
7994
|
+
"type": "option"
|
|
7995
|
+
},
|
|
7996
|
+
"accessToken": {
|
|
7997
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
7998
|
+
"hidden": true,
|
|
7999
|
+
"name": "accessToken",
|
|
8000
|
+
"required": true,
|
|
8001
|
+
"hasDynamicHelp": false,
|
|
8002
|
+
"multiple": false,
|
|
8003
|
+
"type": "option"
|
|
8004
|
+
},
|
|
8005
|
+
"print": {
|
|
8006
|
+
"char": "p",
|
|
8007
|
+
"description": "print out the modified resource",
|
|
8008
|
+
"name": "print",
|
|
8009
|
+
"allowNo": false,
|
|
8010
|
+
"type": "boolean"
|
|
8011
|
+
},
|
|
8012
|
+
"json": {
|
|
8013
|
+
"char": "j",
|
|
8014
|
+
"dependsOn": [
|
|
8015
|
+
"print"
|
|
8016
|
+
],
|
|
8017
|
+
"description": "print result in JSON format",
|
|
8018
|
+
"name": "json",
|
|
8019
|
+
"allowNo": false,
|
|
8020
|
+
"type": "boolean"
|
|
8021
|
+
},
|
|
8022
|
+
"unformatted": {
|
|
8023
|
+
"char": "u",
|
|
8024
|
+
"dependsOn": [
|
|
8025
|
+
"json"
|
|
8026
|
+
],
|
|
8027
|
+
"description": "print JSON output without indentation",
|
|
8028
|
+
"name": "unformatted",
|
|
8029
|
+
"allowNo": false,
|
|
8030
|
+
"type": "boolean"
|
|
8031
|
+
}
|
|
8032
|
+
},
|
|
8033
|
+
"hasDynamicHelp": false,
|
|
8034
|
+
"hiddenAliases": [],
|
|
8035
|
+
"id": "order:fix_payment_source",
|
|
8036
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
8037
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
8038
|
+
"pluginType": "core",
|
|
8039
|
+
"strict": true,
|
|
8040
|
+
"enableJsonFlag": false,
|
|
8041
|
+
"isESM": false,
|
|
8042
|
+
"relativePath": [
|
|
8043
|
+
"lib",
|
|
8044
|
+
"commands",
|
|
8045
|
+
"order",
|
|
8046
|
+
"fix_payment_source.js"
|
|
8047
|
+
]
|
|
8048
|
+
},
|
|
7345
8049
|
"order:fulfill": {
|
|
7346
8050
|
"aliases": [],
|
|
7347
8051
|
"args": {
|
|
@@ -15007,6 +15711,182 @@
|
|
|
15007
15711
|
"update.js"
|
|
15008
15712
|
]
|
|
15009
15713
|
},
|
|
15714
|
+
"vertex_account": {
|
|
15715
|
+
"aliases": [],
|
|
15716
|
+
"args": {
|
|
15717
|
+
"id": {
|
|
15718
|
+
"description": "the unique id of the resource",
|
|
15719
|
+
"name": "id",
|
|
15720
|
+
"required": true
|
|
15721
|
+
}
|
|
15722
|
+
},
|
|
15723
|
+
"description": "execute an action on a resource of type vertex_accounts",
|
|
15724
|
+
"flags": {
|
|
15725
|
+
"organization": {
|
|
15726
|
+
"char": "o",
|
|
15727
|
+
"description": "the slug of your organization",
|
|
15728
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
15729
|
+
"hidden": true,
|
|
15730
|
+
"name": "organization",
|
|
15731
|
+
"required": true,
|
|
15732
|
+
"hasDynamicHelp": false,
|
|
15733
|
+
"multiple": false,
|
|
15734
|
+
"type": "option"
|
|
15735
|
+
},
|
|
15736
|
+
"domain": {
|
|
15737
|
+
"char": "d",
|
|
15738
|
+
"dependsOn": [
|
|
15739
|
+
"organization"
|
|
15740
|
+
],
|
|
15741
|
+
"env": "CL_CLI_DOMAIN",
|
|
15742
|
+
"hidden": true,
|
|
15743
|
+
"name": "domain",
|
|
15744
|
+
"required": false,
|
|
15745
|
+
"hasDynamicHelp": false,
|
|
15746
|
+
"multiple": false,
|
|
15747
|
+
"type": "option"
|
|
15748
|
+
},
|
|
15749
|
+
"accessToken": {
|
|
15750
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
15751
|
+
"hidden": true,
|
|
15752
|
+
"name": "accessToken",
|
|
15753
|
+
"required": true,
|
|
15754
|
+
"hasDynamicHelp": false,
|
|
15755
|
+
"multiple": false,
|
|
15756
|
+
"type": "option"
|
|
15757
|
+
},
|
|
15758
|
+
"print": {
|
|
15759
|
+
"char": "p",
|
|
15760
|
+
"description": "print out the modified resource",
|
|
15761
|
+
"name": "print",
|
|
15762
|
+
"allowNo": false,
|
|
15763
|
+
"type": "boolean"
|
|
15764
|
+
},
|
|
15765
|
+
"json": {
|
|
15766
|
+
"char": "j",
|
|
15767
|
+
"dependsOn": [
|
|
15768
|
+
"print"
|
|
15769
|
+
],
|
|
15770
|
+
"description": "print result in JSON format",
|
|
15771
|
+
"name": "json",
|
|
15772
|
+
"allowNo": false,
|
|
15773
|
+
"type": "boolean"
|
|
15774
|
+
},
|
|
15775
|
+
"unformatted": {
|
|
15776
|
+
"char": "u",
|
|
15777
|
+
"dependsOn": [
|
|
15778
|
+
"json"
|
|
15779
|
+
],
|
|
15780
|
+
"description": "print JSON output without indentation",
|
|
15781
|
+
"name": "unformatted",
|
|
15782
|
+
"allowNo": false,
|
|
15783
|
+
"type": "boolean"
|
|
15784
|
+
}
|
|
15785
|
+
},
|
|
15786
|
+
"hasDynamicHelp": false,
|
|
15787
|
+
"hiddenAliases": [],
|
|
15788
|
+
"id": "vertex_account",
|
|
15789
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
15790
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
15791
|
+
"pluginType": "core",
|
|
15792
|
+
"strict": true,
|
|
15793
|
+
"enableJsonFlag": false,
|
|
15794
|
+
"isESM": false,
|
|
15795
|
+
"relativePath": [
|
|
15796
|
+
"lib",
|
|
15797
|
+
"commands",
|
|
15798
|
+
"vertex_account",
|
|
15799
|
+
"index.js"
|
|
15800
|
+
]
|
|
15801
|
+
},
|
|
15802
|
+
"vertex_account:refresh_token": {
|
|
15803
|
+
"aliases": [],
|
|
15804
|
+
"args": {
|
|
15805
|
+
"id": {
|
|
15806
|
+
"description": "the unique id of the resource",
|
|
15807
|
+
"name": "id",
|
|
15808
|
+
"required": true
|
|
15809
|
+
}
|
|
15810
|
+
},
|
|
15811
|
+
"description": "Send this attribute if you want to manually refresh the access token.",
|
|
15812
|
+
"flags": {
|
|
15813
|
+
"organization": {
|
|
15814
|
+
"char": "o",
|
|
15815
|
+
"description": "the slug of your organization",
|
|
15816
|
+
"env": "CL_CLI_ORGANIZATION",
|
|
15817
|
+
"hidden": true,
|
|
15818
|
+
"name": "organization",
|
|
15819
|
+
"required": true,
|
|
15820
|
+
"hasDynamicHelp": false,
|
|
15821
|
+
"multiple": false,
|
|
15822
|
+
"type": "option"
|
|
15823
|
+
},
|
|
15824
|
+
"domain": {
|
|
15825
|
+
"char": "d",
|
|
15826
|
+
"dependsOn": [
|
|
15827
|
+
"organization"
|
|
15828
|
+
],
|
|
15829
|
+
"env": "CL_CLI_DOMAIN",
|
|
15830
|
+
"hidden": true,
|
|
15831
|
+
"name": "domain",
|
|
15832
|
+
"required": false,
|
|
15833
|
+
"hasDynamicHelp": false,
|
|
15834
|
+
"multiple": false,
|
|
15835
|
+
"type": "option"
|
|
15836
|
+
},
|
|
15837
|
+
"accessToken": {
|
|
15838
|
+
"env": "CL_CLI_ACCESS_TOKEN",
|
|
15839
|
+
"hidden": true,
|
|
15840
|
+
"name": "accessToken",
|
|
15841
|
+
"required": true,
|
|
15842
|
+
"hasDynamicHelp": false,
|
|
15843
|
+
"multiple": false,
|
|
15844
|
+
"type": "option"
|
|
15845
|
+
},
|
|
15846
|
+
"print": {
|
|
15847
|
+
"char": "p",
|
|
15848
|
+
"description": "print out the modified resource",
|
|
15849
|
+
"name": "print",
|
|
15850
|
+
"allowNo": false,
|
|
15851
|
+
"type": "boolean"
|
|
15852
|
+
},
|
|
15853
|
+
"json": {
|
|
15854
|
+
"char": "j",
|
|
15855
|
+
"dependsOn": [
|
|
15856
|
+
"print"
|
|
15857
|
+
],
|
|
15858
|
+
"description": "print result in JSON format",
|
|
15859
|
+
"name": "json",
|
|
15860
|
+
"allowNo": false,
|
|
15861
|
+
"type": "boolean"
|
|
15862
|
+
},
|
|
15863
|
+
"unformatted": {
|
|
15864
|
+
"char": "u",
|
|
15865
|
+
"dependsOn": [
|
|
15866
|
+
"json"
|
|
15867
|
+
],
|
|
15868
|
+
"description": "print JSON output without indentation",
|
|
15869
|
+
"name": "unformatted",
|
|
15870
|
+
"allowNo": false,
|
|
15871
|
+
"type": "boolean"
|
|
15872
|
+
}
|
|
15873
|
+
},
|
|
15874
|
+
"hasDynamicHelp": false,
|
|
15875
|
+
"hiddenAliases": [],
|
|
15876
|
+
"id": "vertex_account:refresh_token",
|
|
15877
|
+
"pluginAlias": "@commercelayer/cli-plugin-triggers",
|
|
15878
|
+
"pluginName": "@commercelayer/cli-plugin-triggers",
|
|
15879
|
+
"pluginType": "core",
|
|
15880
|
+
"strict": true,
|
|
15881
|
+
"enableJsonFlag": false,
|
|
15882
|
+
"isESM": false,
|
|
15883
|
+
"relativePath": [
|
|
15884
|
+
"lib",
|
|
15885
|
+
"commands",
|
|
15886
|
+
"vertex_account",
|
|
15887
|
+
"refresh_token.js"
|
|
15888
|
+
]
|
|
15889
|
+
},
|
|
15010
15890
|
"void:forward": {
|
|
15011
15891
|
"aliases": [],
|
|
15012
15892
|
"args": {
|
|
@@ -15536,5 +16416,5 @@
|
|
|
15536
16416
|
]
|
|
15537
16417
|
}
|
|
15538
16418
|
},
|
|
15539
|
-
"version": "4.
|
|
16419
|
+
"version": "4.10.0"
|
|
15540
16420
|
}
|