@salesforce/cli 2.69.5 → 2.69.7

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.69.5 linux-x64 node-v22.11.0
27
+ @salesforce/cli/2.69.7 linux-x64 node-v22.11.0
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -1336,7 +1336,7 @@ EXAMPLES
1336
1336
  $ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
1337
1337
  ```
1338
1338
 
1339
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/bulk/results.ts)_
1339
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/bulk/results.ts)_
1340
1340
 
1341
1341
  ## `sf data create file`
1342
1342
 
@@ -1385,7 +1385,7 @@ EXAMPLES
1385
1385
  $ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
1386
1386
  ```
1387
1387
 
1388
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/create/file.ts)_
1388
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/create/file.ts)_
1389
1389
 
1390
1390
  ## `sf data create record`
1391
1391
 
@@ -1441,7 +1441,7 @@ EXAMPLES
1441
1441
  TracedEntityId=01p17000000R6bLAAS"
1442
1442
  ```
1443
1443
 
1444
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/create/record.ts)_
1444
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/create/record.ts)_
1445
1445
 
1446
1446
  ## `sf data delete bulk`
1447
1447
 
@@ -1449,22 +1449,25 @@ Bulk delete records from an org using a CSV file. Uses Bulk API 2.0.
1449
1449
 
1450
1450
  ```
1451
1451
  USAGE
1452
- $ sf data delete bulk -o <value> -f <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w
1453
- <value> | -a] [--verbose] [--hard-delete]
1452
+ $ sf data delete bulk -o <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w <value> | -a]
1453
+ [--verbose] (--line-ending CRLF|LF -f <value>) [--hard-delete]
1454
1454
 
1455
1455
  FLAGS
1456
- -a, --async Run the command asynchronously.
1457
- -f, --file=<value> (required) CSV file that contains the IDs of the records to update or delete.
1458
- -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
1459
- configuration variable is already set.
1460
- -s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you want to
1461
- update or delete records from.
1462
- -w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
1463
- displaying the results.
1464
- --api-version=<value> Override the api version used for api requests made by this command
1465
- --hard-delete Mark the records as immediately eligible for deletion by your org. If you don't specify
1466
- this flag, the deleted records go into the Recycle Bin.
1467
- --verbose Print verbose output of failed records if result is available.
1456
+ -a, --async Run the command asynchronously.
1457
+ -f, --file=<value> (required) CSV file that contains the IDs of the records to update or delete.
1458
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
1459
+ configuration variable is already set.
1460
+ -s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you want to
1461
+ update or delete records from.
1462
+ -w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
1463
+ displaying the results.
1464
+ --api-version=<value> Override the api version used for api requests made by this command
1465
+ --hard-delete Mark the records as immediately eligible for deletion by your org. If you don't specify
1466
+ this flag, the deleted records go into the Recycle Bin.
1467
+ --line-ending=<option> Line ending used in the CSV file. Default value on Windows is `CRLF`; on macOS and Linux
1468
+ it's `LF`.
1469
+ <options: CRLF|LF>
1470
+ --verbose Print verbose output of failed records if result is available.
1468
1471
 
1469
1472
  GLOBAL FLAGS
1470
1473
  --flags-dir=<value> Import flag values from a directory.
@@ -1499,7 +1502,7 @@ FLAG DESCRIPTIONS
1499
1502
  and can be enabled only by a system administrator.
1500
1503
  ```
1501
1504
 
1502
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/delete/bulk.ts)_
1505
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/delete/bulk.ts)_
1503
1506
 
1504
1507
  ## `sf data delete record`
1505
1508
 
@@ -1560,7 +1563,7 @@ EXAMPLES
1560
1563
  $ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
1561
1564
  ```
1562
1565
 
1563
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/delete/record.ts)_
1566
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/delete/record.ts)_
1564
1567
 
1565
1568
  ## `sf data delete resume`
1566
1569
 
@@ -1577,7 +1580,7 @@ FLAGS
1577
1580
  variable is already set.
