@salesforce/cli 2.62.5 → 2.62.6

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.62.5 linux-x64 node-v20.17.0
27
+ @salesforce/cli/2.62.6 linux-x64 node-v20.17.0
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -66,6 +66,8 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
66
66
  - [`sf data delete bulk`](#sf-data-delete-bulk)
67
67
  - [`sf data delete record`](#sf-data-delete-record)
68
68
  - [`sf data delete resume`](#sf-data-delete-resume)
69
+ - [`sf data export bulk`](#sf-data-export-bulk)
70
+ - [`sf data export resume`](#sf-data-export-resume)
69
71
  - [`sf data export tree`](#sf-data-export-tree)
70
72
  - [`sf data get record`](#sf-data-get-record)
71
73
  - [`sf data import tree`](#sf-data-import-tree)
@@ -1072,7 +1074,7 @@ DESCRIPTION
1072
1074
  List all sf commands.
1073
1075
  ```
1074
1076
 
1075
- _See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/4.1.1/src/commands/commands.ts)_
1077
+ _See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/4.1.3/src/commands/commands.ts)_
1076
1078
 
1077
1079
  ## `sf config get`
1078
1080
 
@@ -1329,7 +1331,7 @@ EXAMPLES
1329
1331
  $ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
1330
1332
  ```
1331
1333
 
1332
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/create/file.ts)_
1334
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/create/file.ts)_
1333
1335
 
1334
1336
  ## `sf data create record`
1335
1337
 
@@ -1385,7 +1387,7 @@ EXAMPLES
1385
1387
  TracedEntityId=01p17000000R6bLAAS"
1386
1388
  ```
1387
1389
 
1388
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/create/record.ts)_
1390
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/create/record.ts)_
1389
1391
 
1390
1392
  ## `sf data delete bulk`
1391
1393
 
@@ -1443,7 +1445,7 @@ FLAG DESCRIPTIONS
1443
1445
  and can be enabled only by a system administrator.
1444
1446
  ```
1445
1447
 
1446
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/delete/bulk.ts)_
1448
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/delete/bulk.ts)_
1447
1449
 
1448
1450
  ## `sf data delete record`
1449
1451
 
@@ -1504,7 +1506,7 @@ EXAMPLES
1504
1506
  $ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
1505
1507
  ```
1506
1508
 
1507
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/delete/record.ts)_
1509
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/delete/record.ts)_
1508
1510
 
1509
1511
  ## `sf data delete resume`
1510
1512
 
@@ -1543,7 +1545,117 @@ EXAMPLES
1543
1545
  $ sf data delete resume --use-most-recent --target-org my-scratch
1544
1546
  ```
1545
1547
 
1546
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/delete/resume.ts)_
1548
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/delete/resume.ts)_
1549
+
1550
+ ## `sf data export bulk`
1551
+
1552
+ Bulk export records from an org into a file using a SOQL query. Uses Bulk API 2.0.
1553
+
1554
+ ```
1555
+ USAGE
1556
+ $ sf data export bulk -o <value> --output-file <value> -r csv|json [--json] [--flags-dir <value>] [--api-version
1557
+ <value>] [-w <minutes> | --async] [-q <value> | --query-file <value>] [--all-rows] [--column-delimiter
1558
+ BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB] [--line-ending LF|CRLF]
1559
+
1560
+ FLAGS
1561
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
1562
+ configuration variable is already set.
1563
+ -q, --query=<value> SOQL query to execute.
1564
+ -r, --result-format=<option> (required) [default: csv] Format to write the results.
1565
+ <options: csv|json>
1566
+ -w, --wait=<minutes> Time to wait for the command to finish, in minutes.
1567
+ --all-rows Include records that have been soft-deleted due to a merge or delete. By default,
1568
+ deleted records are not returned.
1569
+ --api-version=<value> Override the api version used for api requests made by this command
1570
+ --async Don't wait for the job to complete.
1571
+ --column-delimiter=<option> Column delimiter to be used when writing CSV output. Default is COMMA.
1572
+ <options: BACKQUOTE|CARET|COMMA|PIPE|SEMICOLON|TAB>
1573
+ --line-ending=<option> Line ending to be used when writing CSV output. Default value on Windows is is
1574
+ `CRLF`; on macOS and Linux it's `LR`.
1575
+ <options: LF|CRLF>
1576
+ --output-file=<value> (required) File where records are written.
1577
+ --query-file=<value> File that contains the SOQL query.
1578
+
1579
+ GLOBAL FLAGS
1580
+ --flags-dir=<value> Import flag values from a directory.
1581
+ --json Format output as json.
1582
+
1583
+ DESCRIPTION
1584
+ Bulk export records from an org into a file using a SOQL query. Uses Bulk API 2.0.
1585
+
1586
+ You can use this command to export millions of records from an org, either to migrate data or to back it up.
1587
+
1588
+ Use a SOQL query to specify the fields of a standard or custom object that you want to export. Specify the SOQL query
1589
+ either at the command line with the --query flag or read it from a file with the --query-file flag; you can't specify
1590
+ both flags. The --output-file flag is required, which means you can only write the records to a file, in either CSV or
1591
+ JSON format.
1592
+
1593
+ Bulk exports can take a while, depending on how many records are returned by the SOQL query. If the command times out,
1594
+ or you specified the --async flag, the command displays the job ID. To see the status and get the results of the job,
1595
+ run "sf data export resume" and pass the job ID to the --job-id flag.
1596
+
1597
+ IMPORTANT: This command uses Bulk API 2.0, which limits the type of SOQL queries you can run. For example, you can't
1598
+ use aggregate functions such as count(). For the complete list of limitations, see the "SOQL Considerations" section
1599
+ in the "Bulk API 2.0 and Bulk API Developer Guide"
1600
+ (https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm).
1601
+
1602
+ EXAMPLES
1603
+ Export the Id, Name, and Account.Name fields of the Contact object into a CSV-formatted file; if the export doesn't
1604
+ complete in 10 minutes, the command ends and displays a job ID. Use the org with alias "my-scratch":
1605
+
1606
+ $ sf data export bulk --query "SELECT Id, Name, Account.Name FROM Contact" --output-file export-accounts.csv \
1607
+ --wait 10 --target-org my-scratch
1608
+
1609
+ Similar to previous example, but use the default org, export the records into a JSON-formatted file, and include
1610
+ records that have been soft deleted:
1611
+
1612
+ $ sf data export bulk --query "SELECT Id, Name, Account.Name FROM Contact" --output-file export-accounts.json \
1613
+ --result-format json --wait 10 --all-rows
1614
+
1615
+ Export asynchronously; the command immediately returns a job ID that you then pass to the "sf data export resume"
1616
+ command:
1617
+
1618
+ $ sf data export bulk --query "SELECT Id, Name, Account.Name FROM Contact" --output-file export-accounts.json \
1619
+ --result-format json --async
1620
+ ```
1621
+
1622
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/export/bulk.ts)_
1623
+
1624
+ ## `sf data export resume`
1625
+
1626
+ Resume a bulk export job that you previously started.
1627
+
1628
+ ```
1629
+ USAGE
1630
+ $ sf data export resume [--json] [--flags-dir <value>] [-i <value>] [--use-most-recent] [--api-version <value>]
1631
+
1632
+ FLAGS
1633
+ -i, --job-id=<value> Job ID of the bulk export.
1634
+ --api-version=<value> Override the api version used for api requests made by this command
1635
+ --use-most-recent Use the job ID of the bulk export job that was most recently run.
1636
+
1637
+ GLOBAL FLAGS
1638
+ --flags-dir=<value> Import flag values from a directory.
1639
+ --json Format output as json.
1640
+
1641
+ DESCRIPTION
1642
+ Resume a bulk export job that you previously started.
1643
+
1644
+ When the original "data export bulk" command either times out or is run with the --async flag, it displays a job ID.
1645
+ To see the status and get the results of the bulk export, run this command by either passing it the job ID or using
1646
+ the --use-most-recent flag to specify the most recent bulk export job.
1647
+
1648
+ EXAMPLES
1649
+ Resume a bulk export job run on your default org by specifying a job ID:
1650
+
1651
+ $ sf data export resume --job-id 750xx000000005sAAA
1652
+
1653
+ Resume the most recently-run bulk export job for an org with alias my-scratch:
1654
+
1655
+ $ sf data export resume --use-most-recent --target-org my-scratch
1656
+ ```
1657
+
1658
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/export/resume.ts)_
1547
1659
 
