@salesforce/plugin-data 3.1.11 → 3.2.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 +3 -903
- package/lib/BulkBaseCommand.js +68 -94
- package/lib/BulkBaseCommand.js.map +1 -1
- package/lib/api/data/tree/exportApi.js +0 -1
- package/lib/api/data/tree/exportApi.js.map +1 -1
- package/lib/api/data/tree/importApi.js +2 -13
- package/lib/api/data/tree/importApi.js.map +1 -1
- package/lib/api/data/tree/importPlan.js.map +1 -1
- package/lib/batcher.js +3 -26
- package/lib/batcher.js.map +1 -1
- package/lib/bulkOperationCommand.js +125 -118
- package/lib/bulkOperationCommand.js.map +1 -1
- package/lib/bulkUtils.js +13 -24
- package/lib/bulkUtils.js.map +1 -1
- package/lib/commands/data/create/record.js.map +1 -1
- package/lib/commands/data/delete/bulk.js +14 -11
- package/lib/commands/data/delete/bulk.js.map +1 -1
- package/lib/commands/data/delete/record.js.map +1 -1
- package/lib/commands/data/delete/resume.js +1 -4
- package/lib/commands/data/delete/resume.js.map +1 -1
- package/lib/commands/data/get/record.js.map +1 -1
- package/lib/commands/data/import/tree.js +1 -1
- package/lib/commands/data/import/tree.js.map +1 -1
- package/lib/commands/data/query/resume.js +21 -10
- package/lib/commands/data/query/resume.js.map +1 -1
- package/lib/commands/data/query.js +38 -12
- package/lib/commands/data/query.js.map +1 -1
- package/lib/commands/data/resume.js +9 -15
- package/lib/commands/data/resume.js.map +1 -1
- package/lib/commands/data/update/record.js.map +1 -1
- package/lib/commands/data/upsert/bulk.js +16 -13
- package/lib/commands/data/upsert/bulk.js.map +1 -1
- package/lib/commands/data/upsert/resume.js +1 -4
- package/lib/commands/data/upsert/resume.js.map +1 -1
- package/lib/commands/force/data/bulk/delete.js +5 -4
- package/lib/commands/force/data/bulk/delete.js.map +1 -1
- package/lib/commands/force/data/bulk/status.js +1 -1
- package/lib/commands/force/data/bulk/status.js.map +1 -1
- package/lib/commands/force/data/bulk/upsert.js +6 -6
- package/lib/commands/force/data/bulk/upsert.js.map +1 -1
- package/lib/dataCommand.js.map +1 -1
- package/lib/dataSoqlQueryTypes.js.map +1 -1
- package/lib/export.js +1 -1
- package/lib/export.js.map +1 -1
- package/lib/flags.js +4 -3
- package/lib/flags.js.map +1 -1
- package/lib/queryUtils.js +3 -1
- package/lib/queryUtils.js.map +1 -1
- package/lib/reporters/csvReporter.js +78 -0
- package/lib/reporters/csvReporter.js.map +1 -0
- package/lib/reporters/humanReporter.js +120 -0
- package/lib/reporters/humanReporter.js.map +1 -0
- package/lib/reporters/reporters.js +69 -0
- package/lib/reporters/reporters.js.map +1 -0
- package/lib/resumeBulkCommand.js +28 -14
- package/lib/resumeBulkCommand.js.map +1 -1
- package/messages/batcher.md +3 -3
- package/messages/bulk.base.command.md +4 -4
- package/messages/bulk.resume.command.md +0 -4
- package/messages/importApi.md +2 -2
- package/messages/reporter.md +1 -1
- package/messages/soql.query.md +0 -4
- package/npm-shrinkwrap.json +497 -961
- package/oclif.lock +1178 -1545
- package/oclif.manifest.json +165 -42
- package/package.json +8 -10
- package/lib/reporters.js +0 -335
- package/lib/reporters.js.map +0 -1
package/oclif.manifest.json
CHANGED
|
@@ -21,6 +21,14 @@
|
|
|
21
21
|
"allowNo": false,
|
|
22
22
|
"type": "boolean"
|
|
23
23
|
},
|
|
24
|
+
"flags-dir": {
|
|
25
|
+
"helpGroup": "GLOBAL",
|
|
26
|
+
"name": "flags-dir",
|
|
27
|
+
"summary": "Import flag values from a directory.",
|
|
28
|
+
"hasDynamicHelp": false,
|
|
29
|
+
"multiple": false,
|
|
30
|
+
"type": "option"
|
|
31
|
+
},
|
|
24
32
|
"target-org": {
|
|
25
33
|
"aliases": [
|
|
26
34
|
"targetusername",
|
|
@@ -83,6 +91,9 @@
|
|
|
83
91
|
],
|
|
84
92
|
"char": "t",
|
|
85
93
|
"deprecateAliases": true,
|
|
94
|
+
"exclusive": [
|
|
95
|
+
"bulk"
|
|
96
|
+
],
|
|
86
97
|
"name": "use-tooling-api",
|
|
87
98
|
"summary": "Use Tooling API so you can run queries on Tooling API objects.",
|
|
88
99
|
"allowNo": false,
|
|
@@ -108,7 +119,7 @@
|
|
|
108
119
|
],
|
|
109
120
|
"name": "wait",
|
|
110
121
|
"summary": "Time to wait for the command to finish, in minutes.",
|
|
111
|
-
"hasDynamicHelp":
|
|
122
|
+
"hasDynamicHelp": true,
|
|
112
123
|
"multiple": false,
|
|
113
124
|
"type": "option"
|
|
114
125
|
},
|
|
@@ -143,8 +154,8 @@
|
|
|
143
154
|
"multiple": false,
|
|
144
155
|
"options": [
|
|
145
156
|
"human",
|
|
146
|
-
"
|
|
147
|
-
"
|
|
157
|
+
"csv",
|
|
158
|
+
"json"
|
|
148
159
|
],
|
|
149
160
|
"type": "option"
|
|
150
161
|
},
|
|
@@ -227,6 +238,14 @@
|
|
|
227
238
|
"allowNo": false,
|
|
228
239
|
"type": "boolean"
|
|
229
240
|
},
|
|
241
|
+
"flags-dir": {
|
|
242
|
+
"helpGroup": "GLOBAL",
|
|
243
|
+
"name": "flags-dir",
|
|
244
|
+
"summary": "Import flag values from a directory.",
|
|
245
|
+
"hasDynamicHelp": false,
|
|
246
|
+
"multiple": false,
|
|
247
|
+
"type": "option"
|
|
248
|
+
},
|
|
230
249
|
"target-org": {
|
|
231
250
|
"aliases": [
|
|
232
251
|
"targetusername",
|
|
@@ -332,6 +351,14 @@
|
|
|
332
351
|
"allowNo": false,
|
|
333
352
|
"type": "boolean"
|
|
334
353
|
},
|
|
354
|
+
"flags-dir": {
|
|
355
|
+
"helpGroup": "GLOBAL",
|
|
356
|
+
"name": "flags-dir",
|
|
357
|
+
"summary": "Import flag values from a directory.",
|
|
358
|
+
"hasDynamicHelp": false,
|
|
359
|
+
"multiple": false,
|
|
360
|
+
"type": "option"
|
|
361
|
+
},
|
|
335
362
|
"target-org": {
|
|
336
363
|
"aliases": [
|
|
337
364
|
"targetusername",
|
|
@@ -481,6 +508,14 @@
|
|
|
481
508
|
"allowNo": false,
|
|
482
509
|
"type": "boolean"
|
|
483
510
|
},
|
|
511
|
+
"flags-dir": {
|
|
512
|
+
"helpGroup": "GLOBAL",
|
|
513
|
+
"name": "flags-dir",
|
|
514
|
+
"summary": "Import flag values from a directory.",
|
|
515
|
+
"hasDynamicHelp": false,
|
|
516
|
+
"multiple": false,
|
|
517
|
+
"type": "option"
|
|
518
|
+
},
|
|
484
519
|
"target-org": {
|
|
485
520
|
"aliases": [
|
|
486
521
|
"targetusername",
|
|
@@ -550,11 +585,8 @@
|
|
|
550
585
|
],
|
|
551
586
|
"name": "wait",
|
|
552
587
|
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
553
|
-
"default":
|
|
554
|
-
|
|
555
|
-
"unit": 0
|
|
556
|
-
},
|
|
557
|
-
"hasDynamicHelp": false,
|
|
588
|
+
"default": "0 minutes",
|
|
589
|
+
"hasDynamicHelp": true,
|
|
558
590
|
"multiple": false,
|
|
559
591
|
"type": "option"
|
|
560
592
|
},
|
|
@@ -623,6 +655,14 @@
|
|
|
623
655
|
"allowNo": false,
|
|
624
656
|
"type": "boolean"
|
|
625
657
|
},
|
|
658
|
+
"flags-dir": {
|
|
659
|
+
"helpGroup": "GLOBAL",
|
|
660
|
+
"name": "flags-dir",
|
|
661
|
+
"summary": "Import flag values from a directory.",
|
|
662
|
+
"hasDynamicHelp": false,
|
|
663
|
+
"multiple": false,
|
|
664
|
+
"type": "option"
|
|
665
|
+
},
|
|
626
666
|
"target-org": {
|
|
627
667
|
"aliases": [
|
|
628
668
|
"targetusername",
|
|
@@ -784,6 +824,14 @@
|
|
|
784
824
|
"allowNo": false,
|
|
785
825
|
"type": "boolean"
|
|
786
826
|
},
|
|
827
|
+
"flags-dir": {
|
|
828
|
+
"helpGroup": "GLOBAL",
|
|
829
|
+
"name": "flags-dir",
|
|
830
|
+
"summary": "Import flag values from a directory.",
|
|
831
|
+
"hasDynamicHelp": false,
|
|
832
|
+
"multiple": false,
|
|
833
|
+
"type": "option"
|
|
834
|
+
},
|
|
787
835
|
"target-org": {
|
|
788
836
|
"aliases": [
|
|
789
837
|
"targetusername",
|
|
@@ -793,7 +841,6 @@
|
|
|
793
841
|
"deprecateAliases": true,
|
|
794
842
|
"name": "target-org",
|
|
795
843
|
"noCacheDefault": true,
|
|
796
|
-
"summary": "Org alias or username to use for the target org.",
|
|
797
844
|
"hasDynamicHelp": true,
|
|
798
845
|
"multiple": false,
|
|
799
846
|
"type": "option"
|
|
@@ -822,11 +869,8 @@
|
|
|
822
869
|
"wait": {
|
|
823
870
|
"name": "wait",
|
|
824
871
|
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
825
|
-
"default":
|
|
826
|
-
|
|
827
|
-
"unit": 0
|
|
828
|
-
},
|
|
829
|
-
"hasDynamicHelp": false,
|
|
872
|
+
"default": "0 minutes",
|
|
873
|
+
"hasDynamicHelp": true,
|
|
830
874
|
"multiple": false,
|
|
831
875
|
"type": "option"
|
|
832
876
|
},
|
|
@@ -895,6 +939,14 @@
|
|
|
895
939
|
"allowNo": false,
|
|
896
940
|
"type": "boolean"
|
|
897
941
|
},
|
|
942
|
+
"flags-dir": {
|
|
943
|
+
"helpGroup": "GLOBAL",
|
|
944
|
+
"name": "flags-dir",
|
|
945
|
+
"summary": "Import flag values from a directory.",
|
|
946
|
+
"hasDynamicHelp": false,
|
|
947
|
+
"multiple": false,
|
|
948
|
+
"type": "option"
|
|
949
|
+
},
|
|
898
950
|
"target-org": {
|
|
899
951
|
"aliases": [
|
|
900
952
|
"targetusername",
|
|
@@ -1041,6 +1093,14 @@
|
|
|
1041
1093
|
"allowNo": false,
|
|
1042
1094
|
"type": "boolean"
|
|
1043
1095
|
},
|
|
1096
|
+
"flags-dir": {
|
|
1097
|
+
"helpGroup": "GLOBAL",
|
|
1098
|
+
"name": "flags-dir",
|
|
1099
|
+
"summary": "Import flag values from a directory.",
|
|
1100
|
+
"hasDynamicHelp": false,
|
|
1101
|
+
"multiple": false,
|
|
1102
|
+
"type": "option"
|
|
1103
|
+
},
|
|
1044
1104
|
"target-org": {
|
|
1045
1105
|
"aliases": [
|
|
1046
1106
|
"targetusername",
|
|
@@ -1204,6 +1264,14 @@
|
|
|
1204
1264
|
"allowNo": false,
|
|
1205
1265
|
"type": "boolean"
|
|
1206
1266
|
},
|
|
1267
|
+
"flags-dir": {
|
|
1268
|
+
"helpGroup": "GLOBAL",
|
|
1269
|
+
"name": "flags-dir",
|
|
1270
|
+
"summary": "Import flag values from a directory.",
|
|
1271
|
+
"hasDynamicHelp": false,
|
|
1272
|
+
"multiple": false,
|
|
1273
|
+
"type": "option"
|
|
1274
|
+
},
|
|
1207
1275
|
"target-org": {
|
|
1208
1276
|
"aliases": [
|
|
1209
1277
|
"targetusername",
|
|
@@ -1365,6 +1433,14 @@
|
|
|
1365
1433
|
"allowNo": false,
|
|
1366
1434
|
"type": "boolean"
|
|
1367
1435
|
},
|
|
1436
|
+
"flags-dir": {
|
|
1437
|
+
"helpGroup": "GLOBAL",
|
|
1438
|
+
"name": "flags-dir",
|
|
1439
|
+
"summary": "Import flag values from a directory.",
|
|
1440
|
+
"hasDynamicHelp": false,
|
|
1441
|
+
"multiple": false,
|
|
1442
|
+
"type": "option"
|
|
1443
|
+
},
|
|
1368
1444
|
"target-org": {
|
|
1369
1445
|
"aliases": [
|
|
1370
1446
|
"targetusername",
|
|
@@ -1374,7 +1450,6 @@
|
|
|
1374
1450
|
"deprecateAliases": true,
|
|
1375
1451
|
"name": "target-org",
|
|
1376
1452
|
"noCacheDefault": true,
|
|
1377
|
-
"summary": "Org alias or username to use for the target org.",
|
|
1378
1453
|
"hasDynamicHelp": true,
|
|
1379
1454
|
"multiple": false,
|
|
1380
1455
|
"type": "option"
|
|
@@ -1413,8 +1488,8 @@
|
|
|
1413
1488
|
"multiple": false,
|
|
1414
1489
|
"options": [
|
|
1415
1490
|
"human",
|
|
1416
|
-
"
|
|
1417
|
-
"
|
|
1491
|
+
"csv",
|
|
1492
|
+
"json"
|
|
1418
1493
|
],
|
|
1419
1494
|
"type": "option"
|
|
1420
1495
|
},
|
|
@@ -1431,9 +1506,6 @@
|
|
|
1431
1506
|
"type": "option"
|
|
1432
1507
|
},
|
|
1433
1508
|
"use-most-recent": {
|
|
1434
|
-
"exclusive": [
|
|
1435
|
-
"bulk-query-id"
|
|
1436
|
-
],
|
|
1437
1509
|
"name": "use-most-recent",
|
|
1438
1510
|
"summary": "Use the most recent bulk query ID from cache.",
|
|
1439
1511
|
"allowNo": false,
|
|
@@ -1609,6 +1681,14 @@
|
|
|
1609
1681
|
"allowNo": false,
|
|
1610
1682
|
"type": "boolean"
|
|
1611
1683
|
},
|
|
1684
|
+
"flags-dir": {
|
|
1685
|
+
"helpGroup": "GLOBAL",
|
|
1686
|
+
"name": "flags-dir",
|
|
1687
|
+
"summary": "Import flag values from a directory.",
|
|
1688
|
+
"hasDynamicHelp": false,
|
|
1689
|
+
"multiple": false,
|
|
1690
|
+
"type": "option"
|
|
1691
|
+
},
|
|
1612
1692
|
"target-org": {
|
|
1613
1693
|
"aliases": [
|
|
1614
1694
|
"targetusername",
|
|
@@ -1777,6 +1857,14 @@
|
|
|
1777
1857
|
"allowNo": false,
|
|
1778
1858
|
"type": "boolean"
|
|
1779
1859
|
},
|
|
1860
|
+
"flags-dir": {
|
|
1861
|
+
"helpGroup": "GLOBAL",
|
|
1862
|
+
"name": "flags-dir",
|
|
1863
|
+
"summary": "Import flag values from a directory.",
|
|
1864
|
+
"hasDynamicHelp": false,
|
|
1865
|
+
"multiple": false,
|
|
1866
|
+
"type": "option"
|
|
1867
|
+
},
|
|
1780
1868
|
"target-org": {
|
|
1781
1869
|
"aliases": [
|
|
1782
1870
|
"targetusername",
|
|
@@ -1846,11 +1934,8 @@
|
|
|
1846
1934
|
],
|
|
1847
1935
|
"name": "wait",
|
|
1848
1936
|
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
1849
|
-
"default":
|
|
1850
|
-
|
|
1851
|
-
"unit": 0
|
|
1852
|
-
},
|
|
1853
|
-
"hasDynamicHelp": false,
|
|
1937
|
+
"default": "0 minutes",
|
|
1938
|
+
"hasDynamicHelp": true,
|
|
1854
1939
|
"multiple": false,
|
|
1855
1940
|
"type": "option"
|
|
1856
1941
|
},
|
|
@@ -1927,6 +2012,14 @@
|
|
|
1927
2012
|
"allowNo": false,
|
|
1928
2013
|
"type": "boolean"
|
|
1929
2014
|
},
|
|
2015
|
+
"flags-dir": {
|
|
2016
|
+
"helpGroup": "GLOBAL",
|
|
2017
|
+
"name": "flags-dir",
|
|
2018
|
+
"summary": "Import flag values from a directory.",
|
|
2019
|
+
"hasDynamicHelp": false,
|
|
2020
|
+
"multiple": false,
|
|
2021
|
+
"type": "option"
|
|
2022
|
+
},
|
|
1930
2023
|
"target-org": {
|
|
1931
2024
|
"aliases": [
|
|
1932
2025
|
"targetusername",
|
|
@@ -1936,7 +2029,6 @@
|
|
|
1936
2029
|
"deprecateAliases": true,
|
|
1937
2030
|
"name": "target-org",
|
|
1938
2031
|
"noCacheDefault": true,
|
|
1939
|
-
"summary": "Org alias or username to use for the target org.",
|
|
1940
2032
|
"hasDynamicHelp": true,
|
|
1941
2033
|
"multiple": false,
|
|
1942
2034
|
"type": "option"
|
|
@@ -1965,11 +2057,8 @@
|
|
|
1965
2057
|
"wait": {
|
|
1966
2058
|
"name": "wait",
|
|
1967
2059
|
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
1968
|
-
"default":
|
|
1969
|
-
|
|
1970
|
-
"unit": 0
|
|
1971
|
-
},
|
|
1972
|
-
"hasDynamicHelp": false,
|
|
2060
|
+
"default": "0 minutes",
|
|
2061
|
+
"hasDynamicHelp": true,
|
|
1973
2062
|
"multiple": false,
|
|
1974
2063
|
"type": "option"
|
|
1975
2064
|
},
|
|
@@ -2035,6 +2124,14 @@
|
|
|
2035
2124
|
"allowNo": false,
|
|
2036
2125
|
"type": "boolean"
|
|
2037
2126
|
},
|
|
2127
|
+
"flags-dir": {
|
|
2128
|
+
"helpGroup": "GLOBAL",
|
|
2129
|
+
"name": "flags-dir",
|
|
2130
|
+
"summary": "Import flag values from a directory.",
|
|
2131
|
+
"hasDynamicHelp": false,
|
|
2132
|
+
"multiple": false,
|
|
2133
|
+
"type": "option"
|
|
2134
|
+
},
|
|
2038
2135
|
"target-org": {
|
|
2039
2136
|
"aliases": [
|
|
2040
2137
|
"targetusername",
|
|
@@ -2171,6 +2268,14 @@
|
|
|
2171
2268
|
"allowNo": false,
|
|
2172
2269
|
"type": "boolean"
|
|
2173
2270
|
},
|
|
2271
|
+
"flags-dir": {
|
|
2272
|
+
"helpGroup": "GLOBAL",
|
|
2273
|
+
"name": "flags-dir",
|
|
2274
|
+
"summary": "Import flag values from a directory.",
|
|
2275
|
+
"hasDynamicHelp": false,
|
|
2276
|
+
"multiple": false,
|
|
2277
|
+
"type": "option"
|
|
2278
|
+
},
|
|
2174
2279
|
"target-org": {
|
|
2175
2280
|
"aliases": [
|
|
2176
2281
|
"targetusername",
|
|
@@ -2292,6 +2397,14 @@
|
|
|
2292
2397
|
"allowNo": false,
|
|
2293
2398
|
"type": "boolean"
|
|
2294
2399
|
},
|
|
2400
|
+
"flags-dir": {
|
|
2401
|
+
"helpGroup": "GLOBAL",
|
|
2402
|
+
"name": "flags-dir",
|
|
2403
|
+
"summary": "Import flag values from a directory.",
|
|
2404
|
+
"hasDynamicHelp": false,
|
|
2405
|
+
"multiple": false,
|
|
2406
|
+
"type": "option"
|
|
2407
|
+
},
|
|
2295
2408
|
"target-org": {
|
|
2296
2409
|
"aliases": [
|
|
2297
2410
|
"targetusername",
|
|
@@ -2358,11 +2471,8 @@
|
|
|
2358
2471
|
"char": "w",
|
|
2359
2472
|
"name": "wait",
|
|
2360
2473
|
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
2361
|
-
"default":
|
|
2362
|
-
|
|
2363
|
-
"unit": 0
|
|
2364
|
-
},
|
|
2365
|
-
"hasDynamicHelp": false,
|
|
2474
|
+
"default": "0 minutes",
|
|
2475
|
+
"hasDynamicHelp": true,
|
|
2366
2476
|
"multiple": false,
|
|
2367
2477
|
"type": "option"
|
|
2368
2478
|
}
|
|
@@ -2429,6 +2539,14 @@
|
|
|
2429
2539
|
"allowNo": false,
|
|
2430
2540
|
"type": "boolean"
|
|
2431
2541
|
},
|
|
2542
|
+
"flags-dir": {
|
|
2543
|
+
"helpGroup": "GLOBAL",
|
|
2544
|
+
"name": "flags-dir",
|
|
2545
|
+
"summary": "Import flag values from a directory.",
|
|
2546
|
+
"hasDynamicHelp": false,
|
|
2547
|
+
"multiple": false,
|
|
2548
|
+
"type": "option"
|
|
2549
|
+
},
|
|
2432
2550
|
"target-org": {
|
|
2433
2551
|
"aliases": [
|
|
2434
2552
|
"targetusername",
|
|
@@ -2553,6 +2671,14 @@
|
|
|
2553
2671
|
"allowNo": false,
|
|
2554
2672
|
"type": "boolean"
|
|
2555
2673
|
},
|
|
2674
|
+
"flags-dir": {
|
|
2675
|
+
"helpGroup": "GLOBAL",
|
|
2676
|
+
"name": "flags-dir",
|
|
2677
|
+
"summary": "Import flag values from a directory.",
|
|
2678
|
+
"hasDynamicHelp": false,
|
|
2679
|
+
"multiple": false,
|
|
2680
|
+
"type": "option"
|
|
2681
|
+
},
|
|
2556
2682
|
"target-org": {
|
|
2557
2683
|
"aliases": [
|
|
2558
2684
|
"targetusername",
|
|
@@ -2632,11 +2758,8 @@
|
|
|
2632
2758
|
"char": "w",
|
|
2633
2759
|
"name": "wait",
|
|
2634
2760
|
"summary": "Number of minutes to wait for the command to complete before displaying the results.",
|
|
2635
|
-
"default":
|
|
2636
|
-
|
|
2637
|
-
"unit": 0
|
|
2638
|
-
},
|
|
2639
|
-
"hasDynamicHelp": false,
|
|
2761
|
+
"default": "0 minutes",
|
|
2762
|
+
"hasDynamicHelp": true,
|
|
2640
2763
|
"multiple": false,
|
|
2641
2764
|
"type": "option"
|
|
2642
2765
|
},
|
|
@@ -2695,5 +2818,5 @@
|
|
|
2695
2818
|
]
|
|
2696
2819
|
}
|
|
2697
2820
|
},
|
|
2698
|
-
"version": "3.1
|
|
2821
|
+
"version": "3.2.1"
|
|
2699
2822
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-data",
|
|
3
|
-
"version": "3.1
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Plugin for salesforce data commands",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"homepage": "https://github.com/salesforcecli/plugin-data",
|
|
@@ -108,24 +108,22 @@
|
|
|
108
108
|
"version": "oclif readme"
|
|
109
109
|
},
|
|
110
110
|
"dependencies": {
|
|
111
|
-
"@
|
|
111
|
+
"@jsforce/jsforce-node": "^3.0.0-next.2",
|
|
112
|
+
"@oclif/core": "^3.26.0",
|
|
112
113
|
"@salesforce/core": "^6.7.1",
|
|
113
114
|
"@salesforce/kit": "^3.0.15",
|
|
114
|
-
"@salesforce/sf-plugins-core": "^
|
|
115
|
+
"@salesforce/sf-plugins-core": "^8.0.0",
|
|
115
116
|
"@salesforce/ts-types": "^2.0.9",
|
|
116
117
|
"chalk": "^5.3.0",
|
|
117
118
|
"change-case": "^5.4.3",
|
|
118
119
|
"csv-parse": "^4.16.3",
|
|
119
|
-
"csv-stringify": "^6.4.6"
|
|
120
|
-
"jsforce": "^2.0.0-beta.29"
|
|
120
|
+
"csv-stringify": "^6.4.6"
|
|
121
121
|
},
|
|
122
122
|
"devDependencies": {
|
|
123
123
|
"@oclif/plugin-command-snapshot": "^5.1.1",
|
|
124
|
-
"@salesforce/cli-plugins-testkit": "^5.1.
|
|
124
|
+
"@salesforce/cli-plugins-testkit": "^5.1.11",
|
|
125
125
|
"@salesforce/dev-scripts": "^8.4.2",
|
|
126
126
|
"@salesforce/plugin-command-reference": "^3.0.70",
|
|
127
|
-
"@types/chai-as-promised": "^7.1.8",
|
|
128
|
-
"chai-as-promised": "^7.1.1",
|
|
129
127
|
"eslint-plugin-sf-plugin": "^1.17.4",
|
|
130
128
|
"oclif": "^4.5.5",
|
|
131
129
|
"ts-node": "^10.9.2",
|
|
@@ -249,7 +247,7 @@
|
|
|
249
247
|
"exports": "./lib/index.js",
|
|
250
248
|
"type": "module",
|
|
251
249
|
"sfdx": {
|
|
252
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.1.
|
|
253
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.1.
|
|
250
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.2.1.crt",
|
|
251
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.2.1.sig"
|
|
254
252
|
}
|
|
255
253
|
}
|