@salesforce/cli 2.17.10-dev.0 → 2.18.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 +46 -40
- package/npm-shrinkwrap.json +228 -141
- package/oclif.manifest.json +122 -66
- package/package.json +11 -11
package/oclif.manifest.json
CHANGED
|
@@ -1603,44 +1603,56 @@
|
|
|
1603
1603
|
"hasDynamicHelp": true
|
|
1604
1604
|
},
|
|
1605
1605
|
"env:display": {
|
|
1606
|
-
"id": "env:display",
|
|
1607
|
-
"summary": "Display details about an environment.",
|
|
1608
|
-
"description": "Specify an environment with either the username you used when you logged into the environment with \"sf login\", or the alias you gave the environment when you created it. Run \"sf env list\" to view all your environments and their aliases.\n\nOutput depends on the type of environment.",
|
|
1609
|
-
"strict": true,
|
|
1610
|
-
"pluginName": "@salesforce/plugin-env",
|
|
1611
|
-
"pluginAlias": "@salesforce/plugin-env",
|
|
1612
|
-
"pluginType": "jit",
|
|
1613
1606
|
"aliases": [],
|
|
1607
|
+
"args": {},
|
|
1608
|
+
"description": "Specify an environment with either the username you used when you logged into the environment with \"sf login\", or the alias you gave the environment when you created it. Run \"sf env list\" to view all your environments and their aliases.\n\nOutput depends on the type of environment.",
|
|
1614
1609
|
"examples": [
|
|
1615
1610
|
"Display details about the \"myEnv\" environment:\n<%- config.bin %> <%- command.id %> --target-env myEnv"
|
|
1616
1611
|
],
|
|
1617
1612
|
"flags": {
|
|
1618
1613
|
"json": {
|
|
1619
|
-
"name": "json",
|
|
1620
|
-
"type": "boolean",
|
|
1621
1614
|
"description": "Format output as json.",
|
|
1622
1615
|
"helpGroup": "GLOBAL",
|
|
1623
|
-
"
|
|
1616
|
+
"name": "json",
|
|
1617
|
+
"allowNo": false,
|
|
1618
|
+
"type": "boolean"
|
|
1624
1619
|
},
|
|
1625
1620
|
"target-env": {
|
|
1626
|
-
"name": "target-env",
|
|
1627
|
-
"type": "option",
|
|
1628
1621
|
"char": "e",
|
|
1622
|
+
"name": "target-env",
|
|
1629
1623
|
"summary": "Environment alias or login user.",
|
|
1630
|
-
"
|
|
1624
|
+
"hasDynamicHelp": false,
|
|
1625
|
+
"multiple": false,
|
|
1626
|
+
"type": "option"
|
|
1631
1627
|
}
|
|
1632
1628
|
},
|
|
1633
|
-
"
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
"id": "env:list",
|
|
1637
|
-
"summary": "List the environments you’ve created or logged into.",
|
|
1638
|
-
"description": "By default, the command displays active environments.\n\nOutput is displayed in multiple tables, one for each environment type.\n\nThe compute environment table shows the alias, information about the connected orgs, the project name, and more.\n\nUse the table manipulation flags, such as --filter and --sort, to change how the data is displayed.\n\nRun \"sf env display\" to view details about a specific environment.",
|
|
1639
|
-
"strict": true,
|
|
1640
|
-
"pluginName": "@salesforce/plugin-env",
|
|
1629
|
+
"hasDynamicHelp": false,
|
|
1630
|
+
"hiddenAliases": [],
|
|
1631
|
+
"id": "env:display",
|
|
1641
1632
|
"pluginAlias": "@salesforce/plugin-env",
|
|
1633
|
+
"pluginName": "@salesforce/plugin-env",
|
|
1642
1634
|
"pluginType": "jit",
|
|
1635
|
+
"strict": true,
|
|
1636
|
+
"summary": "Display details about an environment.",
|
|
1637
|
+
"enableJsonFlag": true,
|
|
1638
|
+
"SF_ENV": "SF_ENV",
|
|
1639
|
+
"isESM": true,
|
|
1640
|
+
"relativePath": [
|
|
1641
|
+
"lib",
|
|
1642
|
+
"commands",
|
|
1643
|
+
"env",
|
|
1644
|
+
"display.js"
|
|
1645
|
+
],
|
|
1646
|
+
"aliasPermutations": [],
|
|
1647
|
+
"permutations": [
|
|
1648
|
+
"env:display",
|
|
1649
|
+
"display:env"
|
|
1650
|
+
]
|
|
1651
|
+
},
|
|
1652
|
+
"env:list": {
|
|
1643
1653
|
"aliases": [],
|
|
1654
|
+
"args": {},
|
|
1655
|
+
"description": "By default, the command displays active environments.\n\nOutput is displayed in multiple tables, one for each environment type.\n\nThe compute environment table shows the alias, information about the connected orgs, the project name, and more.\n\nUse the table manipulation flags, such as --filter and --sort, to change how the data is displayed.\n\nRun \"sf env display\" to view details about a specific environment.",
|
|
1644
1656
|
"examples": [
|
|
1645
1657
|
"List all active environments:\n<%= config.bin %> <%= command.id %>",
|
|
1646
1658
|
"List both active and inactive environments:\n<%= config.bin %> <%= command.id %> --all",
|
|
@@ -1649,78 +1661,98 @@
|
|
|
1649
1661
|
],
|
|
1650
1662
|
"flags": {
|
|
1651
1663
|
"json": {
|
|
1652
|
-
"name": "json",
|
|
1653
|
-
"type": "boolean",
|
|
1654
1664
|
"description": "Format output as json.",
|
|
1655
1665
|
"helpGroup": "GLOBAL",
|
|
1656
|
-
"
|
|
1666
|
+
"name": "json",
|
|
1667
|
+
"allowNo": false,
|
|
1668
|
+
"type": "boolean"
|
|
1657
1669
|
},
|
|
1658
1670
|
"all": {
|
|
1659
|
-
"name": "all",
|
|
1660
|
-
"type": "boolean",
|
|
1661
1671
|
"char": "a",
|
|
1672
|
+
"name": "all",
|
|
1662
1673
|
"summary": "Show all environments, even inactive ones.",
|
|
1663
|
-
"allowNo": false
|
|
1674
|
+
"allowNo": false,
|
|
1675
|
+
"type": "boolean"
|
|
1664
1676
|
},
|
|
1665
1677
|
"columns": {
|
|
1666
1678
|
"name": "columns",
|
|
1667
|
-
"type": "option",
|
|
1668
1679
|
"summary": "List of columns to display.",
|
|
1669
|
-
"
|
|
1680
|
+
"hasDynamicHelp": false,
|
|
1681
|
+
"multiple": true,
|
|
1682
|
+
"type": "option"
|
|
1670
1683
|
},
|
|
1671
1684
|
"csv": {
|
|
1672
1685
|
"name": "csv",
|
|
1673
|
-
"type": "boolean",
|
|
1674
1686
|
"summary": "Output in csv format [alias: --output=csv]",
|
|
1675
|
-
"allowNo": false
|
|
1687
|
+
"allowNo": false,
|
|
1688
|
+
"type": "boolean"
|
|
1676
1689
|
},
|
|
1677
1690
|
"filter": {
|
|
1678
1691
|
"name": "filter",
|
|
1679
|
-
"type": "option",
|
|
1680
1692
|
"summary": "Filter property by partial string matching.",
|
|
1681
|
-
"
|
|
1693
|
+
"hasDynamicHelp": false,
|
|
1694
|
+
"multiple": false,
|
|
1695
|
+
"type": "option"
|
|
1682
1696
|
},
|
|
1683
1697
|
"no-header": {
|
|
1684
1698
|
"name": "no-header",
|
|
1685
|
-
"type": "boolean",
|
|
1686
1699
|
"summary": "Hide table header from output.",
|
|
1687
|
-
"allowNo": false
|
|
1700
|
+
"allowNo": false,
|
|
1701
|
+
"type": "boolean"
|
|
1688
1702
|
},
|
|
1689
1703
|
"no-truncate": {
|
|
1690
1704
|
"name": "no-truncate",
|
|
1691
|
-
"type": "boolean",
|
|
1692
1705
|
"summary": "Don't truncate output to fit screen.",
|
|
1693
|
-
"allowNo": false
|
|
1706
|
+
"allowNo": false,
|
|
1707
|
+
"type": "boolean"
|
|
1694
1708
|
},
|
|
1695
1709
|
"output": {
|
|
1696
1710
|
"name": "output",
|
|
1697
|
-
"type": "option",
|
|
1698
1711
|
"summary": "Format in which to display the output.",
|
|
1712
|
+
"hasDynamicHelp": false,
|
|
1699
1713
|
"multiple": false,
|
|
1700
1714
|
"options": [
|
|
1701
1715
|
"csv",
|
|
1702
1716
|
"json",
|
|
1703
1717
|
"yaml"
|
|
1704
|
-
]
|
|
1718
|
+
],
|
|
1719
|
+
"type": "option"
|
|
1705
1720
|
},
|
|
1706
1721
|
"sort": {
|
|
1707
1722
|
"name": "sort",
|
|
1708
|
-
"type": "option",
|
|
1709
1723
|
"summary": "Column to sort by (prepend '-' for descending).",
|
|
1710
|
-
"
|
|
1724
|
+
"hasDynamicHelp": false,
|
|
1725
|
+
"multiple": false,
|
|
1726
|
+
"type": "option"
|
|
1711
1727
|
}
|
|
1712
1728
|
},
|
|
1713
|
-
"
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
"id": "env:open",
|
|
1717
|
-
"summary": "Open an environment in a web browser.",
|
|
1718
|
-
"description": "Each of your environments is associated with an instance URL, such as https://login.salesforce.com. To open a specific web page, specify the portion of the URL after \"<URL>/\" with the --path flag.",
|
|
1719
|
-
"strict": true,
|
|
1720
|
-
"pluginName": "@salesforce/plugin-env",
|
|
1729
|
+
"hasDynamicHelp": false,
|
|
1730
|
+
"hiddenAliases": [],
|
|
1731
|
+
"id": "env:list",
|
|
1721
1732
|
"pluginAlias": "@salesforce/plugin-env",
|
|
1733
|
+
"pluginName": "@salesforce/plugin-env",
|
|
1722
1734
|
"pluginType": "jit",
|
|
1735
|
+
"strict": true,
|
|
1736
|
+
"summary": "List the environments you’ve created or logged into.",
|
|
1737
|
+
"enableJsonFlag": true,
|
|
1738
|
+
"SF_ENV": "SF_ENV",
|
|
1739
|
+
"isESM": true,
|
|
1740
|
+
"relativePath": [
|
|
1741
|
+
"lib",
|
|
1742
|
+
"commands",
|
|
1743
|
+
"env",
|
|
1744
|
+
"list.js"
|
|
1745
|
+
],
|
|
1746
|
+
"aliasPermutations": [],
|
|
1747
|
+
"permutations": [
|
|
1748
|
+
"env:list",
|
|
1749
|
+
"list:env"
|
|
1750
|
+
]
|
|
1751
|
+
},
|
|
1752
|
+
"env:open": {
|
|
1723
1753
|
"aliases": [],
|
|
1754
|
+
"args": {},
|
|
1755
|
+
"description": "Each of your environments is associated with an instance URL, such as https://login.salesforce.com. To open a specific web page, specify the portion of the URL after \"<URL>/\" with the --path flag.",
|
|
1724
1756
|
"examples": [
|
|
1725
1757
|
"Open the compute environment with alias \"test-compute\":\n<%= config.bin %> <%= command.id %> --target-env test-compute",
|
|
1726
1758
|
"View the URL but don't launch it in a browser:\n<%= config.bin %> <%= command.id %> --target-env test-compute --url-only",
|
|
@@ -1728,42 +1760,66 @@
|
|
|
1728
1760
|
],
|
|
1729
1761
|
"flags": {
|
|
1730
1762
|
"json": {
|
|
1731
|
-
"name": "json",
|
|
1732
|
-
"type": "boolean",
|
|
1733
1763
|
"description": "Format output as json.",
|
|
1734
1764
|
"helpGroup": "GLOBAL",
|
|
1735
|
-
"
|
|
1765
|
+
"name": "json",
|
|
1766
|
+
"allowNo": false,
|
|
1767
|
+
"type": "boolean"
|
|
1736
1768
|
},
|
|
1737
1769
|
"path": {
|
|
1738
|
-
"name": "path",
|
|
1739
|
-
"type": "option",
|
|
1740
1770
|
"char": "p",
|
|
1771
|
+
"name": "path",
|
|
1741
1772
|
"summary": "Path to append to the end of the login URL.",
|
|
1742
|
-
"
|
|
1773
|
+
"hasDynamicHelp": false,
|
|
1774
|
+
"multiple": false,
|
|
1775
|
+
"type": "option"
|
|
1743
1776
|
},
|
|
1744
1777
|
"url-only": {
|
|
1745
|
-
"name": "url-only",
|
|
1746
|
-
"type": "boolean",
|
|
1747
1778
|
"char": "r",
|
|
1779
|
+
"name": "url-only",
|
|
1748
1780
|
"summary": "Display the URL, but don’t launch it in a browser.",
|
|
1749
|
-
"allowNo": false
|
|
1781
|
+
"allowNo": false,
|
|
1782
|
+
"type": "boolean"
|
|
1750
1783
|
},
|
|
1751
1784
|
"target-env": {
|
|
1752
|
-
"name": "target-env",
|
|
1753
|
-
"type": "option",
|
|
1754
1785
|
"char": "e",
|
|
1786
|
+
"name": "target-env",
|
|
1755
1787
|
"summary": "Login user or alias of the environment to open.",
|
|
1756
|
-
"
|
|
1788
|
+
"hasDynamicHelp": false,
|
|
1789
|
+
"multiple": false,
|
|
1790
|
+
"type": "option"
|
|
1757
1791
|
},
|
|
1758
1792
|
"browser": {
|
|
1793
|
+
"description": "You can specify that the environment open in one of the following browsers: Firefox, Safari, Google Chrome, or Windows Edge. If you don’t specify --browser, the environment opens in your default browser. The exact names of the browser applications differ depending on the operating system you're on; check your documentation for details.",
|
|
1759
1794
|
"name": "browser",
|
|
1760
|
-
"type": "option",
|
|
1761
1795
|
"summary": "Browser in which to open the environment.",
|
|
1762
|
-
"
|
|
1763
|
-
"multiple": false
|
|
1796
|
+
"hasDynamicHelp": false,
|
|
1797
|
+
"multiple": false,
|
|
1798
|
+
"type": "option"
|
|
1764
1799
|
}
|
|
1765
1800
|
},
|
|
1766
|
-
"
|
|
1801
|
+
"hasDynamicHelp": false,
|
|
1802
|
+
"hiddenAliases": [],
|
|
1803
|
+
"id": "env:open",
|
|
1804
|
+
"pluginAlias": "@salesforce/plugin-env",
|
|
1805
|
+
"pluginName": "@salesforce/plugin-env",
|
|
1806
|
+
"pluginType": "jit",
|
|
1807
|
+
"strict": true,
|
|
1808
|
+
"summary": "Open an environment in a web browser.",
|
|
1809
|
+
"enableJsonFlag": true,
|
|
1810
|
+
"SF_ENV": "SF_ENV",
|
|
1811
|
+
"isESM": true,
|
|
1812
|
+
"relativePath": [
|
|
1813
|
+
"lib",
|
|
1814
|
+
"commands",
|
|
1815
|
+
"env",
|
|
1816
|
+
"open.js"
|
|
1817
|
+
],
|
|
1818
|
+
"aliasPermutations": [],
|
|
1819
|
+
"permutations": [
|
|
1820
|
+
"env:open",
|
|
1821
|
+
"open:env"
|
|
1822
|
+
]
|
|
1767
1823
|
},
|
|
1768
1824
|
"deploy:functions": {
|
|
1769
1825
|
"id": "deploy:functions",
|
|
@@ -6878,5 +6934,5 @@
|
|
|
6878
6934
|
]
|
|
6879
6935
|
}
|
|
6880
6936
|
},
|
|
6881
|
-
"version": "2.
|
|
6937
|
+
"version": "2.18.0"
|
|
6882
6938
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.18.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"@salesforce/plugin-community": "2.4.9",
|
|
76
76
|
"@salesforce/plugin-dev": "1.3.2",
|
|
77
77
|
"@salesforce/plugin-devops-center": "1.2.4",
|
|
78
|
-
"@salesforce/plugin-env": "
|
|
78
|
+
"@salesforce/plugin-env": "3.0.2",
|
|
79
79
|
"@salesforce/plugin-functions": "1.22.9",
|
|
80
80
|
"@salesforce/plugin-packaging": "1.27.1",
|
|
81
81
|
"@salesforce/plugin-signups": "1.5.6",
|
|
@@ -125,12 +125,12 @@
|
|
|
125
125
|
}
|
|
126
126
|
},
|
|
127
127
|
"dependencies": {
|
|
128
|
-
"@oclif/core": "3.10.
|
|
128
|
+
"@oclif/core": "3.10.8",
|
|
129
129
|
"@oclif/plugin-autocomplete": "3.0.1",
|
|
130
130
|
"@oclif/plugin-commands": "3.0.6",
|
|
131
131
|
"@oclif/plugin-help": "6.0.5",
|
|
132
132
|
"@oclif/plugin-not-found": "3.0.3",
|
|
133
|
-
"@oclif/plugin-plugins": "4.1.
|
|
133
|
+
"@oclif/plugin-plugins": "4.1.2",
|
|
134
134
|
"@oclif/plugin-search": "1.0.6",
|
|
135
135
|
"@oclif/plugin-update": "4.1.3",
|
|
136
136
|
"@oclif/plugin-version": "2.0.6",
|
|
@@ -140,21 +140,21 @@
|
|
|
140
140
|
"@salesforce/plugin-apex": "2.3.20",
|
|
141
141
|
"@salesforce/plugin-auth": "2.8.26",
|
|
142
142
|
"@salesforce/plugin-data": "2.6.3",
|
|
143
|
-
"@salesforce/plugin-deploy-retrieve": "1.20.
|
|
143
|
+
"@salesforce/plugin-deploy-retrieve": "1.20.2",
|
|
144
144
|
"@salesforce/plugin-info": "3.0.1",
|
|
145
145
|
"@salesforce/plugin-limits": "3.0.1",
|
|
146
146
|
"@salesforce/plugin-login": "2.0.1",
|
|
147
147
|
"@salesforce/plugin-marketplace": "1.0.2",
|
|
148
148
|
"@salesforce/plugin-org": "2.11.8",
|
|
149
|
-
"@salesforce/plugin-schema": "
|
|
149
|
+
"@salesforce/plugin-schema": "3.0.1",
|
|
150
150
|
"@salesforce/plugin-settings": "2.0.2",
|
|
151
151
|
"@salesforce/plugin-sobject": "0.2.15",
|
|
152
|
-
"@salesforce/plugin-source": "2.
|
|
152
|
+
"@salesforce/plugin-source": "2.11.0",
|
|
153
153
|
"@salesforce/plugin-telemetry": "3.1.0",
|
|
154
154
|
"@salesforce/plugin-templates": "55.5.18",
|
|
155
155
|
"@salesforce/plugin-trust": "3.0.1",
|
|
156
156
|
"@salesforce/plugin-user": "2.3.42",
|
|
157
|
-
"@salesforce/sf-plugins-core": "4.0.
|
|
157
|
+
"@salesforce/sf-plugins-core": "4.0.1-dev.4",
|
|
158
158
|
"debug": "^4.3.4"
|
|
159
159
|
},
|
|
160
160
|
"pinnedDependencies": [
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"@salesforce/schemas": "1.6.1",
|
|
193
193
|
"@salesforce/templates": "59.0.1",
|
|
194
194
|
"@salesforce/source-deploy-retrieve": "9.8.4",
|
|
195
|
-
"@salesforce/source-tracking": "4.
|
|
195
|
+
"@salesforce/source-tracking": "4.4.0"
|
|
196
196
|
},
|
|
197
197
|
"repository": "salesforcecli/cli",
|
|
198
198
|
"scripts": {
|
|
@@ -243,9 +243,9 @@
|
|
|
243
243
|
"@types/debug": "^4.1.10",
|
|
244
244
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
245
245
|
"@typescript-eslint/parser": "^5.62.0",
|
|
246
|
-
"aws-sdk": "^2.
|
|
246
|
+
"aws-sdk": "^2.1490.0",
|
|
247
247
|
"chai": "^4.3.10",
|
|
248
|
-
"eslint": "^8.
|
|
248
|
+
"eslint": "^8.53.0",
|
|
249
249
|
"eslint-config-oclif": "^5",
|
|
250
250
|
"eslint-config-oclif-typescript": "^2.0.1",
|
|
251
251
|
"eslint-config-prettier": "^8.10.0",
|