@salesforce/cli 2.47.1-qa.0 → 2.47.2

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 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.47.1-qa.0 linux-x64 node-v20.14.0
27
+ @salesforce/cli/2.47.2 linux-x64 node-v20.14.0
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -1130,7 +1130,7 @@ EXAMPLES
1130
1130
  $ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
1131
1131
  ```
1132
1132
 
1133
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/create/file.ts)_
1133
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/create/file.ts)_
1134
1134
 
1135
1135
  ## `sf data create record`
1136
1136
 
@@ -1186,7 +1186,7 @@ EXAMPLES
1186
1186
  TracedEntityId=01p17000000R6bLAAS"
1187
1187
  ```
1188
1188
 
1189
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/create/record.ts)_
1189
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/create/record.ts)_
1190
1190
 
1191
1191
  ## `sf data delete bulk`
1192
1192
 
@@ -1195,7 +1195,7 @@ Bulk delete records from an org using a CSV file. Uses Bulk API 2.0.
1195
1195
  ```
1196
1196
  USAGE
1197
1197
  $ sf data delete bulk -o <value> -f <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w
1198
- <value> | -a] [--verbose]
1198
+ <value> | -a] [--verbose] [--hard-delete]
1199
1199
 
1200
1200
  FLAGS
1201
1201
  -a, --async Run the command asynchronously.
@@ -1207,6 +1207,8 @@ FLAGS
1207
1207
  -w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
1208
1208
  displaying the results.
1209
1209
  --api-version=<value> Override the api version used for api requests made by this command
1210
+ --hard-delete Mark the records as immediately eligible for deletion by your org. If you don't specify
1211
+ this flag, the deleted records go into the Recycle Bin.
1210
1212
  --verbose Print verbose output of failed records if result is available.
1211
1213
 
1212
1214
  GLOBAL FLAGS
@@ -1231,9 +1233,18 @@ EXAMPLES
1231
1233
  complete:
1232
1234
 
1233
1235
  $ sf data delete bulk --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
1236
+
1237
+ FLAG DESCRIPTIONS
1238
+ --hard-delete
1239
+
1240
+ Mark the records as immediately eligible for deletion by your org. If you don't specify this flag, the deleted
1241
+ records go into the Recycle Bin.
1242
+
1243
+ You must have the "Bulk API Hard Delete" system permission to use this flag. The permission is disabled by default
1244
+ and can be enabled only by a system administrator.
1234
1245
  ```
1235
1246
 
1236
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/delete/bulk.ts)_
1247
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/delete/bulk.ts)_
1237
1248
 
1238
1249
  ## `sf data delete record`
1239
1250
 
@@ -1294,7 +1305,7 @@ EXAMPLES
1294
1305
  $ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
1295
1306
  ```
1296
1307
 
1297
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/delete/record.ts)_
1308
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/delete/record.ts)_
1298
1309
 
1299
1310
  ## `sf data delete resume`
1300
1311
 
@@ -1333,7 +1344,7 @@ EXAMPLES
1333
1344
  $ sf data delete resume --use-most-recent --target-org my-scratch
1334
1345
  ```
1335
1346
 
1336
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/delete/resume.ts)_
1347
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/delete/resume.ts)_
1337
1348
 
1338
1349
  ## `sf data export beta tree`
1339
1350
 
@@ -1391,7 +1402,7 @@ EXAMPLES
1391
1402
  my-scratch
1392
1403
  ```
1393
1404
 
1394
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/export/beta/tree.ts)_
1405
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/export/beta/tree.ts)_
1395
1406
 
1396
1407
  ## `sf data export tree`
1397
1408
 
@@ -1451,7 +1462,7 @@ EXAMPLES
1451
1462
  my-scratch
1452
1463
  ```
1453
1464
 
1454
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/export/tree.ts)_
1465
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/export/tree.ts)_
1455
1466
 
1456
1467
  ## `sf data get record`
1457
1468
 
@@ -1515,7 +1526,7 @@ EXAMPLES
1515
1526
  $ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