1578
1581
  --api-version=<value> Override the api version used for api requests made by this command
1579
1582
  --use-most-recent Use the ID of the most recently-run bulk job.
1580
- --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
1583
+ --wait=<value> [default: 5 minutes] Number of minutes to wait for the command to complete before
1581
1584
  displaying the results.
1582
1585
 
1583
1586
  GLOBAL FLAGS
@@ -1599,7 +1602,7 @@ EXAMPLES
1599
1602
  $ sf data delete resume --use-most-recent --target-org my-scratch
1600
1603
  ```
1601
1604
 
1602
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/delete/resume.ts)_
1605
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/delete/resume.ts)_
1603
1606
 
1604
1607
  ## `sf data export bulk`
1605
1608
 
@@ -1673,7 +1676,7 @@ EXAMPLES
1673
1676
  --result-format json --async
1674
1677
  ```
1675
1678
 
1676
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/export/bulk.ts)_
1679
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/export/bulk.ts)_
1677
1680
 
1678
1681
  ## `sf data export resume`
1679
1682
 
@@ -1709,7 +1712,7 @@ EXAMPLES
1709
1712
  $ sf data export resume --use-most-recent --target-org my-scratch
1710
1713
  ```
1711
1714
 
1712
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/export/resume.ts)_
1715
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/export/resume.ts)_
1713
1716
 
1714
1717
  ## `sf data export tree`
1715
1718
 
@@ -1770,7 +1773,7 @@ EXAMPLES
1770
1773
  my-scratch
1771
1774
  ```
1772
1775
 
1773
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/export/tree.ts)_
1776
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/export/tree.ts)_
1774
1777
 
1775
1778
  ## `sf data get record`
1776
1779
 
@@ -1834,7 +1837,7 @@ EXAMPLES
1834
1837
  $ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
1835
1838
  ```
1836
1839
 
1837
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/get/record.ts)_
1840
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/get/record.ts)_
1838
1841
 
1839
1842
  ## `sf data import bulk`
1840
1843
 
@@ -1854,7 +1857,7 @@ FLAGS
1854
1857
  you're importing records.
1855
1858
  -w, --wait=<value> Time to wait for the command to finish, in minutes.
1856
1859
  --api-version=<value> Override the api version used for api requests made by this command
1857
- --column-delimiter=<option> Column delimiter used in the CSV file. Default is COMMA.
1860
+ --column-delimiter=<option> Column delimiter used in the CSV file.
1858
1861
  <options: BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB>
1859
1862
  --line-ending=<option> Line ending used in the CSV file. Default value on Windows is `CRLF`; on macOS and
1860
1863
  Linux it's `LF`.
@@ -1892,7 +1895,7 @@ EXAMPLES
1892
1895
  $ sf data import bulk --file accounts.csv --sobject Account --async
1893
1896
  ```
1894
1897
 
1895
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/import/bulk.ts)_
1898
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/import/bulk.ts)_
1896
1899
 
1897
1900
  ## `sf data import resume`
1898
1901
 
@@ -1928,7 +1931,7 @@ EXAMPLES
1928
1931
  $ sf data import resume --use-most-recent --target-org my-scratch
1929
1932
  ```
1930
1933
 
1931
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/import/resume.ts)_
1934
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/import/resume.ts)_
1932
1935
 
1933
1936
  ## `sf data import tree`
1934
1937
 
@@ -1993,7 +1996,7 @@ FLAG DESCRIPTIONS
1993
1996
  - files(array) - Files: An array of files paths to load
1994
1997
  ```
1995
1998
 
1996
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/import/tree.ts)_
1999
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/import/tree.ts)_
1997
2000
 
1998
2001
  ## `sf data query`
1999
2002
 
@@ -2057,7 +2060,7 @@ EXAMPLES
2057
2060
  $ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
