@commercelayer/cli-plugin-provisioning 2.0.0-oclif3.8 → 2.0.0-rc.1
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 +68 -17
- package/bin/run.js +0 -1
- package/lib/base.d.ts +8 -1
- package/lib/base.js +45 -27
- package/lib/commands/provisioning/create.d.ts +4 -0
- package/lib/commands/provisioning/create.js +9 -8
- package/lib/commands/provisioning/delete.d.ts +4 -0
- package/lib/commands/provisioning/delete.js +8 -7
- package/lib/commands/provisioning/fetch.d.ts +4 -0
- package/lib/commands/provisioning/get.d.ts +4 -0
- package/lib/commands/provisioning/list.d.ts +4 -0
- package/lib/commands/provisioning/list.js +8 -7
- package/lib/commands/provisioning/relationship.d.ts +4 -0
- package/lib/commands/provisioning/relationship.js +10 -7
- package/lib/commands/provisioning/retrieve.d.ts +4 -0
- package/lib/commands/provisioning/retrieve.js +8 -7
- package/lib/commands/provisioning/update.d.ts +4 -0
- package/lib/commands/provisioning/update.js +9 -7
- package/lib/lang/curl.d.ts +4 -0
- package/lib/lang/curl.js +17 -0
- package/lib/lang/index.d.ts +19 -0
- package/lib/lang/index.js +51 -0
- package/lib/lang/node.d.ts +4 -0
- package/lib/lang/node.js +26 -0
- package/lib/lang/request.d.ts +32 -0
- package/lib/lang/request.js +108 -0
- package/lib/lang/ruby.d.ts +4 -0
- package/lib/lang/ruby.js +7 -0
- package/lib/util/resources/index.d.ts +1 -1
- package/oclif.manifest.json +481 -1
- package/package.json +18 -16
package/oclif.manifest.json
CHANGED
|
@@ -81,6 +81,66 @@
|
|
|
81
81
|
"allowNo": false,
|
|
82
82
|
"type": "boolean"
|
|
83
83
|
},
|
|
84
|
+
"doc": {
|
|
85
|
+
"description": "show the CLI command in a specific language",
|
|
86
|
+
"exclusive": [
|
|
87
|
+
"raw"
|
|
88
|
+
],
|
|
89
|
+
"helpGroup": "documentation",
|
|
90
|
+
"name": "doc",
|
|
91
|
+
"allowNo": false,
|
|
92
|
+
"type": "boolean"
|
|
93
|
+
},
|
|
94
|
+
"lang": {
|
|
95
|
+
"char": "l",
|
|
96
|
+
"dependsOn": [
|
|
97
|
+
"doc"
|
|
98
|
+
],
|
|
99
|
+
"description": "show the CLI command in the specified language syntax",
|
|
100
|
+
"exclusive": [
|
|
101
|
+
"curl",
|
|
102
|
+
"node"
|
|
103
|
+
],
|
|
104
|
+
"helpGroup": "documentation",
|
|
105
|
+
"name": "lang",
|
|
106
|
+
"hasDynamicHelp": false,
|
|
107
|
+
"multiple": false,
|
|
108
|
+
"options": [
|
|
109
|
+
"curl",
|
|
110
|
+
"node"
|
|
111
|
+
],
|
|
112
|
+
"type": "option"
|
|
113
|
+
},
|
|
114
|
+
"curl": {
|
|
115
|
+
"dependsOn": [
|
|
116
|
+
"doc"
|
|
117
|
+
],
|
|
118
|
+
"description": "show the equivalent cURL command of the CLI command",
|
|
119
|
+
"exclusive": [
|
|
120
|
+
"lang",
|
|
121
|
+
"node"
|
|
122
|
+
],
|
|
123
|
+
"helpGroup": "documentation",
|
|
124
|
+
"hidden": false,
|
|
125
|
+
"name": "curl",
|
|
126
|
+
"allowNo": false,
|
|
127
|
+
"type": "boolean"
|
|
128
|
+
},
|
|
129
|
+
"node": {
|
|
130
|
+
"dependsOn": [
|
|
131
|
+
"doc"
|
|
132
|
+
],
|
|
133
|
+
"description": "show the equivalent Node SDK source code of the CLI command",
|
|
134
|
+
"exclusive": [
|
|
135
|
+
"lang",
|
|
136
|
+
"curl"
|
|
137
|
+
],
|
|
138
|
+
"helpGroup": "documentation",
|
|
139
|
+
"hidden": false,
|
|
140
|
+
"name": "node",
|
|
141
|
+
"allowNo": false,
|
|
142
|
+
"type": "boolean"
|
|
143
|
+
},
|
|
84
144
|
"headers": {
|
|
85
145
|
"char": "H",
|
|
86
146
|
"dependsOn": [
|
|
@@ -257,6 +317,66 @@
|
|
|
257
317
|
"allowNo": false,
|
|
258
318
|
"type": "boolean"
|
|
259
319
|
},
|
|
320
|
+
"doc": {
|
|
321
|
+
"description": "show the CLI command in a specific language",
|
|
322
|
+
"exclusive": [
|
|
323
|
+
"raw"
|
|
324
|
+
],
|
|
325
|
+
"helpGroup": "documentation",
|
|
326
|
+
"name": "doc",
|
|
327
|
+
"allowNo": false,
|
|
328
|
+
"type": "boolean"
|
|
329
|
+
},
|
|
330
|
+
"lang": {
|
|
331
|
+
"char": "l",
|
|
332
|
+
"dependsOn": [
|
|
333
|
+
"doc"
|
|
334
|
+
],
|
|
335
|
+
"description": "show the CLI command in the specified language syntax",
|
|
336
|
+
"exclusive": [
|
|
337
|
+
"curl",
|
|
338
|
+
"node"
|
|
339
|
+
],
|
|
340
|
+
"helpGroup": "documentation",
|
|
341
|
+
"name": "lang",
|
|
342
|
+
"hasDynamicHelp": false,
|
|
343
|
+
"multiple": false,
|
|
344
|
+
"options": [
|
|
345
|
+
"curl",
|
|
346
|
+
"node"
|
|
347
|
+
],
|
|
348
|
+
"type": "option"
|
|
349
|
+
},
|
|
350
|
+
"curl": {
|
|
351
|
+
"dependsOn": [
|
|
352
|
+
"doc"
|
|
353
|
+
],
|
|
354
|
+
"description": "show the equivalent cURL command of the CLI command",
|
|
355
|
+
"exclusive": [
|
|
356
|
+
"lang",
|
|
357
|
+
"node"
|
|
358
|
+
],
|
|
359
|
+
"helpGroup": "documentation",
|
|
360
|
+
"hidden": false,
|
|
361
|
+
"name": "curl",
|
|
362
|
+
"allowNo": false,
|
|
363
|
+
"type": "boolean"
|
|
364
|
+
},
|
|
365
|
+
"node": {
|
|
366
|
+
"dependsOn": [
|
|
367
|
+
"doc"
|
|
368
|
+
],
|
|
369
|
+
"description": "show the equivalent Node SDK source code of the CLI command",
|
|
370
|
+
"exclusive": [
|
|
371
|
+
"lang",
|
|
372
|
+
"curl"
|
|
373
|
+
],
|
|
374
|
+
"helpGroup": "documentation",
|
|
375
|
+
"hidden": false,
|
|
376
|
+
"name": "node",
|
|
377
|
+
"allowNo": false,
|
|
378
|
+
"type": "boolean"
|
|
379
|
+
},
|
|
260
380
|
"headers": {
|
|
261
381
|
"char": "H",
|
|
262
382
|
"dependsOn": [
|
|
@@ -466,6 +586,66 @@
|
|
|
466
586
|
"allowNo": false,
|
|
467
587
|
"type": "boolean"
|
|
468
588
|
},
|
|
589
|
+
"doc": {
|
|
590
|
+
"description": "show the CLI command in a specific language",
|
|
591
|
+
"exclusive": [
|
|
592
|
+
"raw"
|
|
593
|
+
],
|
|
594
|
+
"helpGroup": "documentation",
|
|
595
|
+
"name": "doc",
|
|
596
|
+
"allowNo": false,
|
|
597
|
+
"type": "boolean"
|
|
598
|
+
},
|
|
599
|
+
"lang": {
|
|
600
|
+
"char": "l",
|
|
601
|
+
"dependsOn": [
|
|
602
|
+
"doc"
|
|
603
|
+
],
|
|
604
|
+
"description": "show the CLI command in the specified language syntax",
|
|
605
|
+
"exclusive": [
|
|
606
|
+
"curl",
|
|
607
|
+
"node"
|
|
608
|
+
],
|
|
609
|
+
"helpGroup": "documentation",
|
|
610
|
+
"name": "lang",
|
|
611
|
+
"hasDynamicHelp": false,
|
|
612
|
+
"multiple": false,
|
|
613
|
+
"options": [
|
|
614
|
+
"curl",
|
|
615
|
+
"node"
|
|
616
|
+
],
|
|
617
|
+
"type": "option"
|
|
618
|
+
},
|
|
619
|
+
"curl": {
|
|
620
|
+
"dependsOn": [
|
|
621
|
+
"doc"
|
|
622
|
+
],
|
|
623
|
+
"description": "show the equivalent cURL command of the CLI command",
|
|
624
|
+
"exclusive": [
|
|
625
|
+
"lang",
|
|
626
|
+
"node"
|
|
627
|
+
],
|
|
628
|
+
"helpGroup": "documentation",
|
|
629
|
+
"hidden": false,
|
|
630
|
+
"name": "curl",
|
|
631
|
+
"allowNo": false,
|
|
632
|
+
"type": "boolean"
|
|
633
|
+
},
|
|
634
|
+
"node": {
|
|
635
|
+
"dependsOn": [
|
|
636
|
+
"doc"
|
|
637
|
+
],
|
|
638
|
+
"description": "show the equivalent Node SDK source code of the CLI command",
|
|
639
|
+
"exclusive": [
|
|
640
|
+
"lang",
|
|
641
|
+
"curl"
|
|
642
|
+
],
|
|
643
|
+
"helpGroup": "documentation",
|
|
644
|
+
"hidden": false,
|
|
645
|
+
"name": "node",
|
|
646
|
+
"allowNo": false,
|
|
647
|
+
"type": "boolean"
|
|
648
|
+
},
|
|
469
649
|
"headers": {
|
|
470
650
|
"char": "H",
|
|
471
651
|
"dependsOn": [
|
|
@@ -651,6 +831,66 @@
|
|
|
651
831
|
"allowNo": false,
|
|
652
832
|
"type": "boolean"
|
|
653
833
|
},
|
|
834
|
+
"doc": {
|
|
835
|
+
"description": "show the CLI command in a specific language",
|
|
836
|
+
"exclusive": [
|
|
837
|
+
"raw"
|
|
838
|
+
],
|
|
839
|
+
"helpGroup": "documentation",
|
|
840
|
+
"name": "doc",
|
|
841
|
+
"allowNo": false,
|
|
842
|
+
"type": "boolean"
|
|
843
|
+
},
|
|
844
|
+
"lang": {
|
|
845
|
+
"char": "l",
|
|
846
|
+
"dependsOn": [
|
|
847
|
+
"doc"
|
|
848
|
+
],
|
|
849
|
+
"description": "show the CLI command in the specified language syntax",
|
|
850
|
+
"exclusive": [
|
|
851
|
+
"curl",
|
|
852
|
+
"node"
|
|
853
|
+
],
|
|
854
|
+
"helpGroup": "documentation",
|
|
855
|
+
"name": "lang",
|
|
856
|
+
"hasDynamicHelp": false,
|
|
857
|
+
"multiple": false,
|
|
858
|
+
"options": [
|
|
859
|
+
"curl",
|
|
860
|
+
"node"
|
|
861
|
+
],
|
|
862
|
+
"type": "option"
|
|
863
|
+
},
|
|
864
|
+
"curl": {
|
|
865
|
+
"dependsOn": [
|
|
866
|
+
"doc"
|
|
867
|
+
],
|
|
868
|
+
"description": "show the equivalent cURL command of the CLI command",
|
|
869
|
+
"exclusive": [
|
|
870
|
+
"lang",
|
|
871
|
+
"node"
|
|
872
|
+
],
|
|
873
|
+
"helpGroup": "documentation",
|
|
874
|
+
"hidden": false,
|
|
875
|
+
"name": "curl",
|
|
876
|
+
"allowNo": false,
|
|
877
|
+
"type": "boolean"
|
|
878
|
+
},
|
|
879
|
+
"node": {
|
|
880
|
+
"dependsOn": [
|
|
881
|
+
"doc"
|
|
882
|
+
],
|
|
883
|
+
"description": "show the equivalent Node SDK source code of the CLI command",
|
|
884
|
+
"exclusive": [
|
|
885
|
+
"lang",
|
|
886
|
+
"curl"
|
|
887
|
+
],
|
|
888
|
+
"helpGroup": "documentation",
|
|
889
|
+
"hidden": false,
|
|
890
|
+
"name": "node",
|
|
891
|
+
"allowNo": false,
|
|
892
|
+
"type": "boolean"
|
|
893
|
+
},
|
|
654
894
|
"headers": {
|
|
655
895
|
"char": "H",
|
|
656
896
|
"dependsOn": [
|
|
@@ -831,6 +1071,66 @@
|
|
|
831
1071
|
"allowNo": false,
|
|
832
1072
|
"type": "boolean"
|
|
833
1073
|
},
|
|
1074
|
+
"doc": {
|
|
1075
|
+
"description": "show the CLI command in a specific language",
|
|
1076
|
+
"exclusive": [
|
|
1077
|
+
"raw"
|
|
1078
|
+
],
|
|
1079
|
+
"helpGroup": "documentation",
|
|
1080
|
+
"name": "doc",
|
|
1081
|
+
"allowNo": false,
|
|
1082
|
+
"type": "boolean"
|
|
1083
|
+
},
|
|
1084
|
+
"lang": {
|
|
1085
|
+
"char": "l",
|
|
1086
|
+
"dependsOn": [
|
|
1087
|
+
"doc"
|
|
1088
|
+
],
|
|
1089
|
+
"description": "show the CLI command in the specified language syntax",
|
|
1090
|
+
"exclusive": [
|
|
1091
|
+
"curl",
|
|
1092
|
+
"node"
|
|
1093
|
+
],
|
|
1094
|
+
"helpGroup": "documentation",
|
|
1095
|
+
"name": "lang",
|
|
1096
|
+
"hasDynamicHelp": false,
|
|
1097
|
+
"multiple": false,
|
|
1098
|
+
"options": [
|
|
1099
|
+
"curl",
|
|
1100
|
+
"node"
|
|
1101
|
+
],
|
|
1102
|
+
"type": "option"
|
|
1103
|
+
},
|
|
1104
|
+
"curl": {
|
|
1105
|
+
"dependsOn": [
|
|
1106
|
+
"doc"
|
|
1107
|
+
],
|
|
1108
|
+
"description": "show the equivalent cURL command of the CLI command",
|
|
1109
|
+
"exclusive": [
|
|
1110
|
+
"lang",
|
|
1111
|
+
"node"
|
|
1112
|
+
],
|
|
1113
|
+
"helpGroup": "documentation",
|
|
1114
|
+
"hidden": false,
|
|
1115
|
+
"name": "curl",
|
|
1116
|
+
"allowNo": false,
|
|
1117
|
+
"type": "boolean"
|
|
1118
|
+
},
|
|
1119
|
+
"node": {
|
|
1120
|
+
"dependsOn": [
|
|
1121
|
+
"doc"
|
|
1122
|
+
],
|
|
1123
|
+
"description": "show the equivalent Node SDK source code of the CLI command",
|
|
1124
|
+
"exclusive": [
|
|
1125
|
+
"lang",
|
|
1126
|
+
"curl"
|
|
1127
|
+
],
|
|
1128
|
+
"helpGroup": "documentation",
|
|
1129
|
+
"hidden": false,
|
|
1130
|
+
"name": "node",
|
|
1131
|
+
"allowNo": false,
|
|
1132
|
+
"type": "boolean"
|
|
1133
|
+
},
|
|
834
1134
|
"headers": {
|
|
835
1135
|
"char": "H",
|
|
836
1136
|
"dependsOn": [
|
|
@@ -1041,6 +1341,66 @@
|
|
|
1041
1341
|
"allowNo": false,
|
|
1042
1342
|
"type": "boolean"
|
|
1043
1343
|
},
|
|
1344
|
+
"doc": {
|
|
1345
|
+
"description": "show the CLI command in a specific language",
|
|
1346
|
+
"exclusive": [
|
|
1347
|
+
"raw"
|
|
1348
|
+
],
|
|
1349
|
+
"helpGroup": "documentation",
|
|
1350
|
+
"name": "doc",
|
|
1351
|
+
"allowNo": false,
|
|
1352
|
+
"type": "boolean"
|
|
1353
|
+
},
|
|
1354
|
+
"lang": {
|
|
1355
|
+
"char": "l",
|
|
1356
|
+
"dependsOn": [
|
|
1357
|
+
"doc"
|
|
1358
|
+
],
|
|
1359
|
+
"description": "show the CLI command in the specified language syntax",
|
|
1360
|
+
"exclusive": [
|
|
1361
|
+
"curl",
|
|
1362
|
+
"node"
|
|
1363
|
+
],
|
|
1364
|
+
"helpGroup": "documentation",
|
|
1365
|
+
"name": "lang",
|
|
1366
|
+
"hasDynamicHelp": false,
|
|
1367
|
+
"multiple": false,
|
|
1368
|
+
"options": [
|
|
1369
|
+
"curl",
|
|
1370
|
+
"node"
|
|
1371
|
+
],
|
|
1372
|
+
"type": "option"
|
|
1373
|
+
},
|
|
1374
|
+
"curl": {
|
|
1375
|
+
"dependsOn": [
|
|
1376
|
+
"doc"
|
|
1377
|
+
],
|
|
1378
|
+
"description": "show the equivalent cURL command of the CLI command",
|
|
1379
|
+
"exclusive": [
|
|
1380
|
+
"lang",
|
|
1381
|
+
"node"
|
|
1382
|
+
],
|
|
1383
|
+
"helpGroup": "documentation",
|
|
1384
|
+
"hidden": false,
|
|
1385
|
+
"name": "curl",
|
|
1386
|
+
"allowNo": false,
|
|
1387
|
+
"type": "boolean"
|
|
1388
|
+
},
|
|
1389
|
+
"node": {
|
|
1390
|
+
"dependsOn": [
|
|
1391
|
+
"doc"
|
|
1392
|
+
],
|
|
1393
|
+
"description": "show the equivalent Node SDK source code of the CLI command",
|
|
1394
|
+
"exclusive": [
|
|
1395
|
+
"lang",
|
|
1396
|
+
"curl"
|
|
1397
|
+
],
|
|
1398
|
+
"helpGroup": "documentation",
|
|
1399
|
+
"hidden": false,
|
|
1400
|
+
"name": "node",
|
|
1401
|
+
"allowNo": false,
|
|
1402
|
+
"type": "boolean"
|
|
1403
|
+
},
|
|
1044
1404
|
"headers": {
|
|
1045
1405
|
"char": "H",
|
|
1046
1406
|
"dependsOn": [
|
|
@@ -1263,6 +1623,66 @@
|
|
|
1263
1623
|
"allowNo": false,
|
|
1264
1624
|
"type": "boolean"
|
|
1265
1625
|
},
|
|
1626
|
+
"doc": {
|
|
1627
|
+
"description": "show the CLI command in a specific language",
|
|
1628
|
+
"exclusive": [
|
|
1629
|
+
"raw"
|
|
1630
|
+
],
|
|
1631
|
+
"helpGroup": "documentation",
|
|
1632
|
+
"name": "doc",
|
|
1633
|
+
"allowNo": false,
|
|
1634
|
+
"type": "boolean"
|
|
1635
|
+
},
|
|
1636
|
+
"lang": {
|
|
1637
|
+
"char": "l",
|
|
1638
|
+
"dependsOn": [
|
|
1639
|
+
"doc"
|
|
1640
|
+
],
|
|
1641
|
+
"description": "show the CLI command in the specified language syntax",
|
|
1642
|
+
"exclusive": [
|
|
1643
|
+
"curl",
|
|
1644
|
+
"node"
|
|
1645
|
+
],
|
|
1646
|
+
"helpGroup": "documentation",
|
|
1647
|
+
"name": "lang",
|
|
1648
|
+
"hasDynamicHelp": false,
|
|
1649
|
+
"multiple": false,
|
|
1650
|
+
"options": [
|
|
1651
|
+
"curl",
|
|
1652
|
+
"node"
|
|
1653
|
+
],
|
|
1654
|
+
"type": "option"
|
|
1655
|
+
},
|
|
1656
|
+
"curl": {
|
|
1657
|
+
"dependsOn": [
|
|
1658
|
+
"doc"
|
|
1659
|
+
],
|
|
1660
|
+
"description": "show the equivalent cURL command of the CLI command",
|
|
1661
|
+
"exclusive": [
|
|
1662
|
+
"lang",
|
|
1663
|
+
"node"
|
|
1664
|
+
],
|
|
1665
|
+
"helpGroup": "documentation",
|
|
1666
|
+
"hidden": false,
|
|
1667
|
+
"name": "curl",
|
|
1668
|
+
"allowNo": false,
|
|
1669
|
+
"type": "boolean"
|
|
1670
|
+
},
|
|
1671
|
+
"node": {
|
|
1672
|
+
"dependsOn": [
|
|
1673
|
+
"doc"
|
|
1674
|
+
],
|
|
1675
|
+
"description": "show the equivalent Node SDK source code of the CLI command",
|
|
1676
|
+
"exclusive": [
|
|
1677
|
+
"lang",
|
|
1678
|
+
"curl"
|
|
1679
|
+
],
|
|
1680
|
+
"helpGroup": "documentation",
|
|
1681
|
+
"hidden": false,
|
|
1682
|
+
"name": "node",
|
|
1683
|
+
"allowNo": false,
|
|
1684
|
+
"type": "boolean"
|
|
1685
|
+
},
|
|
1266
1686
|
"headers": {
|
|
1267
1687
|
"char": "H",
|
|
1268
1688
|
"dependsOn": [
|
|
@@ -1407,6 +1827,66 @@
|
|
|
1407
1827
|
"allowNo": false,
|
|
1408
1828
|
"type": "boolean"
|
|
1409
1829
|
},
|
|
1830
|
+
"doc": {
|
|
1831
|
+
"description": "show the CLI command in a specific language",
|
|
1832
|
+
"exclusive": [
|
|
1833
|
+
"raw"
|
|
1834
|
+
],
|
|
1835
|
+
"helpGroup": "documentation",
|
|
1836
|
+
"name": "doc",
|
|
1837
|
+
"allowNo": false,
|
|
1838
|
+
"type": "boolean"
|
|
1839
|
+
},
|
|
1840
|
+
"lang": {
|
|
1841
|
+
"char": "l",
|
|
1842
|
+
"dependsOn": [
|
|
1843
|
+
"doc"
|
|
1844
|
+
],
|
|
1845
|
+
"description": "show the CLI command in the specified language syntax",
|
|
1846
|
+
"exclusive": [
|
|
1847
|
+
"curl",
|
|
1848
|
+
"node"
|
|
1849
|
+
],
|
|
1850
|
+
"helpGroup": "documentation",
|
|
1851
|
+
"name": "lang",
|
|
1852
|
+
"hasDynamicHelp": false,
|
|
1853
|
+
"multiple": false,
|
|
1854
|
+
"options": [
|
|
1855
|
+
"curl",
|
|
1856
|
+
"node"
|
|
1857
|
+
],
|
|
1858
|
+
"type": "option"
|
|
1859
|
+
},
|
|
1860
|
+
"curl": {
|
|
1861
|
+
"dependsOn": [
|
|
1862
|
+
"doc"
|
|
1863
|
+
],
|
|
1864
|
+
"description": "show the equivalent cURL command of the CLI command",
|
|
1865
|
+
"exclusive": [
|
|
1866
|
+
"lang",
|
|
1867
|
+
"node"
|
|
1868
|
+
],
|
|
1869
|
+
"helpGroup": "documentation",
|
|
1870
|
+
"hidden": false,
|
|
1871
|
+
"name": "curl",
|
|
1872
|
+
"allowNo": false,
|
|
1873
|
+
"type": "boolean"
|
|
1874
|
+
},
|
|
1875
|
+
"node": {
|
|
1876
|
+
"dependsOn": [
|
|
1877
|
+
"doc"
|
|
1878
|
+
],
|
|
1879
|
+
"description": "show the equivalent Node SDK source code of the CLI command",
|
|
1880
|
+
"exclusive": [
|
|
1881
|
+
"lang",
|
|
1882
|
+
"curl"
|
|
1883
|
+
],
|
|
1884
|
+
"helpGroup": "documentation",
|
|
1885
|
+
"hidden": false,
|
|
1886
|
+
"name": "node",
|
|
1887
|
+
"allowNo": false,
|
|
1888
|
+
"type": "boolean"
|
|
1889
|
+
},
|
|
1410
1890
|
"headers": {
|
|
1411
1891
|
"char": "H",
|
|
1412
1892
|
"dependsOn": [
|
|
@@ -1514,5 +1994,5 @@
|
|
|
1514
1994
|
]
|
|
1515
1995
|
}
|
|
1516
1996
|
},
|
|
1517
|
-
"version": "2.0.0-
|
|
1997
|
+
"version": "2.0.0-rc.1"
|
|
1518
1998
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercelayer/cli-plugin-provisioning",
|
|
3
3
|
"description": "Commerce Layer CLI Provisioning plugin",
|
|
4
|
-
"version": "2.0.0-
|
|
4
|
+
"version": "2.0.0-rc.1",
|
|
5
5
|
"author": "Pierluigi Viti <pierluigi@commercelayer.io>",
|
|
6
6
|
"homepage": "https://github.com/commercelayer/commercelayer-cli-plugin-provisioning",
|
|
7
7
|
"repository": "commercelayer/commercelayer-cli-plugin-provisioning",
|
|
8
8
|
"bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-provisioning/issues",
|
|
9
9
|
"engines": {
|
|
10
|
-
"node": ">=20
|
|
10
|
+
"node": ">=20"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"/bin/run.*",
|
|
@@ -49,35 +49,37 @@
|
|
|
49
49
|
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
|
|
50
50
|
"posttest": "eslint . --ext .ts --config .eslintrc",
|
|
51
51
|
"readme": "cl-cli-dev readme --plugin --bin=commercelayer && git add README.md",
|
|
52
|
-
"resources": "pnpm update @commercelayer/provisioning-sdk &&
|
|
52
|
+
"resources": "pnpm update @commercelayer/provisioning-sdk && tsx src/util/resources/build.ts",
|
|
53
53
|
"lint": "eslint src --ext .ts --config .eslintrc",
|
|
54
54
|
"lint:fix": "eslint src --fix"
|
|
55
55
|
},
|
|
56
56
|
"types": "lib/index.d.ts",
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@commercelayer/cli-dev": "beta",
|
|
59
|
-
"@commercelayer/eslint-config-ts": "^1.
|
|
60
|
-
"@oclif/plugin-help": "^6.0.
|
|
61
|
-
"@oclif/test": "^3.2.
|
|
59
|
+
"@commercelayer/eslint-config-ts": "^1.4.5",
|
|
60
|
+
"@oclif/plugin-help": "^6.0.20",
|
|
61
|
+
"@oclif/test": "^3.2.9",
|
|
62
62
|
"@semantic-release/changelog": "^6.0.3",
|
|
63
63
|
"@semantic-release/git": "^10.0.1",
|
|
64
|
-
"@types/chai": "^4.3.
|
|
64
|
+
"@types/chai": "^4.3.14",
|
|
65
|
+
"@types/inquirer": "^8.2.10",
|
|
65
66
|
"@types/mocha": "^10.0.6",
|
|
66
|
-
"@types/node": "^20.
|
|
67
|
+
"@types/node": "^20.12.7",
|
|
67
68
|
"chai": "^4.4.1",
|
|
68
69
|
"eslint": "^8.57.0",
|
|
69
|
-
"mocha": "^10.
|
|
70
|
+
"mocha": "^10.4.0",
|
|
70
71
|
"nyc": "^15.1.0",
|
|
71
|
-
"oclif": "^4.
|
|
72
|
-
"semantic-release": "^23.0.
|
|
73
|
-
"
|
|
74
|
-
"typescript": "^5.
|
|
72
|
+
"oclif": "^4.8.0",
|
|
73
|
+
"semantic-release": "^23.0.8",
|
|
74
|
+
"tsx": "^4.7.2",
|
|
75
|
+
"typescript": "^5.4.5"
|
|
75
76
|
},
|
|
76
77
|
"dependencies": {
|
|
77
78
|
"@commercelayer/cli-core": "beta",
|
|
78
|
-
"@commercelayer/provisioning-sdk": "
|
|
79
|
-
"@oclif/core": "^3.
|
|
80
|
-
"
|
|
79
|
+
"@commercelayer/provisioning-sdk": "2.0.0-beta.16",
|
|
80
|
+
"@oclif/core": "^3.26.2",
|
|
81
|
+
"inquirer": "^8.2.6",
|
|
82
|
+
"json-2-csv": "^5.5.1",
|
|
81
83
|
"tslib": "^2.6.2"
|
|
82
84
|
},
|
|
83
85
|
"publishConfig": {
|