1548
1660
  ## `sf data export tree`
1549
1661
 
@@ -1604,7 +1716,7 @@ EXAMPLES
1604
1716
  my-scratch
1605
1717
  ```
1606
1718
 
1607
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/export/tree.ts)_
1719
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/export/tree.ts)_
1608
1720
 
1609
1721
  ## `sf data get record`
1610
1722
 
@@ -1668,7 +1780,7 @@ EXAMPLES
1668
1780
  $ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
1669
1781
  ```
1670
1782
 
1671
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/get/record.ts)_
1783
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/get/record.ts)_
1672
1784
 
1673
1785
  ## `sf data import tree`
1674
1786
 
@@ -1733,7 +1845,7 @@ FLAG DESCRIPTIONS
1733
1845
  - files(array) - Files: An array of files paths to load
1734
1846
  ```
1735
1847
 
1736
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/import/tree.ts)_
1848
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/import/tree.ts)_
1737
1849
 
1738
1850
  ## `sf data query`
1739
1851
 
@@ -1797,7 +1909,7 @@ EXAMPLES
1797
1909
  $ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
1798
1910
  ```
1799
1911
 
1800
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/query.ts)_
1912
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/query.ts)_
1801
1913
 
1802
1914
  ## `sf data query resume`
1803
1915
 
