@salesforce/cli 2.62.5 → 2.63.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 +133 -21
- package/npm-shrinkwrap.json +134 -20
- package/oclif.lock +46 -19
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
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.63.0 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.
|
|
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.
|
|
1334
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
1390
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
1448
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
1509
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
1548
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.1/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.1/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.
|
|
1719
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
1783
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
1848
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
1912
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
1950
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
1987
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
2037
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
2099
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
2152
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
2191
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
2286
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
2323
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
2381
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.7.1/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.
|
|
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
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.63.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.63.0",
|
|
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.
|
|
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.
|
|
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.
|
|
30
|
+
"@salesforce/plugin-data": "3.7.1",
|
|
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,118 @@
|
|
|
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.7.5",
|
|
3240
|
+
"resolved": "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.7.5.tgz",
|
|
3241
|
+
"integrity": "sha512-9DSPryrL6Qx7jWz7BGBdSyokmUUbrp8z3kRZpfIbA0vqZ/zqYDdW2tO2hlplb74Sr8FUiiwE0FcvRTYZWEmb9Q==",
|
|
3242
|
+
"license": "MIT",
|
|
3243
|
+
"dependencies": {
|
|
3244
|
+
"@oclif/core": "^4",
|
|
3245
|
+
"@types/react": "^18.3.11",
|
|
3246
|
+
"cli-spinners": "^2",
|
|
3247
|
+
"figures": "^6.1.0",
|
|
3248
|
+
"ink": "^5.0.1",
|
|
3249
|
+
"react": "^18.3.1",
|
|
3250
|
+
"wrap-ansi": "^9.0.0"
|
|
3251
|
+
},
|
|
3252
|
+
"engines": {
|
|
3253
|
+
"node": ">=18.0.0"
|
|
3254
|
+
}
|
|
3255
|
+
},
|
|
3256
|
+
"node_modules/@oclif/multi-stage-output/node_modules/ansi-regex": {
|
|
3257
|
+
"version": "6.0.1",
|
|
3258
|
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
|
|
3259
|
+
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
|
|
3260
|
+
"license": "MIT",
|
|
3261
|
+
"engines": {
|
|
3262
|
+
"node": ">=12"
|
|
3263
|
+
},
|
|
3264
|
+
"funding": {
|
|
3265
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
3266
|
+
}
|
|
3267
|
+
},
|
|
3268
|
+
"node_modules/@oclif/multi-stage-output/node_modules/emoji-regex": {
|
|
3269
|
+
"version": "10.3.0",
|
|
3270
|
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
|
|
3271
|
+
"integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==",
|
|
3272
|
+
"license": "MIT"
|
|
3273
|
+
},
|
|
3274
|
+
"node_modules/@oclif/multi-stage-output/node_modules/figures": {
|
|
3275
|
+
"version": "6.1.0",
|
|
3276
|
+
"resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz",
|
|
3277
|
+
"integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==",
|
|
3278
|
+
"license": "MIT",
|
|
3279
|
+
"dependencies": {
|
|
3280
|
+
"is-unicode-supported": "^2.0.0"
|
|
3281
|
+
},
|
|
3282
|
+
"engines": {
|
|
3283
|
+
"node": ">=18"
|
|
3284
|
+
},
|
|
3285
|
+
"funding": {
|
|
3286
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3287
|
+
}
|
|
3288
|
+
},
|
|
3289
|
+
"node_modules/@oclif/multi-stage-output/node_modules/is-unicode-supported": {
|
|
3290
|
+
"version": "2.1.0",
|
|
3291
|
+
"resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz",
|
|
3292
|
+
"integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==",
|
|
3293
|
+
"license": "MIT",
|
|
3294
|
+
"engines": {
|
|
3295
|
+
"node": ">=18"
|
|
3296
|
+
},
|
|
3297
|
+
"funding": {
|
|
3298
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3299
|
+
}
|
|
3300
|
+
},
|
|
3301
|
+
"node_modules/@oclif/multi-stage-output/node_modules/string-width": {
|
|
3302
|
+
"version": "7.2.0",
|
|
3303
|
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
|
|
3304
|
+
"integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
|
|
3305
|
+
"license": "MIT",
|
|
3306
|
+
"dependencies": {
|
|
3307
|
+
"emoji-regex": "^10.3.0",
|
|
3308
|
+
"get-east-asian-width": "^1.0.0",
|
|
3309
|
+
"strip-ansi": "^7.1.0"
|
|
3310
|
+
},
|
|
3311
|
+
"engines": {
|
|
3312
|
+
"node": ">=18"
|
|
3313
|
+
},
|
|
3314
|
+
"funding": {
|
|
3315
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3316
|
+
}
|
|
3317
|
+
},
|
|
3318
|
+
"node_modules/@oclif/multi-stage-output/node_modules/strip-ansi": {
|
|
3319
|
+
"version": "7.1.0",
|
|
3320
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
|
|
3321
|
+
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
|
|
3322
|
+
"license": "MIT",
|
|
3323
|
+
"dependencies": {
|
|
3324
|
+
"ansi-regex": "^6.0.1"
|
|
3325
|
+
},
|
|
3326
|
+
"engines": {
|
|
3327
|
+
"node": ">=12"
|
|
3328
|
+
},
|
|
3329
|
+
"funding": {
|
|
3330
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
3331
|
+
}
|
|
3332
|
+
},
|
|
3333
|
+
"node_modules/@oclif/multi-stage-output/node_modules/wrap-ansi": {
|
|
3334
|
+
"version": "9.0.0",
|
|
3335
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz",
|
|
3336
|
+
"integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==",
|
|
3337
|
+
"license": "MIT",
|
|
3338
|
+
"dependencies": {
|
|
3339
|
+
"ansi-styles": "^6.2.1",
|
|
3340
|
+
"string-width": "^7.0.0",
|
|
3341
|
+
"strip-ansi": "^7.1.0"
|
|
3342
|
+
},
|
|
3343
|
+
"engines": {
|
|
3344
|
+
"node": ">=18"
|
|
3345
|
+
},
|
|
3346
|
+
"funding": {
|
|
3347
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
3348
|
+
}
|
|
3349
|
+
},
|
|
3238
3350
|
"node_modules/@oclif/plugin-autocomplete": {
|
|
3239
3351
|
"version": "3.2.5",
|
|
3240
3352
|
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.2.5.tgz",
|
|
@@ -3319,13 +3431,13 @@
|
|
|
3319
3431
|
}
|
|
3320
3432
|
},
|
|
3321
3433
|
"node_modules/@oclif/plugin-commands": {
|
|
3322
|
-
"version": "4.1.
|
|
3323
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-4.1.
|
|
3324
|
-
"integrity": "sha512-
|
|
3434
|
+
"version": "4.1.3",
|
|
3435
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-4.1.3.tgz",
|
|
3436
|
+
"integrity": "sha512-wRxYfD+isEtP64RBfhlaUXorM110YgeYEgwMppcSnH0KrvCngxFiKad1HE5MNUratEmDpsDT2UIWh86hOFKkSw==",
|
|
3325
3437
|
"license": "MIT",
|
|
3326
3438
|
"dependencies": {
|
|
3327
3439
|
"@oclif/core": "^4",
|
|
3328
|
-
"@oclif/table": "^0.1.
|
|
3440
|
+
"@oclif/table": "^0.1.17",
|
|
3329
3441
|
"lodash": "^4.17.21",
|
|
3330
3442
|
"object-treeify": "^4.0.1"
|
|
3331
3443
|
},
|
|
@@ -3490,14 +3602,14 @@
|
|
|
3490
3602
|
}
|
|
3491
3603
|
},
|
|
3492
3604
|
"node_modules/@oclif/plugin-update": {
|
|
3493
|
-
"version": "4.6.
|
|
3494
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.6.
|
|
3495
|
-
"integrity": "sha512-
|
|
3605
|
+
"version": "4.6.3",
|
|
3606
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.6.3.tgz",
|
|
3607
|
+
"integrity": "sha512-FYF89ohnH5EWRXnNzRSptw/zVJMYzLnSPfgeNg91VDnulT4Pflr4vLe1GqZiL0sTdF9LdXojGbxvrxUKKVUxgg==",
|
|
3496
3608
|
"license": "MIT",
|
|
3497
3609
|
"dependencies": {
|
|
3498
3610
|
"@inquirer/select": "^2.5.0",
|
|
3499
3611
|
"@oclif/core": "^4",
|
|
3500
|
-
"@oclif/table": "^0.1.
|
|
3612
|
+
"@oclif/table": "^0.1.17",
|
|
3501
3613
|
"ansis": "^3.3.2",
|
|
3502
3614
|
"debug": "^4.3.7",
|
|
3503
3615
|
"filesize": "^6.1.0",
|
|
@@ -3554,9 +3666,9 @@
|
|
|
3554
3666
|
}
|
|
3555
3667
|
},
|
|
3556
3668
|
"node_modules/@oclif/table": {
|
|
3557
|
-
"version": "0.1.
|
|
3558
|
-
"resolved": "https://registry.npmjs.org/@oclif/table/-/table-0.1.
|
|
3559
|
-
"integrity": "sha512-
|
|
3669
|
+
"version": "0.1.17",
|
|
3670
|
+
"resolved": "https://registry.npmjs.org/@oclif/table/-/table-0.1.17.tgz",
|
|
3671
|
+
"integrity": "sha512-x7ffsCMeqTM6oECg2cd3MDTGTWx19oOxIMEVOVk0qvsfrQfsecB4m7dQh9W6+VLvGg/bkxJKHB14Ytf8ieiqmw==",
|
|
3560
3672
|
"license": "MIT",
|
|
3561
3673
|
"dependencies": {
|
|
3562
3674
|
"@oclif/core": "^4",
|
|
@@ -4322,12 +4434,13 @@
|
|
|
4322
4434
|
}
|
|
4323
4435
|
},
|
|
4324
4436
|
"node_modules/@salesforce/plugin-data": {
|
|
4325
|
-
"version": "3.
|
|
4326
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.
|
|
4327
|
-
"integrity": "sha512-
|
|
4437
|
+
"version": "3.7.1",
|
|
4438
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.7.1.tgz",
|
|
4439
|
+
"integrity": "sha512-bN/MLhS+kxA6s+xbIKrd314b2BfcMmDMS2M7W5pfOGVOacYEop4lf4Rn6iTv+/kaVQ2I3+mhJKUFxxIPkcAnQg==",
|
|
4328
4440
|
"license": "BSD-3-Clause",
|
|
4329
4441
|
"dependencies": {
|
|
4330
4442
|
"@jsforce/jsforce-node": "^3.5.1",
|
|
4443
|
+
"@oclif/multi-stage-output": "^0.7.5",
|
|
4331
4444
|
"@salesforce/core": "^8.6.1",
|
|
4332
4445
|
"@salesforce/kit": "^3.2.2",
|
|
4333
4446
|
"@salesforce/sf-plugins-core": "^11.3.10",
|
|
@@ -4336,7 +4449,8 @@
|
|
|
4336
4449
|
"change-case": "^5.4.4",
|
|
4337
4450
|
"csv-parse": "^5.5.6",
|
|
4338
4451
|
"csv-stringify": "^6.5.1",
|
|
4339
|
-
"form-data": "^4.0.0"
|
|
4452
|
+
"form-data": "^4.0.0",
|
|
4453
|
+
"terminal-link": "^3.0.0"
|
|
4340
4454
|
},
|
|
4341
4455
|
"engines": {
|
|
4342
4456
|
"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.7.5":
|
|
1584
|
+
version "0.7.5"
|
|
1585
|
+
resolved "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.7.5.tgz"
|
|
1586
|
+
integrity sha512-9DSPryrL6Qx7jWz7BGBdSyokmUUbrp8z3kRZpfIbA0vqZ/zqYDdW2tO2hlplb74Sr8FUiiwE0FcvRTYZWEmb9Q==
|
|
1587
|
+
dependencies:
|
|
1588
|
+
"@oclif/core" "^4"
|
|
1589
|
+
"@types/react" "^18.3.11"
|
|
1590
|
+
cli-spinners "^2"
|
|
1591
|
+
figures "^6.1.0"
|
|
1592
|
+
ink "^5.0.1"
|
|
1593
|
+
react "^18.3.1"
|
|
1594
|
+
wrap-ansi "^9.0.0"
|
|
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.
|
|
1609
|
-
version "4.1.
|
|
1610
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-4.1.
|
|
1611
|
-
integrity sha512-
|
|
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.
|
|
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.
|
|
1662
|
-
version "4.6.
|
|
1663
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.6.
|
|
1664
|
-
integrity sha512-
|
|
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.
|
|
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.
|
|
1706
|
-
version "0.1.
|
|
1707
|
-
resolved "https://registry.npmjs.org/@oclif/table/-/table-0.1.
|
|
1708
|
-
integrity sha512-
|
|
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.
|
|
2058
|
-
version "3.
|
|
2059
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.
|
|
2060
|
-
integrity sha512-
|
|
2070
|
+
"@salesforce/plugin-data@3.7.1":
|
|
2071
|
+
version "3.7.1"
|
|
2072
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.7.1.tgz"
|
|
2073
|
+
integrity sha512-bN/MLhS+kxA6s+xbIKrd314b2BfcMmDMS2M7W5pfOGVOacYEop4lf4Rn6iTv+/kaVQ2I3+mhJKUFxxIPkcAnQg==
|
|
2061
2074
|
dependencies:
|
|
2062
2075
|
"@jsforce/jsforce-node" "^3.5.1"
|
|
2076
|
+
"@oclif/multi-stage-output" "^0.7.5"
|
|
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"
|
|
@@ -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"
|
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.63.0",
|
|
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.
|
|
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.
|
|
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.
|
|
159
|
+
"@salesforce/plugin-data": "3.7.1",
|
|
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",
|