1516
1527
  ```
1517
1528
 
1518
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/get/record.ts)_
1529
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/get/record.ts)_
1519
1530
 
1520
1531
  ## `sf data import beta tree`
1521
1532
 
@@ -1559,7 +1570,7 @@ EXAMPLES
1559
1570
  $ sf data import beta tree --plan Account-Contact-plan.json
1560
1571
  ```
1561
1572
 
1562
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/import/beta/tree.ts)_
1573
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/import/beta/tree.ts)_
1563
1574
 
1564
1575
  ## `sf data import tree`
1565
1576
 
@@ -1609,7 +1620,7 @@ EXAMPLES
1609
1620
  $ sf data import tree --plan Account-Contact-plan.json
1610
1621
  ```
1611
1622
 
1612
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/import/tree.ts)_
1623
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/import/tree.ts)_
1613
1624
 
1614
1625
  ## `sf data query`
1615
1626
 
@@ -1673,7 +1684,7 @@ EXAMPLES
1673
1684
  $ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
1674
1685
  ```
1675
1686
 
1676
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/query.ts)_
1687
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/query.ts)_
1677
1688
 
1678
1689
  ## `sf data query resume`
1679
1690
 
@@ -1711,7 +1722,7 @@ EXAMPLES
1711
1722
  $ sf data query resume --bulk-query-id 7500x000005BdFzXXX
1712
1723
  ```
1713
1724
 
1714
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/query/resume.ts)_
1725
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/query/resume.ts)_
1715
1726
 
1716
1727
  ## `sf data resume`
1717
1728
 
@@ -1748,7 +1759,7 @@ EXAMPLES
1748
1759
  $ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
1749
1760
  ```
1750
1761
 
1751
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/resume.ts)_
1762
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/resume.ts)_
1752
1763
 
1753
1764
  ## `sf data update record`
1754
1765
 
@@ -1810,7 +1821,7 @@ EXAMPLES
1810
1821
  "ExpirationDate=2017-12-01T00:58:04.000+0000"
1811
1822
  ```
1812
1823
 
1813
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/update/record.ts)_
1824
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/update/record.ts)_
1814
1825
 
1815
1826
  ## `sf data upsert bulk`
1816
1827
 
@@ -1863,7 +1874,7 @@ EXAMPLES
1863
1874
  my-scratch
1864
1875
  ```
1865
1876
 
1866
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/upsert/bulk.ts)_
1877
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/upsert/bulk.ts)_
1867
1878
 
1868
1879
  ## `sf data upsert resume`
1869
1880
 
@@ -1902,7 +1913,7 @@ EXAMPLES
1902
1913
  $ sf data upsert resume --use-most-recent --target-org my-scratch
1903
1914
  ```
1904
1915
 
1905
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/data/upsert/resume.ts)_
1916
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/data/upsert/resume.ts)_
1906
1917
 
1907
1918
  ## `sf doctor`
1908
1919
 
@@ -1997,7 +2008,7 @@ EXAMPLES
1997
2008
  $ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
1998
2009
  ```
1999
2010
 
2000
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/force/data/bulk/delete.ts)_
2011
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/force/data/bulk/delete.ts)_
2001
2012
 
2002
2013
  ## `sf force data bulk status`
2003
2014
 
@@ -2034,7 +2045,7 @@ EXAMPLES
2034
2045
  $ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
2035
2046
  ```
2036
2047
 
2037
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/force/data/bulk/status.ts)_
2048
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/force/data/bulk/status.ts)_
2038
2049
 
2039
2050
  ## `sf force data bulk upsert`
2040
2051
 
@@ -2092,7 +2103,7 @@ EXAMPLES
2092
2103
  --target-org my-scratch
2093
2104
  ```
2094
2105
 
2095
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.4.8/src/commands/force/data/bulk/upsert.ts)_
2106
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.5.0/src/commands/force/data/bulk/upsert.ts)_
2096
2107
 
2097
2108
  ## `sf help [COMMAND]`
2098
2109
 
@@ -7786,7 +7797,7 @@ EXAMPLES
7786
7797
  $ sf update --available
7787
7798
  ```
7788
7799
 
7789
- _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.4.0/src/commands/update.ts)_
7800
+ _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.4.1/src/commands/update.ts)_
7790
7801
 
7791
7802
  ## `sf version`
7792
7803