@@ -1835,7 +1947,7 @@ EXAMPLES
1835
1947
  $ sf data query resume --bulk-query-id 7500x000005BdFzXXX
1836
1948
  ```
1837
1949
 
1838
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/query/resume.ts)_
1950
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/query/resume.ts)_
1839
1951
 
1840
1952
  ## `sf data resume`
1841
1953
 
@@ -1872,7 +1984,7 @@ EXAMPLES
1872
1984
  $ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
1873
1985
  ```
1874
1986
 
1875
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/resume.ts)_
1987
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/resume.ts)_
1876
1988
 
1877
1989
  ## `sf data search`
1878
1990
 
@@ -1922,7 +2034,7 @@ EXAMPLES
1922
2034
  $ sf data search --file query.txt --target-org my-scratch --result-format csv
1923
2035
  ```
1924
2036
 
1925
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/search.ts)_
2037
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/search.ts)_
1926
2038
 
1927
2039
  ## `sf data update record`
1928
2040
 
@@ -1984,7 +2096,7 @@ EXAMPLES
1984
2096
  "ExpirationDate=2017-12-01T00:58:04.000+0000"
1985
2097
  ```
1986
2098
 
1987
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/update/record.ts)_
2099
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/update/record.ts)_
1988
2100
 
1989
2101
  ## `sf data upsert bulk`
1990
2102
 
@@ -2037,7 +2149,7 @@ EXAMPLES
2037
2149
  my-scratch
2038
2150
  ```
2039
2151
 
2040
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/upsert/bulk.ts)_
2152
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/upsert/bulk.ts)_
2041
2153
 
2042
2154
  ## `sf data upsert resume`
2043
2155
 
@@ -2076,7 +2188,7 @@ EXAMPLES
2076
2188
  $ sf data upsert resume --use-most-recent --target-org my-scratch
2077
2189
  ```
2078
2190
 
2079
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/data/upsert/resume.ts)_
2191
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/data/upsert/resume.ts)_
2080
2192
 
2081
2193
  ## `sf doctor`
2082
2194
 
@@ -2171,7 +2283,7 @@ EXAMPLES
2171
2283
  $ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
2172
2284
  ```
2173
2285
 
2174
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/force/data/bulk/delete.ts)_
2286
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/force/data/bulk/delete.ts)_
2175
2287
 
2176
2288
  ## `sf force data bulk status`
2177
2289
 
@@ -2208,7 +2320,7 @@ EXAMPLES
2208
2320
  $ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
2209
2321
  ```
