@salesforce/cli 2.0.0-beta.44 → 2.0.0-beta.46
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/npm-shrinkwrap.json +1447 -150
- package/oclif.manifest.json +3 -10
- package/package.json +9 -9
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "2.0.0-beta.
|
|
2
|
+
"version": "2.0.0-beta.46",
|
|
3
3
|
"commands": {
|
|
4
4
|
"cmdt:generate:field": {
|
|
5
5
|
"id": "cmdt:generate:field",
|
|
@@ -561,7 +561,7 @@
|
|
|
561
561
|
"community:create": {
|
|
562
562
|
"id": "community:create",
|
|
563
563
|
"summary": "Create an Experience Cloud site using a template.",
|
|
564
|
-
"description": "See 'Which Experience Cloud Template Should I Use?' (https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5)
|
|
564
|
+
"description": "Run the \"community list template\" command to see the templates available in your org. See 'Which Experience Cloud Template Should I Use?' in Salesforce Help for more information about the different template types available. (https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5)\n\nWhen you create a site with the Build Your Own (LWR) template, you must also specify the AuthenticationType value using the format templateParams.AuthenticationType=value, where value is AUTHENTICATED or AUTHENTICATED_WITH_PUBLIC_ACCESS_ENABLED. Name and values are case-sensitive. See 'DigitalExperienceBundle' in the Metadata API Developer Guide for more information. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_digitalexperiencebundle.htm)\n\nThe site creation process is an async job that generates a jobId. To check the site creation status, query the BackgroundOperation object and enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the Salesforce Platform for more information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_backgroundoperation.htm)\n\nIf the job doesn’t complete within 10 minutes, it times out. You receive an error message and must restart the site creation process. Completed jobs expire after 24 hours and are removed from the database.\n\nWhen you run this command, it creates the site in preview status, which means that the site isn't yet live. After you finish building your site, you can make it live.\n\nIf you have an Experience Builder site, publish the site using the \"community publish\" command to make it live.\n\nIf you have a Salesforce Tabs + Visualforce site, to activate the site and make it live, update the status field of the Network type in Metadata API. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm) Alternatively, in Experience Workspaces, go to Administration | Settings, and click Activate.\n\nFor Experience Builder sites, activating the site sends a welcome email to site members.",
|
|
565
565
|
"strict": false,
|
|
566
566
|
"pluginName": "@salesforce/plugin-community",
|
|
567
567
|
"pluginAlias": "@salesforce/plugin-community",
|
|
@@ -663,19 +663,12 @@
|
|
|
663
663
|
}
|
|
664
664
|
},
|
|
665
665
|
"args": {},
|
|
666
|
-
"validationPatterns": [
|
|
667
|
-
"name",
|
|
668
|
-
"urlPathPrefix",
|
|
669
|
-
"templateName",
|
|
670
|
-
"description",
|
|
671
|
-
"templateParams(\\.\\w+)+"
|
|
672
|
-
],
|
|
673
666
|
"hasDynamicHelp": true
|
|
674
667
|
},
|
|
675
668
|
"community:publish": {
|
|
676
669
|
"id": "community:publish",
|
|
677
670
|
"summary": "Publish an Experience Builder site to make it live.",
|
|
678
|
-
"description": "Each time you publish
|
|
671
|
+
"description": "Each time you publish a site, you update the live site with the most recent updates. When you publish an Experience Builder site for the first time, you make the site's URL live and enable login access for site members.\n\nIn addition to publishing, you must activate a site to send a welcome email to all site members. Activation is also required to set up SEO for Experience Builder sites. To activate a site, update the status field of the Network type in Metadata API. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm)Alternatively, in Experience Workspaces, go to Administration | Settings, and click Activate.\n\nAn email notification informs you when your changes are live on the published site. The site publish process is an async job that generates a jobId. To check the site publish status manually, query the BackgroundOperation object and enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the Salesforce Platform for more information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_backgroundoperation.htm)\n\nIf the job doesn’t complete within 15 minutes, it times out. You receive an error message and must restart the site publish process. Completed jobs expire after 24 hours and are removed from the database.",
|
|
679
672
|
"strict": true,
|
|
680
673
|
"pluginName": "@salesforce/plugin-community",
|
|
681
674
|
"pluginAlias": "@salesforce/plugin-community",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.46",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run",
|
|
@@ -70,11 +70,11 @@
|
|
|
70
70
|
],
|
|
71
71
|
"jitPlugins": {
|
|
72
72
|
"@salesforce/plugin-custom-metadata": "2.1.24",
|
|
73
|
-
"@salesforce/plugin-community": "2.
|
|
73
|
+
"@salesforce/plugin-community": "2.3.0",
|
|
74
74
|
"@salesforce/plugin-dev": "0.7.7",
|
|
75
75
|
"@salesforce/plugin-env": "2.1.9",
|
|
76
76
|
"@salesforce/plugin-functions": "1.21.10",
|
|
77
|
-
"@salesforce/plugin-packaging": "1.
|
|
77
|
+
"@salesforce/plugin-packaging": "1.18.0",
|
|
78
78
|
"@salesforce/plugin-signups": "1.4.20",
|
|
79
79
|
"@salesforce/sfdx-plugin-lwc-test": "1.0.2",
|
|
80
80
|
"@salesforce/sfdx-scanner": "3.12.0"
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
},
|
|
122
122
|
"dependencies": {
|
|
123
123
|
"@oclif/core": "2.8.5",
|
|
124
|
-
"@oclif/plugin-autocomplete": "2.
|
|
124
|
+
"@oclif/plugin-autocomplete": "2.3.0",
|
|
125
125
|
"@oclif/plugin-commands": "2.2.15",
|
|
126
126
|
"@oclif/plugin-help": "5.2.9",
|
|
127
127
|
"@oclif/plugin-not-found": "2.3.24",
|
|
@@ -131,24 +131,24 @@
|
|
|
131
131
|
"@oclif/plugin-version": "1.3.4",
|
|
132
132
|
"@oclif/plugin-warn-if-update-available": "2.0.37",
|
|
133
133
|
"@oclif/plugin-which": "2.2.21",
|
|
134
|
-
"@salesforce/core": "
|
|
134
|
+
"@salesforce/core": "4.0.1",
|
|
135
135
|
"@salesforce/plugin-apex": "2.2.22",
|
|
136
136
|
"@salesforce/plugin-auth": "2.7.17",
|
|
137
137
|
"@salesforce/plugin-data": "2.3.20",
|
|
138
|
-
"@salesforce/plugin-deploy-retrieve": "1.
|
|
138
|
+
"@salesforce/plugin-deploy-retrieve": "1.11.0",
|
|
139
139
|
"@salesforce/plugin-info": "2.6.16",
|
|
140
140
|
"@salesforce/plugin-limits": "2.3.17",
|
|
141
141
|
"@salesforce/plugin-login": "1.2.11",
|
|
142
|
-
"@salesforce/plugin-org": "2.9.
|
|
142
|
+
"@salesforce/plugin-org": "2.9.3",
|
|
143
143
|
"@salesforce/plugin-schema": "2.3.10",
|
|
144
144
|
"@salesforce/plugin-settings": "1.4.10",
|
|
145
145
|
"@salesforce/plugin-sobject": "0.1.22",
|
|
146
|
-
"@salesforce/plugin-source": "2.10.
|
|
146
|
+
"@salesforce/plugin-source": "2.10.12",
|
|
147
147
|
"@salesforce/plugin-telemetry": "2.2.0",
|
|
148
148
|
"@salesforce/plugin-templates": "55.4.18",
|
|
149
149
|
"@salesforce/plugin-trust": "2.4.20",
|
|
150
150
|
"@salesforce/plugin-user": "2.3.14",
|
|
151
|
-
"@salesforce/sf-plugins-core": "3.0.
|
|
151
|
+
"@salesforce/sf-plugins-core": "3.0.2",
|
|
152
152
|
"debug": "^4.3.4",
|
|
153
153
|
"semver": "^7.3.8",
|
|
154
154
|
"tslib": "^2.4.1"
|