@salesforce/cli 2.30.7 → 2.31.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 +29 -30
- package/npm-shrinkwrap.json +38 -38
- package/oclif.manifest.json +1 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
|
|
|
24
24
|
$ sf COMMAND
|
|
25
25
|
running command...
|
|
26
26
|
$ sf (--version|-v)
|
|
27
|
-
@salesforce/cli/2.
|
|
27
|
+
@salesforce/cli/2.31.1 linux-x64 node-v20.11.1
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -821,7 +821,7 @@ EXAMPLES
|
|
|
821
821
|
$ sf autocomplete --refresh-cache
|
|
822
822
|
```
|
|
823
823
|
|
|
824
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.0.
|
|
824
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.0.10/src/commands/autocomplete/index.ts)_
|
|
825
825
|
|
|
826
826
|
## `sf commands`
|
|
827
827
|
|
|
@@ -854,7 +854,7 @@ DESCRIPTION
|
|
|
854
854
|
list all the commands
|
|
855
855
|
```
|
|
856
856
|
|
|
857
|
-
_See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/3.1.
|
|
857
|
+
_See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/3.1.5/src/commands/commands.ts)_
|
|
858
858
|
|
|
859
859
|
## `sf config get`
|
|
860
860
|
|
|
@@ -1113,7 +1113,7 @@ EXAMPLES
|
|
|
1113
1113
|
TracedEntityId=01p17000000R6bLAAS"
|
|
1114
1114
|
```
|
|
1115
1115
|
|
|
1116
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1116
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/create/record.ts)_
|
|
1117
1117
|
|
|
1118
1118
|
## `sf data delete bulk`
|
|
1119
1119
|
|
|
@@ -1158,7 +1158,7 @@ EXAMPLES
|
|
|
1158
1158
|
$ sf data delete bulk --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
1159
1159
|
```
|
|
1160
1160
|
|
|
1161
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1161
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/delete/bulk.ts)_
|
|
1162
1162
|
|
|
1163
1163
|
## `sf data delete record`
|
|
1164
1164
|
|
|
@@ -1217,7 +1217,7 @@ EXAMPLES
|
|
|
1217
1217
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
1218
1218
|
```
|
|
1219
1219
|
|
|
1220
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1220
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/delete/record.ts)_
|
|
1221
1221
|
|
|
1222
1222
|
## `sf data delete resume`
|
|
1223
1223
|
|
|
@@ -1254,7 +1254,7 @@ EXAMPLES
|
|
|
1254
1254
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
1255
1255
|
```
|
|
1256
1256
|
|
|
1257
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1257
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/delete/resume.ts)_
|
|
1258
1258
|
|
|
1259
1259
|
## `sf data export beta tree`
|
|
1260
1260
|
|
|
@@ -1295,8 +1295,8 @@ EXAMPLES
|
|
|
1295
1295
|
Export records retrieved with the specified SOQL query into a single JSON file in the current directory; the command
|
|
1296
1296
|
uses your default org:
|
|
1297
1297
|
|
|
1298
|
-
$ sf data export beta tree --query "SELECT Id, Name, (SELECT Name,
|
|
1299
|
-
|
|
1298
|
+
$ sf data export beta tree --query "SELECT Id, Name, (SELECT Name, Address__c FROM Properties__r) FROM \
|
|
1299
|
+
Broker__c"
|
|
1300
1300
|
|
|
1301
1301
|
Export data using a SOQL query in the "query.txt" file and generate JSON files for each object and a plan that
|
|
1302
1302
|
aggregates them:
|
|
@@ -1310,7 +1310,7 @@ EXAMPLES
|
|
|
1310
1310
|
my-scratch
|
|
1311
1311
|
```
|
|
1312
1312
|
|
|
1313
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1313
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/export/beta/tree.ts)_
|
|
1314
1314
|
|
|
1315
1315
|
## `sf data export tree`
|
|
1316
1316
|
|
|
@@ -1354,8 +1354,7 @@ EXAMPLES
|
|
|
1354
1354
|
Export records retrieved with the specified SOQL query into a single JSON file in the current directory; the command
|
|
1355
1355
|
uses your default org:
|
|
1356
1356
|
|
|
1357
|
-
$ sf data export tree --query "SELECT Id, Name, (SELECT Name,
|
|
1358
|
-
Broker\_\_c"
|
|
1357
|
+
$ sf data export tree --query "SELECT Id, Name, (SELECT Name, Address__c FROM Properties__r) FROM Broker__c"
|
|
1359
1358
|
|
|
1360
1359
|
Export data using a SOQL query in the "query.txt" file and generate JSON files for each object and a plan that
|
|
1361
1360
|
aggregates them:
|
|
@@ -1369,7 +1368,7 @@ EXAMPLES
|
|
|
1369
1368
|
my-scratch
|
|
1370
1369
|
```
|
|
1371
1370
|
|
|
1372
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1371
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/export/tree.ts)_
|
|
1373
1372
|
|
|
1374
1373
|
## `sf data get record`
|
|
1375
1374
|
|
|
@@ -1431,7 +1430,7 @@ EXAMPLES
|
|
|
1431
1430
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
1432
1431
|
```
|
|
1433
1432
|
|
|
1434
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1433
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/get/record.ts)_
|
|
1435
1434
|
|
|
1436
1435
|
## `sf data import beta tree`
|
|
1437
1436
|
|
|
@@ -1473,7 +1472,7 @@ EXAMPLES
|
|
|
1473
1472
|
$ sf data import beta tree --plan Account-Contact-plan.json
|
|
1474
1473
|
```
|
|
1475
1474
|
|
|
1476
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1475
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/import/beta/tree.ts)_
|
|
1477
1476
|
|
|
1478
1477
|
## `sf data import tree`
|
|
1479
1478
|
|
|
@@ -1522,7 +1521,7 @@ EXAMPLES
|
|
|
1522
1521
|
$ sf data import tree --plan Account-Contact-plan.json
|
|
1523
1522
|
```
|
|
1524
1523
|
|
|
1525
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1524
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/import/tree.ts)_
|
|
1526
1525
|
|
|
1527
1526
|
## `sf data query`
|
|
1528
1527
|
|
|
@@ -1585,7 +1584,7 @@ EXAMPLES
|
|
|
1585
1584
|
$ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
|
|
1586
1585
|
```
|
|
1587
1586
|
|
|
1588
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1587
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/query.ts)_
|
|
1589
1588
|
|
|
1590
1589
|
## `sf data query resume`
|
|
1591
1590
|
|
|
@@ -1621,7 +1620,7 @@ EXAMPLES
|
|
|
1621
1620
|
$ sf data query resume --bulk-query-id 7500x000005BdFzXXX
|
|
1622
1621
|
```
|
|
1623
1622
|
|
|
1624
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1623
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/query/resume.ts)_
|
|
1625
1624
|
|
|
1626
1625
|
## `sf data resume`
|
|
1627
1626
|
|
|
@@ -1657,7 +1656,7 @@ EXAMPLES
|
|
|
1657
1656
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
1658
1657
|
```
|
|
1659
1658
|
|
|
1660
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1659
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/resume.ts)_
|
|
1661
1660
|
|
|
1662
1661
|
## `sf data update record`
|
|
1663
1662
|
|
|
@@ -1718,7 +1717,7 @@ EXAMPLES
|
|
|
1718
1717
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
1719
1718
|
```
|
|
1720
1719
|
|
|
1721
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1720
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/update/record.ts)_
|
|
1722
1721
|
|
|
1723
1722
|
## `sf data upsert bulk`
|
|
1724
1723
|
|
|
@@ -1770,7 +1769,7 @@ EXAMPLES
|
|
|
1770
1769
|
my-scratch
|
|
1771
1770
|
```
|
|
1772
1771
|
|
|
1773
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1772
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/upsert/bulk.ts)_
|
|
1774
1773
|
|
|
1775
1774
|
## `sf data upsert resume`
|
|
1776
1775
|
|
|
@@ -1807,7 +1806,7 @@ EXAMPLES
|
|
|
1807
1806
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
1808
1807
|
```
|
|
1809
1808
|
|
|
1810
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1809
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/data/upsert/resume.ts)_
|
|
1811
1810
|
|
|
1812
1811
|
## `sf doctor`
|
|
1813
1812
|
|
|
@@ -1899,7 +1898,7 @@ EXAMPLES
|
|
|
1899
1898
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
1900
1899
|
```
|
|
1901
1900
|
|
|
1902
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1901
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/force/data/bulk/delete.ts)_
|
|
1903
1902
|
|
|
1904
1903
|
## `sf force data bulk status`
|
|
1905
1904
|
|
|
@@ -1935,7 +1934,7 @@ EXAMPLES
|
|
|
1935
1934
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
1936
1935
|
```
|
|
1937
1936
|
|
|
1938
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1937
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/force/data/bulk/status.ts)_
|
|
1939
1938
|
|
|
1940
1939
|
## `sf force data bulk upsert`
|
|
1941
1940
|
|
|
@@ -1992,7 +1991,7 @@ EXAMPLES
|
|
|
1992
1991
|
--target-org my-scratch
|
|
1993
1992
|
```
|
|
1994
1993
|
|
|
1995
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.
|
|
1994
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.1.2/src/commands/force/data/bulk/upsert.ts)_
|
|
1996
1995
|
|
|
1997
1996
|
## `sf help [COMMANDS]`
|
|
1998
1997
|
|
|
@@ -2012,7 +2011,7 @@ DESCRIPTION
|
|
|
2012
2011
|
Display help for sf.
|
|
2013
2012
|
```
|
|
2014
2013
|
|
|
2015
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.0.
|
|
2014
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.0.14/src/commands/help.ts)_
|
|
2016
2015
|
|
|
2017
2016
|
## `sf info releasenotes display`
|
|
2018
2017
|
|
|
@@ -7272,7 +7271,7 @@ EXAMPLES
|
|
|
7272
7271
|
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
|
|
7273
7272
|
```
|
|
7274
7273
|
|
|
7275
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.1.
|
|
7274
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.1.4/src/commands/sobject/describe.ts)_
|
|
7276
7275
|
|
|
7277
7276
|
## `sf sobject list`
|
|
7278
7277
|
|
|
@@ -7310,7 +7309,7 @@ EXAMPLES
|
|
|
7310
7309
|
$ sf sobject list --sobject custom --target-org my-scratch-org
|
|
7311
7310
|
```
|
|
7312
7311
|
|
|
7313
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.1.
|
|
7312
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.1.4/src/commands/sobject/list.ts)_
|
|
7314
7313
|
|
|
7315
7314
|
## `sf static-resource generate`
|
|
7316
7315
|
|
|
@@ -7407,7 +7406,7 @@ EXAMPLES
|
|
|
7407
7406
|
$ sf update --available
|
|
7408
7407
|
```
|
|
7409
7408
|
|
|
7410
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.1.
|
|
7409
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.1.14/src/commands/update.ts)_
|
|
7411
7410
|
|
|
7412
7411
|
## `sf version`
|
|
7413
7412
|
|
|
@@ -7552,6 +7551,6 @@ EXAMPLES
|
|
|
7552
7551
|
$ sf which help
|
|
7553
7552
|
```
|
|
7554
7553
|
|
|
7555
|
-
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.1.
|
|
7554
|
+
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.1.1/src/commands/which.ts)_
|
|
7556
7555
|
|
|
7557
7556
|
<!-- commandsstop -->
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.31.1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@inquirer/select": "^1.3.1",
|
|
14
|
-
"@oclif/core": "3.19.
|
|
15
|
-
"@oclif/plugin-autocomplete": "3.0.
|
|
16
|
-
"@oclif/plugin-commands": "3.1.
|
|
17
|
-
"@oclif/plugin-help": "6.0.
|
|
18
|
-
"@oclif/plugin-not-found": "3.0.
|
|
14
|
+
"@oclif/core": "3.19.5",
|
|
15
|
+
"@oclif/plugin-autocomplete": "3.0.10",
|
|
16
|
+
"@oclif/plugin-commands": "3.1.5",
|
|
17
|
+
"@oclif/plugin-help": "6.0.14",
|
|
18
|
+
"@oclif/plugin-not-found": "3.0.12",
|
|
19
19
|
"@oclif/plugin-plugins": "4.2.5",
|
|
20
20
|
"@oclif/plugin-search": "1.0.16",
|
|
21
|
-
"@oclif/plugin-update": "4.1.
|
|
21
|
+
"@oclif/plugin-update": "4.1.14",
|
|
22
22
|
"@oclif/plugin-version": "2.0.12",
|
|
23
23
|
"@oclif/plugin-warn-if-update-available": "3.0.12",
|
|
24
|
-
"@oclif/plugin-which": "3.1.
|
|
24
|
+
"@oclif/plugin-which": "3.1.1",
|
|
25
25
|
"@salesforce/core": "^6.1.4",
|
|
26
26
|
"@salesforce/plugin-apex": "3.0.25",
|
|
27
27
|
"@salesforce/plugin-auth": "3.3.13",
|
|
28
|
-
"@salesforce/plugin-data": "3.1.
|
|
28
|
+
"@salesforce/plugin-data": "3.1.2",
|
|
29
29
|
"@salesforce/plugin-deploy-retrieve": "3.2.16",
|
|
30
30
|
"@salesforce/plugin-info": "3.0.27",
|
|
31
31
|
"@salesforce/plugin-limits": "3.1.10",
|
|
32
32
|
"@salesforce/plugin-marketplace": "1.0.25",
|
|
33
33
|
"@salesforce/plugin-org": "3.3.14",
|
|
34
34
|
"@salesforce/plugin-packaging": "2.1.10",
|
|
35
|
-
"@salesforce/plugin-schema": "3.1.
|
|
35
|
+
"@salesforce/plugin-schema": "3.1.4",
|
|
36
36
|
"@salesforce/plugin-settings": "2.0.27",
|
|
37
37
|
"@salesforce/plugin-sobject": "1.1.13",
|
|
38
38
|
"@salesforce/plugin-source": "3.1.15",
|
|
@@ -3997,9 +3997,9 @@
|
|
|
3997
3997
|
}
|
|
3998
3998
|
},
|
|
3999
3999
|
"node_modules/@oclif/core": {
|
|
4000
|
-
"version": "3.19.
|
|
4001
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.19.
|
|
4002
|
-
"integrity": "sha512-
|
|
4000
|
+
"version": "3.19.5",
|
|
4001
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.19.5.tgz",
|
|
4002
|
+
"integrity": "sha512-banrxfcaWo0/xEk9LfDLt+jV+4+tR7bUBFRFXPIA9AAjikRWGV+mpSN5M3UvoaZM6aj4q5mZN7bhegxTzQcDtQ==",
|
|
4003
4003
|
"license": "MIT",
|
|
4004
4004
|
"dependencies": {
|
|
4005
4005
|
"@types/cli-progress": "^3.11.5",
|
|
@@ -4090,9 +4090,9 @@
|
|
|
4090
4090
|
}
|
|
4091
4091
|
},
|
|
4092
4092
|
"node_modules/@oclif/plugin-autocomplete": {
|
|
4093
|
-
"version": "3.0.
|
|
4094
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.0.
|
|
4095
|
-
"integrity": "sha512-
|
|
4093
|
+
"version": "3.0.10",
|
|
4094
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.0.10.tgz",
|
|
4095
|
+
"integrity": "sha512-15uFfe47Lspvsb9vUyPiQpYRmHE3quOPPYkcFy2w9JNWU4Jyi8PBYAQKcoAPT8thS/YYPDjYdAuAN7XJZj00CA==",
|
|
4096
4096
|
"license": "MIT",
|
|
4097
4097
|
"dependencies": {
|
|
4098
4098
|
"@oclif/core": "^3.19.2",
|
|
@@ -4210,9 +4210,9 @@
|
|
|
4210
4210
|
}
|
|
4211
4211
|
},
|
|
4212
4212
|
"node_modules/@oclif/plugin-commands": {
|
|
4213
|
-
"version": "3.1.
|
|
4214
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-3.1.
|
|
4215
|
-
"integrity": "sha512-
|
|
4213
|
+
"version": "3.1.5",
|
|
4214
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-3.1.5.tgz",
|
|
4215
|
+
"integrity": "sha512-zIOzwC7LGxUbvc7qrlOInxAd9zLJFTe4yZ8xawiJhwtm+7cWotTRbNqyXlv1K07Sll1UMJGRGzbKikktyO8BPw==",
|
|
4216
4216
|
"license": "MIT",
|
|
4217
4217
|
"dependencies": {
|
|
4218
4218
|
"@oclif/core": "^3.19.2",
|
|
@@ -4226,9 +4226,9 @@
|
|
|
4226
4226
|
}
|
|
4227
4227
|
},
|
|
4228
4228
|
"node_modules/@oclif/plugin-help": {
|
|
4229
|
-
"version": "6.0.
|
|
4230
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.
|
|
4231
|
-
"integrity": "sha512-
|
|
4229
|
+
"version": "6.0.14",
|
|
4230
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.14.tgz",
|
|
4231
|
+
"integrity": "sha512-orKUsV8hYtbnPf1W7y5wnnR2X6UFOl7hqTh/Uj4E+3ju/8TnvpavZXFA2UQecKWcfdbYjuTwxuZdeh8vBWFLIQ==",
|
|
4232
4232
|
"license": "MIT",
|
|
4233
4233
|
"dependencies": {
|
|
4234
4234
|
"@oclif/core": "^3.19.2"
|
|
@@ -4238,9 +4238,9 @@
|
|
|
4238
4238
|
}
|
|
4239
4239
|
},
|
|
4240
4240
|
"node_modules/@oclif/plugin-not-found": {
|
|
4241
|
-
"version": "3.0.
|
|
4242
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.0.
|
|
4243
|
-
"integrity": "sha512-
|
|
4241
|
+
"version": "3.0.12",
|
|
4242
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.0.12.tgz",
|
|
4243
|
+
"integrity": "sha512-FSYzaXGTzV8AXOQZM+i9CMUlR11Pv87buOwp9kL7NNyWVotUxhk1pUezlXrN0aBSKJ2b96Qbc2jW35h6ybeH2g==",
|
|
4244
4244
|
"license": "MIT",
|
|
4245
4245
|
"dependencies": {
|
|
4246
4246
|
"@oclif/core": "^3.19.3",
|
|
@@ -7514,9 +7514,9 @@
|
|
|
7514
7514
|
}
|
|
7515
7515
|
},
|
|
7516
7516
|
"node_modules/@oclif/plugin-update": {
|
|
7517
|
-
"version": "4.1.
|
|
7518
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.1.
|
|
7519
|
-
"integrity": "sha512-
|
|
7517
|
+
"version": "4.1.14",
|
|
7518
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.1.14.tgz",
|
|
7519
|
+
"integrity": "sha512-R8V3x7jQAhpmkHAJmMxk2aTo50Jmeei+q/pzsM59lUWEeZiMG/Eb2arVNeMKEa/MIxx7mqdxOQ5FrHsDk9ZD/g==",
|
|
7520
7520
|
"license": "MIT",
|
|
7521
7521
|
"dependencies": {
|
|
7522
7522
|
"@oclif/core": "^3.19.2",
|
|
@@ -7601,9 +7601,9 @@
|
|
|
7601
7601
|
}
|
|
7602
7602
|
},
|
|
7603
7603
|
"node_modules/@oclif/plugin-which": {
|
|
7604
|
-
"version": "3.1.
|
|
7605
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-which/-/plugin-which-3.1.
|
|
7606
|
-
"integrity": "sha512-
|
|
7604
|
+
"version": "3.1.1",
|
|
7605
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-which/-/plugin-which-3.1.1.tgz",
|
|
7606
|
+
"integrity": "sha512-8Zqwu579rOhzCfULEyhLQBsKK9l3/tnYlONppKwzNWhJEl3uA9LxlXCHF2K70Ug9msXyFbl+5QU8cRtAODbt1w==",
|
|
7607
7607
|
"license": "MIT",
|
|
7608
7608
|
"dependencies": {
|
|
7609
7609
|
"@oclif/core": "^3.18.1"
|
|
@@ -8554,9 +8554,9 @@
|
|
|
8554
8554
|
}
|
|
8555
8555
|
},
|
|
8556
8556
|
"node_modules/@salesforce/plugin-data": {
|
|
8557
|
-
"version": "3.1.
|
|
8558
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.1.
|
|
8559
|
-
"integrity": "sha512-
|
|
8557
|
+
"version": "3.1.2",
|
|
8558
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.1.2.tgz",
|
|
8559
|
+
"integrity": "sha512-bj7918S96ThVcTPQfmSnYtDE3WY0UbkslapBZeyi29h2NxURtlzSNw6J06zSV/nh1KDRycuS6bgM/IzIkbqKZQ==",
|
|
8560
8560
|
"license": "BSD-3-Clause",
|
|
8561
8561
|
"dependencies": {
|
|
8562
8562
|
"@oclif/core": "^3.19.1",
|
|
@@ -8985,9 +8985,9 @@
|
|
|
8985
8985
|
}
|
|
8986
8986
|
},
|
|
8987
8987
|
"node_modules/@salesforce/plugin-schema": {
|
|
8988
|
-
"version": "3.1.
|
|
8989
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-schema/-/plugin-schema-3.1.
|
|
8990
|
-
"integrity": "sha512-
|
|
8988
|
+
"version": "3.1.4",
|
|
8989
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-schema/-/plugin-schema-3.1.4.tgz",
|
|
8990
|
+
"integrity": "sha512-nhgxblNWTTE6a2o83mYCK1E0Sk4f23ySdCo5y5+Ia2HD/ups4J7EOqgEwDXsisDqKF3mvykwni8dlHjJ8WUJSQ==",
|
|
8991
8991
|
"license": "BSD-3-Clause",
|
|
8992
8992
|
"dependencies": {
|
|
8993
8993
|
"@oclif/core": "^3.19.1",
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.31.1",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -136,28 +136,28 @@
|
|
|
136
136
|
},
|
|
137
137
|
"dependencies": {
|
|
138
138
|
"@inquirer/select": "^1.3.1",
|
|
139
|
-
"@oclif/core": "3.19.
|
|
140
|
-
"@oclif/plugin-autocomplete": "3.0.
|
|
141
|
-
"@oclif/plugin-commands": "3.1.
|
|
142
|
-
"@oclif/plugin-help": "6.0.
|
|
143
|
-
"@oclif/plugin-not-found": "3.0.
|
|
139
|
+
"@oclif/core": "3.19.5",
|
|
140
|
+
"@oclif/plugin-autocomplete": "3.0.10",
|
|
141
|
+
"@oclif/plugin-commands": "3.1.5",
|
|
142
|
+
"@oclif/plugin-help": "6.0.14",
|
|
143
|
+
"@oclif/plugin-not-found": "3.0.12",
|
|
144
144
|
"@oclif/plugin-plugins": "4.2.5",
|
|
145
145
|
"@oclif/plugin-search": "1.0.16",
|
|
146
|
-
"@oclif/plugin-update": "4.1.
|
|
146
|
+
"@oclif/plugin-update": "4.1.14",
|
|
147
147
|
"@oclif/plugin-version": "2.0.12",
|
|
148
148
|
"@oclif/plugin-warn-if-update-available": "3.0.12",
|
|
149
|
-
"@oclif/plugin-which": "3.1.
|
|
149
|
+
"@oclif/plugin-which": "3.1.1",
|
|
150
150
|
"@salesforce/core": "^6.1.4",
|
|
151
151
|
"@salesforce/plugin-apex": "3.0.25",
|
|
152
152
|
"@salesforce/plugin-auth": "3.3.13",
|
|
153
|
-
"@salesforce/plugin-data": "3.1.
|
|
153
|
+
"@salesforce/plugin-data": "3.1.2",
|
|
154
154
|
"@salesforce/plugin-deploy-retrieve": "3.2.16",
|
|
155
155
|
"@salesforce/plugin-info": "3.0.27",
|
|
156
156
|
"@salesforce/plugin-limits": "3.1.10",
|
|
157
157
|
"@salesforce/plugin-marketplace": "1.0.25",
|
|
158
158
|
"@salesforce/plugin-org": "3.3.14",
|
|
159
159
|
"@salesforce/plugin-packaging": "2.1.10",
|
|
160
|
-
"@salesforce/plugin-schema": "3.1.
|
|
160
|
+
"@salesforce/plugin-schema": "3.1.4",
|
|
161
161
|
"@salesforce/plugin-settings": "2.0.27",
|
|
162
162
|
"@salesforce/plugin-sobject": "1.1.13",
|
|
163
163
|
"@salesforce/plugin-source": "3.1.15",
|