2210
2322
 
2211
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/force/data/bulk/status.ts)_
2323
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/force/data/bulk/status.ts)_
2212
2324
 
2213
2325
  ## `sf force data bulk upsert`
2214
2326
 
@@ -2266,7 +2378,7 @@ EXAMPLES
2266
2378
  --target-org my-scratch
2267
2379
  ```
2268
2380
 
2269
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.6.9/src/commands/force/data/bulk/upsert.ts)_
2381
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.0/src/commands/force/data/bulk/upsert.ts)_
2270
2382
 
2271
2383
  ## `sf help [COMMAND]`
2272
2384
 
@@ -8016,7 +8128,7 @@ EXAMPLES
8016
8128
  $ sf update --available
8017
8129
  ```
8018
8130
 
8019
- _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.6.1/src/commands/update.ts)_
8131
+ _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.6.3/src/commands/update.ts)_
8020
8132
 
8021
8133
  ## `sf version`
8022
8134
 
@@ -1,24 +1,24 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.62.5",
3
+ "version": "2.62.6",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.62.5",
9
+ "version": "2.62.6",
10
10
  "hasInstallScript": true,
11
11
  "license": "BSD-3-Clause",
12
12
  "dependencies": {
13
13
  "@inquirer/select": "^2.3.5",
14
14
  "@oclif/core": "4.0.27",
15
15
  "@oclif/plugin-autocomplete": "3.2.5",
16
- "@oclif/plugin-commands": "4.1.2",
16
+ "@oclif/plugin-commands": "4.1.3",
17
17
  "@oclif/plugin-help": "6.2.14",
18
18
  "@oclif/plugin-not-found": "3.2.22",
19
19
  "@oclif/plugin-plugins": "5.4.14",
20
20
  "@oclif/plugin-search": "1.2.11",
21
- "@oclif/plugin-update": "4.6.2",
21
+ "@oclif/plugin-update": "4.6.3",
22
22
  "@oclif/plugin-version": "2.2.14",
23
23
  "@oclif/plugin-warn-if-update-available": "3.1.18",
24
24
  "@oclif/plugin-which": "3.2.15",
@@ -27,7 +27,7 @@
27
27
  "@salesforce/plugin-apex": "3.5.1",
28
28
  "@salesforce/plugin-api": "1.3.1",
29
29
  "@salesforce/plugin-auth": "3.6.65",
30
- "@salesforce/plugin-data": "3.6.9",
30
+ "@salesforce/plugin-data": "3.7.0",
31
31
  "@salesforce/plugin-deploy-retrieve": "3.12.17",
32
32
  "@salesforce/plugin-info": "3.4.9",
33
33
  "@salesforce/plugin-limits": "3.3.32",
@@ -3235,6 +3235,51 @@
3235
3235
  "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
3236
3236
  }
3237
3237
  },
3238
+ "node_modules/@oclif/multi-stage-output": {
3239
+ "version": "0.3.4",
3240
+ "resolved": "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.3.4.tgz",
3241
+ "integrity": "sha512-0Y0ZQo3LLvkhGu5wv+MuzdZZ470dGixQuFBab7gyB8DbemOPvM1oV+qzVbTJqDWoWitdvhSPlsy6VniuDZdLzQ==",
3242
+ "license": "MIT",
3243
+ "dependencies": {
3244
+ "@oclif/core": "^4",
3245
+ "@types/react": "^18.3.4",
3246
+ "change-case": "^5.4.4",
3247
+ "cli-spinners": "^2",
3248
+ "figures": "^6.1.0",
3249
+ "ink": "^5.0.1",
3250
+ "react": "^18.3.1"
3251
+ },
3252
+ "engines": {
3253
+ "node": ">=18.0.0"
3254
+ }
3255
+ },
3256
+ "node_modules/@oclif/multi-stage-output/node_modules/figures": {
3257
+ "version": "6.1.0",
3258
+ "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz",
3259
+ "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==",
3260
+ "license": "MIT",
3261
+ "dependencies": {
3262
+ "is-unicode-supported": "^2.0.0"
3263
+ },
3264
+ "engines": {
3265
+ "node": ">=18"
3266
+ },
3267
+ "funding": {
3268
+ "url": "https://github.com/sponsors/sindresorhus"
3269
+ }
3270
+ },
3271
+ "node_modules/@oclif/multi-stage-output/node_modules/is-unicode-supported": {
3272
+ "version": "2.1.0",
3273
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
3274
+ "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
3275
+ "license": "MIT",
3276
+ "engines": {
3277
+ "node": ">=18"
3278
+ },
3279
+ "funding": {
3280
+ "url": "https://github.com/sponsors/sindresorhus"
3281
+ }
3282
+ },
3238
3283
  "node_modules/@oclif/plugin-autocomplete": {
3239
3284
  "version": "3.2.5",
3240
3285
  "resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.2.5.tgz",
@@ -3319,13 +3364,13 @@
3319
3364
  }