2058
2061
  ```
2059
2062
 
2060
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/query.ts)_
2063
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/query.ts)_
2061
2064
 
2062
2065
  ## `sf data query resume`
2063
2066
 
@@ -2070,8 +2073,7 @@ USAGE
2070
2073
 
2071
2074
  FLAGS
2072
2075
  -i, --bulk-query-id=<value> Job ID of the bulk query.
2073
- -o, --target-org=<value> Username or alias of the target org. Not required if the "target-org" configuration
2074
- variable is already set.
2076
+ -o, --target-org=<value> Username or alias of the target org.
2075
2077
  -r, --result-format=<option> [default: human] Format to display the results; the --json flag overrides this flag.
2076
2078
  <options: human|csv|json>
2077
2079
  --api-version=<value> Override the api version used for api requests made by this command
@@ -2095,7 +2097,7 @@ EXAMPLES
2095
2097
  $ sf data query resume --bulk-query-id 7500x000005BdFzXXX
2096
2098
  ```
2097
2099
 
2098
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/query/resume.ts)_
2100
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/query/resume.ts)_
2099
2101
 
2100
2102
  ## `sf data resume`
2101
2103
 
@@ -2132,7 +2134,7 @@ EXAMPLES
2132
2134
  $ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
2133
2135
  ```
2134
2136
 
2135
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/resume.ts)_
2137
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/resume.ts)_
2136
2138
 
2137
2139
  ## `sf data search`
2138
2140
 
@@ -2182,7 +2184,7 @@ EXAMPLES
2182
2184
  $ sf data search --file query.txt --target-org my-scratch --result-format csv
2183
2185
  ```
2184
2186
 
2185
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/search.ts)_
2187
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/search.ts)_
2186
2188
 
2187
2189
  ## `sf data update bulk`
2188
2190
 
@@ -2202,7 +2204,7 @@ FLAGS
2202
2204
  are updating.
2203
2205
  -w, --wait=<value> Time to wait for the command to finish, in minutes.
2204
2206
  --api-version=<value> Override the api version used for api requests made by this command
2205
- --column-delimiter=<option> Column delimiter used in the CSV file. Default is COMMA.
2207
+ --column-delimiter=<option> Column delimiter used in the CSV file.
2206
2208
  <options: BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB>
2207
2209
  --line-ending=<option> Line ending used in the CSV file. Default value on Windows is `CRLF`; on macOS and
2208
2210
  Linux it's `LF`.
@@ -2243,7 +2245,7 @@ EXAMPLES
2243
2245
  $ sf data update bulk --file accounts.csv --sobject Account --async
2244
2246
  ```
2245
2247
 
2246
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/update/bulk.ts)_
2248
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/update/bulk.ts)_
2247
2249
 
2248
2250
  ## `sf data update record`
2249
2251
 
@@ -2305,7 +2307,7 @@ EXAMPLES
2305
2307
  "ExpirationDate=2017-12-01T00:58:04.000+0000"
2306
2308
  ```
2307
2309
 
2308
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/update/record.ts)_
2310
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/update/record.ts)_
2309
2311
 
2310
2312
  ## `sf data update resume`
2311
2313
 
@@ -2341,7 +2343,7 @@ EXAMPLES
2341
2343
  $ sf data update resume --use-most-recent --target-org my-scratch
2342
2344
  ```
2343
2345
 
2344
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/update/resume.ts)_
2346
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/update/resume.ts)_
2345
2347
 
2346
2348
  ## `sf data upsert bulk`
2347
2349
 
@@ -2349,21 +2351,27 @@ Bulk upsert records to an org from a CSV file. Uses Bulk API 2.0.
2349
2351
 
2350
2352
  ```
2351
2353
  USAGE
2352
- $ sf data upsert bulk -o <value> -f <value> -s <value> -i <value> [--json] [--flags-dir <value>] [--api-version
2353
- <value>] [-w <value> | -a] [--verbose]
2354
+ $ sf data upsert bulk -o <value> -s <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>] [-w
2355
+ <value> | -a] [--verbose] (--line-ending CRLF|LF -f <value>) [--column-delimiter
2356
+ BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB]
2354
2357
 
