@salesforce/cli 2.35.0 → 2.35.2-qa.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 +65 -60
- package/npm-shrinkwrap.json +266 -173
- package/oclif.manifest.json +1 -1
- package/package.json +5 -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.35.0 linux-x64 node-v20.11.1
|
|
27
|
+
@salesforce/cli/2.35.2-qa.0 linux-x64 node-v20.11.1
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -139,11 +139,11 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
139
139
|
- [`sf plugins`](#sf-plugins)
|
|
140
140
|
- [`sf plugins discover`](#sf-plugins-discover)
|
|
141
141
|
- [`sf plugins:inspect PLUGIN...`](#sf-pluginsinspect-plugin)
|
|
142
|
-
- [`sf plugins
|
|
143
|
-
- [`sf plugins
|
|
142
|
+
- [`sf plugins install PLUGIN`](#sf-plugins-install-plugin)
|
|
143
|
+
- [`sf plugins link PATH`](#sf-plugins-link-path)
|
|
144
144
|
- [`sf plugins reset`](#sf-plugins-reset)
|
|
145
145
|
- [`sf plugins trust verify`](#sf-plugins-trust-verify)
|
|
146
|
-
- [`sf plugins
|
|
146
|
+
- [`sf plugins uninstall [PLUGIN]`](#sf-plugins-uninstall-plugin)
|
|
147
147
|
- [`sf plugins update`](#sf-plugins-update)
|
|
148
148
|
- [`sf project convert mdapi`](#sf-project-convert-mdapi)
|
|
149
149
|
- [`sf project convert source`](#sf-project-convert-source)
|
|
@@ -1114,7 +1114,7 @@ EXAMPLES
|
|
|
1114
1114
|
TracedEntityId=01p17000000R6bLAAS"
|
|
1115
1115
|
```
|
|
1116
1116
|
|
|
1117
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1117
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/create/record.ts)_
|
|
1118
1118
|
|
|
1119
1119
|
## `sf data delete bulk`
|
|
1120
1120
|
|
|
@@ -1159,7 +1159,7 @@ EXAMPLES
|
|
|
1159
1159
|
$ sf data delete bulk --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
1160
1160
|
```
|
|
1161
1161
|
|
|
1162
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1162
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/delete/bulk.ts)_
|
|
1163
1163
|
|
|
1164
1164
|
## `sf data delete record`
|
|
1165
1165
|
|
|
@@ -1218,7 +1218,7 @@ EXAMPLES
|
|
|
1218
1218
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
1219
1219
|
```
|
|
1220
1220
|
|
|
1221
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1221
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/delete/record.ts)_
|
|
1222
1222
|
|
|
1223
1223
|
## `sf data delete resume`
|
|
1224
1224
|
|
|
@@ -1231,7 +1231,7 @@ USAGE
|
|
|
1231
1231
|
|
|
1232
1232
|
FLAGS
|
|
1233
1233
|
-i, --job-id=<value> ID of the job you want to resume.
|
|
1234
|
-
-o, --target-org=<value>
|
|
1234
|
+
-o, --target-org=<value>
|
|
1235
1235
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
1236
1236
|
--use-most-recent Use the ID of the most recently-run bulk job.
|
|
1237
1237
|
--wait=<value> [default: [object Object]] Number of minutes to wait for the command to complete before
|
|
@@ -1255,7 +1255,7 @@ EXAMPLES
|
|
|
1255
1255
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
1256
1256
|
```
|
|
1257
1257
|
|
|
1258
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1258
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/delete/resume.ts)_
|
|
1259
1259
|
|
|
1260
1260
|
## `sf data export beta tree`
|
|
1261
1261
|
|
|
@@ -1311,7 +1311,7 @@ EXAMPLES
|
|
|
1311
1311
|
my-scratch
|
|
1312
1312
|
```
|
|
1313
1313
|
|
|
1314
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1314
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/export/beta/tree.ts)_
|
|
1315
1315
|
|
|
1316
1316
|
## `sf data export tree`
|
|
1317
1317
|
|
|
@@ -1369,7 +1369,7 @@ EXAMPLES
|
|
|
1369
1369
|
my-scratch
|
|
1370
1370
|
```
|
|
1371
1371
|
|
|
1372
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1372
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/export/tree.ts)_
|
|
1373
1373
|
|
|
1374
1374
|
## `sf data get record`
|
|
1375
1375
|
|
|
@@ -1431,7 +1431,7 @@ EXAMPLES
|
|
|
1431
1431
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
1432
1432
|
```
|
|
1433
1433
|
|
|
1434
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1434
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/get/record.ts)_
|
|
1435
1435
|
|
|
1436
1436
|
## `sf data import beta tree`
|
|
1437
1437
|
|
|
@@ -1473,7 +1473,7 @@ EXAMPLES
|
|
|
1473
1473
|
$ sf data import beta tree --plan Account-Contact-plan.json
|
|
1474
1474
|
```
|
|
1475
1475
|
|
|
1476
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1476
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/import/beta/tree.ts)_
|
|
1477
1477
|
|
|
1478
1478
|
## `sf data import tree`
|
|
1479
1479
|
|
|
@@ -1522,7 +1522,7 @@ EXAMPLES
|
|
|
1522
1522
|
$ sf data import tree --plan Account-Contact-plan.json
|
|
1523
1523
|
```
|
|
1524
1524
|
|
|
1525
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1525
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/import/tree.ts)_
|
|
1526
1526
|
|
|
1527
1527
|
## `sf data query`
|
|
1528
1528
|
|
|
@@ -1530,8 +1530,8 @@ Execute a SOQL query.
|
|
|
1530
1530
|
|
|
1531
1531
|
```
|
|
1532
1532
|
USAGE
|
|
1533
|
-
$ sf data query -o <value> [--json] [--api-version <value>] [-q <value>] [-f <value>] [-w <value>
|
|
1534
|
-
[--async ] [--all-rows] [-r human|json
|
|
1533
|
+
$ sf data query -o <value> [--json] [--api-version <value>] [-q <value>] [-f <value>] [-t | -b] [-w <value> ]
|
|
1534
|
+
[--async ] [--all-rows] [-r human|csv|json]
|
|
1535
1535
|
|
|
1536
1536
|
FLAGS
|
|
1537
1537
|
-b, --bulk Use Bulk API 2.0 to run the query.
|
|
@@ -1540,7 +1540,7 @@ FLAGS
|
|
|
1540
1540
|
configuration variable is already set.
|
|
1541
1541
|
-q, --query=<value> SOQL query to execute.
|
|
1542
1542
|
-r, --result-format=<option> [default: human] Format to display the results; the --json flag overrides this flag.
|
|
1543
|
-
<options: human|json
|
|
1543
|
+
<options: human|csv|json>
|
|
1544
1544
|
-t, --use-tooling-api Use Tooling API so you can run queries on Tooling API objects.
|
|
1545
1545
|
-w, --wait=<value> Time to wait for the command to finish, in minutes.
|
|
1546
1546
|
--all-rows Include deleted records. By default, deleted records are not returned.
|
|
@@ -1585,7 +1585,7 @@ EXAMPLES
|
|
|
1585
1585
|
$ sf data query --query "SELECT Id FROM Contact" --bulk --wait 0
|
|
1586
1586
|
```
|
|
1587
1587
|
|
|
1588
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1588
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/query.ts)_
|
|
1589
1589
|
|
|
1590
1590
|
## `sf data query resume`
|
|
1591
1591
|
|
|
@@ -1593,14 +1593,14 @@ View the status of a bulk query.
|
|
|
1593
1593
|
|
|
1594
1594
|
```
|
|
1595
1595
|
USAGE
|
|
1596
|
-
$ sf data query resume [--json] [-o <value>] [--api-version <value>] [-r human|json
|
|
1597
|
-
|
|
1596
|
+
$ sf data query resume [--json] [-o <value>] [--api-version <value>] [-r human|csv|json] [-i <value>]
|
|
1597
|
+
[--use-most-recent]
|
|
1598
1598
|
|
|
1599
1599
|
FLAGS
|
|
1600
1600
|
-i, --bulk-query-id=<value> Job ID of the bulk query.
|
|
1601
|
-
-o, --target-org=<value>
|
|
1601
|
+
-o, --target-org=<value>
|
|
1602
1602
|
-r, --result-format=<option> [default: human] Format to display the results; the --json flag overrides this flag.
|
|
1603
|
-
<options: human|json
|
|
1603
|
+
<options: human|csv|json>
|
|
1604
1604
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
1605
1605
|
--use-most-recent Use the most recent bulk query ID from cache.
|
|
1606
1606
|
|
|
@@ -1621,7 +1621,7 @@ EXAMPLES
|
|
|
1621
1621
|
$ sf data query resume --bulk-query-id 7500x000005BdFzXXX
|
|
1622
1622
|
```
|
|
1623
1623
|
|
|
1624
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1624
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/query/resume.ts)_
|
|
1625
1625
|
|
|
1626
1626
|
## `sf data resume`
|
|
1627
1627
|
|
|
@@ -1657,7 +1657,7 @@ EXAMPLES
|
|
|
1657
1657
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
1658
1658
|
```
|
|
1659
1659
|
|
|
1660
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1660
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/resume.ts)_
|
|
1661
1661
|
|
|
1662
1662
|
## `sf data update record`
|
|
1663
1663
|
|
|
@@ -1718,7 +1718,7 @@ EXAMPLES
|
|
|
1718
1718
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
1719
1719
|
```
|
|
1720
1720
|
|
|
1721
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1721
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/update/record.ts)_
|
|
1722
1722
|
|
|
1723
1723
|
## `sf data upsert bulk`
|
|
1724
1724
|
|
|
@@ -1770,7 +1770,7 @@ EXAMPLES
|
|
|
1770
1770
|
my-scratch
|
|
1771
1771
|
```
|
|
1772
1772
|
|
|
1773
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1773
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/upsert/bulk.ts)_
|
|
1774
1774
|
|
|
1775
1775
|
## `sf data upsert resume`
|
|
1776
1776
|
|
|
@@ -1783,7 +1783,7 @@ USAGE
|
|
|
1783
1783
|
|
|
1784
1784
|
FLAGS
|
|
1785
1785
|
-i, --job-id=<value> ID of the job you want to resume.
|
|
1786
|
-
-o, --target-org=<value>
|
|
1786
|
+
-o, --target-org=<value>
|
|
1787
1787
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
1788
1788
|
--use-most-recent Use the ID of the most recently-run bulk job.
|
|
1789
1789
|
--wait=<value> [default: [object Object]] Number of minutes to wait for the command to complete before
|
|
@@ -1807,7 +1807,7 @@ EXAMPLES
|
|
|
1807
1807
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
1808
1808
|
```
|
|
1809
1809
|
|
|
1810
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1810
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/data/upsert/resume.ts)_
|
|
1811
1811
|
|
|
1812
1812
|
## `sf doctor`
|
|
1813
1813
|
|
|
@@ -1899,7 +1899,7 @@ EXAMPLES
|
|
|
1899
1899
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
1900
1900
|
```
|
|
1901
1901
|
|
|
1902
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1902
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/force/data/bulk/delete.ts)_
|
|
1903
1903
|
|
|
1904
1904
|
## `sf force data bulk status`
|
|
1905
1905
|
|
|
@@ -1935,7 +1935,7 @@ EXAMPLES
|
|
|
1935
1935
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
1936
1936
|
```
|
|
1937
1937
|
|
|
1938
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1938
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/force/data/bulk/status.ts)_
|
|
1939
1939
|
|
|
1940
1940
|
## `sf force data bulk upsert`
|
|
1941
1941
|
|
|
@@ -1992,7 +1992,7 @@ EXAMPLES
|
|
|
1992
1992
|
--target-org my-scratch
|
|
1993
1993
|
```
|
|
1994
1994
|
|
|
1995
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.
|
|
1995
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/3.2.0/src/commands/force/data/bulk/upsert.ts)_
|
|
1996
1996
|
|
|
1997
1997
|
## `sf help [COMMAND]`
|
|
1998
1998
|
|
|
@@ -5275,7 +5275,7 @@ EXAMPLES
|
|
|
5275
5275
|
$ sf plugins
|
|
5276
5276
|
```
|
|
5277
5277
|
|
|
5278
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5278
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/index.ts)_
|
|
5279
5279
|
|
|
5280
5280
|
## `sf plugins discover`
|
|
5281
5281
|
|
|
@@ -5316,62 +5316,67 @@ DESCRIPTION
|
|
|
5316
5316
|
Displays installation properties of a plugin.
|
|
5317
5317
|
|
|
5318
5318
|
EXAMPLES
|
|
5319
|
-
$ sf plugins inspect
|
|
5319
|
+
$ sf plugins inspect @salesforce/plugin-packaging
|
|
5320
5320
|
```
|
|
5321
5321
|
|
|
5322
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5322
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/inspect.ts)_
|
|
5323
5323
|
|
|
5324
|
-
## `sf plugins
|
|
5324
|
+
## `sf plugins install PLUGIN`
|
|
5325
5325
|
|
|
5326
|
-
Installs a plugin into
|
|
5326
|
+
Installs a plugin into sf.
|
|
5327
5327
|
|
|
5328
5328
|
```
|
|
5329
5329
|
USAGE
|
|
5330
|
-
$ sf plugins install PLUGIN...
|
|
5330
|
+
$ sf plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
|
|
5331
5331
|
|
|
5332
5332
|
ARGUMENTS
|
|
5333
5333
|
PLUGIN... Plugin to install.
|
|
5334
5334
|
|
|
5335
5335
|
FLAGS
|
|
5336
|
-
-f, --force
|
|
5336
|
+
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
|
|
5337
5337
|
-h, --help Show CLI help.
|
|
5338
|
-
-s, --silent Silences
|
|
5339
|
-
-v, --verbose Show verbose
|
|
5338
|
+
-s, --silent Silences npm output.
|
|
5339
|
+
-v, --verbose Show verbose npm output.
|
|
5340
5340
|
|
|
5341
5341
|
GLOBAL FLAGS
|
|
5342
5342
|
--json Format output as json.
|
|
5343
5343
|
|
|
5344
5344
|
DESCRIPTION
|
|
5345
|
-
Installs a plugin into
|
|
5346
|
-
Can be installed from npm or a git url.
|
|
5345
|
+
Installs a plugin into sf.
|
|
5347
5346
|
|
|
5348
|
-
|
|
5347
|
+
Uses bundled npm executable to install plugins into /home/runner/.local/share/sf
|
|
5349
5348
|
|
|
5350
|
-
|
|
5351
|
-
will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
|
|
5352
|
-
the CLI without the need to patch and update the whole CLI.
|
|
5349
|
+
Installation of a user-installed plugin will override a core plugin.
|
|
5353
5350
|
|
|
5351
|
+
Use the SF_NPM_LOG_LEVEL environment variable to set the npm loglevel.
|
|
5352
|
+
Use the SF_NPM_REGISTRY environment variable to set the npm registry.
|
|
5354
5353
|
|
|
5355
5354
|
ALIASES
|
|
5356
5355
|
$ sf plugins add
|
|
5357
5356
|
|
|
5358
5357
|
EXAMPLES
|
|
5359
|
-
|
|
5358
|
+
Install a plugin from npm registry.
|
|
5359
|
+
|
|
5360
|
+
$ sf plugins install @salesforce/plugin-packaging
|
|
5361
|
+
|
|
5362
|
+
Install a plugin from a github url.
|
|
5363
|
+
|
|
5364
|
+
$ sf plugins install https://github.com/someuser/someplugin
|
|
5360
5365
|
|
|
5361
|
-
|
|
5366
|
+
Install a plugin from a github slug.
|
|
5362
5367
|
|
|
5363
|
-
|
|
5368
|
+
$ sf plugins install someuser/someplugin
|
|
5364
5369
|
```
|
|
5365
5370
|
|
|
5366
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5371
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/install.ts)_
|
|
5367
5372
|
|
|
5368
|
-
## `sf plugins
|
|
5373
|
+
## `sf plugins link PATH`
|
|
5369
5374
|
|
|
5370
5375
|
Links a plugin into the CLI for development.
|
|
5371
5376
|
|
|
5372
5377
|
```
|
|
5373
5378
|
USAGE
|
|
5374
|
-
$ sf plugins link
|
|
5379
|
+
$ sf plugins link PATH [-h] [--install] [-v]
|
|
5375
5380
|
|
|
5376
5381
|
ARGUMENTS
|
|
5377
5382
|
PATH [default: .] path to plugin
|
|
@@ -5390,10 +5395,10 @@ DESCRIPTION
|
|
|
5390
5395
|
|
|
5391
5396
|
|
|
5392
5397
|
EXAMPLES
|
|
5393
|
-
$ sf plugins link
|
|
5398
|
+
$ sf plugins link @salesforce/plugin-packaging
|
|
5394
5399
|
```
|
|
5395
5400
|
|
|
5396
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5401
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/link.ts)_
|
|
5397
5402
|
|
|
5398
5403
|
## `sf plugins reset`
|
|
5399
5404
|
|
|
@@ -5408,7 +5413,7 @@ FLAGS
|
|
|
5408
5413
|
--reinstall Reinstall all plugins after uninstalling.
|
|
5409
5414
|
```
|
|
5410
5415
|
|
|
5411
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5416
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/reset.ts)_
|
|
5412
5417
|
|
|
5413
5418
|
## `sf plugins trust verify`
|
|
5414
5419
|
|
|
@@ -5438,13 +5443,13 @@ EXAMPLES
|
|
|
5438
5443
|
|
|
5439
5444
|
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.3.17/src/commands/plugins/trust/verify.ts)_
|
|
5440
5445
|
|
|
5441
|
-
## `sf plugins
|
|
5446
|
+
## `sf plugins uninstall [PLUGIN]`
|
|
5442
5447
|
|
|
5443
5448
|
Removes a plugin from the CLI.
|
|
5444
5449
|
|
|
5445
5450
|
```
|
|
5446
5451
|
USAGE
|
|
5447
|
-
$ sf plugins uninstall PLUGIN...
|
|
5452
|
+
$ sf plugins uninstall [PLUGIN...] [-h] [-v]
|
|
5448
5453
|
|
|
5449
5454
|
ARGUMENTS
|
|
5450
5455
|
PLUGIN... plugin to uninstall
|
|
@@ -5461,10 +5466,10 @@ ALIASES
|
|
|
5461
5466
|
$ sf plugins remove
|
|
5462
5467
|
|
|
5463
5468
|
EXAMPLES
|
|
5464
|
-
$ sf plugins uninstall
|
|
5469
|
+
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
5465
5470
|
```
|
|
5466
5471
|
|
|
5467
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5472
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/uninstall.ts)_
|
|
5468
5473
|
|
|
5469
5474
|
## `sf plugins update`
|
|
5470
5475
|
|
|
@@ -5482,7 +5487,7 @@ DESCRIPTION
|
|
|
5482
5487
|
Update installed plugins.
|
|
5483
5488
|
```
|
|
5484
5489
|
|
|
5485
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5490
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.5/src/commands/plugins/update.ts)_
|
|
5486
5491
|
|
|
5487
5492
|
## `sf project convert mdapi`
|
|
5488
5493
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.35.0",
|
|
3
|
+
"version": "2.35.2-qa.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.35.0",
|
|
9
|
+
"version": "2.35.2-qa.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"@oclif/plugin-autocomplete": "3.0.13",
|
|
16
16
|
"@oclif/plugin-commands": "3.2.0",
|
|
17
17
|
"@oclif/plugin-help": "6.0.18",
|
|
18
|
-
"@oclif/plugin-not-found": "3.0
|
|
19
|
-
"@oclif/plugin-plugins": "
|
|
18
|
+
"@oclif/plugin-not-found": "3.1.0",
|
|
19
|
+
"@oclif/plugin-plugins": "beta",
|
|
20
20
|
"@oclif/plugin-search": "1.0.20",
|
|
21
21
|
"@oclif/plugin-update": "4.2.0",
|
|
22
22
|
"@oclif/plugin-version": "2.0.14",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@salesforce/core": "^6.1.4",
|
|
26
26
|
"@salesforce/plugin-apex": "3.0.31",
|
|
27
27
|
"@salesforce/plugin-auth": "3.3.26",
|
|
28
|
-
"@salesforce/plugin-data": "3.
|
|
28
|
+
"@salesforce/plugin-data": "3.2.0",
|
|
29
29
|
"@salesforce/plugin-deploy-retrieve": "3.2.35",
|
|
30
30
|
"@salesforce/plugin-info": "3.0.33",
|
|
31
31
|
"@salesforce/plugin-limits": "3.1.14",
|
|
@@ -2037,6 +2037,34 @@
|
|
|
2037
2037
|
"node": ">=v14"
|
|
2038
2038
|
}
|
|
2039
2039
|
},
|
|
2040
|
+
"node_modules/@commitlint/read/node_modules/fs-extra": {
|
|
2041
|
+
"version": "11.2.0",
|
|
2042
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz",
|
|
2043
|
+
"integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==",
|
|
2044
|
+
"dev": true,
|
|
2045
|
+
"license": "MIT",
|
|
2046
|
+
"dependencies": {
|
|
2047
|
+
"graceful-fs": "^4.2.0",
|
|
2048
|
+
"jsonfile": "^6.0.1",
|
|
2049
|
+
"universalify": "^2.0.0"
|
|
2050
|
+
},
|
|
2051
|
+
"engines": {
|
|
2052
|
+
"node": ">=14.14"
|
|
2053
|
+
}
|
|
2054
|
+
},
|
|
2055
|
+
"node_modules/@commitlint/read/node_modules/jsonfile": {
|
|
2056
|
+
"version": "6.1.0",
|
|
2057
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
|
|
2058
|
+
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
|
|
2059
|
+
"dev": true,
|
|
2060
|
+
"license": "MIT",
|
|
2061
|
+
"dependencies": {
|
|
2062
|
+
"universalify": "^2.0.0"
|
|
2063
|
+
},
|
|
2064
|
+
"optionalDependencies": {
|
|
2065
|
+
"graceful-fs": "^4.1.6"
|
|
2066
|
+
}
|
|
2067
|
+
},
|
|
2040
2068
|
"node_modules/@commitlint/resolve-extends": {
|
|
2041
2069
|
"version": "17.4.4",
|
|
2042
2070
|
"resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.4.4.tgz",
|
|
@@ -2786,6 +2814,58 @@
|
|
|
2786
2814
|
"dev": true,
|
|
2787
2815
|
"license": "MIT"
|
|
2788
2816
|
},
|
|
2817
|
+
"node_modules/@jsforce/jsforce-node": {
|
|
2818
|
+
"version": "3.0.0-next.2",
|
|
2819
|
+
"resolved": "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.0.0-next.2.tgz",
|
|
2820
|
+
"integrity": "sha512-tsvCTEB8Hfr1ZFC6Db9rIovNmUtO+xN2R3BRLUjyH34i5y5emwrVsLBL5JzSRAXgsTLjp8I/BqJuG4f+6wM/uw==",
|
|
2821
|
+
"license": "MIT",
|
|
2822
|
+
"dependencies": {
|
|
2823
|
+
"@sindresorhus/is": "^4",
|
|
2824
|
+
"@types/node": "^18.15.3",
|
|
2825
|
+
"abort-controller": "^3.0.0",
|
|
2826
|
+
"base64url": "^3.0.1",
|
|
2827
|
+
"csv-parse": "^5.5.2",
|
|
2828
|
+
"csv-stringify": "^6.4.4",
|
|
2829
|
+
"faye": "^1.4.0",
|
|
2830
|
+
"form-data": "^4.0.0",
|
|
2831
|
+
"fs-extra": "^8.1.0",
|
|
2832
|
+
"https-proxy-agent": "^5.0.0",
|
|
2833
|
+
"multistream": "^3.1.0",
|
|
2834
|
+
"node-fetch": "^2.6.1",
|
|
2835
|
+
"strip-ansi": "^6.0.0",
|
|
2836
|
+
"xml2js": "^0.6.2"
|
|
2837
|
+
},
|
|
2838
|
+
"engines": {
|
|
2839
|
+
"node": ">=18"
|
|
2840
|
+
}
|
|
2841
|
+
},
|
|
2842
|
+
"node_modules/@jsforce/jsforce-node/node_modules/@types/node": {
|
|
2843
|
+
"version": "18.19.26",
|
|
2844
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.26.tgz",
|
|
2845
|
+
"integrity": "sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==",
|
|
2846
|
+
"license": "MIT",
|
|
2847
|
+
"dependencies": {
|
|
2848
|
+
"undici-types": "~5.26.4"
|
|
2849
|
+
}
|
|
2850
|
+
},
|
|
2851
|
+
"node_modules/@jsforce/jsforce-node/node_modules/csv-parse": {
|
|
2852
|
+
"version": "5.5.5",
|
|
2853
|
+
"resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.5.tgz",
|
|
2854
|
+
"integrity": "sha512-erCk7tyU3yLWAhk6wvKxnyPtftuy/6Ak622gOO7BCJ05+TYffnPCJF905wmOQm+BpkX54OdAl8pveJwUdpnCXQ==",
|
|
2855
|
+
"license": "MIT"
|
|
2856
|
+
},
|
|
2857
|
+
"node_modules/@jsforce/jsforce-node/node_modules/strip-ansi": {
|
|
2858
|
+
"version": "6.0.1",
|
|
2859
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
2860
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
2861
|
+
"license": "MIT",
|
|
2862
|
+
"dependencies": {
|
|
2863
|
+
"ansi-regex": "^5.0.1"
|
|
2864
|
+
},
|
|
2865
|
+
"engines": {
|
|
2866
|
+
"node": ">=8"
|
|
2867
|
+
}
|
|
2868
|
+
},
|
|
2789
2869
|
"node_modules/@ljharb/through": {
|
|
2790
2870
|
"version": "2.3.12",
|
|
2791
2871
|
"resolved": "https://registry.npmjs.org/@ljharb/through/-/through-2.3.12.tgz",
|
|
@@ -3522,11 +3602,12 @@
|
|
|
3522
3602
|
}
|
|
3523
3603
|
},
|
|
3524
3604
|
"node_modules/@oclif/plugin-not-found": {
|
|
3525
|
-
"version": "3.0
|
|
3526
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.0.
|
|
3527
|
-
"integrity": "sha512-
|
|
3605
|
+
"version": "3.1.0",
|
|
3606
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.1.0.tgz",
|
|
3607
|
+
"integrity": "sha512-sWTSHj1jf8w2kQtOEZpuUjy5zRcLPxuvkKQQniaGKg7JMgCADo1bRoiXdFVPth7f+AdhSNRPYhYCbqtydWjI8A==",
|
|
3528
3608
|
"license": "MIT",
|
|
3529
3609
|
"dependencies": {
|
|
3610
|
+
"@inquirer/confirm": "^3.0.0",
|
|
3530
3611
|
"@oclif/core": "^3.21.0",
|
|
3531
3612
|
"chalk": "^5.3.0",
|
|
3532
3613
|
"fast-levenshtein": "^3.0.0"
|
|
@@ -3535,21 +3616,96 @@
|
|
|
3535
3616
|
"node": ">=18.0.0"
|
|
3536
3617
|
}
|
|
3537
3618
|
},
|
|
3619
|
+
"node_modules/@oclif/plugin-not-found/node_modules/@inquirer/confirm": {
|
|
3620
|
+
"version": "3.1.0",
|
|
3621
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.1.0.tgz",
|
|
3622
|
+
"integrity": "sha512-nH5mxoTEoqk6WpoBz80GMpDSm9jH5V9AF8n+JZAZfMzd9gHeEG9w1o3KawPRR72lfzpP+QxBHLkOKLEApwhDiQ==",
|
|
3623
|
+
"license": "MIT",
|
|
3624
|
+
"dependencies": {
|
|
3625
|
+
"@inquirer/core": "^7.1.0",
|
|
3626
|
+
"@inquirer/type": "^1.2.1"
|
|
3627
|
+
},
|
|
3628
|
+
"engines": {
|
|
3629
|
+
"node": ">=18"
|
|
3630
|
+
}
|
|
3631
|
+
},
|
|
3632
|
+
"node_modules/@oclif/plugin-not-found/node_modules/@inquirer/core": {
|
|
3633
|
+
"version": "7.1.0",
|
|
3634
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-7.1.0.tgz",
|
|
3635
|
+
"integrity": "sha512-FRCiDiU54XHt5B/D8hX4twwZuzSP244ANHbu3R7CAsJfiv1dUOz24ePBgCZjygEjDUi6BWIJuk4eWLKJ7LATUw==",
|
|
3636
|
+
"license": "MIT",
|
|
3637
|
+
"dependencies": {
|
|
3638
|
+
"@inquirer/type": "^1.2.1",
|
|
3639
|
+
"@types/mute-stream": "^0.0.4",
|
|
3640
|
+
"@types/node": "^20.11.26",
|
|
3641
|
+
"@types/wrap-ansi": "^3.0.0",
|
|
3642
|
+
"ansi-escapes": "^4.3.2",
|
|
3643
|
+
"chalk": "^4.1.2",
|
|
3644
|
+
"cli-spinners": "^2.9.2",
|
|
3645
|
+
"cli-width": "^4.1.0",
|
|
3646
|
+
"figures": "^3.2.0",
|
|
3647
|
+
"mute-stream": "^1.0.0",
|
|
3648
|
+
"run-async": "^3.0.0",
|
|
3649
|
+
"signal-exit": "^4.1.0",
|
|
3650
|
+
"strip-ansi": "^6.0.1",
|
|
3651
|
+
"wrap-ansi": "^6.2.0"
|
|
3652
|
+
},
|
|
3653
|
+
"engines": {
|
|
3654
|
+
"node": ">=18"
|
|
3655
|
+
}
|
|
3656
|
+
},
|
|
3657
|
+
"node_modules/@oclif/plugin-not-found/node_modules/@inquirer/core/node_modules/chalk": {
|
|
3658
|
+
"version": "4.1.2",
|
|
3659
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
3660
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
3661
|
+
"license": "MIT",
|
|
3662
|
+
"dependencies": {
|
|
3663
|
+
"ansi-styles": "^4.1.0",
|
|
3664
|
+
"supports-color": "^7.1.0"
|
|
3665
|
+
},
|
|
3666
|
+
"engines": {
|
|
3667
|
+
"node": ">=10"
|
|
3668
|
+
},
|
|
3669
|
+
"funding": {
|
|
3670
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
3671
|
+
}
|
|
3672
|
+
},
|
|
3673
|
+
"node_modules/@oclif/plugin-not-found/node_modules/signal-exit": {
|
|
3674
|
+
"version": "4.1.0",
|
|
3675
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
3676
|
+
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
3677
|
+
"license": "ISC",
|
|
3678
|
+
"engines": {
|
|
3679
|
+
"node": ">=14"
|
|
3680
|
+
},
|
|
3681
|
+
"funding": {
|
|
3682
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
3683
|
+
}
|
|
3684
|
+
},
|
|
3685
|
+
"node_modules/@oclif/plugin-not-found/node_modules/strip-ansi": {
|
|
3686
|
+
"version": "6.0.1",
|
|
3687
|
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
3688
|
+
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
3689
|
+
"license": "MIT",
|
|
3690
|
+
"dependencies": {
|
|
3691
|
+
"ansi-regex": "^5.0.1"
|
|
3692
|
+
},
|
|
3693
|
+
"engines": {
|
|
3694
|
+
"node": ">=8"
|
|
3695
|
+
}
|
|
3696
|
+
},
|
|
3538
3697
|
"node_modules/@oclif/plugin-plugins": {
|
|
3539
|
-
"version": "
|
|
3540
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-4.3.8.tgz",
|
|
3541
|
-
"integrity": "sha512-QU0a4VFmA+Wb/kIUsBKw14KMbH4bHdz5ejwvqql89DumtsUzPOekSHgEzODC2ESZnDWx+h5pD9NPg4lAMPMbxQ==",
|
|
3698
|
+
"version": "5.0.0-beta.5",
|
|
3542
3699
|
"license": "MIT",
|
|
3543
3700
|
"dependencies": {
|
|
3544
3701
|
"@oclif/core": "^3.25.2",
|
|
3545
3702
|
"chalk": "^5.3.0",
|
|
3546
3703
|
"debug": "^4.3.4",
|
|
3547
3704
|
"npm": "10.2.4",
|
|
3548
|
-
"npm-
|
|
3705
|
+
"npm-package-arg": "^11.0.1",
|
|
3706
|
+
"npm-run-path": "^5.2.0",
|
|
3549
3707
|
"semver": "^7.6.0",
|
|
3550
|
-
"
|
|
3551
|
-
"validate-npm-package-name": "^5.0.0",
|
|
3552
|
-
"yarn": "^1.22.21"
|
|
3708
|
+
"validate-npm-package-name": "^5.0.0"
|
|
3553
3709
|
},
|
|
3554
3710
|
"engines": {
|
|
3555
3711
|
"node": ">=18.0.0"
|
|
@@ -3760,6 +3916,21 @@
|
|
|
3760
3916
|
"node": "^18.17.0 || >=20.5.0"
|
|
3761
3917
|
}
|
|
3762
3918
|
},
|
|
3919
|
+
"node_modules/@oclif/plugin-plugins/node_modules/npm-run-path": {
|
|
3920
|
+
"version": "5.3.0",
|
|
3921
|
+
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
|
|
3922
|
+
"integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
|
|
3923
|
+
"license": "MIT",
|
|
3924
|
+
"dependencies": {
|
|
3925
|
+
"path-key": "^4.0.0"
|
|
3926
|
+
},
|
|
3927
|
+
"engines": {
|
|
3928
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
3929
|
+
},
|
|
3930
|
+
"funding": {
|
|
3931
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3932
|
+
}
|
|
3933
|
+
},
|
|
3763
3934
|
"node_modules/@oclif/plugin-plugins/node_modules/npm/node_modules/@colors/colors": {
|
|
3764
3935
|
"version": "1.5.0",
|
|
3765
3936
|
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
|
@@ -6733,6 +6904,18 @@
|
|
|
6733
6904
|
"inBundle": true,
|
|
6734
6905
|
"license": "ISC"
|
|
6735
6906
|
},
|
|
6907
|
+
"node_modules/@oclif/plugin-plugins/node_modules/path-key": {
|
|
6908
|
+
"version": "4.0.0",
|
|
6909
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
|
|
6910
|
+
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
|
|
6911
|
+
"license": "MIT",
|
|
6912
|
+
"engines": {
|
|
6913
|
+
"node": ">=12"
|
|
6914
|
+
},
|
|
6915
|
+
"funding": {
|
|
6916
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
6917
|
+
}
|
|
6918
|
+
},
|
|
6736
6919
|
"node_modules/@oclif/plugin-plugins/node_modules/supports-color": {
|
|
6737
6920
|
"version": "9.4.0",
|
|
6738
6921
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
|
|
@@ -7254,9 +7437,9 @@
|
|
|
7254
7437
|
}
|
|
7255
7438
|
},
|
|
7256
7439
|
"node_modules/@salesforce/dev-scripts/node_modules/@types/node": {
|
|
7257
|
-
"version": "18.19.
|
|
7258
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.
|
|
7259
|
-
"integrity": "sha512
|
|
7440
|
+
"version": "18.19.26",
|
|
7441
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.26.tgz",
|
|
7442
|
+
"integrity": "sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==",
|
|
7260
7443
|
"dev": true,
|
|
7261
7444
|
"license": "MIT",
|
|
7262
7445
|
"dependencies": {
|
|
@@ -7488,11 +7671,12 @@
|
|
|
7488
7671
|
}
|
|
7489
7672
|
},
|
|
7490
7673
|
"node_modules/@salesforce/plugin-data": {
|
|
7491
|
-
"version": "3.
|
|
7492
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.
|
|
7493
|
-
"integrity": "sha512-
|
|
7674
|
+
"version": "3.2.0",
|
|
7675
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-3.2.0.tgz",
|
|
7676
|
+
"integrity": "sha512-UwB592qsVjwDv3WFOLp3oXqGzFWdSZu/FwQGO+sudwo9f8myYlPv/WvKYdAmvHWuQTmFPhApKif4HieaguktDA==",
|
|
7494
7677
|
"license": "BSD-3-Clause",
|
|
7495
7678
|
"dependencies": {
|
|
7679
|
+
"@jsforce/jsforce-node": "^3.0.0-next.2",
|
|
7496
7680
|
"@oclif/core": "^3.23.0",
|
|
7497
7681
|
"@salesforce/core": "^6.7.1",
|
|
7498
7682
|
"@salesforce/kit": "^3.0.15",
|
|
@@ -7501,8 +7685,7 @@
|
|
|
7501
7685
|
"chalk": "^5.3.0",
|
|
7502
7686
|
"change-case": "^5.4.3",
|
|
7503
7687
|
"csv-parse": "^4.16.3",
|
|
7504
|
-
"csv-stringify": "^6.4.6"
|
|
7505
|
-
"jsforce": "^2.0.0-beta.29"
|
|
7688
|
+
"csv-stringify": "^6.4.6"
|
|
7506
7689
|
},
|
|
7507
7690
|
"engines": {
|
|
7508
7691
|
"node": ">=18.0.0"
|
|
@@ -8150,18 +8333,6 @@
|
|
|
8150
8333
|
"node": ">=18.0.0"
|
|
8151
8334
|
}
|
|
8152
8335
|
},
|
|
8153
|
-
"node_modules/@salesforce/source-deploy-retrieve/node_modules/@sindresorhus/is": {
|
|
8154
|
-
"version": "4.6.0",
|
|
8155
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
|
|
8156
|
-
"integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
|
|
8157
|
-
"license": "MIT",
|
|
8158
|
-
"engines": {
|
|
8159
|
-
"node": ">=10"
|
|
8160
|
-
},
|
|
8161
|
-
"funding": {
|
|
8162
|
-
"url": "https://github.com/sindresorhus/is?sponsor=1"
|
|
8163
|
-
}
|
|
8164
|
-
},
|
|
8165
8336
|
"node_modules/@salesforce/source-deploy-retrieve/node_modules/@szmarczak/http-timer": {
|
|
8166
8337
|
"version": "4.0.6",
|
|
8167
8338
|
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz",
|
|
@@ -8332,18 +8503,6 @@
|
|
|
8332
8503
|
"node": ">=18.0.0"
|
|
8333
8504
|
}
|
|
8334
8505
|
},
|
|
8335
|
-
"node_modules/@salesforce/telemetry/node_modules/@sindresorhus/is": {
|
|
8336
|
-
"version": "4.6.0",
|
|
8337
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
|
|
8338
|
-
"integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
|
|
8339
|
-
"license": "MIT",
|
|
8340
|
-
"engines": {
|
|
8341
|
-
"node": ">=10"
|
|
8342
|
-
},
|
|
8343
|
-
"funding": {
|
|
8344
|
-
"url": "https://github.com/sindresorhus/is?sponsor=1"
|
|
8345
|
-
}
|
|
8346
|
-
},
|
|
8347
8506
|
"node_modules/@salesforce/telemetry/node_modules/@szmarczak/http-timer": {
|
|
8348
8507
|
"version": "4.0.6",
|
|
8349
8508
|
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz",
|
|
@@ -8476,18 +8635,6 @@
|
|
|
8476
8635
|
"node": ">=18.18.2"
|
|
8477
8636
|
}
|
|
8478
8637
|
},
|
|
8479
|
-
"node_modules/@salesforce/templates/node_modules/@sindresorhus/is": {
|
|
8480
|
-
"version": "4.6.0",
|
|
8481
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
|
|
8482
|
-
"integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
|
|
8483
|
-
"license": "MIT",
|
|
8484
|
-
"engines": {
|
|
8485
|
-
"node": ">=10"
|
|
8486
|
-
},
|
|
8487
|
-
"funding": {
|
|
8488
|
-
"url": "https://github.com/sindresorhus/is?sponsor=1"
|
|
8489
|
-
}
|
|
8490
|
-
},
|
|
8491
8638
|
"node_modules/@salesforce/templates/node_modules/@szmarczak/http-timer": {
|
|
8492
8639
|
"version": "4.0.6",
|
|
8493
8640
|
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz",
|
|
@@ -8753,12 +8900,12 @@
|
|
|
8753
8900
|
}
|
|
8754
8901
|
},
|
|
8755
8902
|
"node_modules/@sindresorhus/is": {
|
|
8756
|
-
"version": "
|
|
8757
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-
|
|
8758
|
-
"integrity": "sha512-
|
|
8903
|
+
"version": "4.6.0",
|
|
8904
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
|
|
8905
|
+
"integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
|
|
8759
8906
|
"license": "MIT",
|
|
8760
8907
|
"engines": {
|
|
8761
|
-
"node": ">=
|
|
8908
|
+
"node": ">=10"
|
|
8762
8909
|
},
|
|
8763
8910
|
"funding": {
|
|
8764
8911
|
"url": "https://github.com/sindresorhus/is?sponsor=1"
|
|
@@ -14454,17 +14601,26 @@
|
|
|
14454
14601
|
"license": "MIT"
|
|
14455
14602
|
},
|
|
14456
14603
|
"node_modules/fs-extra": {
|
|
14457
|
-
"version": "
|
|
14458
|
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-
|
|
14459
|
-
"integrity": "sha512-
|
|
14604
|
+
"version": "8.1.0",
|
|
14605
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
|
|
14606
|
+
"integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
|
|
14460
14607
|
"license": "MIT",
|
|
14461
14608
|
"dependencies": {
|
|
14462
14609
|
"graceful-fs": "^4.2.0",
|
|
14463
|
-
"jsonfile": "^
|
|
14464
|
-
"universalify": "^
|
|
14610
|
+
"jsonfile": "^4.0.0",
|
|
14611
|
+
"universalify": "^0.1.0"
|
|
14465
14612
|
},
|
|
14466
14613
|
"engines": {
|
|
14467
|
-
"node": ">=
|
|
14614
|
+
"node": ">=6 <7 || >=8"
|
|
14615
|
+
}
|
|
14616
|
+
},
|
|
14617
|
+
"node_modules/fs-extra/node_modules/universalify": {
|
|
14618
|
+
"version": "0.1.2",
|
|
14619
|
+
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
|
|
14620
|
+
"integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
|
|
14621
|
+
"license": "MIT",
|
|
14622
|
+
"engines": {
|
|
14623
|
+
"node": ">= 4.0.0"
|
|
14468
14624
|
}
|
|
14469
14625
|
},
|
|
14470
14626
|
"node_modules/fs-minipass": {
|
|
@@ -14812,6 +14968,32 @@
|
|
|
14812
14968
|
"node": ">= 14"
|
|
14813
14969
|
}
|
|
14814
14970
|
},
|
|
14971
|
+
"node_modules/get-uri/node_modules/fs-extra": {
|
|
14972
|
+
"version": "11.2.0",
|
|
14973
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz",
|
|
14974
|
+
"integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==",
|
|
14975
|
+
"license": "MIT",
|
|
14976
|
+
"dependencies": {
|
|
14977
|
+
"graceful-fs": "^4.2.0",
|
|
14978
|
+
"jsonfile": "^6.0.1",
|
|
14979
|
+
"universalify": "^2.0.0"
|
|
14980
|
+
},
|
|
14981
|
+
"engines": {
|
|
14982
|
+
"node": ">=14.14"
|
|
14983
|
+
}
|
|
14984
|
+
},
|
|
14985
|
+
"node_modules/get-uri/node_modules/jsonfile": {
|
|
14986
|
+
"version": "6.1.0",
|
|
14987
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
|
|
14988
|
+
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
|
|
14989
|
+
"license": "MIT",
|
|
14990
|
+
"dependencies": {
|
|
14991
|
+
"universalify": "^2.0.0"
|
|
14992
|
+
},
|
|
14993
|
+
"optionalDependencies": {
|
|
14994
|
+
"graceful-fs": "^4.1.6"
|
|
14995
|
+
}
|
|
14996
|
+
},
|
|
14815
14997
|
"node_modules/git-hooks-list": {
|
|
14816
14998
|
"version": "3.1.0",
|
|
14817
14999
|
"resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-3.1.0.tgz",
|
|
@@ -15130,6 +15312,18 @@
|
|
|
15130
15312
|
"url": "https://github.com/sindresorhus/got?sponsor=1"
|
|
15131
15313
|
}
|
|
15132
15314
|
},
|
|
15315
|
+
"node_modules/got/node_modules/@sindresorhus/is": {
|
|
15316
|
+
"version": "5.6.0",
|
|
15317
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz",
|
|
15318
|
+
"integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==",
|
|
15319
|
+
"license": "MIT",
|
|
15320
|
+
"engines": {
|
|
15321
|
+
"node": ">=14.16"
|
|
15322
|
+
},
|
|
15323
|
+
"funding": {
|
|
15324
|
+
"url": "https://github.com/sindresorhus/is?sponsor=1"
|
|
15325
|
+
}
|
|
15326
|
+
},
|
|
15133
15327
|
"node_modules/got/node_modules/lowercase-keys": {
|
|
15134
15328
|
"version": "3.0.0",
|
|
15135
15329
|
"resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
|
|
@@ -15414,7 +15608,6 @@
|
|
|
15414
15608
|
"version": "7.0.1",
|
|
15415
15609
|
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz",
|
|
15416
15610
|
"integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==",
|
|
15417
|
-
"extraneous": true,
|
|
15418
15611
|
"license": "ISC",
|
|
15419
15612
|
"dependencies": {
|
|
15420
15613
|
"lru-cache": "^10.0.1"
|
|
@@ -15427,7 +15620,6 @@
|
|
|
15427
15620
|
"version": "10.2.0",
|
|
15428
15621
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz",
|
|
15429
15622
|
"integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
|
|
15430
|
-
"extraneous": true,
|
|
15431
15623
|
"license": "ISC",
|
|
15432
15624
|
"engines": {
|
|
15433
15625
|
"node": "14 || >=16.14"
|
|
@@ -17006,20 +17198,6 @@
|
|
|
17006
17198
|
"integrity": "sha512-PjiQ659aQ+fUTQqSrd1XEDnOr52jh30RBurfzkscaE2tPaFsDH5wOAHJiw8XAHphRknCwMUE9KRayc4K/NbO8A==",
|
|
17007
17199
|
"license": "MIT"
|
|
17008
17200
|
},
|
|
17009
|
-
"node_modules/jsforce/node_modules/fs-extra": {
|
|
17010
|
-
"version": "8.1.0",
|
|
17011
|
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
|
|
17012
|
-
"integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
|
|
17013
|
-
"license": "MIT",
|
|
17014
|
-
"dependencies": {
|
|
17015
|
-
"graceful-fs": "^4.2.0",
|
|
17016
|
-
"jsonfile": "^4.0.0",
|
|
17017
|
-
"universalify": "^0.1.0"
|
|
17018
|
-
},
|
|
17019
|
-
"engines": {
|
|
17020
|
-
"node": ">=6 <7 || >=8"
|
|
17021
|
-
}
|
|
17022
|
-
},
|
|
17023
17201
|
"node_modules/jsforce/node_modules/inquirer": {
|
|
17024
17202
|
"version": "7.3.3",
|
|
17025
17203
|
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz",
|
|
@@ -17044,15 +17222,6 @@
|
|
|
17044
17222
|
"node": ">=8.0.0"
|
|
17045
17223
|
}
|
|
17046
17224
|
},
|
|
17047
|
-
"node_modules/jsforce/node_modules/jsonfile": {
|
|
17048
|
-
"version": "4.0.0",
|
|
17049
|
-
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
|
|
17050
|
-
"integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==",
|
|
17051
|
-
"license": "MIT",
|
|
17052
|
-
"optionalDependencies": {
|
|
17053
|
-
"graceful-fs": "^4.1.6"
|
|
17054
|
-
}
|
|
17055
|
-
},
|
|
17056
17225
|
"node_modules/jsforce/node_modules/mute-stream": {
|
|
17057
17226
|
"version": "0.0.8",
|
|
17058
17227
|
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
|
|
@@ -17120,15 +17289,6 @@
|
|
|
17120
17289
|
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
|
|
17121
17290
|
"license": "0BSD"
|
|
17122
17291
|
},
|
|
17123
|
-
"node_modules/jsforce/node_modules/universalify": {
|
|
17124
|
-
"version": "0.1.2",
|
|
17125
|
-
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
|
|
17126
|
-
"integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
|
|
17127
|
-
"license": "MIT",
|
|
17128
|
-
"engines": {
|
|
17129
|
-
"node": ">= 4.0.0"
|
|
17130
|
-
}
|
|
17131
|
-
},
|
|
17132
17292
|
"node_modules/jsforce/node_modules/xml2js": {
|
|
17133
17293
|
"version": "0.5.0",
|
|
17134
17294
|
"resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.5.0.tgz",
|
|
@@ -17213,13 +17373,10 @@
|
|
|
17213
17373
|
"license": "MIT"
|
|
17214
17374
|
},
|
|
17215
17375
|
"node_modules/jsonfile": {
|
|
17216
|
-
"version": "
|
|
17217
|
-
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-
|
|
17218
|
-
"integrity": "sha512-
|
|
17376
|
+
"version": "4.0.0",
|
|
17377
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
|
|
17378
|
+
"integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==",
|
|
17219
17379
|
"license": "MIT",
|
|
17220
|
-
"dependencies": {
|
|
17221
|
-
"universalify": "^2.0.0"
|
|
17222
|
-
},
|
|
17223
17380
|
"optionalDependencies": {
|
|
17224
17381
|
"graceful-fs": "^4.1.6"
|
|
17225
17382
|
}
|
|
@@ -19390,7 +19547,6 @@
|
|
|
19390
19547
|
"version": "11.0.1",
|
|
19391
19548
|
"resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz",
|
|
19392
19549
|
"integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==",
|
|
19393
|
-
"extraneous": true,
|
|
19394
19550
|
"license": "ISC",
|
|
19395
19551
|
"dependencies": {
|
|
19396
19552
|
"hosted-git-info": "^7.0.0",
|
|
@@ -22662,19 +22818,6 @@
|
|
|
22662
22818
|
"node": ">=18.0.0"
|
|
22663
22819
|
}
|
|
22664
22820
|
},
|
|
22665
|
-
"node_modules/oclif/node_modules/@sindresorhus/is": {
|
|
22666
|
-
"version": "4.6.0",
|
|
22667
|
-
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
|
|
22668
|
-
"integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
|
|
22669
|
-
"dev": true,
|
|
22670
|
-
"license": "MIT",
|
|
22671
|
-
"engines": {
|
|
22672
|
-
"node": ">=10"
|
|
22673
|
-
},
|
|
22674
|
-
"funding": {
|
|
22675
|
-
"url": "https://github.com/sindresorhus/is?sponsor=1"
|
|
22676
|
-
}
|
|
22677
|
-
},
|
|
22678
22821
|
"node_modules/oclif/node_modules/@szmarczak/http-timer": {
|
|
22679
22822
|
"version": "4.0.6",
|
|
22680
22823
|
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz",
|
|
@@ -22717,21 +22860,6 @@
|
|
|
22717
22860
|
"node": ">=8"
|
|
22718
22861
|
}
|
|
22719
22862
|
},
|
|
22720
|
-
"node_modules/oclif/node_modules/fs-extra": {
|
|
22721
|
-
"version": "8.1.0",
|
|
22722
|
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
|
|
22723
|
-
"integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
|
|
22724
|
-
"dev": true,
|
|
22725
|
-
"license": "MIT",
|
|
22726
|
-
"dependencies": {
|
|
22727
|
-
"graceful-fs": "^4.2.0",
|
|
22728
|
-
"jsonfile": "^4.0.0",
|
|
22729
|
-
"universalify": "^0.1.0"
|
|
22730
|
-
},
|
|
22731
|
-
"engines": {
|
|
22732
|
-
"node": ">=6 <7 || >=8"
|
|
22733
|
-
}
|
|
22734
|
-
},
|
|
22735
22863
|
"node_modules/oclif/node_modules/get-stream": {
|
|
22736
22864
|
"version": "5.2.0",
|
|
22737
22865
|
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
|
|
@@ -22801,16 +22929,6 @@
|
|
|
22801
22929
|
"node": ">=10.19.0"
|
|
22802
22930
|
}
|
|
22803
22931
|
},
|
|
22804
|
-
"node_modules/oclif/node_modules/jsonfile": {
|
|
22805
|
-
"version": "4.0.0",
|
|
22806
|
-
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
|
|
22807
|
-
"integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==",
|
|
22808
|
-
"dev": true,
|
|
22809
|
-
"license": "MIT",
|
|
22810
|
-
"optionalDependencies": {
|
|
22811
|
-
"graceful-fs": "^4.1.6"
|
|
22812
|
-
}
|
|
22813
|
-
},
|
|
22814
22932
|
"node_modules/oclif/node_modules/lru-cache": {
|
|
22815
22933
|
"version": "6.0.0",
|
|
22816
22934
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
|
@@ -22863,16 +22981,6 @@
|
|
|
22863
22981
|
"node": ">=8"
|
|
22864
22982
|
}
|
|
22865
22983
|
},
|
|
22866
|
-
"node_modules/oclif/node_modules/universalify": {
|
|
22867
|
-
"version": "0.1.2",
|
|
22868
|
-
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
|
|
22869
|
-
"integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
|
|
22870
|
-
"dev": true,
|
|
22871
|
-
"license": "MIT",
|
|
22872
|
-
"engines": {
|
|
22873
|
-
"node": ">= 4.0.0"
|
|
22874
|
-
}
|
|
22875
|
-
},
|
|
22876
22984
|
"node_modules/on-exit-leak-free": {
|
|
22877
22985
|
"version": "2.1.2",
|
|
22878
22986
|
"resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz",
|
|
@@ -27168,7 +27276,6 @@
|
|
|
27168
27276
|
"version": "0.6.2",
|
|
27169
27277
|
"resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz",
|
|
27170
27278
|
"integrity": "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==",
|
|
27171
|
-
"dev": true,
|
|
27172
27279
|
"license": "MIT",
|
|
27173
27280
|
"dependencies": {
|
|
27174
27281
|
"sax": ">=0.6.0",
|
|
@@ -27300,20 +27407,6 @@
|
|
|
27300
27407
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
27301
27408
|
}
|
|
27302
27409
|
},
|
|
27303
|
-
"node_modules/yarn": {
|
|
27304
|
-
"version": "1.22.21",
|
|
27305
|
-
"resolved": "https://registry.npmjs.org/yarn/-/yarn-1.22.21.tgz",
|
|
27306
|
-
"integrity": "sha512-ynXaJsADJ9JiZ84zU25XkPGOvVMmZ5b7tmTSpKURYwgELdjucAOydqIOrOfTxVYcNXe91xvLZwcRh68SR3liCg==",
|
|
27307
|
-
"hasInstallScript": true,
|
|
27308
|
-
"license": "BSD-2-Clause",
|
|
27309
|
-
"bin": {
|
|
27310
|
-
"yarn": "bin/yarn.js",
|
|
27311
|
-
"yarnpkg": "bin/yarn.js"
|
|
27312
|
-
},
|
|
27313
|
-
"engines": {
|
|
27314
|
-
"node": ">=4.0.0"
|
|
27315
|
-
}
|
|
27316
|
-
},
|
|
27317
27410
|
"node_modules/yarn-deduplicate": {
|
|
27318
27411
|
"version": "3.1.0",
|
|
27319
27412
|
"resolved": "https://registry.npmjs.org/yarn-deduplicate/-/yarn-deduplicate-3.1.0.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.35.0",
|
|
4
|
+
"version": "2.35.2-qa.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
],
|
|
38
38
|
"nsisCustomization": "scripts/nsis.nsi",
|
|
39
39
|
"scope": "salesforce",
|
|
40
|
+
"examplePlugin": "@salesforce/plugin-packaging",
|
|
40
41
|
"dirname": "sf",
|
|
41
42
|
"topicSeparator": " ",
|
|
42
43
|
"flexibleTaxonomy": true,
|
|
@@ -140,8 +141,8 @@
|
|
|
140
141
|
"@oclif/plugin-autocomplete": "3.0.13",
|
|
141
142
|
"@oclif/plugin-commands": "3.2.0",
|
|
142
143
|
"@oclif/plugin-help": "6.0.18",
|
|
143
|
-
"@oclif/plugin-not-found": "3.0
|
|
144
|
-
"@oclif/plugin-plugins": "
|
|
144
|
+
"@oclif/plugin-not-found": "3.1.0",
|
|
145
|
+
"@oclif/plugin-plugins": "beta",
|
|
145
146
|
"@oclif/plugin-search": "1.0.20",
|
|
146
147
|
"@oclif/plugin-update": "4.2.0",
|
|
147
148
|
"@oclif/plugin-version": "2.0.14",
|
|
@@ -150,7 +151,7 @@
|
|
|
150
151
|
"@salesforce/core": "^6.1.4",
|
|
151
152
|
"@salesforce/plugin-apex": "3.0.31",
|
|
152
153
|
"@salesforce/plugin-auth": "3.3.26",
|
|
153
|
-
"@salesforce/plugin-data": "3.
|
|
154
|
+
"@salesforce/plugin-data": "3.2.0",
|
|
154
155
|
"@salesforce/plugin-deploy-retrieve": "3.2.35",
|
|
155
156
|
"@salesforce/plugin-info": "3.0.33",
|
|
156
157
|
"@salesforce/plugin-limits": "3.1.14",
|