3320
3365
  },
3321
3366
  "node_modules/@oclif/plugin-commands": {
3322
- "version": "4.1.2",
3323
- "resolved": "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-4.1.2.tgz",
3324
- "integrity": "sha512-PC0aieyqbWTShqr3jkouiGKTO2ReXfGZTEux+Y19cPvbZCBnJ5hld0rGG/wWOusYo/5AumY3Mo5Yx9I2N2Fy8Q==",
3367
+ "version": "4.1.3",
3368
+ "resolved": "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-4.1.3.tgz",
3369
+ "integrity": "sha512-wRxYfD+isEtP64RBfhlaUXorM110YgeYEgwMppcSnH0KrvCngxFiKad1HE5MNUratEmDpsDT2UIWh86hOFKkSw==",
3325
3370
  "license": "MIT",
3326
3371
  "dependencies": {
3327
3372
  "@oclif/core": "^4",
3328
- "@oclif/table": "^0.1.16",
3373
+ "@oclif/table": "^0.1.17",
3329
3374
  "lodash": "^4.17.21",
3330
3375
  "object-treeify": "^4.0.1"
3331
3376
  },
@@ -3490,14 +3535,14 @@
3490
3535
  }
3491
3536
  },
3492
3537
  "node_modules/@oclif/plugin-update": {
3493
- "version": "4.6.2",
3494
- "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.6.2.tgz",
3495
- "integrity": "sha512-o/xGzTcznhDgiD7uETxo/Gg7lCWjw0Ktu936ItsFJdqwaONP8Cr9nZGg0t0D/lZptBx4xikUStHKYhiD/xsL2w==",
3538
+ "version": "4.6.3",
3539
+ "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.6.3.tgz",
3540
+ "integrity": "sha512-FYF89ohnH5EWRXnNzRSptw/zVJMYzLnSPfgeNg91VDnulT4Pflr4vLe1GqZiL0sTdF9LdXojGbxvrxUKKVUxgg==",
3496
3541
  "license": "MIT",
3497
3542
  "dependencies": {
3498
3543
  "@inquirer/select": "^2.5.0",
3499
3544
  "@oclif/core": "^4",
3500
- "@oclif/table": "^0.1.15",
3545
+ "@oclif/table": "^0.1.17",
3501
3546
  "ansis": "^3.3.2",
3502
3547
  "debug": "^4.3.7",
3503
3548
  "filesize": "^6.1.0",
@@ -3554,9 +3599,9 @@
3554
3599
  }
3555
3600
  },
3556
3601
  "node_modules/@oclif/table": {
3557
- "version": "0.1.16",
3558
- "resolved": "https://registry.npmjs.org/@oclif/table/-/table-0.1.16.tgz",
3559
- "integrity": "sha512-X+kJyUs1ViqLHhOUzi6NF1r3PRVMSp4BEAm/nq0E+KaRzQddAK4QVXhpugUkb2H7Ea+nuVTfG05ZZqXpg9uktg==",
3602
+ "version": "0.1.17",
3603
+ "resolved": "https://registry.npmjs.org/@oclif/table/-/table-0.1.17.tgz",
3604
+ "integrity": "sha512-x7ffsCMeqTM6oECg2cd3MDTGTWx19oOxIMEVOVk0qvsfrQfsecB4m7dQh9W6+VLvGg/bkxJKHB14Ytf8ieiqmw==",
3560
3605
  "license": "MIT",
3561
3606
  "dependencies": {
3562
3607
  "@oclif/core": "^4",
@@ -4322,12 +4367,13 @@
4322
4367
  }
4323
4368
  },
