@salesforce/cli 2.30.7 → 2.31.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 +22 -23
- package/npm-shrinkwrap.json +6 -6
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
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.0 linux-x64 node-v20.11.1
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -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
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
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.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -25,7 +25,7 @@
|
|
|
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",
|
|
@@ -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",
|
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.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -150,7 +150,7 @@
|
|
|
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",
|