@salesforce/plugin-community 3.0.27 → 3.0.28
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 +2 -173
- package/npm-shrinkwrap.json +100 -228
- package/oclif.lock +19 -52
- package/oclif.manifest.json +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -72,179 +72,8 @@ sfdx plugins
|
|
|
72
72
|
|
|
73
73
|
<!-- commands -->
|
|
74
74
|
|
|
75
|
-
|
|
76
|
-
- [`sf community list template`](#sf-community-list-template)
|
|
77
|
-
- [`sf community publish`](#sf-community-publish)
|
|
75
|
+
# Command Topics
|
|
78
76
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
Create an Experience Cloud site using a template.
|
|
82
|
-
|
|
83
|
-
```
|
|
84
|
-
USAGE
|
|
85
|
-
$ sf community create -n <value> -t <value> -o <value> [--json] [-p <value>] [-d <value>] [--api-version <value>]
|
|
86
|
-
|
|
87
|
-
FLAGS
|
|
88
|
-
-d, --description=<value> Description of the site.
|
|
89
|
-
-n, --name=<value> (required) Name of the site to create.
|
|
90
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
91
|
-
configuration variable is already set.
|
|
92
|
-
-p, --url-path-prefix=<value> URL to append to the domain created when Digital Experiences was enabled for this org.
|
|
93
|
-
-t, --template-name=<value> (required) Template to use to create a site.
|
|
94
|
-
--api-version=<value> Override the api version used for api requests made by this command
|
|
95
|
-
|
|
96
|
-
GLOBAL FLAGS
|
|
97
|
-
--json Format output as json.
|
|
98
|
-
|
|
99
|
-
DESCRIPTION
|
|
100
|
-
Create an Experience Cloud site using a template.
|
|
101
|
-
|
|
102
|
-
Run the "community list template" command to see the templates available in your org. See 'Which Experience Cloud
|
|
103
|
-
Template Should I Use?' in Salesforce Help for more information about the different template types available.
|
|
104
|
-
(https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5)
|
|
105
|
-
|
|
106
|
-
When you create a site with the Build Your Own (LWR) template, you must also specify the AuthenticationType value
|
|
107
|
-
using the format templateParams.AuthenticationType=value, where value is AUTHENTICATED or
|
|
108
|
-
AUTHENTICATED_WITH_PUBLIC_ACCESS_ENABLED. Name and values are case-sensitive. See 'DigitalExperienceBundle' in the
|
|
109
|
-
Metadata API Developer Guide for more information.
|
|
110
|
-
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_digitalexperiencebundle.htm)
|
|
111
|
-
|
|
112
|
-
The site creation process is an async job that generates a jobId. To check the site creation status, query the
|
|
113
|
-
BackgroundOperation object and enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the
|
|
114
|
-
Salesforce Platform for more information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/obj
|
|
115
|
-
ect_reference/sforce_api_objects_backgroundoperation.htm)
|
|
116
|
-
|
|
117
|
-
If the job doesn’t complete within 10 minutes, it times out. You receive an error message and must restart the site
|
|
118
|
-
creation process. Completed jobs expire after 24 hours and are removed from the database.
|
|
119
|
-
|
|
120
|
-
When you run this command, it creates the site in preview status, which means that the site isn't yet live. After you
|
|
121
|
-
finish building your site, you can make it live.
|
|
122
|
-
|
|
123
|
-
If you have an Experience Builder site, publish the site using the "community publish" command to make it live.
|
|
124
|
-
|
|
125
|
-
If you have a Salesforce Tabs + Visualforce site, to activate the site and make it live, update the status field of
|
|
126
|
-
the Network type in Metadata API.
|
|
127
|
-
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm) Alternatively, in
|
|
128
|
-
Experience Workspaces, go to Administration | Settings, and click Activate.
|
|
129
|
-
|
|
130
|
-
For Experience Builder sites, activating the site sends a welcome email to site members.
|
|
131
|
-
|
|
132
|
-
ALIASES
|
|
133
|
-
$ sf force community create
|
|
134
|
-
|
|
135
|
-
EXAMPLES
|
|
136
|
-
Create an Experience Cloud site using template 'Customer Service' and URL path prefix 'customers':
|
|
137
|
-
|
|
138
|
-
$ sf community create --name 'My Customer Site' --template-name 'Customer Service' --url-path-prefix customers \
|
|
139
|
-
--description 'My customer site'
|
|
140
|
-
|
|
141
|
-
Create a site using 'Partner Central' template:
|
|
142
|
-
|
|
143
|
-
$ sf community create --name partnercentral --template-name 'Partner Central' --url-path-prefix partners
|
|
144
|
-
|
|
145
|
-
Create a site using the 'Build Your Own (LWR)' template with authentication type of UNAUTHENTICATED:
|
|
146
|
-
|
|
147
|
-
$ sf community create --name lwrsite --template-name 'Build Your Own (LWR)' --url-path-prefix lwrsite \
|
|
148
|
-
templateParams.AuthenticationType=UNAUTHENTICATED
|
|
149
|
-
|
|
150
|
-
FLAG DESCRIPTIONS
|
|
151
|
-
-d, --description=<value> Description of the site.
|
|
152
|
-
|
|
153
|
-
The description displays in Digital Experiences - All Sites in Setup and helps with site identification.
|
|
154
|
-
|
|
155
|
-
-p, --url-path-prefix=<value> URL to append to the domain created when Digital Experiences was enabled for this org.
|
|
156
|
-
|
|
157
|
-
For example, if your domain name is https://MyDomainName.my.site.com and you create a customer site, enter
|
|
158
|
-
'customers' to create the unique URL https://MyDomainName.my.site.com/customers.
|
|
159
|
-
|
|
160
|
-
-t, --template-name=<value> Template to use to create a site.
|
|
161
|
-
|
|
162
|
-
An example of a template is Customer Service. Run the "community template list" command to see which templates are
|
|
163
|
-
available in your org.
|
|
164
|
-
```
|
|
165
|
-
|
|
166
|
-
_See code: [src/commands/community/create.ts](https://github.com/salesforcecli/plugin-community/blob/3.0.27/src/commands/community/create.ts)_
|
|
167
|
-
|
|
168
|
-
## `sf community list template`
|
|
169
|
-
|
|
170
|
-
Retrieve the list of templates available in your org.
|
|
171
|
-
|
|
172
|
-
```
|
|
173
|
-
USAGE
|
|
174
|
-
$ sf community list template -o <value> [--json] [--api-version <value>]
|
|
175
|
-
|
|
176
|
-
FLAGS
|
|
177
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
178
|
-
configuration variable is already set.
|
|
179
|
-
--api-version=<value> Override the api version used for api requests made by this command
|
|
180
|
-
|
|
181
|
-
GLOBAL FLAGS
|
|
182
|
-
--json Format output as json.
|
|
183
|
-
|
|
184
|
-
DESCRIPTION
|
|
185
|
-
Retrieve the list of templates available in your org.
|
|
186
|
-
|
|
187
|
-
See 'Which Experience Cloud Template Should I Use?'
|
|
188
|
-
(https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5) in Salesforce Help for more
|
|
189
|
-
information about the different template types available for Experience Cloud.
|
|
190
|
-
|
|
191
|
-
ALIASES
|
|
192
|
-
$ sf force community template list
|
|
193
|
-
|
|
194
|
-
EXAMPLES
|
|
195
|
-
Retrieve the template list from an org with alias my-scratch-org:
|
|
196
|
-
|
|
197
|
-
$ sf community list template --target-org my-scratch-org
|
|
198
|
-
```
|
|
199
|
-
|
|
200
|
-
_See code: [src/commands/community/list/template.ts](https://github.com/salesforcecli/plugin-community/blob/3.0.27/src/commands/community/list/template.ts)_
|
|
201
|
-
|
|
202
|
-
## `sf community publish`
|
|
203
|
-
|
|
204
|
-
Publish an Experience Builder site to make it live.
|
|
205
|
-
|
|
206
|
-
```
|
|
207
|
-
USAGE
|
|
208
|
-
$ sf community publish -n <value> -o <value> [--json] [--api-version <value>]
|
|
209
|
-
|
|
210
|
-
FLAGS
|
|
211
|
-
-n, --name=<value> (required) Name of the Experience Builder site to publish.
|
|
212
|
-
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
213
|
-
configuration variable is already set.
|
|
214
|
-
--api-version=<value> Override the api version used for api requests made by this command
|
|
215
|
-
|
|
216
|
-
GLOBAL FLAGS
|
|
217
|
-
--json Format output as json.
|
|
218
|
-
|
|
219
|
-
DESCRIPTION
|
|
220
|
-
Publish an Experience Builder site to make it live.
|
|
221
|
-
|
|
222
|
-
Each time you publish a site, you update the live site with the most recent updates. When you publish an Experience
|
|
223
|
-
Builder site for the first time, you make the site's URL live and enable login access for site members.
|
|
224
|
-
|
|
225
|
-
In addition to publishing, you must activate a site to send a welcome email to all site members. Activation is also
|
|
226
|
-
required to set up SEO for Experience Builder sites. To activate a site, update the status field of the Network type
|
|
227
|
-
in Metadata API. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm)
|
|
228
|
-
Alternatively, in Experience Workspaces, go to Administration | Settings, and click Activate.
|
|
229
|
-
|
|
230
|
-
An email notification informs you when your changes are live on the published site. The site publish process is an
|
|
231
|
-
async job that generates a jobId. To check the site publish status manually, query the BackgroundOperation object and
|
|
232
|
-
enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the Salesforce Platform for more
|
|
233
|
-
information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_obje
|
|
234
|
-
cts_backgroundoperation.htm)
|
|
235
|
-
|
|
236
|
-
If the job doesn’t complete within 15 minutes, it times out. You receive an error message and must restart the site
|
|
237
|
-
publish process. Completed jobs expire after 24 hours and are removed from the database.
|
|
238
|
-
|
|
239
|
-
ALIASES
|
|
240
|
-
$ sf force community publish
|
|
241
|
-
|
|
242
|
-
EXAMPLES
|
|
243
|
-
Publish the Experience Builder site with name "My Customer Site':
|
|
244
|
-
|
|
245
|
-
$ sf community publish --name 'My Customer Site'
|
|
246
|
-
```
|
|
247
|
-
|
|
248
|
-
_See code: [src/commands/community/publish.ts](https://github.com/salesforcecli/plugin-community/blob/3.0.27/src/commands/community/publish.ts)_
|
|
77
|
+
- [`sf community`](docs/community.md) - Create and publish an Experience Cloud site.
|
|
249
78
|
|
|
250
79
|
<!-- commandsstop -->
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-community",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.28",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-community",
|
|
9
|
-
"version": "3.0.
|
|
9
|
+
"version": "3.0.28",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@oclif/core": "^3.19.2",
|
|
13
13
|
"@salesforce/core": "^6.7.1",
|
|
14
14
|
"@salesforce/kit": "^3.0.15",
|
|
15
|
-
"@salesforce/sf-plugins-core": "^7.1.
|
|
15
|
+
"@salesforce/sf-plugins-core": "^7.1.16"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@oclif/plugin-command-snapshot": "^5.1.
|
|
19
|
-
"@salesforce/cli-plugins-testkit": "^5.1.
|
|
18
|
+
"@oclif/plugin-command-snapshot": "^5.1.2",
|
|
19
|
+
"@salesforce/cli-plugins-testkit": "^5.1.11",
|
|
20
20
|
"@salesforce/dev-scripts": "^8.4.2",
|
|
21
21
|
"@salesforce/plugin-command-reference": "^3.0.70",
|
|
22
22
|
"@salesforce/ts-types": "^2.0.9",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"jsforce": "^2.0.0-beta.29",
|
|
25
25
|
"oclif": "^4.5.4",
|
|
26
26
|
"ts-node": "^10.9.2",
|
|
27
|
-
"typescript": "^5.4.
|
|
27
|
+
"typescript": "^5.4.3"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=18.0.0"
|
|
@@ -3217,26 +3217,6 @@
|
|
|
3217
3217
|
"url": "https://opencollective.com/eslint"
|
|
3218
3218
|
}
|
|
3219
3219
|
},
|
|
3220
|
-
"node_modules/@eslint/eslintrc/node_modules/argparse": {
|
|
3221
|
-
"version": "2.0.1",
|
|
3222
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
3223
|
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
3224
|
-
"dev": true,
|
|
3225
|
-
"license": "Python-2.0"
|
|
3226
|
-
},
|
|
3227
|
-
"node_modules/@eslint/eslintrc/node_modules/js-yaml": {
|
|
3228
|
-
"version": "4.1.0",
|
|
3229
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
3230
|
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
3231
|
-
"dev": true,
|
|
3232
|
-
"license": "MIT",
|
|
3233
|
-
"dependencies": {
|
|
3234
|
-
"argparse": "^2.0.1"
|
|
3235
|
-
},
|
|
3236
|
-
"bin": {
|
|
3237
|
-
"js-yaml": "bin/js-yaml.js"
|
|
3238
|
-
}
|
|
3239
|
-
},
|
|
3240
3220
|
"node_modules/@eslint/js": {
|
|
3241
3221
|
"version": "8.57.0",
|
|
3242
3222
|
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
|
|
@@ -3533,6 +3513,30 @@
|
|
|
3533
3513
|
"node": ">=8"
|
|
3534
3514
|
}
|
|
3535
3515
|
},
|
|
3516
|
+
"node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": {
|
|
3517
|
+
"version": "1.0.10",
|
|
3518
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
3519
|
+
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
3520
|
+
"dev": true,
|
|
3521
|
+
"license": "MIT",
|
|
3522
|
+
"dependencies": {
|
|
3523
|
+
"sprintf-js": "~1.0.2"
|
|
3524
|
+
}
|
|
3525
|
+
},
|
|
3526
|
+
"node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": {
|
|
3527
|
+
"version": "3.14.1",
|
|
3528
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
3529
|
+
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
3530
|
+
"dev": true,
|
|
3531
|
+
"license": "MIT",
|
|
3532
|
+
"dependencies": {
|
|
3533
|
+
"argparse": "^1.0.7",
|
|
3534
|
+
"esprima": "^4.0.0"
|
|
3535
|
+
},
|
|
3536
|
+
"bin": {
|
|
3537
|
+
"js-yaml": "bin/js-yaml.js"
|
|
3538
|
+
}
|
|
3539
|
+
},
|
|
3536
3540
|
"node_modules/@istanbuljs/schema": {
|
|
3537
3541
|
"version": "0.1.3",
|
|
3538
3542
|
"resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
|
|
@@ -3887,6 +3891,28 @@
|
|
|
3887
3891
|
"node": ">=18.0.0"
|
|
3888
3892
|
}
|
|
3889
3893
|
},
|
|
3894
|
+
"node_modules/@oclif/core/node_modules/argparse": {
|
|
3895
|
+
"version": "1.0.10",
|
|
3896
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
3897
|
+
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
3898
|
+
"license": "MIT",
|
|
3899
|
+
"dependencies": {
|
|
3900
|
+
"sprintf-js": "~1.0.2"
|
|
3901
|
+
}
|
|
3902
|
+
},
|
|
3903
|
+
"node_modules/@oclif/core/node_modules/js-yaml": {
|
|
3904
|
+
"version": "3.14.1",
|
|
3905
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
3906
|
+
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
3907
|
+
"license": "MIT",
|
|
3908
|
+
"dependencies": {
|
|
3909
|
+
"argparse": "^1.0.7",
|
|
3910
|
+
"esprima": "^4.0.0"
|
|
3911
|
+
},
|
|
3912
|
+
"bin": {
|
|
3913
|
+
"js-yaml": "bin/js-yaml.js"
|
|
3914
|
+
}
|
|
3915
|
+
},
|
|
3890
3916
|
"node_modules/@oclif/core/node_modules/minimatch": {
|
|
3891
3917
|
"version": "9.0.3",
|
|
3892
3918
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
|
|
@@ -3918,13 +3944,13 @@
|
|
|
3918
3944
|
}
|
|
3919
3945
|
},
|
|
3920
3946
|
"node_modules/@oclif/plugin-command-snapshot": {
|
|
3921
|
-
"version": "5.1.
|
|
3922
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.
|
|
3923
|
-
"integrity": "sha512
|
|
3947
|
+
"version": "5.1.2",
|
|
3948
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.2.tgz",
|
|
3949
|
+
"integrity": "sha512-/jAYZhFCW7e0t4zKwtATDo0MNtExnKnSV72zBFv36Khl4disR79wa8YR98ZPQEN4pvgHkA6LXq5ukASeeRQDuA==",
|
|
3924
3950
|
"dev": true,
|
|
3925
3951
|
"license": "MIT",
|
|
3926
3952
|
"dependencies": {
|
|
3927
|
-
"@oclif/core": "3.
|
|
3953
|
+
"@oclif/core": "3.25.2",
|
|
3928
3954
|
"@types/lodash.difference": "^4.5.9",
|
|
3929
3955
|
"chalk": "^5.3.0",
|
|
3930
3956
|
"globby": "^14.0.1",
|
|
@@ -3939,106 +3965,6 @@
|
|
|
3939
3965
|
"node": ">=18.0.0"
|
|
3940
3966
|
}
|
|
3941
3967
|
},
|
|
3942
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core": {
|
|
3943
|
-
"version": "3.21.0",
|
|
3944
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.21.0.tgz",
|
|
3945
|
-
"integrity": "sha512-xR7qGPOWtOnYmdYocSn6oEh2oTQLsPOXoj3HYGpb26V3WulwF8Cm33WPnMsSISv4ben3Rtc5i59u9O5NnuG42g==",
|
|
3946
|
-
"dev": true,
|
|
3947
|
-
"license": "MIT",
|
|
3948
|
-
"dependencies": {
|
|
3949
|
-
"@types/cli-progress": "^3.11.5",
|
|
3950
|
-
"ansi-escapes": "^4.3.2",
|
|
3951
|
-
"ansi-styles": "^4.3.0",
|
|
3952
|
-
"cardinal": "^2.1.1",
|
|
3953
|
-
"chalk": "^4.1.2",
|
|
3954
|
-
"clean-stack": "^3.0.1",
|
|
3955
|
-
"cli-progress": "^3.12.0",
|
|
3956
|
-
"color": "^4.2.3",
|
|
3957
|
-
"debug": "^4.3.4",
|
|
3958
|
-
"ejs": "^3.1.9",
|
|
3959
|
-
"get-package-type": "^0.1.0",
|
|
3960
|
-
"globby": "^11.1.0",
|
|
3961
|
-
"hyperlinker": "^1.0.0",
|
|
3962
|
-
"indent-string": "^4.0.0",
|
|
3963
|
-
"is-wsl": "^2.2.0",
|
|
3964
|
-
"js-yaml": "^3.14.1",
|
|
3965
|
-
"natural-orderby": "^2.0.3",
|
|
3966
|
-
"object-treeify": "^1.1.33",
|
|
3967
|
-
"password-prompt": "^1.1.3",
|
|
3968
|
-
"slice-ansi": "^4.0.0",
|
|
3969
|
-
"string-width": "^4.2.3",
|
|
3970
|
-
"strip-ansi": "^6.0.1",
|
|
3971
|
-
"supports-color": "^8.1.1",
|
|
3972
|
-
"supports-hyperlinks": "^2.2.0",
|
|
3973
|
-
"widest-line": "^3.1.0",
|
|
3974
|
-
"wordwrap": "^1.0.0",
|
|
3975
|
-
"wrap-ansi": "^7.0.0"
|
|
3976
|
-
},
|
|
3977
|
-
"engines": {
|
|
3978
|
-
"node": ">=18.0.0"
|
|
3979
|
-
}
|
|
3980
|
-
},
|
|
3981
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk": {
|
|
3982
|
-
"version": "4.1.2",
|
|
3983
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
3984
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
3985
|
-
"dev": true,
|
|
3986
|
-
"license": "MIT",
|
|
3987
|
-
"dependencies": {
|
|
3988
|
-
"ansi-styles": "^4.1.0",
|
|
3989
|
-
"supports-color": "^7.1.0"
|
|
3990
|
-
},
|
|
3991
|
-
"engines": {
|
|
3992
|
-
"node": ">=10"
|
|
3993
|
-
},
|
|
3994
|
-
"funding": {
|
|
3995
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
3996
|
-
}
|
|
3997
|
-
},
|
|
3998
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": {
|
|
3999
|
-
"version": "7.2.0",
|
|
4000
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
4001
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
4002
|
-
"dev": true,
|
|
4003
|
-
"license": "MIT",
|
|
4004
|
-
"dependencies": {
|
|
4005
|
-
"has-flag": "^4.0.0"
|
|
4006
|
-
},
|
|
4007
|
-
"engines": {
|
|
4008
|
-
"node": ">=8"
|
|
4009
|
-
}
|
|
4010
|
-
},
|
|
4011
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/globby": {
|
|
4012
|
-
"version": "11.1.0",
|
|
4013
|
-
"resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
|
|
4014
|
-
"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
|
|
4015
|
-
"dev": true,
|
|
4016
|
-
"license": "MIT",
|
|
4017
|
-
"dependencies": {
|
|
4018
|
-
"array-union": "^2.1.0",
|
|
4019
|
-
"dir-glob": "^3.0.1",
|
|
4020
|
-
"fast-glob": "^3.2.9",
|
|
4021
|
-
"ignore": "^5.2.0",
|
|
4022
|
-
"merge2": "^1.4.1",
|
|
4023
|
-
"slash": "^3.0.0"
|
|
4024
|
-
},
|
|
4025
|
-
"engines": {
|
|
4026
|
-
"node": ">=10"
|
|
4027
|
-
},
|
|
4028
|
-
"funding": {
|
|
4029
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
4030
|
-
}
|
|
4031
|
-
},
|
|
4032
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/slash": {
|
|
4033
|
-
"version": "3.0.0",
|
|
4034
|
-
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
4035
|
-
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
|
4036
|
-
"dev": true,
|
|
4037
|
-
"license": "MIT",
|
|
4038
|
-
"engines": {
|
|
4039
|
-
"node": ">=8"
|
|
4040
|
-
}
|
|
4041
|
-
},
|
|
4042
3968
|
"node_modules/@oclif/plugin-command-snapshot/node_modules/chalk": {
|
|
4043
3969
|
"version": "5.3.0",
|
|
4044
3970
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
|
@@ -4099,22 +4025,6 @@
|
|
|
4099
4025
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
4100
4026
|
}
|
|
4101
4027
|
},
|
|
4102
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/supports-color": {
|
|
4103
|
-
"version": "8.1.1",
|
|
4104
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
4105
|
-
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
|
4106
|
-
"dev": true,
|
|
4107
|
-
"license": "MIT",
|
|
4108
|
-
"dependencies": {
|
|
4109
|
-
"has-flag": "^4.0.0"
|
|
4110
|
-
},
|
|
4111
|
-
"engines": {
|
|
4112
|
-
"node": ">=10"
|
|
4113
|
-
},
|
|
4114
|
-
"funding": {
|
|
4115
|
-
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
|
4116
|
-
}
|
|
4117
|
-
},
|
|
4118
4028
|
"node_modules/@oclif/plugin-help": {
|
|
4119
4029
|
"version": "6.0.17",
|
|
4120
4030
|
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.17.tgz",
|
|
@@ -4342,13 +4252,13 @@
|
|
|
4342
4252
|
}
|
|
4343
4253
|
},
|
|
4344
4254
|
"node_modules/@salesforce/cli-plugins-testkit": {
|
|
4345
|
-
"version": "5.1.
|
|
4346
|
-
"resolved": "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.
|
|
4347
|
-
"integrity": "sha512-
|
|
4255
|
+
"version": "5.1.11",
|
|
4256
|
+
"resolved": "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.11.tgz",
|
|
4257
|
+
"integrity": "sha512-tmvR1em0GLPQ1O1IHBpc6iQZ56XEu3mWOHb2kun2dIlbZ4DImbrDMFijSzgws7DJ3EXvrace+7Z4Sl3uh/gncA==",
|
|
4348
4258
|
"dev": true,
|
|
4349
4259
|
"license": "BSD-3-Clause",
|
|
4350
4260
|
"dependencies": {
|
|
4351
|
-
"@salesforce/core": "^6.7.
|
|
4261
|
+
"@salesforce/core": "^6.7.1",
|
|
4352
4262
|
"@salesforce/kit": "^3.0.15",
|
|
4353
4263
|
"@salesforce/ts-types": "^2.0.9",
|
|
4354
4264
|
"@types/shelljs": "^0.8.15",
|
|
@@ -4626,9 +4536,9 @@
|
|
|
4626
4536
|
"license": "ISC"
|
|
4627
4537
|
},
|
|
4628
4538
|
"node_modules/@salesforce/sf-plugins-core": {
|
|
4629
|
-
"version": "7.1.
|
|
4630
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.
|
|
4631
|
-
"integrity": "sha512-
|
|
4539
|
+
"version": "7.1.16",
|
|
4540
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
|
|
4541
|
+
"integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
|
|
4632
4542
|
"license": "BSD-3-Clause",
|
|
4633
4543
|
"dependencies": {
|
|
4634
4544
|
"@inquirer/confirm": "^2.0.17",
|
|
@@ -6238,13 +6148,11 @@
|
|
|
6238
6148
|
"license": "MIT"
|
|
6239
6149
|
},
|
|
6240
6150
|
"node_modules/argparse": {
|
|
6241
|
-
"version": "
|
|
6242
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-
|
|
6243
|
-
"integrity": "sha512-
|
|
6244
|
-
"
|
|
6245
|
-
"
|
|
6246
|
-
"sprintf-js": "~1.0.2"
|
|
6247
|
-
}
|
|
6151
|
+
"version": "2.0.1",
|
|
6152
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
6153
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
6154
|
+
"dev": true,
|
|
6155
|
+
"license": "Python-2.0"
|
|
6248
6156
|
},
|
|
6249
6157
|
"node_modules/array-buffer-byte-length": {
|
|
6250
6158
|
"version": "1.0.0",
|
|
@@ -7566,26 +7474,6 @@
|
|
|
7566
7474
|
"url": "https://github.com/sponsors/d-fischer"
|
|
7567
7475
|
}
|
|
7568
7476
|
},
|
|
7569
|
-
"node_modules/cosmiconfig/node_modules/argparse": {
|
|
7570
|
-
"version": "2.0.1",
|
|
7571
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
7572
|
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
7573
|
-
"dev": true,
|
|
7574
|
-
"license": "Python-2.0"
|
|
7575
|
-
},
|
|
7576
|
-
"node_modules/cosmiconfig/node_modules/js-yaml": {
|
|
7577
|
-
"version": "4.1.0",
|
|
7578
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
7579
|
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
7580
|
-
"dev": true,
|
|
7581
|
-
"license": "MIT",
|
|
7582
|
-
"dependencies": {
|
|
7583
|
-
"argparse": "^2.0.1"
|
|
7584
|
-
},
|
|
7585
|
-
"bin": {
|
|
7586
|
-
"js-yaml": "bin/js-yaml.js"
|
|
7587
|
-
}
|
|
7588
|
-
},
|
|
7589
7477
|
"node_modules/create-require": {
|
|
7590
7478
|
"version": "1.1.1",
|
|
7591
7479
|
"resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
|
|
@@ -8603,13 +8491,6 @@
|
|
|
8603
8491
|
"url": "https://opencollective.com/eslint"
|
|
8604
8492
|
}
|
|
8605
8493
|
},
|
|
8606
|
-
"node_modules/eslint/node_modules/argparse": {
|
|
8607
|
-
"version": "2.0.1",
|
|
8608
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
8609
|
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
8610
|
-
"dev": true,
|
|
8611
|
-
"license": "Python-2.0"
|
|
8612
|
-
},
|
|
8613
8494
|
"node_modules/eslint/node_modules/doctrine": {
|
|
8614
8495
|
"version": "3.0.0",
|
|
8615
8496
|
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
|
|
@@ -8653,19 +8534,6 @@
|
|
|
8653
8534
|
"node": ">=10.13.0"
|
|
8654
8535
|
}
|
|
8655
8536
|
},
|
|
8656
|
-
"node_modules/eslint/node_modules/js-yaml": {
|
|
8657
|
-
"version": "4.1.0",
|
|
8658
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
8659
|
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
8660
|
-
"dev": true,
|
|
8661
|
-
"license": "MIT",
|
|
8662
|
-
"dependencies": {
|
|
8663
|
-
"argparse": "^2.0.1"
|
|
8664
|
-
},
|
|
8665
|
-
"bin": {
|
|
8666
|
-
"js-yaml": "bin/js-yaml.js"
|
|
8667
|
-
}
|
|
8668
|
-
},
|
|
8669
8537
|
"node_modules/eslint/node_modules/locate-path": {
|
|
8670
8538
|
"version": "6.0.0",
|
|
8671
8539
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
|
@@ -10942,13 +10810,13 @@
|
|
|
10942
10810
|
"license": "MIT"
|
|
10943
10811
|
},
|
|
10944
10812
|
"node_modules/js-yaml": {
|
|
10945
|
-
"version": "
|
|
10946
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-
|
|
10947
|
-
"integrity": "sha512-
|
|
10813
|
+
"version": "4.1.0",
|
|
10814
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
10815
|
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
10816
|
+
"dev": true,
|
|
10948
10817
|
"license": "MIT",
|
|
10949
10818
|
"dependencies": {
|
|
10950
|
-
"argparse": "^
|
|
10951
|
-
"esprima": "^4.0.0"
|
|
10819
|
+
"argparse": "^2.0.1"
|
|
10952
10820
|
},
|
|
10953
10821
|
"bin": {
|
|
10954
10822
|
"js-yaml": "bin/js-yaml.js"
|
|
@@ -11472,6 +11340,30 @@
|
|
|
11472
11340
|
"node": ">=6"
|
|
11473
11341
|
}
|
|
11474
11342
|
},
|
|
11343
|
+
"node_modules/load-yaml-file/node_modules/argparse": {
|
|
11344
|
+
"version": "1.0.10",
|
|
11345
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
11346
|
+
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
11347
|
+
"dev": true,
|
|
11348
|
+
"license": "MIT",
|
|
11349
|
+
"dependencies": {
|
|
11350
|
+
"sprintf-js": "~1.0.2"
|
|
11351
|
+
}
|
|
11352
|
+
},
|
|
11353
|
+
"node_modules/load-yaml-file/node_modules/js-yaml": {
|
|
11354
|
+
"version": "3.14.1",
|
|
11355
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
11356
|
+
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
11357
|
+
"dev": true,
|
|
11358
|
+
"license": "MIT",
|
|
11359
|
+
"dependencies": {
|
|
11360
|
+
"argparse": "^1.0.7",
|
|
11361
|
+
"esprima": "^4.0.0"
|
|
11362
|
+
},
|
|
11363
|
+
"bin": {
|
|
11364
|
+
"js-yaml": "bin/js-yaml.js"
|
|
11365
|
+
}
|
|
11366
|
+
},
|
|
11475
11367
|
"node_modules/load-yaml-file/node_modules/pify": {
|
|
11476
11368
|
"version": "4.0.1",
|
|
11477
11369
|
"resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
|
|
@@ -12447,13 +12339,6 @@
|
|
|
12447
12339
|
"url": "https://opencollective.com/mochajs"
|
|
12448
12340
|
}
|
|
12449
12341
|
},
|
|
12450
|
-
"node_modules/mocha/node_modules/argparse": {
|
|
12451
|
-
"version": "2.0.1",
|
|
12452
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
12453
|
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
12454
|
-
"dev": true,
|
|
12455
|
-
"license": "Python-2.0"
|
|
12456
|
-
},
|
|
12457
12342
|
"node_modules/mocha/node_modules/diff": {
|
|
12458
12343
|
"version": "5.0.0",
|
|
12459
12344
|
"resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
|
|
@@ -12526,19 +12411,6 @@
|
|
|
12526
12411
|
"node": "*"
|
|
12527
12412
|
}
|
|
12528
12413
|
},
|
|
12529
|
-
"node_modules/mocha/node_modules/js-yaml": {
|
|
12530
|
-
"version": "4.1.0",
|
|
12531
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
12532
|
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
12533
|
-
"dev": true,
|
|
12534
|
-
"license": "MIT",
|
|
12535
|
-
"dependencies": {
|
|
12536
|
-
"argparse": "^2.0.1"
|
|
12537
|
-
},
|
|
12538
|
-
"bin": {
|
|
12539
|
-
"js-yaml": "bin/js-yaml.js"
|
|
12540
|
-
}
|
|
12541
|
-
},
|
|
12542
12414
|
"node_modules/mocha/node_modules/locate-path": {
|
|
12543
12415
|
"version": "6.0.0",
|
|
12544
12416
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
|
@@ -16198,9 +16070,9 @@
|
|
|
16198
16070
|
}
|
|
16199
16071
|
},
|
|
16200
16072
|
"node_modules/typescript": {
|
|
16201
|
-
"version": "5.4.
|
|
16202
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.
|
|
16203
|
-
"integrity": "sha512
|
|
16073
|
+
"version": "5.4.3",
|
|
16074
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.3.tgz",
|
|
16075
|
+
"integrity": "sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==",
|
|
16204
16076
|
"dev": true,
|
|
16205
16077
|
"license": "Apache-2.0",
|
|
16206
16078
|
"bin": {
|
package/oclif.lock
CHANGED
|
@@ -1745,40 +1745,7 @@
|
|
|
1745
1745
|
node-gyp "^8.2.0"
|
|
1746
1746
|
read-package-json-fast "^2.0.1"
|
|
1747
1747
|
|
|
1748
|
-
"@oclif/core@3.21.0":
|
|
1749
|
-
version "3.21.0"
|
|
1750
|
-
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.21.0.tgz#a235704e66589c8c104ccd616d0a8f1f36cf693e"
|
|
1751
|
-
integrity sha512-xR7qGPOWtOnYmdYocSn6oEh2oTQLsPOXoj3HYGpb26V3WulwF8Cm33WPnMsSISv4ben3Rtc5i59u9O5NnuG42g==
|
|
1752
|
-
dependencies:
|
|
1753
|
-
"@types/cli-progress" "^3.11.5"
|
|
1754
|
-
ansi-escapes "^4.3.2"
|
|
1755
|
-
ansi-styles "^4.3.0"
|
|
1756
|
-
cardinal "^2.1.1"
|
|
1757
|
-
chalk "^4.1.2"
|
|
1758
|
-
clean-stack "^3.0.1"
|
|
1759
|
-
cli-progress "^3.12.0"
|
|
1760
|
-
color "^4.2.3"
|
|
1761
|
-
debug "^4.3.4"
|
|
1762
|
-
ejs "^3.1.9"
|
|
1763
|
-
get-package-type "^0.1.0"
|
|
1764
|
-
globby "^11.1.0"
|
|
1765
|
-
hyperlinker "^1.0.0"
|
|
1766
|
-
indent-string "^4.0.0"
|
|
1767
|
-
is-wsl "^2.2.0"
|
|
1768
|
-
js-yaml "^3.14.1"
|
|
1769
|
-
natural-orderby "^2.0.3"
|
|
1770
|
-
object-treeify "^1.1.33"
|
|
1771
|
-
password-prompt "^1.1.3"
|
|
1772
|
-
slice-ansi "^4.0.0"
|
|
1773
|
-
string-width "^4.2.3"
|
|
1774
|
-
strip-ansi "^6.0.1"
|
|
1775
|
-
supports-color "^8.1.1"
|
|
1776
|
-
supports-hyperlinks "^2.2.0"
|
|
1777
|
-
widest-line "^3.1.0"
|
|
1778
|
-
wordwrap "^1.0.0"
|
|
1779
|
-
wrap-ansi "^7.0.0"
|
|
1780
|
-
|
|
1781
|
-
"@oclif/core@^3.15.1", "@oclif/core@^3.19.2", "@oclif/core@^3.20.0", "@oclif/core@^3.21.0", "@oclif/core@^3.23.0":
|
|
1748
|
+
"@oclif/core@3.25.2", "@oclif/core@^3.15.1", "@oclif/core@^3.19.2", "@oclif/core@^3.20.0", "@oclif/core@^3.21.0", "@oclif/core@^3.23.0":
|
|
1782
1749
|
version "3.25.2"
|
|
1783
1750
|
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.25.2.tgz#a26d56abe5686c57c1e973957777bd2ae324e973"
|
|
1784
1751
|
integrity sha512-OkW/cNa/3DhoCz2YlSpymVe8DXqkoRaLY4SPTVqNVzR4R1dFBE5KoCtuwKwnhxYLCRCqaViPgRnB5K26f0MnjA==
|
|
@@ -1812,12 +1779,12 @@
|
|
|
1812
1779
|
wordwrap "^1.0.0"
|
|
1813
1780
|
wrap-ansi "^7.0.0"
|
|
1814
1781
|
|
|
1815
|
-
"@oclif/plugin-command-snapshot@^5.1.
|
|
1816
|
-
version "5.1.
|
|
1817
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.
|
|
1818
|
-
integrity sha512
|
|
1782
|
+
"@oclif/plugin-command-snapshot@^5.1.2":
|
|
1783
|
+
version "5.1.2"
|
|
1784
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.2.tgz#acba4a0138823931468d91be8d2a990da8a82623"
|
|
1785
|
+
integrity sha512-/jAYZhFCW7e0t4zKwtATDo0MNtExnKnSV72zBFv36Khl4disR79wa8YR98ZPQEN4pvgHkA6LXq5ukASeeRQDuA==
|
|
1819
1786
|
dependencies:
|
|
1820
|
-
"@oclif/core" "3.
|
|
1787
|
+
"@oclif/core" "3.25.2"
|
|
1821
1788
|
"@types/lodash.difference" "^4.5.9"
|
|
1822
1789
|
chalk "^5.3.0"
|
|
1823
1790
|
globby "^14.0.1"
|
|
@@ -1961,12 +1928,12 @@
|
|
|
1961
1928
|
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
|
|
1962
1929
|
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
|
|
1963
1930
|
|
|
1964
|
-
"@salesforce/cli-plugins-testkit@^5.1.
|
|
1965
|
-
version "5.1.
|
|
1966
|
-
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.
|
|
1967
|
-
integrity sha512-
|
|
1931
|
+
"@salesforce/cli-plugins-testkit@^5.1.11":
|
|
1932
|
+
version "5.1.11"
|
|
1933
|
+
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.1.11.tgz#74430d60cfc17d3ea931cb26aad7890a325696ca"
|
|
1934
|
+
integrity sha512-tmvR1em0GLPQ1O1IHBpc6iQZ56XEu3mWOHb2kun2dIlbZ4DImbrDMFijSzgws7DJ3EXvrace+7Z4Sl3uh/gncA==
|
|
1968
1935
|
dependencies:
|
|
1969
|
-
"@salesforce/core" "^6.7.
|
|
1936
|
+
"@salesforce/core" "^6.7.1"
|
|
1970
1937
|
"@salesforce/kit" "^3.0.15"
|
|
1971
1938
|
"@salesforce/ts-types" "^2.0.9"
|
|
1972
1939
|
"@types/shelljs" "^0.8.15"
|
|
@@ -2082,10 +2049,10 @@
|
|
|
2082
2049
|
chalk "^4"
|
|
2083
2050
|
inquirer "^8.2.5"
|
|
2084
2051
|
|
|
2085
|
-
"@salesforce/sf-plugins-core@^7.1.
|
|
2086
|
-
version "7.1.
|
|
2087
|
-
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.
|
|
2088
|
-
integrity sha512-
|
|
2052
|
+
"@salesforce/sf-plugins-core@^7.1.16":
|
|
2053
|
+
version "7.1.16"
|
|
2054
|
+
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz#a68673560f01421ac18a0bc1d4687abc35e11234"
|
|
2055
|
+
integrity sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==
|
|
2089
2056
|
dependencies:
|
|
2090
2057
|
"@inquirer/confirm" "^2.0.17"
|
|
2091
2058
|
"@inquirer/password" "^1.1.16"
|
|
@@ -9058,10 +9025,10 @@ typescript@^4.6.4, typescript@^4.9.5:
|
|
|
9058
9025
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
|
|
9059
9026
|
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
|
|
9060
9027
|
|
|
9061
|
-
typescript@^5.4.
|
|
9062
|
-
version "5.4.
|
|
9063
|
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.
|
|
9064
|
-
integrity sha512
|
|
9028
|
+
typescript@^5.4.3:
|
|
9029
|
+
version "5.4.3"
|
|
9030
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.3.tgz#5c6fedd4c87bee01cd7a528a30145521f8e0feff"
|
|
9031
|
+
integrity sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==
|
|
9065
9032
|
|
|
9066
9033
|
typescript@~5.3.2:
|
|
9067
9034
|
version "5.3.3"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-community",
|
|
3
3
|
"description": "Community commands to create and publish an Experience Cloud site, and view a list of available templates in you org.",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.28",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/core": "^3.19.2",
|
|
9
9
|
"@salesforce/core": "^6.7.1",
|
|
10
10
|
"@salesforce/kit": "^3.0.15",
|
|
11
|
-
"@salesforce/sf-plugins-core": "^7.1.
|
|
11
|
+
"@salesforce/sf-plugins-core": "^7.1.16"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@oclif/plugin-command-snapshot": "^5.1.
|
|
15
|
-
"@salesforce/cli-plugins-testkit": "^5.1.
|
|
14
|
+
"@oclif/plugin-command-snapshot": "^5.1.2",
|
|
15
|
+
"@salesforce/cli-plugins-testkit": "^5.1.11",
|
|
16
16
|
"@salesforce/dev-scripts": "^8.4.2",
|
|
17
17
|
"@salesforce/plugin-command-reference": "^3.0.70",
|
|
18
18
|
"@salesforce/ts-types": "^2.0.9",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"jsforce": "^2.0.0-beta.29",
|
|
21
21
|
"oclif": "^4.5.4",
|
|
22
22
|
"ts-node": "^10.9.2",
|
|
23
|
-
"typescript": "^5.4.
|
|
23
|
+
"typescript": "^5.4.3"
|
|
24
24
|
},
|
|
25
25
|
"config": {},
|
|
26
26
|
"engines": {
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
"exports": "./lib/index.js",
|
|
205
205
|
"type": "module",
|
|
206
206
|
"sfdx": {
|
|
207
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-community/3.0.
|
|
208
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-community/3.0.
|
|
207
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-community/3.0.28.crt",
|
|
208
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-community/3.0.28.sig"
|
|
209
209
|
}
|
|
210
210
|
}
|