4324
4369
  "node_modules/@salesforce/plugin-data": {
4325
- "version": "3.6.9",
4326
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.6.9.tgz",
4327
- "integrity": "sha512-nN5RY0E9M4Z9DVk5QMk7pkHD0gSt0V3k/T2g3xyo3wUSwqBEf/YxB3JN1KYbvTrMwJJz2aAKC6TJRzJYeGvvAA==",
4370
+ "version": "3.7.0",
4371
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.7.0.tgz",
4372
+ "integrity": "sha512-+5j9yb0hNWBfmPrEddkzPW5w0o0piIodRNBarsgAxNNOoAsEwJEcl+Afze/GBvdgRHFSaJzuNQJwD/JkZ7u5rA==",
4328
4373
  "license": "BSD-3-Clause",
4329
4374
  "dependencies": {
4330
4375
  "@jsforce/jsforce-node": "^3.5.1",
4376
+ "@oclif/multi-stage-output": "^0.3.0",
4331
4377
  "@salesforce/core": "^8.6.1",
4332
4378
  "@salesforce/kit": "^3.2.2",
4333
4379
  "@salesforce/sf-plugins-core": "^11.3.10",
@@ -4336,7 +4382,8 @@
4336
4382
  "change-case": "^5.4.4",
4337
4383
  "csv-parse": "^5.5.6",
4338
4384
  "csv-stringify": "^6.5.1",
4339
- "form-data": "^4.0.0"
4385
+ "form-data": "^4.0.0",
4386
+ "terminal-link": "^3.0.0"
4340
4387
  },
4341
4388
  "engines": {
4342
4389
  "node": ">=18.0.0"
package/oclif.lock CHANGED
@@ -1580,6 +1580,19 @@
1580
1580
  wordwrap "^1.0.0"
1581
1581
  wrap-ansi "^7.0.0"
1582
1582
 
1583
+ "@oclif/multi-stage-output@^0.3.0":
1584
+ version "0.3.4"
1585
+ resolved "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.3.4.tgz"
1586
+ integrity sha512-0Y0ZQo3LLvkhGu5wv+MuzdZZ470dGixQuFBab7gyB8DbemOPvM1oV+qzVbTJqDWoWitdvhSPlsy6VniuDZdLzQ==
1587
+ dependencies:
1588
+ "@oclif/core" "^4"
1589
+ "@types/react" "^18.3.4"
1590
+ change-case "^5.4.4"
1591
+ cli-spinners "^2"
1592
+ figures "^6.1.0"
1593
+ ink "^5.0.1"
1594
+ react "^18.3.1"
1595
+
1583
1596
  "@oclif/plugin-autocomplete@3.2.5":
1584
1597
  version "3.2.5"
1585
1598
  resolved "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.2.5.tgz"
@@ -1605,13 +1618,13 @@
1605
1618
  semver "^7.6.0"
1606
1619
  ts-json-schema-generator "^1.5.1"
1607
1620
 
1608
- "@oclif/plugin-commands@4.1.2":
1609
- version "4.1.2"
1610
- resolved "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-4.1.2.tgz"
1611
- integrity sha512-PC0aieyqbWTShqr3jkouiGKTO2ReXfGZTEux+Y19cPvbZCBnJ5hld0rGG/wWOusYo/5AumY3Mo5Yx9I2N2Fy8Q==
1621
+ "@oclif/plugin-commands@4.1.3":
1622
+ version "4.1.3"
1623
+ resolved "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-4.1.3.tgz"
1624
+ integrity sha512-wRxYfD+isEtP64RBfhlaUXorM110YgeYEgwMppcSnH0KrvCngxFiKad1HE5MNUratEmDpsDT2UIWh86hOFKkSw==
1612
1625
  dependencies:
1613
1626
  "@oclif/core" "^4"
1614
- "@oclif/table" "^0.1.16"
1627
+ "@oclif/table" "^0.1.17"
1615
1628
  lodash "^4.17.21"
1616
1629
  object-treeify "^4.0.1"
1617
1630
 
@@ -1658,14 +1671,14 @@
1658
1671
  ansi-escapes "^7.0.0"
1659
1672
  inquirer-autocomplete-standalone "^0.8.1"
1660
1673
 
1661
- "@oclif/plugin-update@4.6.2":
1662
- version "4.6.2"
1663
- resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.6.2.tgz"
1664
- integrity sha512-o/xGzTcznhDgiD7uETxo/Gg7lCWjw0Ktu936ItsFJdqwaONP8Cr9nZGg0t0D/lZptBx4xikUStHKYhiD/xsL2w==
1674
+ "@oclif/plugin-update@4.6.3":
1675
+ version "4.6.3"
1676
+ resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.6.3.tgz"
1677
+ integrity sha512-FYF89ohnH5EWRXnNzRSptw/zVJMYzLnSPfgeNg91VDnulT4Pflr4vLe1GqZiL0sTdF9LdXojGbxvrxUKKVUxgg==
1665
1678
  dependencies:
1666
1679
  "@inquirer/select" "^2.5.0"
1667
1680
  "@oclif/core" "^4"
1668
- "@oclif/table" "^0.1.15"
1681
+ "@oclif/table" "^0.1.17"
1669
1682
  ansis "^3.3.2"
1670
1683
  debug "^4.3.7"
1671
1684
  filesize "^6.1.0"
@@ -1702,10 +1715,10 @@
1702
1715
  "@oclif/core" "^4"
1703
1716
  ansis "^3.3.1"
1704
1717
 
1705
- "@oclif/table@^0.1.15", "@oclif/table@^0.1.16":
1706
- version "0.1.16"
1707
- resolved "https://registry.npmjs.org/@oclif/table/-/table-0.1.16.tgz"
1708
- integrity sha512-X+kJyUs1ViqLHhOUzi6NF1r3PRVMSp4BEAm/nq0E+KaRzQddAK4QVXhpugUkb2H7Ea+nuVTfG05ZZqXpg9uktg==
1718
+ "@oclif/table@^0.1.17":
1719
+ version "0.1.17"
1720
+ resolved "https://registry.npmjs.org/@oclif/table/-/table-0.1.17.tgz"
1721
+ integrity sha512-x7ffsCMeqTM6oECg2cd3MDTGTWx19oOxIMEVOVk0qvsfrQfsecB4m7dQh9W6+VLvGg/bkxJKHB14Ytf8ieiqmw==
1709
1722
  dependencies:
1710
1723
  "@oclif/core" "^4"
1711
1724
  "@types/react" "^18.3.11"
@@ -2054,12 +2067,13 @@
2054
2067
  debug "^4.3.4"
2055
2068
  handlebars "^4.7.8"
2056
2069
 
2057
- "@salesforce/plugin-data@3.6.9":
2058
- version "3.6.9"
2059
- resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.6.9.tgz"
2060
- integrity sha512-nN5RY0E9M4Z9DVk5QMk7pkHD0gSt0V3k/T2g3xyo3wUSwqBEf/YxB3JN1KYbvTrMwJJz2aAKC6TJRzJYeGvvAA==
2070
+ "@salesforce/plugin-data@3.7.0":
2071
+ version "3.7.0"
2072
+ resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.7.0.tgz"
2073
+ integrity sha512-+5j9yb0hNWBfmPrEddkzPW5w0o0piIodRNBarsgAxNNOoAsEwJEcl+Afze/GBvdgRHFSaJzuNQJwD/JkZ7u5rA==
2061
2074
  dependencies:
2062
2075
  "@jsforce/jsforce-node" "^3.5.1"
2076
+ "@oclif/multi-stage-output" "^0.3.0"
2063
2077
  "@salesforce/core" "^8.6.1"
2064
2078
  "@salesforce/kit" "^3.2.2"
2065
2079
  "@salesforce/sf-plugins-core" "^11.3.10"
@@ -2069,6 +2083,7 @@
2069
2083
  csv-parse "^5.5.6"
2070
2084
  csv-stringify "^6.5.1"
2071
2085
  form-data "^4.0.0"
2086
+ terminal-link "^3.0.0"
2072
2087
 
2073
2088
  "@salesforce/plugin-deploy-retrieve@3.12.17":
2074
2089
  version "3.12.17"
@@ -3228,7 +3243,7 @@
3228
3243
  resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz"
3229
3244
  integrity sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==
3230
3245
 
3231
- "@types/react@^18.3.11", "@types/react@>=18.0.0":
3246
+ "@types/react@^18.3.11", "@types/react@^18.3.4", "@types/react@>=18.0.0":
3232
3247
  version "18.3.11"
3233
3248
  resolved "https://registry.npmjs.org/@types/react/-/react-18.3.11.tgz"
3234
3249
  integrity sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==
@@ -4301,7 +4316,7 @@ cli-progress@^3.12.0:
4301
4316
  dependencies:
4302
4317
  string-width "^4.2.3"
4303
4318
 
4304
- cli-spinners@^2.9.0, cli-spinners@^2.9.2:
4319
+ cli-spinners@^2, cli-spinners@^2.9.0, cli-spinners@^2.9.2:
4305
4320
  version "2.9.2"
4306
4321
  resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz"
4307
4322
  integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==
@@ -5723,6 +5738,13 @@ figures@^5.0.0:
5723
5738
  escape-string-regexp "^5.0.0"
5724
5739
  is-unicode-supported "^1.2.0"
5725
5740
 
5741
+ figures@^6.1.0:
5742
+ version "6.1.0"
5743
+ resolved "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz"
5744
+ integrity sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==
5745
+ dependencies:
5746
+ is-unicode-supported "^2.0.0"
5747
+
5726
5748
  file-entry-cache@^6.0.1:
5727
5749
  version "6.0.1"
5728
5750
  resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"
@@ -7001,6 +7023,11 @@ is-unicode-supported@^1.2.0:
7001
7023
  resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz"
7002
7024
  integrity sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==
7003
7025
 
7026
+ is-unicode-supported@^2.0.0:
7027
+ version "2.1.0"
7028
+ resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz"
7029
+ integrity sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==
7030
+
7004
7031
  is-weakref@^1.0.2:
7005
7032
  version "1.0.2"
7006
7033
  resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"
@@ -5370,5 +5370,5 @@
5370
5370
  ]
5371
5371
  }