2355
2358
  FLAGS
2356
- -a, --async Run the command asynchronously.
2357
- -f, --file=<value> (required) CSV file that contains the IDs of the records to update or delete.
2358
- -i, --external-id=<value> (required) Name of the external ID field, or the Id field.
2359
- -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
2360
- configuration variable is already set.
2361
- -s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you want to
2362
- update or delete records from.
2363
- -w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
2364
- displaying the results.
2365
- --api-version=<value> Override the api version used for api requests made by this command
2366
- --verbose Print verbose output of failed records if result is available.
2359
+ -a, --async Run the command asynchronously.
2360
+ -f, --file=<value> (required) CSV file that contains the IDs of the records to update or delete.
2361
+ -i, --external-id=<value> (required) Name of the external ID field, or the Id field.
2362
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
2363
+ configuration variable is already set.
2364
+ -s, --sobject=<value> (required) API name of the Salesforce object, either standard or custom, that you
2365
+ want to update or delete records from.
2366
+ -w, --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
2367
+ displaying the results.
2368
+ --api-version=<value> Override the api version used for api requests made by this command
2369
+ --column-delimiter=<option> Column delimiter used in the CSV file.
2370
+ <options: BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB>
2371
+ --line-ending=<option> Line ending used in the CSV file. Default value on Windows is `CRLF`; on macOS and
2372
+ Linux it's `LF`.
2373
+ <options: CRLF|LF>
2374
+ --verbose Print verbose output of failed records if result is available.
2367
2375
 
2368
2376
  GLOBAL FLAGS
2369
2377
  --flags-dir=<value> Import flag values from a directory.
@@ -2394,7 +2402,7 @@ EXAMPLES
2394
2402
  my-scratch
2395
2403
  ```
2396
2404
 
2397
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/upsert/bulk.ts)_
2405
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/upsert/bulk.ts)_
2398
2406
 
2399
2407
  ## `sf data upsert resume`
2400
2408
 
@@ -2411,7 +2419,7 @@ FLAGS
2411
2419
  variable is already set.
2412
2420
  --api-version=<value> Override the api version used for api requests made by this command
2413
2421
  --use-most-recent Use the ID of the most recently-run bulk job.
2414
- --wait=<value> [default: 0 minutes] Number of minutes to wait for the command to complete before
2422
+ --wait=<value> [default: 5 minutes] Number of minutes to wait for the command to complete before
2415
2423
  displaying the results.
2416
2424
 
2417
2425
  GLOBAL FLAGS
@@ -2433,7 +2441,7 @@ EXAMPLES
2433
2441
  $ sf data upsert resume --use-most-recent --target-org my-scratch
2434
2442
  ```
2435
2443
 
2436
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/data/upsert/resume.ts)_
2444
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/data/upsert/resume.ts)_
2437
2445
 
2438
2446
  ## `sf doctor`
2439
2447
 
@@ -2528,7 +2536,7 @@ EXAMPLES
2528
2536
  $ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
2529
2537
  ```
2530
2538
 
2531
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/force/data/bulk/delete.ts)_
2539
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/force/data/bulk/delete.ts)_
2532
2540
 
2533
2541
  ## `sf force data bulk status`
2534
2542
 
@@ -2565,7 +2573,7 @@ EXAMPLES
2565
2573
  $ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
2566
2574
  ```
2567
2575
 
2568
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/force/data/bulk/status.ts)_
2576
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/force/data/bulk/status.ts)_
2569
2577
 
2570
2578
  ## `sf force data bulk upsert`
2571
2579
 
@@ -2623,7 +2631,7 @@ EXAMPLES
2623
2631
  --target-org my-scratch
2624
2632
  ```
2625
2633
 
2626
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.11.6/src/commands/force/data/bulk/upsert.ts)_
2634
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.12.1/src/commands/force/data/bulk/upsert.ts)_
2627
2635
 
2628
2636
  ## `sf help [COMMAND]`
2629
2637