@salesforce/plugin-packaging 2.12.3 → 2.13.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 +22 -22
- package/lib/commands/package/convert.d.ts +1 -0
- package/lib/commands/package/convert.js +9 -0
- package/lib/commands/package/convert.js.map +1 -1
- package/messages/package_convert.md +9 -1
- package/oclif.manifest.json +1183 -1169
- package/package.json +7 -7
package/oclif.manifest.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
],
|
|
7
7
|
"args": {},
|
|
8
8
|
"deprecateAliases": true,
|
|
9
|
-
"description": "The package convert creates a new package in the Dev Hub if one does not already exist for the specified first-generation package.\n\nIt then creates a new package version in the Dev Hub with contents based on the specified first-generation package.\n\
|
|
9
|
+
"description": "The package convert creates a new package in the Dev Hub if one does not already exist for the specified first-generation package.\n\nIt then creates a new package version in the Dev Hub with contents based on the specified first-generation package.\n\nBy default, the latest released non-patch version from the specified first-generation package will be converted. Use --patch-version to override the default. Read more about --patch-version option in help\n\nTo retrieve details about a package version create request, including status and package version ID (04t), run \"<%= config.bin %> package version create report -i 08c...\".\n\nWe recommend specifying the --installation-key to protect the contents of your package and to prevent unauthorized installation of your package.\n\nTo list package version creation requests in the org, run \"<%= config.bin %> package version create list\".",
|
|
10
10
|
"examples": [
|
|
11
11
|
"Create a second-generation package version from the first-generation package with the specified ID and give it the installation key \"password123\"; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 033... --installation-key password123",
|
|
12
12
|
"Similar to previous example, but uses the specified Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 033... --installation-key password123 --target-dev-hub devhuborg@example.com"
|
|
@@ -145,6 +145,20 @@
|
|
|
145
145
|
"summary": "Display verbose command output.",
|
|
146
146
|
"allowNo": false,
|
|
147
147
|
"type": "boolean"
|
|
148
|
+
},
|
|
149
|
+
"patch-version": {
|
|
150
|
+
"aliases": [
|
|
151
|
+
"patchversion"
|
|
152
|
+
],
|
|
153
|
+
"char": "a",
|
|
154
|
+
"deprecateAliases": true,
|
|
155
|
+
"description": "Specify a released patch version as major.minor.patch.build to convert to second generation package version",
|
|
156
|
+
"hidden": true,
|
|
157
|
+
"name": "patch-version",
|
|
158
|
+
"summary": "Specific released patch version to convert",
|
|
159
|
+
"hasDynamicHelp": false,
|
|
160
|
+
"multiple": false,
|
|
161
|
+
"type": "option"
|
|
148
162
|
}
|
|
149
163
|
},
|
|
150
164
|
"hasDynamicHelp": true,
|
|
@@ -1404,16 +1418,19 @@
|
|
|
1404
1418
|
"report:uninstall:package"
|
|
1405
1419
|
]
|
|
1406
1420
|
},
|
|
1407
|
-
"
|
|
1421
|
+
"package:version:create": {
|
|
1408
1422
|
"aliases": [
|
|
1409
|
-
"force:
|
|
1423
|
+
"force:package:version:create"
|
|
1410
1424
|
],
|
|
1411
1425
|
"args": {},
|
|
1412
1426
|
"deprecateAliases": true,
|
|
1413
|
-
"description": "The package version is based on the contents
|
|
1427
|
+
"description": "The package version is based on the package contents in the specified directory.\n\nTo retrieve details about a package version create request, including status and package version ID (04t), run \"<%= config.bin %> package version create report -i 08c...\".\n\nWe recommend that you specify the --installation-key parameter to protect the contents of your package and to prevent unauthorized installation of your package.\n\nTo list package version creation requests in the org, run \"<%= config.bin %> package version create list\".\nTo promote a package version to released, you must use the --code-coverage parameter. The package must also meet the code coverage requirements. This requirement applies to both managed and unlocked packages.\n\nWe don’t calculate code coverage for org-dependent unlocked packages, or for package versions that specify --skip-validation.",
|
|
1414
1428
|
"examples": [
|
|
1415
|
-
"Create a
|
|
1416
|
-
"
|
|
1429
|
+
"Create a package version from the contents of the \"common\" directory and give it an installation key of \"password123\"; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123",
|
|
1430
|
+
"Create a package version from a package with the specified alias; uses the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --installation-key password123 --target-dev-hub devhub@example.com",
|
|
1431
|
+
"Create a package version from a package with the specified ID:\n<%= config.bin %> <%= command.id %> --package 0Ho... --installation-key password123",
|
|
1432
|
+
"Create a package version and skip the validation step:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --skip-validation",
|
|
1433
|
+
"Create a package version and perform package validations asynchronously:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --async-validation"
|
|
1417
1434
|
],
|
|
1418
1435
|
"flags": {
|
|
1419
1436
|
"json": {
|
|
@@ -1441,17 +1458,17 @@
|
|
|
1441
1458
|
"multiple": false,
|
|
1442
1459
|
"type": "option"
|
|
1443
1460
|
},
|
|
1444
|
-
"target-
|
|
1461
|
+
"target-dev-hub": {
|
|
1445
1462
|
"aliases": [
|
|
1446
|
-
"
|
|
1447
|
-
"
|
|
1463
|
+
"targetdevhubusername",
|
|
1464
|
+
"target-hub-org"
|
|
1448
1465
|
],
|
|
1449
|
-
"char": "
|
|
1466
|
+
"char": "v",
|
|
1450
1467
|
"deprecateAliases": true,
|
|
1451
|
-
"name": "target-
|
|
1468
|
+
"name": "target-dev-hub",
|
|
1452
1469
|
"noCacheDefault": true,
|
|
1453
1470
|
"required": true,
|
|
1454
|
-
"summary": "Username or alias of the
|
|
1471
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1455
1472
|
"hasDynamicHelp": true,
|
|
1456
1473
|
"multiple": false,
|
|
1457
1474
|
"type": "option"
|
|
@@ -1467,78 +1484,51 @@
|
|
|
1467
1484
|
"multiple": false,
|
|
1468
1485
|
"type": "option"
|
|
1469
1486
|
},
|
|
1470
|
-
"
|
|
1471
|
-
"
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
"char": "i",
|
|
1475
|
-
"deprecateAliases": true,
|
|
1476
|
-
"name": "package-id",
|
|
1477
|
-
"required": true,
|
|
1478
|
-
"summary": "ID of the metadata package (starts with 033) of which you’re creating a new version.",
|
|
1479
|
-
"hasDynamicHelp": false,
|
|
1480
|
-
"multiple": false,
|
|
1481
|
-
"type": "option"
|
|
1482
|
-
},
|
|
1483
|
-
"name": {
|
|
1484
|
-
"char": "n",
|
|
1485
|
-
"name": "name",
|
|
1486
|
-
"required": true,
|
|
1487
|
-
"summary": "Package version name.",
|
|
1488
|
-
"hasDynamicHelp": false,
|
|
1489
|
-
"multiple": false,
|
|
1490
|
-
"type": "option"
|
|
1491
|
-
},
|
|
1492
|
-
"description": {
|
|
1493
|
-
"char": "d",
|
|
1494
|
-
"name": "description",
|
|
1495
|
-
"summary": "Package version description.",
|
|
1487
|
+
"branch": {
|
|
1488
|
+
"char": "b",
|
|
1489
|
+
"name": "branch",
|
|
1490
|
+
"summary": "Name of the branch in your source control system that the package version is based on.",
|
|
1496
1491
|
"hasDynamicHelp": false,
|
|
1497
1492
|
"multiple": false,
|
|
1498
1493
|
"type": "option"
|
|
1499
1494
|
},
|
|
1500
|
-
"
|
|
1501
|
-
"
|
|
1502
|
-
|
|
1503
|
-
|
|
1495
|
+
"build-instance": {
|
|
1496
|
+
"aliases": [
|
|
1497
|
+
"buildinstance"
|
|
1498
|
+
],
|
|
1499
|
+
"char": "s",
|
|
1500
|
+
"deprecateAliases": true,
|
|
1501
|
+
"hidden": true,
|
|
1502
|
+
"name": "build-instance",
|
|
1503
|
+
"summary": "Instance where the package version will be created, such as NA50.",
|
|
1504
1504
|
"hasDynamicHelp": false,
|
|
1505
1505
|
"multiple": false,
|
|
1506
1506
|
"type": "option"
|
|
1507
1507
|
},
|
|
1508
|
-
"
|
|
1508
|
+
"code-coverage": {
|
|
1509
1509
|
"aliases": [
|
|
1510
|
-
"
|
|
1510
|
+
"codecoverage"
|
|
1511
1511
|
],
|
|
1512
|
-
"char": "
|
|
1512
|
+
"char": "c",
|
|
1513
1513
|
"deprecateAliases": true,
|
|
1514
|
-
"description": "
|
|
1515
|
-
"
|
|
1516
|
-
|
|
1514
|
+
"description": "Before you can promote and release a managed or unlocked package version, the Apex code must meet a minimum 75% code coverage requirement. We don’t calculate code coverage for org-dependent unlocked packages or for package versions that specify --skip-validation.",
|
|
1515
|
+
"exclusive": [
|
|
1516
|
+
"skip-validation"
|
|
1517
|
+
],
|
|
1518
|
+
"name": "code-coverage",
|
|
1519
|
+
"summary": "Calculate and store the code coverage percentage by running the packaged Apex tests included in this package version.",
|
|
1517
1520
|
"allowNo": false,
|
|
1518
1521
|
"type": "boolean"
|
|
1519
1522
|
},
|
|
1520
|
-
"
|
|
1521
|
-
"aliases": [
|
|
1522
|
-
"releasenotesurl"
|
|
1523
|
-
],
|
|
1524
|
-
"char": "r",
|
|
1525
|
-
"deprecateAliases": true,
|
|
1526
|
-
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
1527
|
-
"name": "release-notes-url",
|
|
1528
|
-
"summary": "Release notes URL.",
|
|
1529
|
-
"hasDynamicHelp": false,
|
|
1530
|
-
"multiple": false,
|
|
1531
|
-
"type": "option"
|
|
1532
|
-
},
|
|
1533
|
-
"post-install-url": {
|
|
1523
|
+
"definition-file": {
|
|
1534
1524
|
"aliases": [
|
|
1535
|
-
"
|
|
1525
|
+
"definitionfile"
|
|
1536
1526
|
],
|
|
1537
|
-
"char": "
|
|
1527
|
+
"char": "f",
|
|
1538
1528
|
"deprecateAliases": true,
|
|
1539
|
-
"description": "
|
|
1540
|
-
"name": "
|
|
1541
|
-
"summary": "
|
|
1529
|
+
"description": "For a patch version, the features specified in this file are ignored, and instead the features specified for the ancestor version are used.",
|
|
1530
|
+
"name": "definition-file",
|
|
1531
|
+
"summary": "Path to a definition file similar to scratch org definition file that contains the list of features and org preferences that the metadata of the package version depends on.",
|
|
1542
1532
|
"hasDynamicHelp": false,
|
|
1543
1533
|
"multiple": false,
|
|
1544
1534
|
"type": "option"
|
|
@@ -1550,209 +1540,274 @@
|
|
|
1550
1540
|
"char": "k",
|
|
1551
1541
|
"deprecateAliases": true,
|
|
1552
1542
|
"name": "installation-key",
|
|
1553
|
-
"summary": "Installation key for key-protected package (
|
|
1543
|
+
"summary": "Installation key for key-protected package. (either --installation-key or --installation-key-bypass is required)",
|
|
1554
1544
|
"hasDynamicHelp": false,
|
|
1555
1545
|
"multiple": false,
|
|
1556
1546
|
"type": "option"
|
|
1557
1547
|
},
|
|
1558
|
-
"
|
|
1559
|
-
"
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
"
|
|
1563
|
-
"
|
|
1564
|
-
"
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
"hasDynamicHelp": true,
|
|
1568
|
-
"hiddenAliases": [],
|
|
1569
|
-
"id": "package1:version:create",
|
|
1570
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1571
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1572
|
-
"pluginType": "core",
|
|
1573
|
-
"strict": true,
|
|
1574
|
-
"summary": "Create a first-generation package version in the release org.",
|
|
1575
|
-
"enableJsonFlag": true,
|
|
1576
|
-
"isESM": true,
|
|
1577
|
-
"relativePath": [
|
|
1578
|
-
"lib",
|
|
1579
|
-
"commands",
|
|
1580
|
-
"package1",
|
|
1581
|
-
"version",
|
|
1582
|
-
"create.js"
|
|
1583
|
-
],
|
|
1584
|
-
"aliasPermutations": [
|
|
1585
|
-
"force:package1:version:create",
|
|
1586
|
-
"package1:force:version:create",
|
|
1587
|
-
"package1:version:force:create",
|
|
1588
|
-
"package1:version:create:force",
|
|
1589
|
-
"force:version:package1:create",
|
|
1590
|
-
"version:force:package1:create",
|
|
1591
|
-
"version:package1:force:create",
|
|
1592
|
-
"version:package1:create:force",
|
|
1593
|
-
"force:version:create:package1",
|
|
1594
|
-
"version:force:create:package1",
|
|
1595
|
-
"version:create:force:package1",
|
|
1596
|
-
"version:create:package1:force",
|
|
1597
|
-
"force:package1:create:version",
|
|
1598
|
-
"package1:force:create:version",
|
|
1599
|
-
"package1:create:force:version",
|
|
1600
|
-
"package1:create:version:force",
|
|
1601
|
-
"force:create:package1:version",
|
|
1602
|
-
"create:force:package1:version",
|
|
1603
|
-
"create:package1:force:version",
|
|
1604
|
-
"create:package1:version:force",
|
|
1605
|
-
"force:create:version:package1",
|
|
1606
|
-
"create:force:version:package1",
|
|
1607
|
-
"create:version:force:package1",
|
|
1608
|
-
"create:version:package1:force"
|
|
1609
|
-
],
|
|
1610
|
-
"permutations": [
|
|
1611
|
-
"package1:version:create",
|
|
1612
|
-
"version:package1:create",
|
|
1613
|
-
"version:create:package1",
|
|
1614
|
-
"package1:create:version",
|
|
1615
|
-
"create:package1:version",
|
|
1616
|
-
"create:version:package1"
|
|
1617
|
-
]
|
|
1618
|
-
},
|
|
1619
|
-
"package1:version:display": {
|
|
1620
|
-
"aliases": [
|
|
1621
|
-
"force:package1:version:display"
|
|
1622
|
-
],
|
|
1623
|
-
"args": {},
|
|
1624
|
-
"deprecateAliases": true,
|
|
1625
|
-
"examples": [
|
|
1626
|
-
"Display details about the first-generation package version with the specified ID in your default org:\n<%= config.bin %> <%= command.id %> --package-version-id 04t...",
|
|
1627
|
-
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --package-version-id 04t... --target-org myorg@example.com"
|
|
1628
|
-
],
|
|
1629
|
-
"flags": {
|
|
1630
|
-
"json": {
|
|
1631
|
-
"description": "Format output as json.",
|
|
1632
|
-
"helpGroup": "GLOBAL",
|
|
1633
|
-
"name": "json",
|
|
1548
|
+
"installation-key-bypass": {
|
|
1549
|
+
"aliases": [
|
|
1550
|
+
"installationkeybypass"
|
|
1551
|
+
],
|
|
1552
|
+
"char": "x",
|
|
1553
|
+
"deprecateAliases": true,
|
|
1554
|
+
"description": "If you bypass this requirement, anyone can install your package.",
|
|
1555
|
+
"name": "installation-key-bypass",
|
|
1556
|
+
"summary": "Bypass the installation key requirement. (either --installation-key or --installation-key-bypass is required)",
|
|
1634
1557
|
"allowNo": false,
|
|
1635
1558
|
"type": "boolean"
|
|
1636
1559
|
},
|
|
1637
|
-
"
|
|
1638
|
-
"
|
|
1639
|
-
"name": "
|
|
1640
|
-
"summary": "
|
|
1560
|
+
"package": {
|
|
1561
|
+
"char": "p",
|
|
1562
|
+
"name": "package",
|
|
1563
|
+
"summary": "ID (starts with 0Ho) or alias of the package to create a version of.",
|
|
1641
1564
|
"hasDynamicHelp": false,
|
|
1642
1565
|
"multiple": false,
|
|
1643
1566
|
"type": "option"
|
|
1644
1567
|
},
|
|
1645
|
-
"
|
|
1646
|
-
"
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
"hidden": true,
|
|
1650
|
-
"name": "loglevel",
|
|
1568
|
+
"path": {
|
|
1569
|
+
"char": "d",
|
|
1570
|
+
"name": "path",
|
|
1571
|
+
"summary": "Path to the directory that contains the contents of the package.",
|
|
1651
1572
|
"hasDynamicHelp": false,
|
|
1652
1573
|
"multiple": false,
|
|
1653
1574
|
"type": "option"
|
|
1654
1575
|
},
|
|
1655
|
-
"
|
|
1576
|
+
"post-install-script": {
|
|
1656
1577
|
"aliases": [
|
|
1657
|
-
"
|
|
1658
|
-
"u"
|
|
1578
|
+
"postinstallscript"
|
|
1659
1579
|
],
|
|
1660
|
-
"char": "o",
|
|
1661
1580
|
"deprecateAliases": true,
|
|
1662
|
-
"
|
|
1663
|
-
"
|
|
1664
|
-
"
|
|
1665
|
-
"
|
|
1666
|
-
"hasDynamicHelp": true,
|
|
1581
|
+
"description": "The post-install script is an Apex class within this package that is run in the installing org after installations or upgrades of this package version.",
|
|
1582
|
+
"name": "post-install-script",
|
|
1583
|
+
"summary": "Name of the post-install script; applies to managed packages only.",
|
|
1584
|
+
"hasDynamicHelp": false,
|
|
1667
1585
|
"multiple": false,
|
|
1668
1586
|
"type": "option"
|
|
1669
1587
|
},
|
|
1670
|
-
"
|
|
1588
|
+
"post-install-url": {
|
|
1671
1589
|
"aliases": [
|
|
1672
|
-
"
|
|
1590
|
+
"postinstallurl"
|
|
1673
1591
|
],
|
|
1674
1592
|
"deprecateAliases": true,
|
|
1675
|
-
"description": "
|
|
1676
|
-
"name": "
|
|
1593
|
+
"description": "The contents of the post-installation instructions URL are displayed in the UI after installation of the package version.",
|
|
1594
|
+
"name": "post-install-url",
|
|
1595
|
+
"summary": "Post-install instructions URL.",
|
|
1677
1596
|
"hasDynamicHelp": false,
|
|
1678
1597
|
"multiple": false,
|
|
1679
1598
|
"type": "option"
|
|
1680
1599
|
},
|
|
1681
|
-
"
|
|
1600
|
+
"preserve": {
|
|
1601
|
+
"char": "r",
|
|
1602
|
+
"hidden": true,
|
|
1603
|
+
"name": "preserve",
|
|
1604
|
+
"summary": "Preserve temp files that would otherwise be deleted.",
|
|
1605
|
+
"allowNo": false,
|
|
1606
|
+
"type": "boolean"
|
|
1607
|
+
},
|
|
1608
|
+
"releasenotes-url": {
|
|
1682
1609
|
"aliases": [
|
|
1683
|
-
"
|
|
1610
|
+
"releasenotesurl"
|
|
1684
1611
|
],
|
|
1685
|
-
"char": "i",
|
|
1686
1612
|
"deprecateAliases": true,
|
|
1687
|
-
"
|
|
1688
|
-
"
|
|
1689
|
-
"summary": "
|
|
1613
|
+
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
1614
|
+
"name": "releasenotes-url",
|
|
1615
|
+
"summary": "Release notes URL.",
|
|
1616
|
+
"hasDynamicHelp": false,
|
|
1617
|
+
"multiple": false,
|
|
1618
|
+
"type": "option"
|
|
1619
|
+
},
|
|
1620
|
+
"skip-ancestor-check": {
|
|
1621
|
+
"aliases": [
|
|
1622
|
+
"skipancestorcheck"
|
|
1623
|
+
],
|
|
1624
|
+
"deprecateAliases": true,
|
|
1625
|
+
"name": "skip-ancestor-check",
|
|
1626
|
+
"summary": "Overrides ancestry requirements, which allows you to specify a package ancestor that isn’t the highest released package version.",
|
|
1627
|
+
"allowNo": false,
|
|
1628
|
+
"type": "boolean"
|
|
1629
|
+
},
|
|
1630
|
+
"skip-validation": {
|
|
1631
|
+
"aliases": [
|
|
1632
|
+
"skipvalidation"
|
|
1633
|
+
],
|
|
1634
|
+
"deprecateAliases": true,
|
|
1635
|
+
"description": "Skips validation of dependencies, package ancestors, and metadata during package version creation. Skipping validation reduces the time it takes to create a new package version, but you can promote only validated package versions. Skipping validation can suppress important errors that can surface at a later stage. You can specify skip validation or code coverage, but not both. Code coverage is calculated during validation.",
|
|
1636
|
+
"exclusive": [
|
|
1637
|
+
"code-coverage",
|
|
1638
|
+
"async-validation"
|
|
1639
|
+
],
|
|
1640
|
+
"name": "skip-validation",
|
|
1641
|
+
"summary": "Skip validation during package version creation; you can’t promote unvalidated package versions.",
|
|
1642
|
+
"allowNo": false,
|
|
1643
|
+
"type": "boolean"
|
|
1644
|
+
},
|
|
1645
|
+
"async-validation": {
|
|
1646
|
+
"description": "Specifying async validation returns the package version earlier in the process, allowing you to install and test the new version right away. If your development team is using continuous integration (CI) scripts, async validation can reduce your overall CI run time.",
|
|
1647
|
+
"exclusive": [
|
|
1648
|
+
"skip-validation"
|
|
1649
|
+
],
|
|
1650
|
+
"name": "async-validation",
|
|
1651
|
+
"summary": "Return a new package version before completing package validations.",
|
|
1652
|
+
"allowNo": false,
|
|
1653
|
+
"type": "boolean"
|
|
1654
|
+
},
|
|
1655
|
+
"tag": {
|
|
1656
|
+
"char": "t",
|
|
1657
|
+
"name": "tag",
|
|
1658
|
+
"summary": "Package version’s tag.",
|
|
1659
|
+
"hasDynamicHelp": false,
|
|
1660
|
+
"multiple": false,
|
|
1661
|
+
"type": "option"
|
|
1662
|
+
},
|
|
1663
|
+
"uninstall-script": {
|
|
1664
|
+
"aliases": [
|
|
1665
|
+
"uninstallscript"
|
|
1666
|
+
],
|
|
1667
|
+
"deprecateAliases": true,
|
|
1668
|
+
"description": "The uninstall script is an Apex class within this package that is run in the installing org after uninstallations of this package.",
|
|
1669
|
+
"name": "uninstall-script",
|
|
1670
|
+
"summary": "Uninstall script name; applies to managed packages only.",
|
|
1671
|
+
"hasDynamicHelp": false,
|
|
1672
|
+
"multiple": false,
|
|
1673
|
+
"type": "option"
|
|
1674
|
+
},
|
|
1675
|
+
"validate-schema": {
|
|
1676
|
+
"aliases": [
|
|
1677
|
+
"validateschema"
|
|
1678
|
+
],
|
|
1679
|
+
"char": "j",
|
|
1680
|
+
"deprecateAliases": true,
|
|
1681
|
+
"hidden": true,
|
|
1682
|
+
"name": "validate-schema",
|
|
1683
|
+
"summary": "Validate the sfdx-project.json file against the JSON schema.",
|
|
1684
|
+
"allowNo": false,
|
|
1685
|
+
"type": "boolean"
|
|
1686
|
+
},
|
|
1687
|
+
"version-description": {
|
|
1688
|
+
"aliases": [
|
|
1689
|
+
"versiondescription"
|
|
1690
|
+
],
|
|
1691
|
+
"char": "e",
|
|
1692
|
+
"deprecateAliases": true,
|
|
1693
|
+
"name": "version-description",
|
|
1694
|
+
"summary": "Description of the package version to be created; overrides the sfdx-project.json value.",
|
|
1695
|
+
"hasDynamicHelp": false,
|
|
1696
|
+
"multiple": false,
|
|
1697
|
+
"type": "option"
|
|
1698
|
+
},
|
|
1699
|
+
"version-name": {
|
|
1700
|
+
"aliases": [
|
|
1701
|
+
"versionname"
|
|
1702
|
+
],
|
|
1703
|
+
"char": "a",
|
|
1704
|
+
"deprecateAliases": true,
|
|
1705
|
+
"name": "version-name",
|
|
1706
|
+
"summary": "Name of the package version to be created; overrides the sfdx-project.json value.",
|
|
1707
|
+
"hasDynamicHelp": false,
|
|
1708
|
+
"multiple": false,
|
|
1709
|
+
"type": "option"
|
|
1710
|
+
},
|
|
1711
|
+
"version-number": {
|
|
1712
|
+
"aliases": [
|
|
1713
|
+
"versionnumber"
|
|
1714
|
+
],
|
|
1715
|
+
"char": "n",
|
|
1716
|
+
"deprecateAliases": true,
|
|
1717
|
+
"description": "For information about the format of the version number, see https://developer.salesforce.com/docs/atlas.en-us.pkg2_dev.meta/pkg2_dev/sfdx_dev2gp_config_file.htm.",
|
|
1718
|
+
"name": "version-number",
|
|
1719
|
+
"summary": "Version number of the package version to be created; overrides the sfdx-project.json value.",
|
|
1720
|
+
"hasDynamicHelp": false,
|
|
1721
|
+
"multiple": false,
|
|
1722
|
+
"type": "option"
|
|
1723
|
+
},
|
|
1724
|
+
"wait": {
|
|
1725
|
+
"char": "w",
|
|
1726
|
+
"name": "wait",
|
|
1727
|
+
"summary": "Number of minutes to wait for the package version to be created.",
|
|
1728
|
+
"hasDynamicHelp": true,
|
|
1729
|
+
"multiple": false,
|
|
1730
|
+
"type": "option"
|
|
1731
|
+
},
|
|
1732
|
+
"language": {
|
|
1733
|
+
"description": "Specify the language using a language code listed under \"Supported Languages\" in Salesforce Help. If no language is specified, the language defaults to the language of the Dev Hub user who created the package.",
|
|
1734
|
+
"name": "language",
|
|
1735
|
+
"summary": "Language for the package.",
|
|
1690
1736
|
"hasDynamicHelp": false,
|
|
1691
1737
|
"multiple": false,
|
|
1692
1738
|
"type": "option"
|
|
1739
|
+
},
|
|
1740
|
+
"verbose": {
|
|
1741
|
+
"description": "Display verbose command output. When polling for the status of the creation, this will output status and timeout data on a separate line for each poll request, which is useful in CI systems where timeouts can occur with long periods of no output from commands.",
|
|
1742
|
+
"name": "verbose",
|
|
1743
|
+
"summary": "Display verbose command output.",
|
|
1744
|
+
"allowNo": false,
|
|
1745
|
+
"type": "boolean"
|
|
1693
1746
|
}
|
|
1694
1747
|
},
|
|
1695
1748
|
"hasDynamicHelp": true,
|
|
1696
1749
|
"hiddenAliases": [],
|
|
1697
|
-
"id": "
|
|
1750
|
+
"id": "package:version:create",
|
|
1698
1751
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1699
1752
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1700
1753
|
"pluginType": "core",
|
|
1701
1754
|
"strict": true,
|
|
1702
|
-
"summary": "
|
|
1755
|
+
"summary": "Create a package version in the Dev Hub org.",
|
|
1703
1756
|
"enableJsonFlag": true,
|
|
1757
|
+
"requiresProject": true,
|
|
1704
1758
|
"isESM": true,
|
|
1705
1759
|
"relativePath": [
|
|
1706
1760
|
"lib",
|
|
1707
1761
|
"commands",
|
|
1708
|
-
"
|
|
1762
|
+
"package",
|
|
1709
1763
|
"version",
|
|
1710
|
-
"
|
|
1764
|
+
"create.js"
|
|
1711
1765
|
],
|
|
1712
1766
|
"aliasPermutations": [
|
|
1713
|
-
"force:
|
|
1714
|
-
"
|
|
1715
|
-
"
|
|
1716
|
-
"
|
|
1717
|
-
"force:version:
|
|
1718
|
-
"version:force:
|
|
1719
|
-
"version:
|
|
1720
|
-
"version:
|
|
1721
|
-
"force:version:
|
|
1722
|
-
"version:force:
|
|
1723
|
-
"version:
|
|
1724
|
-
"version:
|
|
1725
|
-
"force:
|
|
1726
|
-
"
|
|
1727
|
-
"
|
|
1728
|
-
"
|
|
1729
|
-
"force:
|
|
1730
|
-
"
|
|
1731
|
-
"
|
|
1732
|
-
"
|
|
1733
|
-
"force:
|
|
1734
|
-
"
|
|
1735
|
-
"
|
|
1736
|
-
"
|
|
1767
|
+
"force:package:version:create",
|
|
1768
|
+
"package:force:version:create",
|
|
1769
|
+
"package:version:force:create",
|
|
1770
|
+
"package:version:create:force",
|
|
1771
|
+
"force:version:package:create",
|
|
1772
|
+
"version:force:package:create",
|
|
1773
|
+
"version:package:force:create",
|
|
1774
|
+
"version:package:create:force",
|
|
1775
|
+
"force:version:create:package",
|
|
1776
|
+
"version:force:create:package",
|
|
1777
|
+
"version:create:force:package",
|
|
1778
|
+
"version:create:package:force",
|
|
1779
|
+
"force:package:create:version",
|
|
1780
|
+
"package:force:create:version",
|
|
1781
|
+
"package:create:force:version",
|
|
1782
|
+
"package:create:version:force",
|
|
1783
|
+
"force:create:package:version",
|
|
1784
|
+
"create:force:package:version",
|
|
1785
|
+
"create:package:force:version",
|
|
1786
|
+
"create:package:version:force",
|
|
1787
|
+
"force:create:version:package",
|
|
1788
|
+
"create:force:version:package",
|
|
1789
|
+
"create:version:force:package",
|
|
1790
|
+
"create:version:package:force"
|
|
1737
1791
|
],
|
|
1738
1792
|
"permutations": [
|
|
1739
|
-
"
|
|
1740
|
-
"version:
|
|
1741
|
-
"version:
|
|
1742
|
-
"
|
|
1743
|
-
"
|
|
1744
|
-
"
|
|
1793
|
+
"package:version:create",
|
|
1794
|
+
"version:package:create",
|
|
1795
|
+
"version:create:package",
|
|
1796
|
+
"package:create:version",
|
|
1797
|
+
"create:package:version",
|
|
1798
|
+
"create:version:package"
|
|
1745
1799
|
]
|
|
1746
1800
|
},
|
|
1747
|
-
"
|
|
1801
|
+
"package:version:delete": {
|
|
1748
1802
|
"aliases": [
|
|
1749
|
-
"force:
|
|
1803
|
+
"force:package:version:delete"
|
|
1750
1804
|
],
|
|
1751
1805
|
"args": {},
|
|
1752
1806
|
"deprecateAliases": true,
|
|
1807
|
+
"description": "Specify the ID or alias of the package version you want to delete. In second-generation managed packaging, only beta package versions can be deleted. Before deleting a package version, review the considerations outlined in https://developer.salesforce.com/docs/atlas.en-us.pkg2_dev.meta/pkg2_dev/sfdx_dev_dev2gp_package_deletion.htm.",
|
|
1753
1808
|
"examples": [
|
|
1754
|
-
"
|
|
1755
|
-
"
|
|
1809
|
+
"Delete a package version with the specified alias using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\"",
|
|
1810
|
+
"Delete a package version with the specified ID using the Dev Hub org with username \"devhub@example.com\":\n<%= config.bin %> <%= command.id %> --package 04t... --target-org devhub@example.com"
|
|
1756
1811
|
],
|
|
1757
1812
|
"flags": {
|
|
1758
1813
|
"json": {
|
|
@@ -1780,17 +1835,17 @@
|
|
|
1780
1835
|
"multiple": false,
|
|
1781
1836
|
"type": "option"
|
|
1782
1837
|
},
|
|
1783
|
-
"target-
|
|
1838
|
+
"target-dev-hub": {
|
|
1784
1839
|
"aliases": [
|
|
1785
|
-
"
|
|
1786
|
-
"
|
|
1840
|
+
"targetdevhubusername",
|
|
1841
|
+
"target-hub-org"
|
|
1787
1842
|
],
|
|
1788
|
-
"char": "
|
|
1843
|
+
"char": "v",
|
|
1789
1844
|
"deprecateAliases": true,
|
|
1790
|
-
"name": "target-
|
|
1845
|
+
"name": "target-dev-hub",
|
|
1791
1846
|
"noCacheDefault": true,
|
|
1792
1847
|
"required": true,
|
|
1793
|
-
"summary": "Username or alias of the
|
|
1848
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1794
1849
|
"hasDynamicHelp": true,
|
|
1795
1850
|
"multiple": false,
|
|
1796
1851
|
"type": "option"
|
|
@@ -1806,85 +1861,97 @@
|
|
|
1806
1861
|
"multiple": false,
|
|
1807
1862
|
"type": "option"
|
|
1808
1863
|
},
|
|
1809
|
-
"
|
|
1864
|
+
"no-prompt": {
|
|
1810
1865
|
"aliases": [
|
|
1811
|
-
"
|
|
1866
|
+
"noprompt"
|
|
1812
1867
|
],
|
|
1813
|
-
"char": "
|
|
1868
|
+
"char": "n",
|
|
1814
1869
|
"deprecateAliases": true,
|
|
1815
|
-
"
|
|
1816
|
-
"
|
|
1817
|
-
"
|
|
1870
|
+
"name": "no-prompt",
|
|
1871
|
+
"summary": "Don’t prompt before deleting the package version.",
|
|
1872
|
+
"allowNo": false,
|
|
1873
|
+
"type": "boolean"
|
|
1874
|
+
},
|
|
1875
|
+
"package": {
|
|
1876
|
+
"char": "p",
|
|
1877
|
+
"name": "package",
|
|
1878
|
+
"required": true,
|
|
1879
|
+
"summary": "ID (starts with 04t) or alias of the package version to delete.",
|
|
1818
1880
|
"hasDynamicHelp": false,
|
|
1819
1881
|
"multiple": false,
|
|
1820
1882
|
"type": "option"
|
|
1883
|
+
},
|
|
1884
|
+
"undelete": {
|
|
1885
|
+
"hidden": true,
|
|
1886
|
+
"name": "undelete",
|
|
1887
|
+
"summary": "Undelete a deleted package version.",
|
|
1888
|
+
"allowNo": false,
|
|
1889
|
+
"type": "boolean"
|
|
1821
1890
|
}
|
|
1822
1891
|
},
|
|
1823
1892
|
"hasDynamicHelp": true,
|
|
1824
1893
|
"hiddenAliases": [],
|
|
1825
|
-
"id": "
|
|
1894
|
+
"id": "package:version:delete",
|
|
1826
1895
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1827
1896
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1828
1897
|
"pluginType": "core",
|
|
1829
1898
|
"strict": true,
|
|
1830
|
-
"summary": "
|
|
1899
|
+
"summary": "Delete a package version.",
|
|
1831
1900
|
"enableJsonFlag": true,
|
|
1832
1901
|
"isESM": true,
|
|
1833
1902
|
"relativePath": [
|
|
1834
1903
|
"lib",
|
|
1835
1904
|
"commands",
|
|
1836
|
-
"
|
|
1905
|
+
"package",
|
|
1837
1906
|
"version",
|
|
1838
|
-
"
|
|
1907
|
+
"delete.js"
|
|
1839
1908
|
],
|
|
1840
1909
|
"aliasPermutations": [
|
|
1841
|
-
"force:
|
|
1842
|
-
"
|
|
1843
|
-
"
|
|
1844
|
-
"
|
|
1845
|
-
"force:version:
|
|
1846
|
-
"version:force:
|
|
1847
|
-
"version:
|
|
1848
|
-
"version:
|
|
1849
|
-
"force:version:
|
|
1850
|
-
"version:force:
|
|
1851
|
-
"version:
|
|
1852
|
-
"version:
|
|
1853
|
-
"force:
|
|
1854
|
-
"
|
|
1855
|
-
"
|
|
1856
|
-
"
|
|
1857
|
-
"force:
|
|
1858
|
-
"
|
|
1859
|
-
"
|
|
1860
|
-
"
|
|
1861
|
-
"force:
|
|
1862
|
-
"
|
|
1863
|
-
"
|
|
1864
|
-
"
|
|
1910
|
+
"force:package:version:delete",
|
|
1911
|
+
"package:force:version:delete",
|
|
1912
|
+
"package:version:force:delete",
|
|
1913
|
+
"package:version:delete:force",
|
|
1914
|
+
"force:version:package:delete",
|
|
1915
|
+
"version:force:package:delete",
|
|
1916
|
+
"version:package:force:delete",
|
|
1917
|
+
"version:package:delete:force",
|
|
1918
|
+
"force:version:delete:package",
|
|
1919
|
+
"version:force:delete:package",
|
|
1920
|
+
"version:delete:force:package",
|
|
1921
|
+
"version:delete:package:force",
|
|
1922
|
+
"force:package:delete:version",
|
|
1923
|
+
"package:force:delete:version",
|
|
1924
|
+
"package:delete:force:version",
|
|
1925
|
+
"package:delete:version:force",
|
|
1926
|
+
"force:delete:package:version",
|
|
1927
|
+
"delete:force:package:version",
|
|
1928
|
+
"delete:package:force:version",
|
|
1929
|
+
"delete:package:version:force",
|
|
1930
|
+
"force:delete:version:package",
|
|
1931
|
+
"delete:force:version:package",
|
|
1932
|
+
"delete:version:force:package",
|
|
1933
|
+
"delete:version:package:force"
|
|
1865
1934
|
],
|
|
1866
1935
|
"permutations": [
|
|
1867
|
-
"
|
|
1868
|
-
"version:
|
|
1869
|
-
"version:
|
|
1870
|
-
"
|
|
1871
|
-
"
|
|
1872
|
-
"
|
|
1936
|
+
"package:version:delete",
|
|
1937
|
+
"version:package:delete",
|
|
1938
|
+
"version:delete:package",
|
|
1939
|
+
"package:delete:version",
|
|
1940
|
+
"delete:package:version",
|
|
1941
|
+
"delete:version:package"
|
|
1873
1942
|
]
|
|
1874
1943
|
},
|
|
1875
|
-
"package:version:
|
|
1944
|
+
"package:version:displayancestry": {
|
|
1876
1945
|
"aliases": [
|
|
1877
|
-
"force:package:version:
|
|
1946
|
+
"force:package:version:displayancestry"
|
|
1878
1947
|
],
|
|
1879
1948
|
"args": {},
|
|
1880
1949
|
"deprecateAliases": true,
|
|
1881
|
-
"description": "The package version is based on the package contents in the specified directory.\n\nTo retrieve details about a package version create request, including status and package version ID (04t), run \"<%= config.bin %> package version create report -i 08c...\".\n\nWe recommend that you specify the --installation-key parameter to protect the contents of your package and to prevent unauthorized installation of your package.\n\nTo list package version creation requests in the org, run \"<%= config.bin %> package version create list\".\nTo promote a package version to released, you must use the --code-coverage parameter. The package must also meet the code coverage requirements. This requirement applies to both managed and unlocked packages.\n\nWe don’t calculate code coverage for org-dependent unlocked packages, or for package versions that specify --skip-validation.",
|
|
1882
1950
|
"examples": [
|
|
1883
|
-
"
|
|
1884
|
-
"
|
|
1885
|
-
"
|
|
1886
|
-
"
|
|
1887
|
-
"Create a package version and perform package validations asynchronously:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --async-validation"
|
|
1951
|
+
"Display the ancestry tree for a package version with the specified alias, using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package package_version_alias",
|
|
1952
|
+
"Similar to previous example, but display the output in DOT code:\n<%= config.bin %> <%= command.id %> --package package_version_alias --dot-code",
|
|
1953
|
+
"Display the ancestry tree for a package with the specified ID, using the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package OHo... --target-dev-hub devhub@example.com",
|
|
1954
|
+
"Display the ancestry tree of a package version with the specified ID, using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t..."
|
|
1888
1955
|
],
|
|
1889
1956
|
"flags": {
|
|
1890
1957
|
"json": {
|
|
@@ -1938,330 +2005,295 @@
|
|
|
1938
2005
|
"multiple": false,
|
|
1939
2006
|
"type": "option"
|
|
1940
2007
|
},
|
|
1941
|
-
"
|
|
1942
|
-
"char": "
|
|
1943
|
-
"
|
|
1944
|
-
"
|
|
2008
|
+
"package": {
|
|
2009
|
+
"char": "p",
|
|
2010
|
+
"description": "If you specify a package ID (starts with 0Ho) or alias, the ancestor tree for every package version associated with the package ID is displayed. If you specify a package version (starts with 04t) or alias, the ancestry tree of the specified package version is displayed.",
|
|
2011
|
+
"name": "package",
|
|
2012
|
+
"required": true,
|
|
2013
|
+
"summary": "ID or alias of the package (starts with 0Ho) or package version (starts with 04t) to display ancestry for.",
|
|
1945
2014
|
"hasDynamicHelp": false,
|
|
1946
2015
|
"multiple": false,
|
|
1947
2016
|
"type": "option"
|
|
1948
2017
|
},
|
|
1949
|
-
"
|
|
2018
|
+
"dot-code": {
|
|
1950
2019
|
"aliases": [
|
|
1951
|
-
"
|
|
2020
|
+
"dotcode"
|
|
1952
2021
|
],
|
|
1953
|
-
"char": "s",
|
|
1954
2022
|
"deprecateAliases": true,
|
|
2023
|
+
"description": "You can use the DOT code output in graph visualization software to create tree visualizations.",
|
|
2024
|
+
"name": "dot-code",
|
|
2025
|
+
"summary": "Display the ancestry tree in DOT code.",
|
|
2026
|
+
"allowNo": false,
|
|
2027
|
+
"type": "boolean"
|
|
2028
|
+
},
|
|
2029
|
+
"verbose": {
|
|
2030
|
+
"name": "verbose",
|
|
2031
|
+
"summary": "Display both the package version ID (starts with 04t) and the version number (major.minor.patch.build) in the ancestry tree.",
|
|
2032
|
+
"allowNo": false,
|
|
2033
|
+
"type": "boolean"
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"hasDynamicHelp": true,
|
|
2037
|
+
"hiddenAliases": [],
|
|
2038
|
+
"id": "package:version:displayancestry",
|
|
2039
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2040
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2041
|
+
"pluginType": "core",
|
|
2042
|
+
"strict": true,
|
|
2043
|
+
"summary": "Display the ancestry tree for a 2GP managed package version.",
|
|
2044
|
+
"enableJsonFlag": true,
|
|
2045
|
+
"isESM": true,
|
|
2046
|
+
"relativePath": [
|
|
2047
|
+
"lib",
|
|
2048
|
+
"commands",
|
|
2049
|
+
"package",
|
|
2050
|
+
"version",
|
|
2051
|
+
"displayancestry.js"
|
|
2052
|
+
],
|
|
2053
|
+
"aliasPermutations": [
|
|
2054
|
+
"force:package:version:displayancestry",
|
|
2055
|
+
"package:force:version:displayancestry",
|
|
2056
|
+
"package:version:force:displayancestry",
|
|
2057
|
+
"package:version:displayancestry:force",
|
|
2058
|
+
"force:version:package:displayancestry",
|
|
2059
|
+
"version:force:package:displayancestry",
|
|
2060
|
+
"version:package:force:displayancestry",
|
|
2061
|
+
"version:package:displayancestry:force",
|
|
2062
|
+
"force:version:displayancestry:package",
|
|
2063
|
+
"version:force:displayancestry:package",
|
|
2064
|
+
"version:displayancestry:force:package",
|
|
2065
|
+
"version:displayancestry:package:force",
|
|
2066
|
+
"force:package:displayancestry:version",
|
|
2067
|
+
"package:force:displayancestry:version",
|
|
2068
|
+
"package:displayancestry:force:version",
|
|
2069
|
+
"package:displayancestry:version:force",
|
|
2070
|
+
"force:displayancestry:package:version",
|
|
2071
|
+
"displayancestry:force:package:version",
|
|
2072
|
+
"displayancestry:package:force:version",
|
|
2073
|
+
"displayancestry:package:version:force",
|
|
2074
|
+
"force:displayancestry:version:package",
|
|
2075
|
+
"displayancestry:force:version:package",
|
|
2076
|
+
"displayancestry:version:force:package",
|
|
2077
|
+
"displayancestry:version:package:force"
|
|
2078
|
+
],
|
|
2079
|
+
"permutations": [
|
|
2080
|
+
"package:version:displayancestry",
|
|
2081
|
+
"version:package:displayancestry",
|
|
2082
|
+
"version:displayancestry:package",
|
|
2083
|
+
"package:displayancestry:version",
|
|
2084
|
+
"displayancestry:package:version",
|
|
2085
|
+
"displayancestry:version:package"
|
|
2086
|
+
]
|
|
2087
|
+
},
|
|
2088
|
+
"package:version:list": {
|
|
2089
|
+
"aliases": [
|
|
2090
|
+
"force:package:version:list"
|
|
2091
|
+
],
|
|
2092
|
+
"args": {},
|
|
2093
|
+
"deprecateAliases": true,
|
|
2094
|
+
"description": "Description",
|
|
2095
|
+
"examples": [
|
|
2096
|
+
"List package versions in your default Dev Hub org that were created in the last 3 days; show only the released versions and order the list using the PatchVersion field. Display extended details about each package version:\n<%= config.bin %> <%= command.id %> --verbose --created-last-days 3 --released --order-by PatchVersion",
|
|
2097
|
+
"List the released package versions for the two specified packages that were modified today; use the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --packages 0Ho000000000000,0Ho000000000001 --released --modified-last-days 0 --target-dev-hub devhub@example.com",
|
|
2098
|
+
"List all released package versions in your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --released",
|
|
2099
|
+
"List package versions that were modified today in your default Dev Hub org; show limited details about each one:\n<%= config.bin %> <%= command.id %> --concise --modified-last-days 0",
|
|
2100
|
+
"List package versions that are based on the \"featureA\" branch in your source control system that were modified today in your default Dev Hub org; show limited details about each one:\n<%= config.bin %> <%= command.id %> --concise --modified-last-days 0 --branch featureA",
|
|
2101
|
+
"List released package versions that were created in the last 3 days in your default Dev Hub org; show limited details:\n<%= config.bin %> <%= command.id %> --concise --created-last-days 3 --released",
|
|
2102
|
+
"List released package versions that were modified today for the two packages with specified aliases in your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --packages exp-mgr,exp-mgr-util --released --modified-last-days 0"
|
|
2103
|
+
],
|
|
2104
|
+
"flags": {
|
|
2105
|
+
"json": {
|
|
2106
|
+
"description": "Format output as json.",
|
|
2107
|
+
"helpGroup": "GLOBAL",
|
|
2108
|
+
"name": "json",
|
|
2109
|
+
"allowNo": false,
|
|
2110
|
+
"type": "boolean"
|
|
2111
|
+
},
|
|
2112
|
+
"flags-dir": {
|
|
2113
|
+
"helpGroup": "GLOBAL",
|
|
2114
|
+
"name": "flags-dir",
|
|
2115
|
+
"summary": "Import flag values from a directory.",
|
|
2116
|
+
"hasDynamicHelp": false,
|
|
2117
|
+
"multiple": false,
|
|
2118
|
+
"type": "option"
|
|
2119
|
+
},
|
|
2120
|
+
"loglevel": {
|
|
2121
|
+
"deprecated": {
|
|
2122
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
2123
|
+
},
|
|
1955
2124
|
"hidden": true,
|
|
1956
|
-
"name": "
|
|
1957
|
-
"summary": "Instance where the package version will be created, such as NA50.",
|
|
2125
|
+
"name": "loglevel",
|
|
1958
2126
|
"hasDynamicHelp": false,
|
|
1959
2127
|
"multiple": false,
|
|
1960
2128
|
"type": "option"
|
|
1961
2129
|
},
|
|
1962
|
-
"
|
|
2130
|
+
"target-dev-hub": {
|
|
1963
2131
|
"aliases": [
|
|
1964
|
-
"
|
|
2132
|
+
"targetdevhubusername",
|
|
2133
|
+
"target-hub-org"
|
|
1965
2134
|
],
|
|
1966
|
-
"char": "
|
|
2135
|
+
"char": "v",
|
|
1967
2136
|
"deprecateAliases": true,
|
|
1968
|
-
"
|
|
1969
|
-
"
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
"
|
|
1973
|
-
"
|
|
1974
|
-
"
|
|
1975
|
-
"type": "boolean"
|
|
2137
|
+
"name": "target-dev-hub",
|
|
2138
|
+
"noCacheDefault": true,
|
|
2139
|
+
"required": true,
|
|
2140
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2141
|
+
"hasDynamicHelp": true,
|
|
2142
|
+
"multiple": false,
|
|
2143
|
+
"type": "option"
|
|
1976
2144
|
},
|
|
1977
|
-
"
|
|
2145
|
+
"api-version": {
|
|
1978
2146
|
"aliases": [
|
|
1979
|
-
"
|
|
2147
|
+
"apiversion"
|
|
1980
2148
|
],
|
|
1981
|
-
"char": "f",
|
|
1982
2149
|
"deprecateAliases": true,
|
|
1983
|
-
"description": "
|
|
1984
|
-
"name": "
|
|
1985
|
-
"summary": "Path to a definition file similar to scratch org definition file that contains the list of features and org preferences that the metadata of the package version depends on.",
|
|
2150
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2151
|
+
"name": "api-version",
|
|
1986
2152
|
"hasDynamicHelp": false,
|
|
1987
2153
|
"multiple": false,
|
|
1988
2154
|
"type": "option"
|
|
1989
2155
|
},
|
|
1990
|
-
"
|
|
2156
|
+
"created-last-days": {
|
|
1991
2157
|
"aliases": [
|
|
1992
|
-
"
|
|
2158
|
+
"createdlastdays"
|
|
1993
2159
|
],
|
|
1994
|
-
"char": "
|
|
2160
|
+
"char": "c",
|
|
1995
2161
|
"deprecateAliases": true,
|
|
1996
|
-
"name": "
|
|
1997
|
-
"summary": "
|
|
2162
|
+
"name": "created-last-days",
|
|
2163
|
+
"summary": "Number of days since the request was created, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
1998
2164
|
"hasDynamicHelp": false,
|
|
1999
2165
|
"multiple": false,
|
|
2000
2166
|
"type": "option"
|
|
2001
2167
|
},
|
|
2002
|
-
"
|
|
2003
|
-
"
|
|
2004
|
-
|
|
2005
|
-
],
|
|
2006
|
-
"char": "x",
|
|
2007
|
-
"deprecateAliases": true,
|
|
2008
|
-
"description": "If you bypass this requirement, anyone can install your package.",
|
|
2009
|
-
"name": "installation-key-bypass",
|
|
2010
|
-
"summary": "Bypass the installation key requirement. (either --installation-key or --installation-key-bypass is required)",
|
|
2168
|
+
"concise": {
|
|
2169
|
+
"name": "concise",
|
|
2170
|
+
"summary": "Display limited package version details.",
|
|
2011
2171
|
"allowNo": false,
|
|
2012
2172
|
"type": "boolean"
|
|
2013
2173
|
},
|
|
2014
|
-
"
|
|
2015
|
-
"
|
|
2016
|
-
"
|
|
2017
|
-
"summary": "ID (starts with 0Ho) or alias of the package to create a version of.",
|
|
2018
|
-
"hasDynamicHelp": false,
|
|
2019
|
-
"multiple": false,
|
|
2020
|
-
"type": "option"
|
|
2021
|
-
},
|
|
2022
|
-
"path": {
|
|
2023
|
-
"char": "d",
|
|
2024
|
-
"name": "path",
|
|
2025
|
-
"summary": "Path to the directory that contains the contents of the package.",
|
|
2026
|
-
"hasDynamicHelp": false,
|
|
2027
|
-
"multiple": false,
|
|
2028
|
-
"type": "option"
|
|
2029
|
-
},
|
|
2030
|
-
"post-install-script": {
|
|
2031
|
-
"aliases": [
|
|
2032
|
-
"postinstallscript"
|
|
2033
|
-
],
|
|
2034
|
-
"deprecateAliases": true,
|
|
2035
|
-
"description": "The post-install script is an Apex class within this package that is run in the installing org after installations or upgrades of this package version.",
|
|
2036
|
-
"name": "post-install-script",
|
|
2037
|
-
"summary": "Name of the post-install script; applies to managed packages only.",
|
|
2038
|
-
"hasDynamicHelp": false,
|
|
2039
|
-
"multiple": false,
|
|
2040
|
-
"type": "option"
|
|
2041
|
-
},
|
|
2042
|
-
"post-install-url": {
|
|
2043
|
-
"aliases": [
|
|
2044
|
-
"postinstallurl"
|
|
2045
|
-
],
|
|
2046
|
-
"deprecateAliases": true,
|
|
2047
|
-
"description": "The contents of the post-installation instructions URL are displayed in the UI after installation of the package version.",
|
|
2048
|
-
"name": "post-install-url",
|
|
2049
|
-
"summary": "Post-install instructions URL.",
|
|
2050
|
-
"hasDynamicHelp": false,
|
|
2051
|
-
"multiple": false,
|
|
2052
|
-
"type": "option"
|
|
2053
|
-
},
|
|
2054
|
-
"preserve": {
|
|
2055
|
-
"char": "r",
|
|
2056
|
-
"hidden": true,
|
|
2057
|
-
"name": "preserve",
|
|
2058
|
-
"summary": "Preserve temp files that would otherwise be deleted.",
|
|
2059
|
-
"allowNo": false,
|
|
2060
|
-
"type": "boolean"
|
|
2061
|
-
},
|
|
2062
|
-
"releasenotes-url": {
|
|
2063
|
-
"aliases": [
|
|
2064
|
-
"releasenotesurl"
|
|
2065
|
-
],
|
|
2066
|
-
"deprecateAliases": true,
|
|
2067
|
-
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
2068
|
-
"name": "releasenotes-url",
|
|
2069
|
-
"summary": "Release notes URL.",
|
|
2070
|
-
"hasDynamicHelp": false,
|
|
2071
|
-
"multiple": false,
|
|
2072
|
-
"type": "option"
|
|
2073
|
-
},
|
|
2074
|
-
"skip-ancestor-check": {
|
|
2075
|
-
"aliases": [
|
|
2076
|
-
"skipancestorcheck"
|
|
2077
|
-
],
|
|
2078
|
-
"deprecateAliases": true,
|
|
2079
|
-
"name": "skip-ancestor-check",
|
|
2080
|
-
"summary": "Overrides ancestry requirements, which allows you to specify a package ancestor that isn’t the highest released package version.",
|
|
2174
|
+
"show-conversions-only": {
|
|
2175
|
+
"name": "show-conversions-only",
|
|
2176
|
+
"summary": "Filter the list output to display only converted package version.",
|
|
2081
2177
|
"allowNo": false,
|
|
2082
2178
|
"type": "boolean"
|
|
2083
2179
|
},
|
|
2084
|
-
"
|
|
2180
|
+
"modified-last-days": {
|
|
2085
2181
|
"aliases": [
|
|
2086
|
-
"
|
|
2182
|
+
"modifiedlastdays"
|
|
2087
2183
|
],
|
|
2184
|
+
"char": "m",
|
|
2088
2185
|
"deprecateAliases": true,
|
|
2089
|
-
"
|
|
2090
|
-
"
|
|
2091
|
-
"code-coverage",
|
|
2092
|
-
"async-validation"
|
|
2093
|
-
],
|
|
2094
|
-
"name": "skip-validation",
|
|
2095
|
-
"summary": "Skip validation during package version creation; you can’t promote unvalidated package versions.",
|
|
2096
|
-
"allowNo": false,
|
|
2097
|
-
"type": "boolean"
|
|
2098
|
-
},
|
|
2099
|
-
"async-validation": {
|
|
2100
|
-
"description": "Specifying async validation returns the package version earlier in the process, allowing you to install and test the new version right away. If your development team is using continuous integration (CI) scripts, async validation can reduce your overall CI run time.",
|
|
2101
|
-
"exclusive": [
|
|
2102
|
-
"skip-validation"
|
|
2103
|
-
],
|
|
2104
|
-
"name": "async-validation",
|
|
2105
|
-
"summary": "Return a new package version before completing package validations.",
|
|
2106
|
-
"allowNo": false,
|
|
2107
|
-
"type": "boolean"
|
|
2108
|
-
},
|
|
2109
|
-
"tag": {
|
|
2110
|
-
"char": "t",
|
|
2111
|
-
"name": "tag",
|
|
2112
|
-
"summary": "Package version’s tag.",
|
|
2186
|
+
"name": "modified-last-days",
|
|
2187
|
+
"summary": "Number of days since the items were modified, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
2113
2188
|
"hasDynamicHelp": false,
|
|
2114
2189
|
"multiple": false,
|
|
2115
2190
|
"type": "option"
|
|
2116
2191
|
},
|
|
2117
|
-
"
|
|
2118
|
-
"
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
"deprecateAliases": true,
|
|
2122
|
-
"description": "The uninstall script is an Apex class within this package that is run in the installing org after uninstallations of this package.",
|
|
2123
|
-
"name": "uninstall-script",
|
|
2124
|
-
"summary": "Uninstall script name; applies to managed packages only.",
|
|
2192
|
+
"packages": {
|
|
2193
|
+
"char": "p",
|
|
2194
|
+
"name": "packages",
|
|
2195
|
+
"summary": "Comma-delimited list of packages (aliases or 0Ho IDs) to list.",
|
|
2125
2196
|
"hasDynamicHelp": false,
|
|
2126
2197
|
"multiple": false,
|
|
2127
2198
|
"type": "option"
|
|
2128
2199
|
},
|
|
2129
|
-
"
|
|
2130
|
-
"
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
"char": "j",
|
|
2134
|
-
"deprecateAliases": true,
|
|
2135
|
-
"hidden": true,
|
|
2136
|
-
"name": "validate-schema",
|
|
2137
|
-
"summary": "Validate the sfdx-project.json file against the JSON schema.",
|
|
2200
|
+
"released": {
|
|
2201
|
+
"char": "r",
|
|
2202
|
+
"name": "released",
|
|
2203
|
+
"summary": "Display released versions only (IsReleased=true).",
|
|
2138
2204
|
"allowNo": false,
|
|
2139
2205
|
"type": "boolean"
|
|
2140
2206
|
},
|
|
2141
|
-
"
|
|
2142
|
-
"
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
"char": "e",
|
|
2146
|
-
"deprecateAliases": true,
|
|
2147
|
-
"name": "version-description",
|
|
2148
|
-
"summary": "Description of the package version to be created; overrides the sfdx-project.json value.",
|
|
2149
|
-
"hasDynamicHelp": false,
|
|
2150
|
-
"multiple": false,
|
|
2151
|
-
"type": "option"
|
|
2152
|
-
},
|
|
2153
|
-
"version-name": {
|
|
2154
|
-
"aliases": [
|
|
2155
|
-
"versionname"
|
|
2156
|
-
],
|
|
2157
|
-
"char": "a",
|
|
2158
|
-
"deprecateAliases": true,
|
|
2159
|
-
"name": "version-name",
|
|
2160
|
-
"summary": "Name of the package version to be created; overrides the sfdx-project.json value.",
|
|
2207
|
+
"branch": {
|
|
2208
|
+
"char": "b",
|
|
2209
|
+
"name": "branch",
|
|
2210
|
+
"summary": "Branch in your source control system used to filter the results; only package versions based on the specified branch are listed.",
|
|
2161
2211
|
"hasDynamicHelp": false,
|
|
2162
2212
|
"multiple": false,
|
|
2163
2213
|
"type": "option"
|
|
2164
2214
|
},
|
|
2165
|
-
"
|
|
2215
|
+
"order-by": {
|
|
2166
2216
|
"aliases": [
|
|
2167
|
-
"
|
|
2217
|
+
"orderby"
|
|
2168
2218
|
],
|
|
2169
|
-
"char": "
|
|
2219
|
+
"char": "o",
|
|
2170
2220
|
"deprecateAliases": true,
|
|
2171
|
-
"
|
|
2172
|
-
"
|
|
2173
|
-
"summary": "Version number of the package version to be created; overrides the sfdx-project.json value.",
|
|
2174
|
-
"hasDynamicHelp": false,
|
|
2175
|
-
"multiple": false,
|
|
2176
|
-
"type": "option"
|
|
2177
|
-
},
|
|
2178
|
-
"wait": {
|
|
2179
|
-
"char": "w",
|
|
2180
|
-
"name": "wait",
|
|
2181
|
-
"summary": "Number of minutes to wait for the package version to be created.",
|
|
2182
|
-
"hasDynamicHelp": true,
|
|
2183
|
-
"multiple": false,
|
|
2184
|
-
"type": "option"
|
|
2185
|
-
},
|
|
2186
|
-
"language": {
|
|
2187
|
-
"description": "Specify the language using a language code listed under \"Supported Languages\" in Salesforce Help. If no language is specified, the language defaults to the language of the Dev Hub user who created the package.",
|
|
2188
|
-
"name": "language",
|
|
2189
|
-
"summary": "Language for the package.",
|
|
2221
|
+
"name": "order-by",
|
|
2222
|
+
"summary": "Package version fields used to order the list.",
|
|
2190
2223
|
"hasDynamicHelp": false,
|
|
2191
2224
|
"multiple": false,
|
|
2192
2225
|
"type": "option"
|
|
2193
2226
|
},
|
|
2194
2227
|
"verbose": {
|
|
2195
|
-
"description": "Display verbose command output. When polling for the status of the creation, this will output status and timeout data on a separate line for each poll request, which is useful in CI systems where timeouts can occur with long periods of no output from commands.",
|
|
2196
2228
|
"name": "verbose",
|
|
2197
|
-
"summary": "Display
|
|
2229
|
+
"summary": "Display extended package version details.",
|
|
2198
2230
|
"allowNo": false,
|
|
2199
2231
|
"type": "boolean"
|
|
2200
2232
|
}
|
|
2201
2233
|
},
|
|
2202
2234
|
"hasDynamicHelp": true,
|
|
2203
2235
|
"hiddenAliases": [],
|
|
2204
|
-
"id": "package:version:
|
|
2236
|
+
"id": "package:version:list",
|
|
2205
2237
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2206
2238
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2207
2239
|
"pluginType": "core",
|
|
2208
2240
|
"strict": true,
|
|
2209
|
-
"summary": "
|
|
2241
|
+
"summary": "List all package versions in the Dev Hub org.",
|
|
2210
2242
|
"enableJsonFlag": true,
|
|
2211
|
-
"requiresProject": true,
|
|
2212
2243
|
"isESM": true,
|
|
2213
2244
|
"relativePath": [
|
|
2214
2245
|
"lib",
|
|
2215
2246
|
"commands",
|
|
2216
2247
|
"package",
|
|
2217
2248
|
"version",
|
|
2218
|
-
"
|
|
2249
|
+
"list.js"
|
|
2219
2250
|
],
|
|
2220
2251
|
"aliasPermutations": [
|
|
2221
|
-
"force:package:version:
|
|
2222
|
-
"package:force:version:
|
|
2223
|
-
"package:version:force:
|
|
2224
|
-
"package:version:
|
|
2225
|
-
"force:version:package:
|
|
2226
|
-
"version:force:package:
|
|
2227
|
-
"version:package:force:
|
|
2228
|
-
"version:package:
|
|
2229
|
-
"force:version:
|
|
2230
|
-
"version:force:
|
|
2231
|
-
"version:
|
|
2232
|
-
"version:
|
|
2233
|
-
"force:package:
|
|
2234
|
-
"package:force:
|
|
2235
|
-
"package:
|
|
2236
|
-
"package:
|
|
2237
|
-
"force:
|
|
2238
|
-
"
|
|
2239
|
-
"
|
|
2240
|
-
"
|
|
2241
|
-
"force:
|
|
2242
|
-
"
|
|
2243
|
-
"
|
|
2244
|
-
"
|
|
2252
|
+
"force:package:version:list",
|
|
2253
|
+
"package:force:version:list",
|
|
2254
|
+
"package:version:force:list",
|
|
2255
|
+
"package:version:list:force",
|
|
2256
|
+
"force:version:package:list",
|
|
2257
|
+
"version:force:package:list",
|
|
2258
|
+
"version:package:force:list",
|
|
2259
|
+
"version:package:list:force",
|
|
2260
|
+
"force:version:list:package",
|
|
2261
|
+
"version:force:list:package",
|
|
2262
|
+
"version:list:force:package",
|
|
2263
|
+
"version:list:package:force",
|
|
2264
|
+
"force:package:list:version",
|
|
2265
|
+
"package:force:list:version",
|
|
2266
|
+
"package:list:force:version",
|
|
2267
|
+
"package:list:version:force",
|
|
2268
|
+
"force:list:package:version",
|
|
2269
|
+
"list:force:package:version",
|
|
2270
|
+
"list:package:force:version",
|
|
2271
|
+
"list:package:version:force",
|
|
2272
|
+
"force:list:version:package",
|
|
2273
|
+
"list:force:version:package",
|
|
2274
|
+
"list:version:force:package",
|
|
2275
|
+
"list:version:package:force"
|
|
2245
2276
|
],
|
|
2246
2277
|
"permutations": [
|
|
2247
|
-
"package:version:
|
|
2248
|
-
"version:package:
|
|
2249
|
-
"version:
|
|
2250
|
-
"package:
|
|
2251
|
-
"
|
|
2252
|
-
"
|
|
2278
|
+
"package:version:list",
|
|
2279
|
+
"version:package:list",
|
|
2280
|
+
"version:list:package",
|
|
2281
|
+
"package:list:version",
|
|
2282
|
+
"list:package:version",
|
|
2283
|
+
"list:version:package"
|
|
2253
2284
|
]
|
|
2254
2285
|
},
|
|
2255
|
-
"package:version:
|
|
2286
|
+
"package:version:promote": {
|
|
2256
2287
|
"aliases": [
|
|
2257
|
-
"force:package:version:
|
|
2288
|
+
"force:package:version:promote"
|
|
2258
2289
|
],
|
|
2259
2290
|
"args": {},
|
|
2260
2291
|
"deprecateAliases": true,
|
|
2261
|
-
"description": "
|
|
2292
|
+
"description": "Supply the ID or alias of the package version you want to promote. Promotes the package version to released status.",
|
|
2262
2293
|
"examples": [
|
|
2263
|
-
"
|
|
2264
|
-
"
|
|
2294
|
+
"Promote the package version with the specified ID to released; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
2295
|
+
"Promote the package version with the specified alias to released; uses the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package awesome_package_alias --target-dev-hub devhub@example.com",
|
|
2296
|
+
"Promote the package version with an alias that has spaces to released:\n<%= config.bin %> <%= command.id %> --package \"Awesome Package Alias\""
|
|
2265
2297
|
],
|
|
2266
2298
|
"flags": {
|
|
2267
2299
|
"json": {
|
|
@@ -2315,42 +2347,35 @@
|
|
|
2315
2347
|
"multiple": false,
|
|
2316
2348
|
"type": "option"
|
|
2317
2349
|
},
|
|
2318
|
-
"no-prompt": {
|
|
2319
|
-
"aliases": [
|
|
2320
|
-
"noprompt"
|
|
2321
|
-
],
|
|
2322
|
-
"char": "n",
|
|
2323
|
-
"deprecateAliases": true,
|
|
2324
|
-
"name": "no-prompt",
|
|
2325
|
-
"summary": "Don’t prompt before deleting the package version.",
|
|
2326
|
-
"allowNo": false,
|
|
2327
|
-
"type": "boolean"
|
|
2328
|
-
},
|
|
2329
2350
|
"package": {
|
|
2330
2351
|
"char": "p",
|
|
2331
2352
|
"name": "package",
|
|
2332
2353
|
"required": true,
|
|
2333
|
-
"summary": "ID (starts with 04t) or alias of the package version to
|
|
2354
|
+
"summary": "ID (starts with 04t) or alias of the package version to promote.",
|
|
2334
2355
|
"hasDynamicHelp": false,
|
|
2335
2356
|
"multiple": false,
|
|
2336
2357
|
"type": "option"
|
|
2337
2358
|
},
|
|
2338
|
-
"
|
|
2339
|
-
"
|
|
2340
|
-
|
|
2341
|
-
|
|
2359
|
+
"no-prompt": {
|
|
2360
|
+
"aliases": [
|
|
2361
|
+
"noprompt"
|
|
2362
|
+
],
|
|
2363
|
+
"char": "n",
|
|
2364
|
+
"deprecateAliases": true,
|
|
2365
|
+
"name": "no-prompt",
|
|
2366
|
+
"summary": "Don't prompt to confirm setting the package version as released.",
|
|
2342
2367
|
"allowNo": false,
|
|
2343
2368
|
"type": "boolean"
|
|
2344
2369
|
}
|
|
2345
2370
|
},
|
|
2346
2371
|
"hasDynamicHelp": true,
|
|
2347
2372
|
"hiddenAliases": [],
|
|
2348
|
-
"id": "package:version:
|
|
2373
|
+
"id": "package:version:promote",
|
|
2349
2374
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2350
2375
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2351
2376
|
"pluginType": "core",
|
|
2352
2377
|
"strict": true,
|
|
2353
|
-
"summary": "
|
|
2378
|
+
"summary": "Promote a package version to released.",
|
|
2354
2379
|
"enableJsonFlag": true,
|
|
2355
2380
|
"isESM": true,
|
|
2356
2381
|
"relativePath": [
|
|
@@ -2358,54 +2383,53 @@
|
|
|
2358
2383
|
"commands",
|
|
2359
2384
|
"package",
|
|
2360
2385
|
"version",
|
|
2361
|
-
"
|
|
2386
|
+
"promote.js"
|
|
2362
2387
|
],
|
|
2363
2388
|
"aliasPermutations": [
|
|
2364
|
-
"force:package:version:
|
|
2365
|
-
"package:force:version:
|
|
2366
|
-
"package:version:force:
|
|
2367
|
-
"package:version:
|
|
2368
|
-
"force:version:package:
|
|
2369
|
-
"version:force:package:
|
|
2370
|
-
"version:package:force:
|
|
2371
|
-
"version:package:
|
|
2372
|
-
"force:version:
|
|
2373
|
-
"version:force:
|
|
2374
|
-
"version:
|
|
2375
|
-
"version:
|
|
2376
|
-
"force:package:
|
|
2377
|
-
"package:force:
|
|
2378
|
-
"package:
|
|
2379
|
-
"package:
|
|
2380
|
-
"force:
|
|
2381
|
-
"
|
|
2382
|
-
"
|
|
2383
|
-
"
|
|
2384
|
-
"force:
|
|
2385
|
-
"
|
|
2386
|
-
"
|
|
2387
|
-
"
|
|
2389
|
+
"force:package:version:promote",
|
|
2390
|
+
"package:force:version:promote",
|
|
2391
|
+
"package:version:force:promote",
|
|
2392
|
+
"package:version:promote:force",
|
|
2393
|
+
"force:version:package:promote",
|
|
2394
|
+
"version:force:package:promote",
|
|
2395
|
+
"version:package:force:promote",
|
|
2396
|
+
"version:package:promote:force",
|
|
2397
|
+
"force:version:promote:package",
|
|
2398
|
+
"version:force:promote:package",
|
|
2399
|
+
"version:promote:force:package",
|
|
2400
|
+
"version:promote:package:force",
|
|
2401
|
+
"force:package:promote:version",
|
|
2402
|
+
"package:force:promote:version",
|
|
2403
|
+
"package:promote:force:version",
|
|
2404
|
+
"package:promote:version:force",
|
|
2405
|
+
"force:promote:package:version",
|
|
2406
|
+
"promote:force:package:version",
|
|
2407
|
+
"promote:package:force:version",
|
|
2408
|
+
"promote:package:version:force",
|
|
2409
|
+
"force:promote:version:package",
|
|
2410
|
+
"promote:force:version:package",
|
|
2411
|
+
"promote:version:force:package",
|
|
2412
|
+
"promote:version:package:force"
|
|
2388
2413
|
],
|
|
2389
2414
|
"permutations": [
|
|
2390
|
-
"package:version:
|
|
2391
|
-
"version:package:
|
|
2392
|
-
"version:
|
|
2393
|
-
"package:
|
|
2394
|
-
"
|
|
2395
|
-
"
|
|
2415
|
+
"package:version:promote",
|
|
2416
|
+
"version:package:promote",
|
|
2417
|
+
"version:promote:package",
|
|
2418
|
+
"package:promote:version",
|
|
2419
|
+
"promote:package:version",
|
|
2420
|
+
"promote:version:package"
|
|
2396
2421
|
]
|
|
2397
2422
|
},
|
|
2398
|
-
"package:version:
|
|
2423
|
+
"package:version:report": {
|
|
2399
2424
|
"aliases": [
|
|
2400
|
-
"force:package:version:
|
|
2425
|
+
"force:package:version:report"
|
|
2401
2426
|
],
|
|
2402
2427
|
"args": {},
|
|
2403
2428
|
"deprecateAliases": true,
|
|
2429
|
+
"description": "To update package version values, run \"<%= config.bin %> package version update\".",
|
|
2404
2430
|
"examples": [
|
|
2405
|
-
"
|
|
2406
|
-
"
|
|
2407
|
-
"Display the ancestry tree for a package with the specified ID, using the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package OHo... --target-dev-hub devhub@example.com",
|
|
2408
|
-
"Display the ancestry tree of a package version with the specified ID, using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t..."
|
|
2431
|
+
"Retrieve details about the package version with the specified ID from your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
2432
|
+
"Retrieve details about the package version with the specified alias (that contains spaces) from the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --target-dev-hub devhub@example.com"
|
|
2409
2433
|
],
|
|
2410
2434
|
"flags": {
|
|
2411
2435
|
"json": {
|
|
@@ -2461,40 +2485,28 @@
|
|
|
2461
2485
|
},
|
|
2462
2486
|
"package": {
|
|
2463
2487
|
"char": "p",
|
|
2464
|
-
"description": "If you specify a package ID (starts with 0Ho) or alias, the ancestor tree for every package version associated with the package ID is displayed. If you specify a package version (starts with 04t) or alias, the ancestry tree of the specified package version is displayed.",
|
|
2465
2488
|
"name": "package",
|
|
2466
2489
|
"required": true,
|
|
2467
|
-
"summary": "ID
|
|
2490
|
+
"summary": "ID (starts with 04t) or alias of the package to retrieve details for.",
|
|
2468
2491
|
"hasDynamicHelp": false,
|
|
2469
2492
|
"multiple": false,
|
|
2470
2493
|
"type": "option"
|
|
2471
2494
|
},
|
|
2472
|
-
"dot-code": {
|
|
2473
|
-
"aliases": [
|
|
2474
|
-
"dotcode"
|
|
2475
|
-
],
|
|
2476
|
-
"deprecateAliases": true,
|
|
2477
|
-
"description": "You can use the DOT code output in graph visualization software to create tree visualizations.",
|
|
2478
|
-
"name": "dot-code",
|
|
2479
|
-
"summary": "Display the ancestry tree in DOT code.",
|
|
2480
|
-
"allowNo": false,
|
|
2481
|
-
"type": "boolean"
|
|
2482
|
-
},
|
|
2483
2495
|
"verbose": {
|
|
2484
2496
|
"name": "verbose",
|
|
2485
|
-
"summary": "Display
|
|
2497
|
+
"summary": "Display extended package version details.",
|
|
2486
2498
|
"allowNo": false,
|
|
2487
2499
|
"type": "boolean"
|
|
2488
2500
|
}
|
|
2489
2501
|
},
|
|
2490
2502
|
"hasDynamicHelp": true,
|
|
2491
2503
|
"hiddenAliases": [],
|
|
2492
|
-
"id": "package:version:
|
|
2504
|
+
"id": "package:version:report",
|
|
2493
2505
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2494
2506
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2495
2507
|
"pluginType": "core",
|
|
2496
2508
|
"strict": true,
|
|
2497
|
-
"summary": "
|
|
2509
|
+
"summary": "Retrieve details about a package version in the Dev Hub org.",
|
|
2498
2510
|
"enableJsonFlag": true,
|
|
2499
2511
|
"isESM": true,
|
|
2500
2512
|
"relativePath": [
|
|
@@ -2502,58 +2514,49 @@
|
|
|
2502
2514
|
"commands",
|
|
2503
2515
|
"package",
|
|
2504
2516
|
"version",
|
|
2505
|
-
"
|
|
2517
|
+
"report.js"
|
|
2506
2518
|
],
|
|
2507
2519
|
"aliasPermutations": [
|
|
2508
|
-
"force:package:version:
|
|
2509
|
-
"package:force:version:
|
|
2510
|
-
"package:version:force:
|
|
2511
|
-
"package:version:
|
|
2512
|
-
"force:version:package:
|
|
2513
|
-
"version:force:package:
|
|
2514
|
-
"version:package:force:
|
|
2515
|
-
"version:package:
|
|
2516
|
-
"force:version:
|
|
2517
|
-
"version:force:
|
|
2518
|
-
"version:
|
|
2519
|
-
"version:
|
|
2520
|
-
"force:package:
|
|
2521
|
-
"package:force:
|
|
2522
|
-
"package:
|
|
2523
|
-
"package:
|
|
2524
|
-
"force:
|
|
2525
|
-
"
|
|
2526
|
-
"
|
|
2527
|
-
"
|
|
2528
|
-
"force:
|
|
2529
|
-
"
|
|
2530
|
-
"
|
|
2531
|
-
"
|
|
2520
|
+
"force:package:version:report",
|
|
2521
|
+
"package:force:version:report",
|
|
2522
|
+
"package:version:force:report",
|
|
2523
|
+
"package:version:report:force",
|
|
2524
|
+
"force:version:package:report",
|
|
2525
|
+
"version:force:package:report",
|
|
2526
|
+
"version:package:force:report",
|
|
2527
|
+
"version:package:report:force",
|
|
2528
|
+
"force:version:report:package",
|
|
2529
|
+
"version:force:report:package",
|
|
2530
|
+
"version:report:force:package",
|
|
2531
|
+
"version:report:package:force",
|
|
2532
|
+
"force:package:report:version",
|
|
2533
|
+
"package:force:report:version",
|
|
2534
|
+
"package:report:force:version",
|
|
2535
|
+
"package:report:version:force",
|
|
2536
|
+
"force:report:package:version",
|
|
2537
|
+
"report:force:package:version",
|
|
2538
|
+
"report:package:force:version",
|
|
2539
|
+
"report:package:version:force",
|
|
2540
|
+
"force:report:version:package",
|
|
2541
|
+
"report:force:version:package",
|
|
2542
|
+
"report:version:force:package",
|
|
2543
|
+
"report:version:package:force"
|
|
2532
2544
|
],
|
|
2533
2545
|
"permutations": [
|
|
2534
|
-
"package:version:
|
|
2535
|
-
"version:package:
|
|
2536
|
-
"version:
|
|
2537
|
-
"package:
|
|
2538
|
-
"
|
|
2539
|
-
"
|
|
2546
|
+
"package:version:report",
|
|
2547
|
+
"version:package:report",
|
|
2548
|
+
"version:report:package",
|
|
2549
|
+
"package:report:version",
|
|
2550
|
+
"report:package:version",
|
|
2551
|
+
"report:version:package"
|
|
2540
2552
|
]
|
|
2541
2553
|
},
|
|
2542
|
-
"package:version:
|
|
2543
|
-
"aliases": [
|
|
2544
|
-
"force:package:version:list"
|
|
2545
|
-
],
|
|
2554
|
+
"package:version:retrieve": {
|
|
2555
|
+
"aliases": [],
|
|
2546
2556
|
"args": {},
|
|
2547
|
-
"
|
|
2548
|
-
"description": "Description",
|
|
2557
|
+
"description": "Retrieving a package version downloads the metadata into the directory you specify.\n\nYou can retrieve metadata for a second- or first-generation managed package, or an unlocked package.\n\nSpecify the subscriber package version ID (starts with 04t) and the path to an empty directory when you run this command.",
|
|
2549
2558
|
"examples": [
|
|
2550
|
-
"
|
|
2551
|
-
"List the released package versions for the two specified packages that were modified today; use the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --packages 0Ho000000000000,0Ho000000000001 --released --modified-last-days 0 --target-dev-hub devhub@example.com",
|
|
2552
|
-
"List all released package versions in your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --released",
|
|
2553
|
-
"List package versions that were modified today in your default Dev Hub org; show limited details about each one:\n<%= config.bin %> <%= command.id %> --concise --modified-last-days 0",
|
|
2554
|
-
"List package versions that are based on the \"featureA\" branch in your source control system that were modified today in your default Dev Hub org; show limited details about each one:\n<%= config.bin %> <%= command.id %> --concise --modified-last-days 0 --branch featureA",
|
|
2555
|
-
"List released package versions that were created in the last 3 days in your default Dev Hub org; show limited details:\n<%= config.bin %> <%= command.id %> --concise --created-last-days 3 --released",
|
|
2556
|
-
"List released package versions that were modified today for the two packages with specified aliases in your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --packages exp-mgr,exp-mgr-util --released --modified-last-days 0"
|
|
2559
|
+
"Retrieve package metadata for a subscriber package version ID (starts with 04t) into my-folder/ within your Salesforce DX project directory:\n<%= config.bin %> <%= command.id %> --package 04t... --output-dir my-folder –-target-org my-scratch\nIf you omit --target-org, this command runs against your default org."
|
|
2557
2560
|
],
|
|
2558
2561
|
"flags": {
|
|
2559
2562
|
"json": {
|
|
@@ -2581,21 +2584,6 @@
|
|
|
2581
2584
|
"multiple": false,
|
|
2582
2585
|
"type": "option"
|
|
2583
2586
|
},
|
|
2584
|
-
"target-dev-hub": {
|
|
2585
|
-
"aliases": [
|
|
2586
|
-
"targetdevhubusername",
|
|
2587
|
-
"target-hub-org"
|
|
2588
|
-
],
|
|
2589
|
-
"char": "v",
|
|
2590
|
-
"deprecateAliases": true,
|
|
2591
|
-
"name": "target-dev-hub",
|
|
2592
|
-
"noCacheDefault": true,
|
|
2593
|
-
"required": true,
|
|
2594
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2595
|
-
"hasDynamicHelp": true,
|
|
2596
|
-
"multiple": false,
|
|
2597
|
-
"type": "option"
|
|
2598
|
-
},
|
|
2599
2587
|
"api-version": {
|
|
2600
2588
|
"aliases": [
|
|
2601
2589
|
"apiversion"
|
|
@@ -2607,147 +2595,80 @@
|
|
|
2607
2595
|
"multiple": false,
|
|
2608
2596
|
"type": "option"
|
|
2609
2597
|
},
|
|
2610
|
-
"
|
|
2598
|
+
"target-org": {
|
|
2611
2599
|
"aliases": [
|
|
2612
|
-
"
|
|
2600
|
+
"targetusername",
|
|
2601
|
+
"u"
|
|
2613
2602
|
],
|
|
2614
|
-
"char": "
|
|
2603
|
+
"char": "o",
|
|
2615
2604
|
"deprecateAliases": true,
|
|
2616
|
-
"name": "
|
|
2617
|
-
"
|
|
2618
|
-
"
|
|
2605
|
+
"name": "target-org",
|
|
2606
|
+
"noCacheDefault": true,
|
|
2607
|
+
"required": true,
|
|
2608
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2609
|
+
"hasDynamicHelp": true,
|
|
2619
2610
|
"multiple": false,
|
|
2620
2611
|
"type": "option"
|
|
2621
2612
|
},
|
|
2622
|
-
"
|
|
2623
|
-
"
|
|
2624
|
-
"
|
|
2625
|
-
"
|
|
2626
|
-
"
|
|
2627
|
-
},
|
|
2628
|
-
"show-conversions-only": {
|
|
2629
|
-
"name": "show-conversions-only",
|
|
2630
|
-
"summary": "Filter the list output to display only converted package version.",
|
|
2631
|
-
"allowNo": false,
|
|
2632
|
-
"type": "boolean"
|
|
2633
|
-
},
|
|
2634
|
-
"modified-last-days": {
|
|
2635
|
-
"aliases": [
|
|
2636
|
-
"modifiedlastdays"
|
|
2637
|
-
],
|
|
2638
|
-
"char": "m",
|
|
2639
|
-
"deprecateAliases": true,
|
|
2640
|
-
"name": "modified-last-days",
|
|
2641
|
-
"summary": "Number of days since the items were modified, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
2613
|
+
"package": {
|
|
2614
|
+
"char": "p",
|
|
2615
|
+
"name": "package",
|
|
2616
|
+
"required": true,
|
|
2617
|
+
"summary": "Subscriber package version ID (starts with 04t).",
|
|
2642
2618
|
"hasDynamicHelp": false,
|
|
2643
2619
|
"multiple": false,
|
|
2644
2620
|
"type": "option"
|
|
2645
2621
|
},
|
|
2646
|
-
"
|
|
2647
|
-
"char": "
|
|
2648
|
-
"name": "
|
|
2649
|
-
"summary": "
|
|
2650
|
-
"
|
|
2651
|
-
"multiple": false,
|
|
2652
|
-
"type": "option"
|
|
2653
|
-
},
|
|
2654
|
-
"released": {
|
|
2655
|
-
"char": "r",
|
|
2656
|
-
"name": "released",
|
|
2657
|
-
"summary": "Display released versions only (IsReleased=true).",
|
|
2658
|
-
"allowNo": false,
|
|
2659
|
-
"type": "boolean"
|
|
2660
|
-
},
|
|
2661
|
-
"branch": {
|
|
2662
|
-
"char": "b",
|
|
2663
|
-
"name": "branch",
|
|
2664
|
-
"summary": "Branch in your source control system used to filter the results; only package versions based on the specified branch are listed.",
|
|
2665
|
-
"hasDynamicHelp": false,
|
|
2666
|
-
"multiple": false,
|
|
2667
|
-
"type": "option"
|
|
2668
|
-
},
|
|
2669
|
-
"order-by": {
|
|
2670
|
-
"aliases": [
|
|
2671
|
-
"orderby"
|
|
2672
|
-
],
|
|
2673
|
-
"char": "o",
|
|
2674
|
-
"deprecateAliases": true,
|
|
2675
|
-
"name": "order-by",
|
|
2676
|
-
"summary": "Package version fields used to order the list.",
|
|
2622
|
+
"output-dir": {
|
|
2623
|
+
"char": "d",
|
|
2624
|
+
"name": "output-dir",
|
|
2625
|
+
"summary": "Path within your Salesforce DX project directory in which to download the metadata. This directory must be empty.",
|
|
2626
|
+
"default": "force-app",
|
|
2677
2627
|
"hasDynamicHelp": false,
|
|
2678
2628
|
"multiple": false,
|
|
2679
2629
|
"type": "option"
|
|
2680
|
-
},
|
|
2681
|
-
"verbose": {
|
|
2682
|
-
"name": "verbose",
|
|
2683
|
-
"summary": "Display extended package version details.",
|
|
2684
|
-
"allowNo": false,
|
|
2685
|
-
"type": "boolean"
|
|
2686
2630
|
}
|
|
2687
2631
|
},
|
|
2688
2632
|
"hasDynamicHelp": true,
|
|
2633
|
+
"hidden": true,
|
|
2689
2634
|
"hiddenAliases": [],
|
|
2690
|
-
"id": "package:version:
|
|
2635
|
+
"id": "package:version:retrieve",
|
|
2691
2636
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2692
2637
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2693
2638
|
"pluginType": "core",
|
|
2694
2639
|
"strict": true,
|
|
2695
|
-
"summary": "
|
|
2640
|
+
"summary": "Retrieve package metadata for a specified package version.",
|
|
2696
2641
|
"enableJsonFlag": true,
|
|
2642
|
+
"requiresProject": true,
|
|
2697
2643
|
"isESM": true,
|
|
2698
2644
|
"relativePath": [
|
|
2699
2645
|
"lib",
|
|
2700
2646
|
"commands",
|
|
2701
2647
|
"package",
|
|
2702
2648
|
"version",
|
|
2703
|
-
"
|
|
2704
|
-
],
|
|
2705
|
-
"aliasPermutations": [
|
|
2706
|
-
"force:package:version:list",
|
|
2707
|
-
"package:force:version:list",
|
|
2708
|
-
"package:version:force:list",
|
|
2709
|
-
"package:version:list:force",
|
|
2710
|
-
"force:version:package:list",
|
|
2711
|
-
"version:force:package:list",
|
|
2712
|
-
"version:package:force:list",
|
|
2713
|
-
"version:package:list:force",
|
|
2714
|
-
"force:version:list:package",
|
|
2715
|
-
"version:force:list:package",
|
|
2716
|
-
"version:list:force:package",
|
|
2717
|
-
"version:list:package:force",
|
|
2718
|
-
"force:package:list:version",
|
|
2719
|
-
"package:force:list:version",
|
|
2720
|
-
"package:list:force:version",
|
|
2721
|
-
"package:list:version:force",
|
|
2722
|
-
"force:list:package:version",
|
|
2723
|
-
"list:force:package:version",
|
|
2724
|
-
"list:package:force:version",
|
|
2725
|
-
"list:package:version:force",
|
|
2726
|
-
"force:list:version:package",
|
|
2727
|
-
"list:force:version:package",
|
|
2728
|
-
"list:version:force:package",
|
|
2729
|
-
"list:version:package:force"
|
|
2649
|
+
"retrieve.js"
|
|
2730
2650
|
],
|
|
2651
|
+
"aliasPermutations": [],
|
|
2731
2652
|
"permutations": [
|
|
2732
|
-
"package:version:
|
|
2733
|
-
"version:package:
|
|
2734
|
-
"version:
|
|
2735
|
-
"package:
|
|
2736
|
-
"
|
|
2737
|
-
"
|
|
2653
|
+
"package:version:retrieve",
|
|
2654
|
+
"version:package:retrieve",
|
|
2655
|
+
"version:retrieve:package",
|
|
2656
|
+
"package:retrieve:version",
|
|
2657
|
+
"retrieve:package:version",
|
|
2658
|
+
"retrieve:version:package"
|
|
2738
2659
|
]
|
|
2739
2660
|
},
|
|
2740
|
-
"package:version:
|
|
2661
|
+
"package:version:update": {
|
|
2741
2662
|
"aliases": [
|
|
2742
|
-
"force:package:version:
|
|
2663
|
+
"force:package:version:update"
|
|
2743
2664
|
],
|
|
2744
2665
|
"args": {},
|
|
2745
2666
|
"deprecateAliases": true,
|
|
2746
|
-
"description": "
|
|
2667
|
+
"description": "Specify a new value for each option you want to update.\n\nTo display details about a package version, run \"<%= config.bin %> package version display\".",
|
|
2747
2668
|
"examples": [
|
|
2748
|
-
"
|
|
2749
|
-
"
|
|
2750
|
-
"
|
|
2669
|
+
"Update the package version that has the specified alias (that contains spaces) with a new installation key \"password123\"; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --installation-key password123",
|
|
2670
|
+
"Update the package version that has the specified ID with a new branch and tag; use the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package 04t... --branch main --tag 'Release 1.0.7' --target-dev-hub devhub@example.com",
|
|
2671
|
+
"Update the package version that has the specified ID with a new description:\n<%= config.bin %> <%= command.id %> --package 04t... --version-description \"New Package Version Description\""
|
|
2751
2672
|
],
|
|
2752
2673
|
"flags": {
|
|
2753
2674
|
"json": {
|
|
@@ -2805,85 +2726,127 @@
|
|
|
2805
2726
|
"char": "p",
|
|
2806
2727
|
"name": "package",
|
|
2807
2728
|
"required": true,
|
|
2808
|
-
"summary": "ID (starts with 04t) or alias of the package version
|
|
2729
|
+
"summary": "ID (starts with 04t) or alias of the package to update a version of.",
|
|
2809
2730
|
"hasDynamicHelp": false,
|
|
2810
2731
|
"multiple": false,
|
|
2811
2732
|
"type": "option"
|
|
2812
2733
|
},
|
|
2813
|
-
"
|
|
2734
|
+
"version-name": {
|
|
2814
2735
|
"aliases": [
|
|
2815
|
-
"
|
|
2736
|
+
"versionname"
|
|
2816
2737
|
],
|
|
2817
|
-
"char": "
|
|
2738
|
+
"char": "a",
|
|
2818
2739
|
"deprecateAliases": true,
|
|
2819
|
-
"name": "
|
|
2820
|
-
"summary": "
|
|
2821
|
-
"
|
|
2822
|
-
"
|
|
2740
|
+
"name": "version-name",
|
|
2741
|
+
"summary": "New package version name.",
|
|
2742
|
+
"hasDynamicHelp": false,
|
|
2743
|
+
"multiple": false,
|
|
2744
|
+
"type": "option"
|
|
2745
|
+
},
|
|
2746
|
+
"version-description": {
|
|
2747
|
+
"aliases": [
|
|
2748
|
+
"versiondescription"
|
|
2749
|
+
],
|
|
2750
|
+
"char": "e",
|
|
2751
|
+
"deprecateAliases": true,
|
|
2752
|
+
"name": "version-description",
|
|
2753
|
+
"summary": "New package version description.",
|
|
2754
|
+
"hasDynamicHelp": false,
|
|
2755
|
+
"multiple": false,
|
|
2756
|
+
"type": "option"
|
|
2757
|
+
},
|
|
2758
|
+
"branch": {
|
|
2759
|
+
"char": "b",
|
|
2760
|
+
"name": "branch",
|
|
2761
|
+
"summary": "New package version branch.",
|
|
2762
|
+
"hasDynamicHelp": false,
|
|
2763
|
+
"multiple": false,
|
|
2764
|
+
"type": "option"
|
|
2765
|
+
},
|
|
2766
|
+
"tag": {
|
|
2767
|
+
"char": "t",
|
|
2768
|
+
"name": "tag",
|
|
2769
|
+
"summary": "New package version tag.",
|
|
2770
|
+
"hasDynamicHelp": false,
|
|
2771
|
+
"multiple": false,
|
|
2772
|
+
"type": "option"
|
|
2773
|
+
},
|
|
2774
|
+
"installation-key": {
|
|
2775
|
+
"aliases": [
|
|
2776
|
+
"installationkey"
|
|
2777
|
+
],
|
|
2778
|
+
"char": "k",
|
|
2779
|
+
"deprecateAliases": true,
|
|
2780
|
+
"name": "installation-key",
|
|
2781
|
+
"summary": "New installation key for key-protected package (default: null)",
|
|
2782
|
+
"hasDynamicHelp": false,
|
|
2783
|
+
"multiple": false,
|
|
2784
|
+
"type": "option"
|
|
2823
2785
|
}
|
|
2824
2786
|
},
|
|
2825
2787
|
"hasDynamicHelp": true,
|
|
2826
2788
|
"hiddenAliases": [],
|
|
2827
|
-
"id": "package:version:
|
|
2789
|
+
"id": "package:version:update",
|
|
2828
2790
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2829
2791
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2830
2792
|
"pluginType": "core",
|
|
2831
2793
|
"strict": true,
|
|
2832
|
-
"summary": "
|
|
2794
|
+
"summary": "Update a package version.",
|
|
2833
2795
|
"enableJsonFlag": true,
|
|
2796
|
+
"requiresProject": true,
|
|
2834
2797
|
"isESM": true,
|
|
2835
2798
|
"relativePath": [
|
|
2836
2799
|
"lib",
|
|
2837
2800
|
"commands",
|
|
2838
2801
|
"package",
|
|
2839
2802
|
"version",
|
|
2840
|
-
"
|
|
2803
|
+
"update.js"
|
|
2841
2804
|
],
|
|
2842
2805
|
"aliasPermutations": [
|
|
2843
|
-
"force:package:version:
|
|
2844
|
-
"package:force:version:
|
|
2845
|
-
"package:version:force:
|
|
2846
|
-
"package:version:
|
|
2847
|
-
"force:version:package:
|
|
2848
|
-
"version:force:package:
|
|
2849
|
-
"version:package:force:
|
|
2850
|
-
"version:package:
|
|
2851
|
-
"force:version:
|
|
2852
|
-
"version:force:
|
|
2853
|
-
"version:
|
|
2854
|
-
"version:
|
|
2855
|
-
"force:package:
|
|
2856
|
-
"package:force:
|
|
2857
|
-
"package:
|
|
2858
|
-
"package:
|
|
2859
|
-
"force:
|
|
2860
|
-
"
|
|
2861
|
-
"
|
|
2862
|
-
"
|
|
2863
|
-
"force:
|
|
2864
|
-
"
|
|
2865
|
-
"
|
|
2866
|
-
"
|
|
2806
|
+
"force:package:version:update",
|
|
2807
|
+
"package:force:version:update",
|
|
2808
|
+
"package:version:force:update",
|
|
2809
|
+
"package:version:update:force",
|
|
2810
|
+
"force:version:package:update",
|
|
2811
|
+
"version:force:package:update",
|
|
2812
|
+
"version:package:force:update",
|
|
2813
|
+
"version:package:update:force",
|
|
2814
|
+
"force:version:update:package",
|
|
2815
|
+
"version:force:update:package",
|
|
2816
|
+
"version:update:force:package",
|
|
2817
|
+
"version:update:package:force",
|
|
2818
|
+
"force:package:update:version",
|
|
2819
|
+
"package:force:update:version",
|
|
2820
|
+
"package:update:force:version",
|
|
2821
|
+
"package:update:version:force",
|
|
2822
|
+
"force:update:package:version",
|
|
2823
|
+
"update:force:package:version",
|
|
2824
|
+
"update:package:force:version",
|
|
2825
|
+
"update:package:version:force",
|
|
2826
|
+
"force:update:version:package",
|
|
2827
|
+
"update:force:version:package",
|
|
2828
|
+
"update:version:force:package",
|
|
2829
|
+
"update:version:package:force"
|
|
2867
2830
|
],
|
|
2868
2831
|
"permutations": [
|
|
2869
|
-
"package:version:
|
|
2870
|
-
"version:package:
|
|
2871
|
-
"version:
|
|
2872
|
-
"package:
|
|
2873
|
-
"
|
|
2874
|
-
"
|
|
2832
|
+
"package:version:update",
|
|
2833
|
+
"version:package:update",
|
|
2834
|
+
"version:update:package",
|
|
2835
|
+
"package:update:version",
|
|
2836
|
+
"update:package:version",
|
|
2837
|
+
"update:version:package"
|
|
2875
2838
|
]
|
|
2876
2839
|
},
|
|
2877
|
-
"
|
|
2840
|
+
"package1:version:create": {
|
|
2878
2841
|
"aliases": [
|
|
2879
|
-
"force:
|
|
2842
|
+
"force:package1:version:create"
|
|
2880
2843
|
],
|
|
2881
2844
|
"args": {},
|
|
2882
2845
|
"deprecateAliases": true,
|
|
2883
|
-
"description": "
|
|
2846
|
+
"description": "The package version is based on the contents of the specified metadata package. Omit --managed-released if you want to create an unmanaged package version.",
|
|
2884
2847
|
"examples": [
|
|
2885
|
-
"
|
|
2886
|
-
"
|
|
2848
|
+
"Create a first-generation package version from the package with the specified ID and name the package version \"example\"; use your default org:\n<%= config.bin %> <%= command.id %> --package-id 033... --name example",
|
|
2849
|
+
"Same as previous example, but provide a description and wait for 30 minutes for the package version to be created; use the specified org:\n<%= config.bin %> <%= command.id %> --package-id 033... --name example --description \"example description\" --wait 30 --target-org myorg@example.com"
|
|
2887
2850
|
],
|
|
2888
2851
|
"flags": {
|
|
2889
2852
|
"json": {
|
|
@@ -2911,17 +2874,17 @@
|
|
|
2911
2874
|
"multiple": false,
|
|
2912
2875
|
"type": "option"
|
|
2913
2876
|
},
|
|
2914
|
-
"target-
|
|
2877
|
+
"target-org": {
|
|
2915
2878
|
"aliases": [
|
|
2916
|
-
"
|
|
2917
|
-
"
|
|
2879
|
+
"targetusername",
|
|
2880
|
+
"u"
|
|
2918
2881
|
],
|
|
2919
|
-
"char": "
|
|
2882
|
+
"char": "o",
|
|
2920
2883
|
"deprecateAliases": true,
|
|
2921
|
-
"name": "target-
|
|
2884
|
+
"name": "target-org",
|
|
2922
2885
|
"noCacheDefault": true,
|
|
2923
2886
|
"required": true,
|
|
2924
|
-
"summary": "Username or alias of the
|
|
2887
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2925
2888
|
"hasDynamicHelp": true,
|
|
2926
2889
|
"multiple": false,
|
|
2927
2890
|
"type": "option"
|
|
@@ -2937,192 +2900,164 @@
|
|
|
2937
2900
|
"multiple": false,
|
|
2938
2901
|
"type": "option"
|
|
2939
2902
|
},
|
|
2940
|
-
"package": {
|
|
2941
|
-
"
|
|
2942
|
-
|
|
2903
|
+
"package-id": {
|
|
2904
|
+
"aliases": [
|
|
2905
|
+
"packageid"
|
|
2906
|
+
],
|
|
2907
|
+
"char": "i",
|
|
2908
|
+
"deprecateAliases": true,
|
|
2909
|
+
"name": "package-id",
|
|
2943
2910
|
"required": true,
|
|
2944
|
-
"summary": "ID (starts with
|
|
2911
|
+
"summary": "ID of the metadata package (starts with 033) of which you’re creating a new version.",
|
|
2945
2912
|
"hasDynamicHelp": false,
|
|
2946
2913
|
"multiple": false,
|
|
2947
2914
|
"type": "option"
|
|
2948
2915
|
},
|
|
2949
|
-
"
|
|
2950
|
-
"
|
|
2951
|
-
"
|
|
2952
|
-
"
|
|
2953
|
-
"
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
"hiddenAliases": [],
|
|
2958
|
-
"id": "package:version:report",
|
|
2959
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2960
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
2961
|
-
"pluginType": "core",
|
|
2962
|
-
"strict": true,
|
|
2963
|
-
"summary": "Retrieve details about a package version in the Dev Hub org.",
|
|
2964
|
-
"enableJsonFlag": true,
|
|
2965
|
-
"isESM": true,
|
|
2966
|
-
"relativePath": [
|
|
2967
|
-
"lib",
|
|
2968
|
-
"commands",
|
|
2969
|
-
"package",
|
|
2970
|
-
"version",
|
|
2971
|
-
"report.js"
|
|
2972
|
-
],
|
|
2973
|
-
"aliasPermutations": [
|
|
2974
|
-
"force:package:version:report",
|
|
2975
|
-
"package:force:version:report",
|
|
2976
|
-
"package:version:force:report",
|
|
2977
|
-
"package:version:report:force",
|
|
2978
|
-
"force:version:package:report",
|
|
2979
|
-
"version:force:package:report",
|
|
2980
|
-
"version:package:force:report",
|
|
2981
|
-
"version:package:report:force",
|
|
2982
|
-
"force:version:report:package",
|
|
2983
|
-
"version:force:report:package",
|
|
2984
|
-
"version:report:force:package",
|
|
2985
|
-
"version:report:package:force",
|
|
2986
|
-
"force:package:report:version",
|
|
2987
|
-
"package:force:report:version",
|
|
2988
|
-
"package:report:force:version",
|
|
2989
|
-
"package:report:version:force",
|
|
2990
|
-
"force:report:package:version",
|
|
2991
|
-
"report:force:package:version",
|
|
2992
|
-
"report:package:force:version",
|
|
2993
|
-
"report:package:version:force",
|
|
2994
|
-
"force:report:version:package",
|
|
2995
|
-
"report:force:version:package",
|
|
2996
|
-
"report:version:force:package",
|
|
2997
|
-
"report:version:package:force"
|
|
2998
|
-
],
|
|
2999
|
-
"permutations": [
|
|
3000
|
-
"package:version:report",
|
|
3001
|
-
"version:package:report",
|
|
3002
|
-
"version:report:package",
|
|
3003
|
-
"package:report:version",
|
|
3004
|
-
"report:package:version",
|
|
3005
|
-
"report:version:package"
|
|
3006
|
-
]
|
|
3007
|
-
},
|
|
3008
|
-
"package:version:retrieve": {
|
|
3009
|
-
"aliases": [],
|
|
3010
|
-
"args": {},
|
|
3011
|
-
"description": "Retrieving a package version downloads the metadata into the directory you specify.\n\nYou can retrieve metadata for a second- or first-generation managed package, or an unlocked package.\n\nSpecify the subscriber package version ID (starts with 04t) and the path to an empty directory when you run this command.",
|
|
3012
|
-
"examples": [
|
|
3013
|
-
"Retrieve package metadata for a subscriber package version ID (starts with 04t) into my-folder/ within your Salesforce DX project directory:\n<%= config.bin %> <%= command.id %> --package 04t... --output-dir my-folder –-target-org my-scratch\nIf you omit --target-org, this command runs against your default org."
|
|
3014
|
-
],
|
|
3015
|
-
"flags": {
|
|
3016
|
-
"json": {
|
|
3017
|
-
"description": "Format output as json.",
|
|
3018
|
-
"helpGroup": "GLOBAL",
|
|
3019
|
-
"name": "json",
|
|
3020
|
-
"allowNo": false,
|
|
3021
|
-
"type": "boolean"
|
|
2916
|
+
"name": {
|
|
2917
|
+
"char": "n",
|
|
2918
|
+
"name": "name",
|
|
2919
|
+
"required": true,
|
|
2920
|
+
"summary": "Package version name.",
|
|
2921
|
+
"hasDynamicHelp": false,
|
|
2922
|
+
"multiple": false,
|
|
2923
|
+
"type": "option"
|
|
3022
2924
|
},
|
|
3023
|
-
"
|
|
3024
|
-
"
|
|
3025
|
-
"name": "
|
|
3026
|
-
"summary": "
|
|
2925
|
+
"description": {
|
|
2926
|
+
"char": "d",
|
|
2927
|
+
"name": "description",
|
|
2928
|
+
"summary": "Package version description.",
|
|
3027
2929
|
"hasDynamicHelp": false,
|
|
3028
2930
|
"multiple": false,
|
|
3029
2931
|
"type": "option"
|
|
3030
2932
|
},
|
|
3031
|
-
"
|
|
3032
|
-
"
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
"hidden": true,
|
|
3036
|
-
"name": "loglevel",
|
|
2933
|
+
"version": {
|
|
2934
|
+
"char": "v",
|
|
2935
|
+
"name": "version",
|
|
2936
|
+
"summary": "Package version in major.minor format, for example, 3.2.",
|
|
3037
2937
|
"hasDynamicHelp": false,
|
|
3038
2938
|
"multiple": false,
|
|
3039
2939
|
"type": "option"
|
|
3040
2940
|
},
|
|
3041
|
-
"
|
|
2941
|
+
"managed-released": {
|
|
3042
2942
|
"aliases": [
|
|
3043
|
-
"
|
|
2943
|
+
"managedrelease"
|
|
3044
2944
|
],
|
|
2945
|
+
"char": "m",
|
|
3045
2946
|
"deprecateAliases": true,
|
|
3046
|
-
"description": "
|
|
3047
|
-
"name": "
|
|
2947
|
+
"description": "To create a beta version, don’t include this parameter.",
|
|
2948
|
+
"name": "managed-released",
|
|
2949
|
+
"summary": "Create a managed package version.",
|
|
2950
|
+
"allowNo": false,
|
|
2951
|
+
"type": "boolean"
|
|
2952
|
+
},
|
|
2953
|
+
"release-notes-url": {
|
|
2954
|
+
"aliases": [
|
|
2955
|
+
"releasenotesurl"
|
|
2956
|
+
],
|
|
2957
|
+
"char": "r",
|
|
2958
|
+
"deprecateAliases": true,
|
|
2959
|
+
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
2960
|
+
"name": "release-notes-url",
|
|
2961
|
+
"summary": "Release notes URL.",
|
|
3048
2962
|
"hasDynamicHelp": false,
|
|
3049
2963
|
"multiple": false,
|
|
3050
2964
|
"type": "option"
|
|
3051
2965
|
},
|
|
3052
|
-
"
|
|
2966
|
+
"post-install-url": {
|
|
3053
2967
|
"aliases": [
|
|
3054
|
-
"
|
|
3055
|
-
"u"
|
|
2968
|
+
"postinstallurl"
|
|
3056
2969
|
],
|
|
3057
|
-
"char": "
|
|
2970
|
+
"char": "p",
|
|
3058
2971
|
"deprecateAliases": true,
|
|
3059
|
-
"
|
|
3060
|
-
"
|
|
3061
|
-
"
|
|
3062
|
-
"
|
|
3063
|
-
"hasDynamicHelp": true,
|
|
2972
|
+
"description": "The contents of the post-installation instructions URL are displayed in the UI after installation of the package version.",
|
|
2973
|
+
"name": "post-install-url",
|
|
2974
|
+
"summary": "Post install URL.",
|
|
2975
|
+
"hasDynamicHelp": false,
|
|
3064
2976
|
"multiple": false,
|
|
3065
2977
|
"type": "option"
|
|
3066
2978
|
},
|
|
3067
|
-
"
|
|
3068
|
-
"
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
"
|
|
2979
|
+
"installation-key": {
|
|
2980
|
+
"aliases": [
|
|
2981
|
+
"installationkey"
|
|
2982
|
+
],
|
|
2983
|
+
"char": "k",
|
|
2984
|
+
"deprecateAliases": true,
|
|
2985
|
+
"name": "installation-key",
|
|
2986
|
+
"summary": "Installation key for key-protected package (default: null).",
|
|
3072
2987
|
"hasDynamicHelp": false,
|
|
3073
2988
|
"multiple": false,
|
|
3074
2989
|
"type": "option"
|
|
3075
2990
|
},
|
|
3076
|
-
"
|
|
3077
|
-
"char": "
|
|
3078
|
-
"name": "
|
|
3079
|
-
"summary": "
|
|
3080
|
-
"
|
|
3081
|
-
"hasDynamicHelp": false,
|
|
2991
|
+
"wait": {
|
|
2992
|
+
"char": "w",
|
|
2993
|
+
"name": "wait",
|
|
2994
|
+
"summary": "Minutes to wait for the package version to be created (default: 2 minutes).",
|
|
2995
|
+
"hasDynamicHelp": true,
|
|
3082
2996
|
"multiple": false,
|
|
3083
2997
|
"type": "option"
|
|
3084
2998
|
}
|
|
3085
2999
|
},
|
|
3086
3000
|
"hasDynamicHelp": true,
|
|
3087
|
-
"hidden": true,
|
|
3088
3001
|
"hiddenAliases": [],
|
|
3089
|
-
"id": "
|
|
3002
|
+
"id": "package1:version:create",
|
|
3090
3003
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
3091
3004
|
"pluginName": "@salesforce/plugin-packaging",
|
|
3092
3005
|
"pluginType": "core",
|
|
3093
3006
|
"strict": true,
|
|
3094
|
-
"summary": "
|
|
3007
|
+
"summary": "Create a first-generation package version in the release org.",
|
|
3095
3008
|
"enableJsonFlag": true,
|
|
3096
|
-
"requiresProject": true,
|
|
3097
3009
|
"isESM": true,
|
|
3098
3010
|
"relativePath": [
|
|
3099
3011
|
"lib",
|
|
3100
3012
|
"commands",
|
|
3101
|
-
"
|
|
3013
|
+
"package1",
|
|
3102
3014
|
"version",
|
|
3103
|
-
"
|
|
3015
|
+
"create.js"
|
|
3016
|
+
],
|
|
3017
|
+
"aliasPermutations": [
|
|
3018
|
+
"force:package1:version:create",
|
|
3019
|
+
"package1:force:version:create",
|
|
3020
|
+
"package1:version:force:create",
|
|
3021
|
+
"package1:version:create:force",
|
|
3022
|
+
"force:version:package1:create",
|
|
3023
|
+
"version:force:package1:create",
|
|
3024
|
+
"version:package1:force:create",
|
|
3025
|
+
"version:package1:create:force",
|
|
3026
|
+
"force:version:create:package1",
|
|
3027
|
+
"version:force:create:package1",
|
|
3028
|
+
"version:create:force:package1",
|
|
3029
|
+
"version:create:package1:force",
|
|
3030
|
+
"force:package1:create:version",
|
|
3031
|
+
"package1:force:create:version",
|
|
3032
|
+
"package1:create:force:version",
|
|
3033
|
+
"package1:create:version:force",
|
|
3034
|
+
"force:create:package1:version",
|
|
3035
|
+
"create:force:package1:version",
|
|
3036
|
+
"create:package1:force:version",
|
|
3037
|
+
"create:package1:version:force",
|
|
3038
|
+
"force:create:version:package1",
|
|
3039
|
+
"create:force:version:package1",
|
|
3040
|
+
"create:version:force:package1",
|
|
3041
|
+
"create:version:package1:force"
|
|
3104
3042
|
],
|
|
3105
|
-
"aliasPermutations": [],
|
|
3106
3043
|
"permutations": [
|
|
3107
|
-
"
|
|
3108
|
-
"version:
|
|
3109
|
-
"version:
|
|
3110
|
-
"
|
|
3111
|
-
"
|
|
3112
|
-
"
|
|
3044
|
+
"package1:version:create",
|
|
3045
|
+
"version:package1:create",
|
|
3046
|
+
"version:create:package1",
|
|
3047
|
+
"package1:create:version",
|
|
3048
|
+
"create:package1:version",
|
|
3049
|
+
"create:version:package1"
|
|
3113
3050
|
]
|
|
3114
3051
|
},
|
|
3115
|
-
"
|
|
3052
|
+
"package1:version:display": {
|
|
3116
3053
|
"aliases": [
|
|
3117
|
-
"force:
|
|
3054
|
+
"force:package1:version:display"
|
|
3118
3055
|
],
|
|
3119
3056
|
"args": {},
|
|
3120
3057
|
"deprecateAliases": true,
|
|
3121
|
-
"description": "Specify a new value for each option you want to update.\n\nTo display details about a package version, run \"<%= config.bin %> package version display\".",
|
|
3122
3058
|
"examples": [
|
|
3123
|
-
"
|
|
3124
|
-
"
|
|
3125
|
-
"Update the package version that has the specified ID with a new description:\n<%= config.bin %> <%= command.id %> --package 04t... --version-description \"New Package Version Description\""
|
|
3059
|
+
"Display details about the first-generation package version with the specified ID in your default org:\n<%= config.bin %> <%= command.id %> --package-version-id 04t...",
|
|
3060
|
+
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --package-version-id 04t... --target-org myorg@example.com"
|
|
3126
3061
|
],
|
|
3127
3062
|
"flags": {
|
|
3128
3063
|
"json": {
|
|
@@ -3150,17 +3085,17 @@
|
|
|
3150
3085
|
"multiple": false,
|
|
3151
3086
|
"type": "option"
|
|
3152
3087
|
},
|
|
3153
|
-
"target-
|
|
3088
|
+
"target-org": {
|
|
3154
3089
|
"aliases": [
|
|
3155
|
-
"
|
|
3156
|
-
"
|
|
3090
|
+
"targetusername",
|
|
3091
|
+
"u"
|
|
3157
3092
|
],
|
|
3158
|
-
"char": "
|
|
3093
|
+
"char": "o",
|
|
3159
3094
|
"deprecateAliases": true,
|
|
3160
|
-
"name": "target-
|
|
3095
|
+
"name": "target-org",
|
|
3161
3096
|
"noCacheDefault": true,
|
|
3162
3097
|
"required": true,
|
|
3163
|
-
"summary": "Username or alias of the
|
|
3098
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
3164
3099
|
"hasDynamicHelp": true,
|
|
3165
3100
|
"multiple": false,
|
|
3166
3101
|
"type": "option"
|
|
@@ -3176,63 +3111,15 @@
|
|
|
3176
3111
|
"multiple": false,
|
|
3177
3112
|
"type": "option"
|
|
3178
3113
|
},
|
|
3179
|
-
"package": {
|
|
3180
|
-
"char": "p",
|
|
3181
|
-
"name": "package",
|
|
3182
|
-
"required": true,
|
|
3183
|
-
"summary": "ID (starts with 04t) or alias of the package to update a version of.",
|
|
3184
|
-
"hasDynamicHelp": false,
|
|
3185
|
-
"multiple": false,
|
|
3186
|
-
"type": "option"
|
|
3187
|
-
},
|
|
3188
|
-
"version-name": {
|
|
3114
|
+
"package-version-id": {
|
|
3189
3115
|
"aliases": [
|
|
3190
|
-
"
|
|
3116
|
+
"packageversionid"
|
|
3191
3117
|
],
|
|
3192
|
-
"char": "
|
|
3118
|
+
"char": "i",
|
|
3193
3119
|
"deprecateAliases": true,
|
|
3194
|
-
"name": "version-
|
|
3195
|
-
"
|
|
3196
|
-
"
|
|
3197
|
-
"multiple": false,
|
|
3198
|
-
"type": "option"
|
|
3199
|
-
},
|
|
3200
|
-
"version-description": {
|
|
3201
|
-
"aliases": [
|
|
3202
|
-
"versiondescription"
|
|
3203
|
-
],
|
|
3204
|
-
"char": "e",
|
|
3205
|
-
"deprecateAliases": true,
|
|
3206
|
-
"name": "version-description",
|
|
3207
|
-
"summary": "New package version description.",
|
|
3208
|
-
"hasDynamicHelp": false,
|
|
3209
|
-
"multiple": false,
|
|
3210
|
-
"type": "option"
|
|
3211
|
-
},
|
|
3212
|
-
"branch": {
|
|
3213
|
-
"char": "b",
|
|
3214
|
-
"name": "branch",
|
|
3215
|
-
"summary": "New package version branch.",
|
|
3216
|
-
"hasDynamicHelp": false,
|
|
3217
|
-
"multiple": false,
|
|
3218
|
-
"type": "option"
|
|
3219
|
-
},
|
|
3220
|
-
"tag": {
|
|
3221
|
-
"char": "t",
|
|
3222
|
-
"name": "tag",
|
|
3223
|
-
"summary": "New package version tag.",
|
|
3224
|
-
"hasDynamicHelp": false,
|
|
3225
|
-
"multiple": false,
|
|
3226
|
-
"type": "option"
|
|
3227
|
-
},
|
|
3228
|
-
"installation-key": {
|
|
3229
|
-
"aliases": [
|
|
3230
|
-
"installationkey"
|
|
3231
|
-
],
|
|
3232
|
-
"char": "k",
|
|
3233
|
-
"deprecateAliases": true,
|
|
3234
|
-
"name": "installation-key",
|
|
3235
|
-
"summary": "New installation key for key-protected package (default: null)",
|
|
3120
|
+
"name": "package-version-id",
|
|
3121
|
+
"required": true,
|
|
3122
|
+
"summary": "ID (starts with 04t) of the metadata package version whose details you want to display.",
|
|
3236
3123
|
"hasDynamicHelp": false,
|
|
3237
3124
|
"multiple": false,
|
|
3238
3125
|
"type": "option"
|
|
@@ -3240,66 +3127,65 @@
|
|
|
3240
3127
|
},
|
|
3241
3128
|
"hasDynamicHelp": true,
|
|
3242
3129
|
"hiddenAliases": [],
|
|
3243
|
-
"id": "
|
|
3130
|
+
"id": "package1:version:display",
|
|
3244
3131
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
3245
3132
|
"pluginName": "@salesforce/plugin-packaging",
|
|
3246
3133
|
"pluginType": "core",
|
|
3247
3134
|
"strict": true,
|
|
3248
|
-
"summary": "
|
|
3135
|
+
"summary": "Display details about a first-generation package version.",
|
|
3249
3136
|
"enableJsonFlag": true,
|
|
3250
|
-
"requiresProject": true,
|
|
3251
3137
|
"isESM": true,
|
|
3252
3138
|
"relativePath": [
|
|
3253
3139
|
"lib",
|
|
3254
3140
|
"commands",
|
|
3255
|
-
"
|
|
3141
|
+
"package1",
|
|
3256
3142
|
"version",
|
|
3257
|
-
"
|
|
3143
|
+
"display.js"
|
|
3258
3144
|
],
|
|
3259
3145
|
"aliasPermutations": [
|
|
3260
|
-
"force:
|
|
3261
|
-
"
|
|
3262
|
-
"
|
|
3263
|
-
"
|
|
3264
|
-
"force:version:
|
|
3265
|
-
"version:force:
|
|
3266
|
-
"version:
|
|
3267
|
-
"version:
|
|
3268
|
-
"force:version:
|
|
3269
|
-
"version:force:
|
|
3270
|
-
"version:
|
|
3271
|
-
"version:
|
|
3272
|
-
"force:
|
|
3273
|
-
"
|
|
3274
|
-
"
|
|
3275
|
-
"
|
|
3276
|
-
"force:
|
|
3277
|
-
"
|
|
3278
|
-
"
|
|
3279
|
-
"
|
|
3280
|
-
"force:
|
|
3281
|
-
"
|
|
3282
|
-
"
|
|
3283
|
-
"
|
|
3146
|
+
"force:package1:version:display",
|
|
3147
|
+
"package1:force:version:display",
|
|
3148
|
+
"package1:version:force:display",
|
|
3149
|
+
"package1:version:display:force",
|
|
3150
|
+
"force:version:package1:display",
|
|
3151
|
+
"version:force:package1:display",
|
|
3152
|
+
"version:package1:force:display",
|
|
3153
|
+
"version:package1:display:force",
|
|
3154
|
+
"force:version:display:package1",
|
|
3155
|
+
"version:force:display:package1",
|
|
3156
|
+
"version:display:force:package1",
|
|
3157
|
+
"version:display:package1:force",
|
|
3158
|
+
"force:package1:display:version",
|
|
3159
|
+
"package1:force:display:version",
|
|
3160
|
+
"package1:display:force:version",
|
|
3161
|
+
"package1:display:version:force",
|
|
3162
|
+
"force:display:package1:version",
|
|
3163
|
+
"display:force:package1:version",
|
|
3164
|
+
"display:package1:force:version",
|
|
3165
|
+
"display:package1:version:force",
|
|
3166
|
+
"force:display:version:package1",
|
|
3167
|
+
"display:force:version:package1",
|
|
3168
|
+
"display:version:force:package1",
|
|
3169
|
+
"display:version:package1:force"
|
|
3284
3170
|
],
|
|
3285
3171
|
"permutations": [
|
|
3286
|
-
"
|
|
3287
|
-
"version:
|
|
3288
|
-
"version:
|
|
3289
|
-
"
|
|
3290
|
-
"
|
|
3291
|
-
"
|
|
3172
|
+
"package1:version:display",
|
|
3173
|
+
"version:package1:display",
|
|
3174
|
+
"version:display:package1",
|
|
3175
|
+
"package1:display:version",
|
|
3176
|
+
"display:package1:version",
|
|
3177
|
+
"display:version:package1"
|
|
3292
3178
|
]
|
|
3293
3179
|
},
|
|
3294
|
-
"package1:version:
|
|
3180
|
+
"package1:version:list": {
|
|
3295
3181
|
"aliases": [
|
|
3296
|
-
"force:package1:version:
|
|
3182
|
+
"force:package1:version:list"
|
|
3297
3183
|
],
|
|
3298
3184
|
"args": {},
|
|
3299
3185
|
"deprecateAliases": true,
|
|
3300
3186
|
"examples": [
|
|
3301
|
-
"
|
|
3302
|
-
"
|
|
3187
|
+
"List all first-generation package versions in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
3188
|
+
"List package versions for the specified first-generation package in the specifief org:\n<%= config.bin %> <%= command.id %> --package-id 033... --target-org myorg@example.com"
|
|
3303
3189
|
],
|
|
3304
3190
|
"flags": {
|
|
3305
3191
|
"json": {
|
|
@@ -3353,15 +3239,15 @@
|
|
|
3353
3239
|
"multiple": false,
|
|
3354
3240
|
"type": "option"
|
|
3355
3241
|
},
|
|
3356
|
-
"
|
|
3242
|
+
"package-id": {
|
|
3357
3243
|
"aliases": [
|
|
3358
|
-
"
|
|
3244
|
+
"packageid"
|
|
3359
3245
|
],
|
|
3360
3246
|
"char": "i",
|
|
3361
3247
|
"deprecateAliases": true,
|
|
3362
|
-
"
|
|
3363
|
-
"
|
|
3364
|
-
"summary": "
|
|
3248
|
+
"description": "If not specified, shows all versions for all packages (managed and unmanaged) in the org.",
|
|
3249
|
+
"name": "package-id",
|
|
3250
|
+
"summary": "Metadata package ID (starts with 033) whose package versions you want to list.",
|
|
3365
3251
|
"hasDynamicHelp": false,
|
|
3366
3252
|
"multiple": false,
|
|
3367
3253
|
"type": "option"
|
|
@@ -3369,12 +3255,12 @@
|
|
|
3369
3255
|
},
|
|
3370
3256
|
"hasDynamicHelp": true,
|
|
3371
3257
|
"hiddenAliases": [],
|
|
3372
|
-
"id": "package1:version:
|
|
3258
|
+
"id": "package1:version:list",
|
|
3373
3259
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
3374
3260
|
"pluginName": "@salesforce/plugin-packaging",
|
|
3375
3261
|
"pluginType": "core",
|
|
3376
3262
|
"strict": true,
|
|
3377
|
-
"summary": "
|
|
3263
|
+
"summary": "List package versions for the specified first-generation package or for the org.",
|
|
3378
3264
|
"enableJsonFlag": true,
|
|
3379
3265
|
"isESM": true,
|
|
3380
3266
|
"relativePath": [
|
|
@@ -3382,156 +3268,41 @@
|
|
|
3382
3268
|
"commands",
|
|
3383
3269
|
"package1",
|
|
3384
3270
|
"version",
|
|
3385
|
-
"
|
|
3386
|
-
"get.js"
|
|
3271
|
+
"list.js"
|
|
3387
3272
|
],
|
|
3388
3273
|
"aliasPermutations": [
|
|
3389
|
-
"force:package1:version:
|
|
3390
|
-
"package1:force:version:
|
|
3391
|
-
"package1:version:force:
|
|
3392
|
-
"package1:version:
|
|
3393
|
-
"
|
|
3394
|
-
"force:
|
|
3395
|
-
"version:
|
|
3396
|
-
"version:package1:force
|
|
3397
|
-
"version:package1
|
|
3398
|
-
"version:
|
|
3399
|
-
"
|
|
3400
|
-
"version:
|
|
3401
|
-
"
|
|
3402
|
-
"
|
|
3403
|
-
"
|
|
3404
|
-
"
|
|
3405
|
-
"
|
|
3406
|
-
"
|
|
3407
|
-
"
|
|
3408
|
-
"
|
|
3409
|
-
"force:
|
|
3410
|
-
"
|
|
3411
|
-
"
|
|
3412
|
-
"
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
"
|
|
3416
|
-
"
|
|
3417
|
-
"
|
|
3418
|
-
"
|
|
3419
|
-
"
|
|
3420
|
-
"
|
|
3421
|
-
"create:version:force:package1:get",
|
|
3422
|
-
"create:version:package1:force:get",
|
|
3423
|
-
"create:version:package1:get:force",
|
|
3424
|
-
"force:create:version:get:package1",
|
|
3425
|
-
"create:force:version:get:package1",
|
|
3426
|
-
"create:version:force:get:package1",
|
|
3427
|
-
"create:version:get:force:package1",
|
|
3428
|
-
"create:version:get:package1:force",
|
|
3429
|
-
"force:package1:create:get:version",
|
|
3430
|
-
"package1:force:create:get:version",
|
|
3431
|
-
"package1:create:force:get:version",
|
|
3432
|
-
"package1:create:get:force:version",
|
|
3433
|
-
"package1:create:get:version:force",
|
|
3434
|
-
"force:create:package1:get:version",
|
|
3435
|
-
"create:force:package1:get:version",
|
|
3436
|
-
"create:package1:force:get:version",
|
|
3437
|
-
"create:package1:get:force:version",
|
|
3438
|
-
"create:package1:get:version:force",
|
|
3439
|
-
"force:create:get:package1:version",
|
|
3440
|
-
"create:force:get:package1:version",
|
|
3441
|
-
"create:get:force:package1:version",
|
|
3442
|
-
"create:get:package1:force:version",
|
|
3443
|
-
"create:get:package1:version:force",
|
|
3444
|
-
"force:create:get:version:package1",
|
|
3445
|
-
"create:force:get:version:package1",
|
|
3446
|
-
"create:get:force:version:package1",
|
|
3447
|
-
"create:get:version:force:package1",
|
|
3448
|
-
"create:get:version:package1:force",
|
|
3449
|
-
"force:package1:version:get:create",
|
|
3450
|
-
"package1:force:version:get:create",
|
|
3451
|
-
"package1:version:force:get:create",
|
|
3452
|
-
"package1:version:get:force:create",
|
|
3453
|
-
"package1:version:get:create:force",
|
|
3454
|
-
"force:version:package1:get:create",
|
|
3455
|
-
"version:force:package1:get:create",
|
|
3456
|
-
"version:package1:force:get:create",
|
|
3457
|
-
"version:package1:get:force:create",
|
|
3458
|
-
"version:package1:get:create:force",
|
|
3459
|
-
"force:version:get:package1:create",
|
|
3460
|
-
"version:force:get:package1:create",
|
|
3461
|
-
"version:get:force:package1:create",
|
|
3462
|
-
"version:get:package1:force:create",
|
|
3463
|
-
"version:get:package1:create:force",
|
|
3464
|
-
"force:version:get:create:package1",
|
|
3465
|
-
"version:force:get:create:package1",
|
|
3466
|
-
"version:get:force:create:package1",
|
|
3467
|
-
"version:get:create:force:package1",
|
|
3468
|
-
"version:get:create:package1:force",
|
|
3469
|
-
"force:package1:get:version:create",
|
|
3470
|
-
"package1:force:get:version:create",
|
|
3471
|
-
"package1:get:force:version:create",
|
|
3472
|
-
"package1:get:version:force:create",
|
|
3473
|
-
"package1:get:version:create:force",
|
|
3474
|
-
"force:get:package1:version:create",
|
|
3475
|
-
"get:force:package1:version:create",
|
|
3476
|
-
"get:package1:force:version:create",
|
|
3477
|
-
"get:package1:version:force:create",
|
|
3478
|
-
"get:package1:version:create:force",
|
|
3479
|
-
"force:get:version:package1:create",
|
|
3480
|
-
"get:force:version:package1:create",
|
|
3481
|
-
"get:version:force:package1:create",
|
|
3482
|
-
"get:version:package1:force:create",
|
|
3483
|
-
"get:version:package1:create:force",
|
|
3484
|
-
"force:get:version:create:package1",
|
|
3485
|
-
"get:force:version:create:package1",
|
|
3486
|
-
"get:version:force:create:package1",
|
|
3487
|
-
"get:version:create:force:package1",
|
|
3488
|
-
"get:version:create:package1:force",
|
|
3489
|
-
"force:package1:get:create:version",
|
|
3490
|
-
"package1:force:get:create:version",
|
|
3491
|
-
"package1:get:force:create:version",
|
|
3492
|
-
"package1:get:create:force:version",
|
|
3493
|
-
"package1:get:create:version:force",
|
|
3494
|
-
"force:get:package1:create:version",
|
|
3495
|
-
"get:force:package1:create:version",
|
|
3496
|
-
"get:package1:force:create:version",
|
|
3497
|
-
"get:package1:create:force:version",
|
|
3498
|
-
"get:package1:create:version:force",
|
|
3499
|
-
"force:get:create:package1:version",
|
|
3500
|
-
"get:force:create:package1:version",
|
|
3501
|
-
"get:create:force:package1:version",
|
|
3502
|
-
"get:create:package1:force:version",
|
|
3503
|
-
"get:create:package1:version:force",
|
|
3504
|
-
"force:get:create:version:package1",
|
|
3505
|
-
"get:force:create:version:package1",
|
|
3506
|
-
"get:create:force:version:package1",
|
|
3507
|
-
"get:create:version:force:package1",
|
|
3508
|
-
"get:create:version:package1:force"
|
|
3509
|
-
],
|
|
3510
|
-
"permutations": [
|
|
3511
|
-
"package1:version:create:get",
|
|
3512
|
-
"version:package1:create:get",
|
|
3513
|
-
"version:create:package1:get",
|
|
3514
|
-
"version:create:get:package1",
|
|
3515
|
-
"package1:create:version:get",
|
|
3516
|
-
"create:package1:version:get",
|
|
3517
|
-
"create:version:package1:get",
|
|
3518
|
-
"create:version:get:package1",
|
|
3519
|
-
"package1:create:get:version",
|
|
3520
|
-
"create:package1:get:version",
|
|
3521
|
-
"create:get:package1:version",
|
|
3522
|
-
"create:get:version:package1",
|
|
3523
|
-
"package1:version:get:create",
|
|
3524
|
-
"version:package1:get:create",
|
|
3525
|
-
"version:get:package1:create",
|
|
3526
|
-
"version:get:create:package1",
|
|
3527
|
-
"package1:get:version:create",
|
|
3528
|
-
"get:package1:version:create",
|
|
3529
|
-
"get:version:package1:create",
|
|
3530
|
-
"get:version:create:package1",
|
|
3531
|
-
"package1:get:create:version",
|
|
3532
|
-
"get:package1:create:version",
|
|
3533
|
-
"get:create:package1:version",
|
|
3534
|
-
"get:create:version:package1"
|
|
3274
|
+
"force:package1:version:list",
|
|
3275
|
+
"package1:force:version:list",
|
|
3276
|
+
"package1:version:force:list",
|
|
3277
|
+
"package1:version:list:force",
|
|
3278
|
+
"force:version:package1:list",
|
|
3279
|
+
"version:force:package1:list",
|
|
3280
|
+
"version:package1:force:list",
|
|
3281
|
+
"version:package1:list:force",
|
|
3282
|
+
"force:version:list:package1",
|
|
3283
|
+
"version:force:list:package1",
|
|
3284
|
+
"version:list:force:package1",
|
|
3285
|
+
"version:list:package1:force",
|
|
3286
|
+
"force:package1:list:version",
|
|
3287
|
+
"package1:force:list:version",
|
|
3288
|
+
"package1:list:force:version",
|
|
3289
|
+
"package1:list:version:force",
|
|
3290
|
+
"force:list:package1:version",
|
|
3291
|
+
"list:force:package1:version",
|
|
3292
|
+
"list:package1:force:version",
|
|
3293
|
+
"list:package1:version:force",
|
|
3294
|
+
"force:list:version:package1",
|
|
3295
|
+
"list:force:version:package1",
|
|
3296
|
+
"list:version:force:package1",
|
|
3297
|
+
"list:version:package1:force"
|
|
3298
|
+
],
|
|
3299
|
+
"permutations": [
|
|
3300
|
+
"package1:version:list",
|
|
3301
|
+
"version:package1:list",
|
|
3302
|
+
"version:list:package1",
|
|
3303
|
+
"package1:list:version",
|
|
3304
|
+
"list:package1:version",
|
|
3305
|
+
"list:version:package1"
|
|
3535
3306
|
]
|
|
3536
3307
|
},
|
|
3537
3308
|
"package:version:create:list": {
|
|
@@ -4049,7 +3820,250 @@
|
|
|
4049
3820
|
"report:create:package:version",
|
|
4050
3821
|
"report:create:version:package"
|
|
4051
3822
|
]
|
|
3823
|
+
},
|
|
3824
|
+
"package1:version:create:get": {
|
|
3825
|
+
"aliases": [
|
|
3826
|
+
"force:package1:version:create:get"
|
|
3827
|
+
],
|
|
3828
|
+
"args": {},
|
|
3829
|
+
"deprecateAliases": true,
|
|
3830
|
+
"examples": [
|
|
3831
|
+
"Get the status of the creation request for the package version with the specified ID in your default org:\n<%= config.bin %> <%= command.id %> --request-id 0HD...",
|
|
3832
|
+
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --request-id 0HD... --target-org myorg@example.com"
|
|
3833
|
+
],
|
|
3834
|
+
"flags": {
|
|
3835
|
+
"json": {
|
|
3836
|
+
"description": "Format output as json.",
|
|
3837
|
+
"helpGroup": "GLOBAL",
|
|
3838
|
+
"name": "json",
|
|
3839
|
+
"allowNo": false,
|
|
3840
|
+
"type": "boolean"
|
|
3841
|
+
},
|
|
3842
|
+
"flags-dir": {
|
|
3843
|
+
"helpGroup": "GLOBAL",
|
|
3844
|
+
"name": "flags-dir",
|
|
3845
|
+
"summary": "Import flag values from a directory.",
|
|
3846
|
+
"hasDynamicHelp": false,
|
|
3847
|
+
"multiple": false,
|
|
3848
|
+
"type": "option"
|
|
3849
|
+
},
|
|
3850
|
+
"loglevel": {
|
|
3851
|
+
"deprecated": {
|
|
3852
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
3853
|
+
},
|
|
3854
|
+
"hidden": true,
|
|
3855
|
+
"name": "loglevel",
|
|
3856
|
+
"hasDynamicHelp": false,
|
|
3857
|
+
"multiple": false,
|
|
3858
|
+
"type": "option"
|
|
3859
|
+
},
|
|
3860
|
+
"target-org": {
|
|
3861
|
+
"aliases": [
|
|
3862
|
+
"targetusername",
|
|
3863
|
+
"u"
|
|
3864
|
+
],
|
|
3865
|
+
"char": "o",
|
|
3866
|
+
"deprecateAliases": true,
|
|
3867
|
+
"name": "target-org",
|
|
3868
|
+
"noCacheDefault": true,
|
|
3869
|
+
"required": true,
|
|
3870
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
3871
|
+
"hasDynamicHelp": true,
|
|
3872
|
+
"multiple": false,
|
|
3873
|
+
"type": "option"
|
|
3874
|
+
},
|
|
3875
|
+
"api-version": {
|
|
3876
|
+
"aliases": [
|
|
3877
|
+
"apiversion"
|
|
3878
|
+
],
|
|
3879
|
+
"deprecateAliases": true,
|
|
3880
|
+
"description": "Override the api version used for api requests made by this command",
|
|
3881
|
+
"name": "api-version",
|
|
3882
|
+
"hasDynamicHelp": false,
|
|
3883
|
+
"multiple": false,
|
|
3884
|
+
"type": "option"
|
|
3885
|
+
},
|
|
3886
|
+
"request-id": {
|
|
3887
|
+
"aliases": [
|
|
3888
|
+
"requestid"
|
|
3889
|
+
],
|
|
3890
|
+
"char": "i",
|
|
3891
|
+
"deprecateAliases": true,
|
|
3892
|
+
"name": "request-id",
|
|
3893
|
+
"required": true,
|
|
3894
|
+
"summary": "ID of the PackageUploadRequest (starts with 0HD).",
|
|
3895
|
+
"hasDynamicHelp": false,
|
|
3896
|
+
"multiple": false,
|
|
3897
|
+
"type": "option"
|
|
3898
|
+
}
|
|
3899
|
+
},
|
|
3900
|
+
"hasDynamicHelp": true,
|
|
3901
|
+
"hiddenAliases": [],
|
|
3902
|
+
"id": "package1:version:create:get",
|
|
3903
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
3904
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
3905
|
+
"pluginType": "core",
|
|
3906
|
+
"strict": true,
|
|
3907
|
+
"summary": "Retrieve the status of a package version creation request.",
|
|
3908
|
+
"enableJsonFlag": true,
|
|
3909
|
+
"isESM": true,
|
|
3910
|
+
"relativePath": [
|
|
3911
|
+
"lib",
|
|
3912
|
+
"commands",
|
|
3913
|
+
"package1",
|
|
3914
|
+
"version",
|
|
3915
|
+
"create",
|
|
3916
|
+
"get.js"
|
|
3917
|
+
],
|
|
3918
|
+
"aliasPermutations": [
|
|
3919
|
+
"force:package1:version:create:get",
|
|
3920
|
+
"package1:force:version:create:get",
|
|
3921
|
+
"package1:version:force:create:get",
|
|
3922
|
+
"package1:version:create:force:get",
|
|
3923
|
+
"package1:version:create:get:force",
|
|
3924
|
+
"force:version:package1:create:get",
|
|
3925
|
+
"version:force:package1:create:get",
|
|
3926
|
+
"version:package1:force:create:get",
|
|
3927
|
+
"version:package1:create:force:get",
|
|
3928
|
+
"version:package1:create:get:force",
|
|
3929
|
+
"force:version:create:package1:get",
|
|
3930
|
+
"version:force:create:package1:get",
|
|
3931
|
+
"version:create:force:package1:get",
|
|
3932
|
+
"version:create:package1:force:get",
|
|
3933
|
+
"version:create:package1:get:force",
|
|
3934
|
+
"force:version:create:get:package1",
|
|
3935
|
+
"version:force:create:get:package1",
|
|
3936
|
+
"version:create:force:get:package1",
|
|
3937
|
+
"version:create:get:force:package1",
|
|
3938
|
+
"version:create:get:package1:force",
|
|
3939
|
+
"force:package1:create:version:get",
|
|
3940
|
+
"package1:force:create:version:get",
|
|
3941
|
+
"package1:create:force:version:get",
|
|
3942
|
+
"package1:create:version:force:get",
|
|
3943
|
+
"package1:create:version:get:force",
|
|
3944
|
+
"force:create:package1:version:get",
|
|
3945
|
+
"create:force:package1:version:get",
|
|
3946
|
+
"create:package1:force:version:get",
|
|
3947
|
+
"create:package1:version:force:get",
|
|
3948
|
+
"create:package1:version:get:force",
|
|
3949
|
+
"force:create:version:package1:get",
|
|
3950
|
+
"create:force:version:package1:get",
|
|
3951
|
+
"create:version:force:package1:get",
|
|
3952
|
+
"create:version:package1:force:get",
|
|
3953
|
+
"create:version:package1:get:force",
|
|
3954
|
+
"force:create:version:get:package1",
|
|
3955
|
+
"create:force:version:get:package1",
|
|
3956
|
+
"create:version:force:get:package1",
|
|
3957
|
+
"create:version:get:force:package1",
|
|
3958
|
+
"create:version:get:package1:force",
|
|
3959
|
+
"force:package1:create:get:version",
|
|
3960
|
+
"package1:force:create:get:version",
|
|
3961
|
+
"package1:create:force:get:version",
|
|
3962
|
+
"package1:create:get:force:version",
|
|
3963
|
+
"package1:create:get:version:force",
|
|
3964
|
+
"force:create:package1:get:version",
|
|
3965
|
+
"create:force:package1:get:version",
|
|
3966
|
+
"create:package1:force:get:version",
|
|
3967
|
+
"create:package1:get:force:version",
|
|
3968
|
+
"create:package1:get:version:force",
|
|
3969
|
+
"force:create:get:package1:version",
|
|
3970
|
+
"create:force:get:package1:version",
|
|
3971
|
+
"create:get:force:package1:version",
|
|
3972
|
+
"create:get:package1:force:version",
|
|
3973
|
+
"create:get:package1:version:force",
|
|
3974
|
+
"force:create:get:version:package1",
|
|
3975
|
+
"create:force:get:version:package1",
|
|
3976
|
+
"create:get:force:version:package1",
|
|
3977
|
+
"create:get:version:force:package1",
|
|
3978
|
+
"create:get:version:package1:force",
|
|
3979
|
+
"force:package1:version:get:create",
|
|
3980
|
+
"package1:force:version:get:create",
|
|
3981
|
+
"package1:version:force:get:create",
|
|
3982
|
+
"package1:version:get:force:create",
|
|
3983
|
+
"package1:version:get:create:force",
|
|
3984
|
+
"force:version:package1:get:create",
|
|
3985
|
+
"version:force:package1:get:create",
|
|
3986
|
+
"version:package1:force:get:create",
|
|
3987
|
+
"version:package1:get:force:create",
|
|
3988
|
+
"version:package1:get:create:force",
|
|
3989
|
+
"force:version:get:package1:create",
|
|
3990
|
+
"version:force:get:package1:create",
|
|
3991
|
+
"version:get:force:package1:create",
|
|
3992
|
+
"version:get:package1:force:create",
|
|
3993
|
+
"version:get:package1:create:force",
|
|
3994
|
+
"force:version:get:create:package1",
|
|
3995
|
+
"version:force:get:create:package1",
|
|
3996
|
+
"version:get:force:create:package1",
|
|
3997
|
+
"version:get:create:force:package1",
|
|
3998
|
+
"version:get:create:package1:force",
|
|
3999
|
+
"force:package1:get:version:create",
|
|
4000
|
+
"package1:force:get:version:create",
|
|
4001
|
+
"package1:get:force:version:create",
|
|
4002
|
+
"package1:get:version:force:create",
|
|
4003
|
+
"package1:get:version:create:force",
|
|
4004
|
+
"force:get:package1:version:create",
|
|
4005
|
+
"get:force:package1:version:create",
|
|
4006
|
+
"get:package1:force:version:create",
|
|
4007
|
+
"get:package1:version:force:create",
|
|
4008
|
+
"get:package1:version:create:force",
|
|
4009
|
+
"force:get:version:package1:create",
|
|
4010
|
+
"get:force:version:package1:create",
|
|
4011
|
+
"get:version:force:package1:create",
|
|
4012
|
+
"get:version:package1:force:create",
|
|
4013
|
+
"get:version:package1:create:force",
|
|
4014
|
+
"force:get:version:create:package1",
|
|
4015
|
+
"get:force:version:create:package1",
|
|
4016
|
+
"get:version:force:create:package1",
|
|
4017
|
+
"get:version:create:force:package1",
|
|
4018
|
+
"get:version:create:package1:force",
|
|
4019
|
+
"force:package1:get:create:version",
|
|
4020
|
+
"package1:force:get:create:version",
|
|
4021
|
+
"package1:get:force:create:version",
|
|
4022
|
+
"package1:get:create:force:version",
|
|
4023
|
+
"package1:get:create:version:force",
|
|
4024
|
+
"force:get:package1:create:version",
|
|
4025
|
+
"get:force:package1:create:version",
|
|
4026
|
+
"get:package1:force:create:version",
|
|
4027
|
+
"get:package1:create:force:version",
|
|
4028
|
+
"get:package1:create:version:force",
|
|
4029
|
+
"force:get:create:package1:version",
|
|
4030
|
+
"get:force:create:package1:version",
|
|
4031
|
+
"get:create:force:package1:version",
|
|
4032
|
+
"get:create:package1:force:version",
|
|
4033
|
+
"get:create:package1:version:force",
|
|
4034
|
+
"force:get:create:version:package1",
|
|
4035
|
+
"get:force:create:version:package1",
|
|
4036
|
+
"get:create:force:version:package1",
|
|
4037
|
+
"get:create:version:force:package1",
|
|
4038
|
+
"get:create:version:package1:force"
|
|
4039
|
+
],
|
|
4040
|
+
"permutations": [
|
|
4041
|
+
"package1:version:create:get",
|
|
4042
|
+
"version:package1:create:get",
|
|
4043
|
+
"version:create:package1:get",
|
|
4044
|
+
"version:create:get:package1",
|
|
4045
|
+
"package1:create:version:get",
|
|
4046
|
+
"create:package1:version:get",
|
|
4047
|
+
"create:version:package1:get",
|
|
4048
|
+
"create:version:get:package1",
|
|
4049
|
+
"package1:create:get:version",
|
|
4050
|
+
"create:package1:get:version",
|
|
4051
|
+
"create:get:package1:version",
|
|
4052
|
+
"create:get:version:package1",
|
|
4053
|
+
"package1:version:get:create",
|
|
4054
|
+
"version:package1:get:create",
|
|
4055
|
+
"version:get:package1:create",
|
|
4056
|
+
"version:get:create:package1",
|
|
4057
|
+
"package1:get:version:create",
|
|
4058
|
+
"get:package1:version:create",
|
|
4059
|
+
"get:version:package1:create",
|
|
4060
|
+
"get:version:create:package1",
|
|
4061
|
+
"package1:get:create:version",
|
|
4062
|
+
"get:package1:create:version",
|
|
4063
|
+
"get:create:package1:version",
|
|
4064
|
+
"get:create:version:package1"
|
|
4065
|
+
]
|
|
4052
4066
|
}
|
|
4053
4067
|
},
|
|
4054
|
-
"version": "2.
|
|
4068
|
+
"version": "2.13.0"
|
|
4055
4069
|
}
|