5372
5372
  },
5373
- "version": "2.62.5"
5373
+ "version": "2.62.6"
5374
5374
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.62.5",
4
+ "version": "2.62.6",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -142,12 +142,12 @@
142
142
  "@inquirer/select": "^2.3.5",
143
143
  "@oclif/core": "4.0.27",
144
144
  "@oclif/plugin-autocomplete": "3.2.5",
145
- "@oclif/plugin-commands": "4.1.2",
145
+ "@oclif/plugin-commands": "4.1.3",
146
146
  "@oclif/plugin-help": "6.2.14",
147
147
  "@oclif/plugin-not-found": "3.2.22",
148
148
  "@oclif/plugin-plugins": "5.4.14",
149
149
  "@oclif/plugin-search": "1.2.11",
150
- "@oclif/plugin-update": "4.6.2",
150
+ "@oclif/plugin-update": "4.6.3",
151
151
  "@oclif/plugin-version": "2.2.14",
152
152
  "@oclif/plugin-warn-if-update-available": "3.1.18",
153
153
  "@oclif/plugin-which": "3.2.15",
@@ -156,7 +156,7 @@
156
156
  "@salesforce/plugin-apex": "3.5.1",
157
157
  "@salesforce/plugin-api": "1.3.1",
158
158
  "@salesforce/plugin-auth": "3.6.65",
159
- "@salesforce/plugin-data": "3.6.9",
159
+ "@salesforce/plugin-data": "3.7.0",
160
160
  "@salesforce/plugin-deploy-retrieve": "3.12.17",
161
161
  "@salesforce/plugin-info": "3.4.9",
162
162
  "@salesforce/plugin-limits": "3.3.32",