@salesforce/plugin-community 2.4.4 → 2.4.6
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 +108 -87
- package/oclif.lock +231 -151
- package/oclif.manifest.json +1 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -72,55 +72,46 @@ sfdx plugins
|
|
|
72
72
|
|
|
73
73
|
<!-- commands -->
|
|
74
74
|
|
|
75
|
-
- [`sfdx
|
|
76
|
-
- [`sfdx
|
|
77
|
-
- [`sfdx
|
|
75
|
+
- [`sfdx community:create`](#sfdx-communitycreate)
|
|
76
|
+
- [`sfdx community:list:template`](#sfdx-communitylisttemplate)
|
|
77
|
+
- [`sfdx community:publish`](#sfdx-communitypublish)
|
|
78
78
|
|
|
79
|
-
## `sfdx
|
|
79
|
+
## `sfdx community:create`
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
Create an Experience Cloud site using a template.
|
|
82
82
|
|
|
83
83
|
```
|
|
84
84
|
USAGE
|
|
85
|
-
$ sfdx
|
|
86
|
-
[--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
|
|
85
|
+
$ sfdx community:create -n <value> -t <value> -o <value> [--json] [-p <value>] [-d <value>] [--api-version <value>]
|
|
87
86
|
|
|
88
|
-
|
|
89
|
-
-d, --description
|
|
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.
|
|
91
|
+
-p, --url-path-prefix=<value> URL to append to the domain created when Digital Experiences was enabled for this org.
|
|
92
|
+
-t, --template-name=<value> (required) Template to use to create a site.
|
|
93
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
90
94
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
-p, --urlpathprefix=urlpathprefix (required) URL to append to the
|
|
95
|
-
domain created when Digital
|
|
96
|
-
Experiences was enabled for this org
|
|
97
|
-
|
|
98
|
-
-t, --templatename=templatename (required) template to use to create
|
|
99
|
-
a site
|
|
100
|
-
|
|
101
|
-
-u, --targetusername=targetusername username or alias for the target
|
|
102
|
-
org; overrides default target org
|
|
103
|
-
|
|
104
|
-
--apiversion=apiversion override the api version used for
|
|
105
|
-
api requests made by this command
|
|
106
|
-
|
|
107
|
-
--json format output as json
|
|
108
|
-
|
|
109
|
-
--loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
|
|
110
|
-
this command invocation
|
|
95
|
+
GLOBAL FLAGS
|
|
96
|
+
--json Format output as json.
|
|
111
97
|
|
|
112
98
|
DESCRIPTION
|
|
99
|
+
Create an Experience Cloud site using a template.
|
|
100
|
+
|
|
113
101
|
Run the "community list template" command to see the templates available in your org. See 'Which Experience Cloud
|
|
114
102
|
Template Should I Use?' in Salesforce Help for more information about the different template types available.
|
|
103
|
+
(https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5)
|
|
115
104
|
|
|
116
105
|
When you create a site with the Build Your Own (LWR) template, you must also specify the AuthenticationType value
|
|
117
106
|
using the format templateParams.AuthenticationType=value, where value is AUTHENTICATED or
|
|
118
107
|
AUTHENTICATED_WITH_PUBLIC_ACCESS_ENABLED. Name and values are case-sensitive. See 'DigitalExperienceBundle' in the
|
|
119
108
|
Metadata API Developer Guide for more information.
|
|
109
|
+
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_digitalexperiencebundle.htm)
|
|
120
110
|
|
|
121
111
|
The site creation process is an async job that generates a jobId. To check the site creation status, query the
|
|
122
112
|
BackgroundOperation object and enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the
|
|
123
|
-
Salesforce Platform for more information.
|
|
113
|
+
Salesforce Platform for more information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/obj
|
|
114
|
+
ect_reference/sforce_api_objects_backgroundoperation.htm)
|
|
124
115
|
|
|
125
116
|
If the job doesn’t complete within 10 minutes, it times out. You receive an error message and must restart the site
|
|
126
117
|
creation process. Completed jobs expire after 24 hours and are removed from the database.
|
|
@@ -131,97 +122,127 @@ DESCRIPTION
|
|
|
131
122
|
If you have an Experience Builder site, publish the site using the "community publish" command to make it live.
|
|
132
123
|
|
|
133
124
|
If you have a Salesforce Tabs + Visualforce site, to activate the site and make it live, update the status field of
|
|
134
|
-
the Network type in Metadata API.
|
|
135
|
-
|
|
125
|
+
the Network type in Metadata API.
|
|
126
|
+
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm) Alternatively, in
|
|
127
|
+
Experience Workspaces, go to Administration | Settings, and click Activate.
|
|
136
128
|
|
|
137
129
|
For Experience Builder sites, activating the site sends a welcome email to site members.
|
|
138
130
|
|
|
131
|
+
ALIASES
|
|
132
|
+
$ sfdx force:community:create
|
|
133
|
+
|
|
139
134
|
EXAMPLES
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
135
|
+
Create an Experience Cloud site using template 'Customer Service' and URL path prefix 'customers':
|
|
136
|
+
|
|
137
|
+
$ sfdx community:create --name 'My Customer Site' --template-name 'Customer Service' --url-path-prefix customers \
|
|
138
|
+
--description 'My customer site'
|
|
139
|
+
|
|
140
|
+
Create a site using 'Partner Central' template:
|
|
141
|
+
|
|
142
|
+
$ sfdx community:create --name partnercentral --template-name 'Partner Central' --url-path-prefix partners
|
|
143
|
+
|
|
144
|
+
Create a site using the 'Build Your Own (LWR)' template with authentication type of UNAUTHENTICATED:
|
|
146
145
|
|
|
147
|
-
|
|
146
|
+
$ sfdx community:create --name lwrsite --template-name 'Build Your Own (LWR)' --url-path-prefix lwrsite \
|
|
147
|
+
templateParams.AuthenticationType=UNAUTHENTICATED
|
|
148
148
|
|
|
149
|
-
|
|
149
|
+
FLAG DESCRIPTIONS
|
|
150
|
+
-d, --description=<value> Description of the site.
|
|
150
151
|
|
|
151
|
-
|
|
152
|
+
The description displays in Digital Experiences - All Sites in Setup and helps with site identification.
|
|
152
153
|
|
|
154
|
+
-p, --url-path-prefix=<value> URL to append to the domain created when Digital Experiences was enabled for this org.
|
|
155
|
+
|
|
156
|
+
For example, if your domain name is https://MyDomainName.my.site.com and you create a customer site, enter
|
|
157
|
+
'customers' to create the unique URL https://MyDomainName.my.site.com/customers.
|
|
158
|
+
|
|
159
|
+
-t, --template-name=<value> Template to use to create a site.
|
|
160
|
+
|
|
161
|
+
An example of a template is Customer Service. Run the "community template list" command to see which templates are
|
|
162
|
+
available in your org.
|
|
153
163
|
```
|
|
154
|
-
USAGE
|
|
155
|
-
$ sfdx force:community:publish -n <string> [-u <string>] [--apiversion <string>] [--json] [--loglevel
|
|
156
|
-
trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
|
|
157
164
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
165
|
+
_See code: [src/commands/community/create.ts](https://github.com/salesforcecli/plugin-community/blob/2.4.6/src/commands/community/create.ts)_
|
|
166
|
+
|
|
167
|
+
## `sfdx community:list:template`
|
|
161
168
|
|
|
162
|
-
|
|
163
|
-
org; overrides default target org
|
|
169
|
+
Retrieve the list of templates available in your org.
|
|
164
170
|
|
|
165
|
-
|
|
166
|
-
|
|
171
|
+
```
|
|
172
|
+
USAGE
|
|
173
|
+
$ sfdx community:list:template -o <value> [--json] [--api-version <value>]
|
|
167
174
|
|
|
168
|
-
|
|
175
|
+
FLAGS
|
|
176
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
177
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
169
178
|
|
|
170
|
-
|
|
171
|
-
|
|
179
|
+
GLOBAL FLAGS
|
|
180
|
+
--json Format output as json.
|
|
172
181
|
|
|
173
182
|
DESCRIPTION
|
|
174
|
-
|
|
175
|
-
Builder site for the first time, you make the site's URL live and enable login access for site members.
|
|
183
|
+
Retrieve the list of templates available in your org.
|
|
176
184
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
185
|
+
See 'Which Experience Cloud Template Should I Use?'
|
|
186
|
+
(https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5) in Salesforce Help for more
|
|
187
|
+
information about the different template types available for Experience Cloud.
|
|
180
188
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the Salesforce Platform for more
|
|
184
|
-
information.
|
|
185
|
-
|
|
186
|
-
If the job doesn’t complete within 15 minutes, it times out. You receive an error message and must restart the site
|
|
187
|
-
publish process. Completed jobs expire after 24 hours and are removed from the database.
|
|
189
|
+
ALIASES
|
|
190
|
+
$ sfdx force:community:template:list
|
|
188
191
|
|
|
192
|
+
EXAMPLES
|
|
193
|
+
Retrieve the template list from an org with alias my-scratch-org:
|
|
189
194
|
|
|
190
|
-
|
|
191
|
-
$ sfdx force:community:publish --name 'My Customer Site'
|
|
195
|
+
$ sfdx community:list:template --target-org my-scratch-org
|
|
192
196
|
```
|
|
193
197
|
|
|
194
|
-
_See code: [src/commands/
|
|
198
|
+
_See code: [src/commands/community/list/template.ts](https://github.com/salesforcecli/plugin-community/blob/2.4.6/src/commands/community/list/template.ts)_
|
|
195
199
|
|
|
196
|
-
## `sfdx
|
|
200
|
+
## `sfdx community:publish`
|
|
197
201
|
|
|
198
|
-
|
|
202
|
+
Publish an Experience Builder site to make it live.
|
|
199
203
|
|
|
200
204
|
```
|
|
201
205
|
USAGE
|
|
202
|
-
$ sfdx
|
|
203
|
-
trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
|
|
206
|
+
$ sfdx community:publish -n <value> -o <value> [--json] [--api-version <value>]
|
|
204
207
|
|
|
205
|
-
|
|
206
|
-
-
|
|
207
|
-
|
|
208
|
+
FLAGS
|
|
209
|
+
-n, --name=<value> (required) Name of the Experience Builder site to publish.
|
|
210
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
211
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
208
212
|
|
|
209
|
-
|
|
210
|
-
|
|
213
|
+
GLOBAL FLAGS
|
|
214
|
+
--json Format output as json.
|
|
211
215
|
|
|
212
|
-
|
|
216
|
+
DESCRIPTION
|
|
217
|
+
Publish an Experience Builder site to make it live.
|
|
213
218
|
|
|
214
|
-
|
|
215
|
-
|
|
219
|
+
Each time you publish a site, you update the live site with the most recent updates. When you publish an Experience
|
|
220
|
+
Builder site for the first time, you make the site's URL live and enable login access for site members.
|
|
216
221
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
222
|
+
In addition to publishing, you must activate a site to send a welcome email to all site members. Activation is also
|
|
223
|
+
required to set up SEO for Experience Builder sites. To activate a site, update the status field of the Network type
|
|
224
|
+
in Metadata API.
|
|
225
|
+
(https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm)Alternatively, in
|
|
226
|
+
Experience Workspaces, go to Administration | Settings, and click Activate.
|
|
220
227
|
|
|
221
|
-
|
|
222
|
-
|
|
228
|
+
An email notification informs you when your changes are live on the published site. The site publish process is an
|
|
229
|
+
async job that generates a jobId. To check the site publish status manually, query the BackgroundOperation object and
|
|
230
|
+
enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the Salesforce Platform for more
|
|
231
|
+
information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_obje
|
|
232
|
+
cts_backgroundoperation.htm)
|
|
233
|
+
|
|
234
|
+
If the job doesn’t complete within 15 minutes, it times out. You receive an error message and must restart the site
|
|
235
|
+
publish process. Completed jobs expire after 24 hours and are removed from the database.
|
|
236
|
+
|
|
237
|
+
ALIASES
|
|
238
|
+
$ sfdx force:community:publish
|
|
239
|
+
|
|
240
|
+
EXAMPLES
|
|
241
|
+
Publish the Experience Builder site with name "My Customer Site':
|
|
242
|
+
|
|
243
|
+
$ sfdx community:publish --name 'My Customer Site'
|
|
223
244
|
```
|
|
224
245
|
|
|
225
|
-
_See code: [src/commands/
|
|
246
|
+
_See code: [src/commands/community/publish.ts](https://github.com/salesforcecli/plugin-community/blob/2.4.6/src/commands/community/publish.ts)_
|
|
226
247
|
|
|
227
248
|
<!-- commandsstop -->
|
package/oclif.lock
CHANGED
|
@@ -22,6 +22,14 @@
|
|
|
22
22
|
dependencies:
|
|
23
23
|
"@babel/highlight" "^7.18.6"
|
|
24
24
|
|
|
25
|
+
"@babel/code-frame@^7.22.13":
|
|
26
|
+
version "7.22.13"
|
|
27
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e"
|
|
28
|
+
integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==
|
|
29
|
+
dependencies:
|
|
30
|
+
"@babel/highlight" "^7.22.13"
|
|
31
|
+
chalk "^2.4.2"
|
|
32
|
+
|
|
25
33
|
"@babel/compat-data@^7.20.5":
|
|
26
34
|
version "7.21.0"
|
|
27
35
|
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.0.tgz#c241dc454e5b5917e40d37e525e2f4530c399298"
|
|
@@ -48,7 +56,7 @@
|
|
|
48
56
|
json5 "^2.2.2"
|
|
49
57
|
semver "^6.3.0"
|
|
50
58
|
|
|
51
|
-
"@babel/generator@^7.21.0"
|
|
59
|
+
"@babel/generator@^7.21.0":
|
|
52
60
|
version "7.21.1"
|
|
53
61
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.1.tgz#951cc626057bc0af2c35cd23e9c64d384dea83dd"
|
|
54
62
|
integrity sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==
|
|
@@ -58,6 +66,16 @@
|
|
|
58
66
|
"@jridgewell/trace-mapping" "^0.3.17"
|
|
59
67
|
jsesc "^2.5.1"
|
|
60
68
|
|
|
69
|
+
"@babel/generator@^7.23.0":
|
|
70
|
+
version "7.23.0"
|
|
71
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420"
|
|
72
|
+
integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==
|
|
73
|
+
dependencies:
|
|
74
|
+
"@babel/types" "^7.23.0"
|
|
75
|
+
"@jridgewell/gen-mapping" "^0.3.2"
|
|
76
|
+
"@jridgewell/trace-mapping" "^0.3.17"
|
|
77
|
+
jsesc "^2.5.1"
|
|
78
|
+
|
|
61
79
|
"@babel/helper-compilation-targets@^7.20.7":
|
|
62
80
|
version "7.20.7"
|
|
63
81
|
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
|
|
@@ -74,20 +92,25 @@
|
|
|
74
92
|
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
|
|
75
93
|
integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
|
|
76
94
|
|
|
77
|
-
"@babel/helper-
|
|
78
|
-
version "7.
|
|
79
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
|
80
|
-
integrity sha512-
|
|
95
|
+
"@babel/helper-environment-visitor@^7.22.20":
|
|
96
|
+
version "7.22.20"
|
|
97
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
|
|
98
|
+
integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
|
|
99
|
+
|
|
100
|
+
"@babel/helper-function-name@^7.23.0":
|
|
101
|
+
version "7.23.0"
|
|
102
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
|
|
103
|
+
integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
|
|
81
104
|
dependencies:
|
|
82
|
-
"@babel/template" "^7.
|
|
83
|
-
"@babel/types" "^7.
|
|
105
|
+
"@babel/template" "^7.22.15"
|
|
106
|
+
"@babel/types" "^7.23.0"
|
|
84
107
|
|
|
85
|
-
"@babel/helper-hoist-variables@^7.
|
|
86
|
-
version "7.
|
|
87
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.
|
|
88
|
-
integrity sha512-
|
|
108
|
+
"@babel/helper-hoist-variables@^7.22.5":
|
|
109
|
+
version "7.22.5"
|
|
110
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
|
|
111
|
+
integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
|
|
89
112
|
dependencies:
|
|
90
|
-
"@babel/types" "^7.
|
|
113
|
+
"@babel/types" "^7.22.5"
|
|
91
114
|
|
|
92
115
|
"@babel/helper-module-imports@^7.18.6":
|
|
93
116
|
version "7.18.6"
|
|
@@ -124,16 +147,33 @@
|
|
|
124
147
|
dependencies:
|
|
125
148
|
"@babel/types" "^7.18.6"
|
|
126
149
|
|
|
150
|
+
"@babel/helper-split-export-declaration@^7.22.6":
|
|
151
|
+
version "7.22.6"
|
|
152
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
|
|
153
|
+
integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
|
|
154
|
+
dependencies:
|
|
155
|
+
"@babel/types" "^7.22.5"
|
|
156
|
+
|
|
127
157
|
"@babel/helper-string-parser@^7.19.4":
|
|
128
158
|
version "7.19.4"
|
|
129
159
|
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
|
|
130
160
|
integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
|
|
131
161
|
|
|
162
|
+
"@babel/helper-string-parser@^7.22.5":
|
|
163
|
+
version "7.22.5"
|
|
164
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
|
|
165
|
+
integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
|
|
166
|
+
|
|
132
167
|
"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
|
|
133
168
|
version "7.19.1"
|
|
134
169
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
|
|
135
170
|
integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
|
|
136
171
|
|
|
172
|
+
"@babel/helper-validator-identifier@^7.22.20":
|
|
173
|
+
version "7.22.20"
|
|
174
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
|
|
175
|
+
integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
|
|
176
|
+
|
|
137
177
|
"@babel/helper-validator-option@^7.18.6":
|
|
138
178
|
version "7.21.0"
|
|
139
179
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180"
|
|
@@ -157,11 +197,25 @@
|
|
|
157
197
|
chalk "^2.0.0"
|
|
158
198
|
js-tokens "^4.0.0"
|
|
159
199
|
|
|
160
|
-
"@babel/
|
|
200
|
+
"@babel/highlight@^7.22.13":
|
|
201
|
+
version "7.22.20"
|
|
202
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54"
|
|
203
|
+
integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==
|
|
204
|
+
dependencies:
|
|
205
|
+
"@babel/helper-validator-identifier" "^7.22.20"
|
|
206
|
+
chalk "^2.4.2"
|
|
207
|
+
js-tokens "^4.0.0"
|
|
208
|
+
|
|
209
|
+
"@babel/parser@^7.20.7", "@babel/parser@^7.21.0":
|
|
161
210
|
version "7.21.2"
|
|
162
211
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.2.tgz#dacafadfc6d7654c3051a66d6fe55b6cb2f2a0b3"
|
|
163
212
|
integrity sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==
|
|
164
213
|
|
|
214
|
+
"@babel/parser@^7.22.15", "@babel/parser@^7.23.0":
|
|
215
|
+
version "7.23.0"
|
|
216
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719"
|
|
217
|
+
integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==
|
|
218
|
+
|
|
165
219
|
"@babel/runtime-corejs3@^7.12.5":
|
|
166
220
|
version "7.21.0"
|
|
167
221
|
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.21.0.tgz#6e4939d9d9789ff63e2dc58e88f13a3913a24eba"
|
|
@@ -186,19 +240,28 @@
|
|
|
186
240
|
"@babel/parser" "^7.20.7"
|
|
187
241
|
"@babel/types" "^7.20.7"
|
|
188
242
|
|
|
189
|
-
"@babel/
|
|
190
|
-
version "7.
|
|
191
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
|
192
|
-
integrity sha512-
|
|
243
|
+
"@babel/template@^7.22.15":
|
|
244
|
+
version "7.22.15"
|
|
245
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38"
|
|
246
|
+
integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==
|
|
193
247
|
dependencies:
|
|
194
|
-
"@babel/code-frame" "^7.
|
|
195
|
-
"@babel/
|
|
196
|
-
"@babel/
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
248
|
+
"@babel/code-frame" "^7.22.13"
|
|
249
|
+
"@babel/parser" "^7.22.15"
|
|
250
|
+
"@babel/types" "^7.22.15"
|
|
251
|
+
|
|
252
|
+
"@babel/traverse@^7.21.0", "@babel/traverse@^7.21.2":
|
|
253
|
+
version "7.23.2"
|
|
254
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8"
|
|
255
|
+
integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==
|
|
256
|
+
dependencies:
|
|
257
|
+
"@babel/code-frame" "^7.22.13"
|
|
258
|
+
"@babel/generator" "^7.23.0"
|
|
259
|
+
"@babel/helper-environment-visitor" "^7.22.20"
|
|
260
|
+
"@babel/helper-function-name" "^7.23.0"
|
|
261
|
+
"@babel/helper-hoist-variables" "^7.22.5"
|
|
262
|
+
"@babel/helper-split-export-declaration" "^7.22.6"
|
|
263
|
+
"@babel/parser" "^7.23.0"
|
|
264
|
+
"@babel/types" "^7.23.0"
|
|
202
265
|
debug "^4.1.0"
|
|
203
266
|
globals "^11.1.0"
|
|
204
267
|
|
|
@@ -211,6 +274,15 @@
|
|
|
211
274
|
"@babel/helper-validator-identifier" "^7.19.1"
|
|
212
275
|
to-fast-properties "^2.0.0"
|
|
213
276
|
|
|
277
|
+
"@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0":
|
|
278
|
+
version "7.23.0"
|
|
279
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb"
|
|
280
|
+
integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==
|
|
281
|
+
dependencies:
|
|
282
|
+
"@babel/helper-string-parser" "^7.22.5"
|
|
283
|
+
"@babel/helper-validator-identifier" "^7.22.20"
|
|
284
|
+
to-fast-properties "^2.0.0"
|
|
285
|
+
|
|
214
286
|
"@commitlint/cli@^17.1.2":
|
|
215
287
|
version "17.4.4"
|
|
216
288
|
resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-17.4.4.tgz#36df08bfa31dbb9a2b6b1d7187a31e578f001a06"
|
|
@@ -395,15 +467,15 @@
|
|
|
395
467
|
dependencies:
|
|
396
468
|
eslint-visitor-keys "^3.3.0"
|
|
397
469
|
|
|
398
|
-
"@eslint-community/regexpp@^4.4.0":
|
|
399
|
-
version "4.
|
|
400
|
-
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.
|
|
401
|
-
integrity sha512-
|
|
470
|
+
"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1":
|
|
471
|
+
version "4.9.0"
|
|
472
|
+
resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.9.0.tgz#7ccb5f58703fa61ffdcbf39e2c604a109e781162"
|
|
473
|
+
integrity sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ==
|
|
402
474
|
|
|
403
|
-
"@eslint/eslintrc@^2.1.
|
|
404
|
-
version "2.1.
|
|
405
|
-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.
|
|
406
|
-
integrity sha512
|
|
475
|
+
"@eslint/eslintrc@^2.1.2":
|
|
476
|
+
version "2.1.2"
|
|
477
|
+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz#c6936b4b328c64496692f76944e755738be62396"
|
|
478
|
+
integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==
|
|
407
479
|
dependencies:
|
|
408
480
|
ajv "^6.12.4"
|
|
409
481
|
debug "^4.3.2"
|
|
@@ -415,20 +487,20 @@
|
|
|
415
487
|
minimatch "^3.1.2"
|
|
416
488
|
strip-json-comments "^3.1.1"
|
|
417
489
|
|
|
418
|
-
"@eslint/js@8.
|
|
419
|
-
version "8.
|
|
420
|
-
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.
|
|
421
|
-
integrity sha512-
|
|
490
|
+
"@eslint/js@8.51.0":
|
|
491
|
+
version "8.51.0"
|
|
492
|
+
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.51.0.tgz#6d419c240cfb2b66da37df230f7e7eef801c32fa"
|
|
493
|
+
integrity sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==
|
|
422
494
|
|
|
423
495
|
"@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3":
|
|
424
496
|
version "1.1.3"
|
|
425
497
|
resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
|
|
426
498
|
integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
|
|
427
499
|
|
|
428
|
-
"@humanwhocodes/config-array@^0.11.
|
|
429
|
-
version "0.11.
|
|
430
|
-
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.
|
|
431
|
-
integrity sha512-
|
|
500
|
+
"@humanwhocodes/config-array@^0.11.11":
|
|
501
|
+
version "0.11.11"
|
|
502
|
+
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz#88a04c570dbbc7dd943e4712429c3df09bc32844"
|
|
503
|
+
integrity sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==
|
|
432
504
|
dependencies:
|
|
433
505
|
"@humanwhocodes/object-schema" "^1.2.1"
|
|
434
506
|
debug "^4.1.1"
|
|
@@ -868,29 +940,29 @@
|
|
|
868
940
|
dependencies:
|
|
869
941
|
"@octokit/openapi-types" "^12.11.0"
|
|
870
942
|
|
|
871
|
-
"@salesforce/cli-plugins-testkit@^4.
|
|
872
|
-
version "4.
|
|
873
|
-
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-4.
|
|
874
|
-
integrity sha512-
|
|
943
|
+
"@salesforce/cli-plugins-testkit@^4.4.5":
|
|
944
|
+
version "4.4.5"
|
|
945
|
+
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-4.4.5.tgz#ffd8724fc1110c97e9511cc3fb19a3189f41b667"
|
|
946
|
+
integrity sha512-98ucjuEnwdaQiDci3X9c24ASdsaRajZefmXVYvHF6QIIb4Bav3SZVMngo11mQhcmPLyzbJWfT94aImmg1ch82A==
|
|
875
947
|
dependencies:
|
|
876
|
-
"@salesforce/core" "^5.
|
|
877
|
-
"@salesforce/kit" "^3.0.
|
|
948
|
+
"@salesforce/core" "^5.3.1"
|
|
949
|
+
"@salesforce/kit" "^3.0.12"
|
|
878
950
|
"@salesforce/ts-types" "^2.0.6"
|
|
879
|
-
"@types/shelljs" "^0.8.
|
|
951
|
+
"@types/shelljs" "^0.8.13"
|
|
880
952
|
debug "^4.3.1"
|
|
881
953
|
jszip "^3.10.1"
|
|
882
954
|
shelljs "^0.8.4"
|
|
883
955
|
strip-ansi "6.0.1"
|
|
884
956
|
ts-retry-promise "^0.7.1"
|
|
885
957
|
|
|
886
|
-
"@salesforce/core@^5.2.10", "@salesforce/core@^5.2.7", "@salesforce/core@^5.2.9":
|
|
887
|
-
version "5.
|
|
888
|
-
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.
|
|
889
|
-
integrity sha512-
|
|
958
|
+
"@salesforce/core@^5.2.10", "@salesforce/core@^5.2.7", "@salesforce/core@^5.2.9", "@salesforce/core@^5.3.1":
|
|
959
|
+
version "5.3.5"
|
|
960
|
+
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.3.5.tgz#0e662420998c56abcf341fc496c6fd1d4e543a34"
|
|
961
|
+
integrity sha512-XqlUBBBfDLHeM6MOZP5GFK7vNoES8C7bTXe3y0KbZ/tWzBq4vl9KIpSsyYvsHwjb4AmUDgx0SJhH60dPVqYJzg==
|
|
890
962
|
dependencies:
|
|
891
|
-
"@salesforce/kit" "^3.0.
|
|
963
|
+
"@salesforce/kit" "^3.0.12"
|
|
892
964
|
"@salesforce/schemas" "^1.6.0"
|
|
893
|
-
"@salesforce/ts-types" "^2.0.
|
|
965
|
+
"@salesforce/ts-types" "^2.0.8"
|
|
894
966
|
"@types/semver" "^7.5.2"
|
|
895
967
|
ajv "^8.12.0"
|
|
896
968
|
change-case "^4.1.2"
|
|
@@ -912,10 +984,10 @@
|
|
|
912
984
|
resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.0.1.tgz#662ffaa4409713553aaf68eed93e7d2429c3ff0e"
|
|
913
985
|
integrity sha512-0zMjXG4Vjlu/mB7zbuKSXfXiP7CEZBwsPtYqNgburk/wZIU9KcMspLwVBDUxmUj9ltRksD9o1ubRUblN5M3Z0g==
|
|
914
986
|
|
|
915
|
-
"@salesforce/dev-scripts@^5.
|
|
916
|
-
version "5.
|
|
917
|
-
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-5.
|
|
918
|
-
integrity sha512-
|
|
987
|
+
"@salesforce/dev-scripts@^5.11.0":
|
|
988
|
+
version "5.11.0"
|
|
989
|
+
resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-5.11.0.tgz#e5632f0e46f2d821710ca06bb6d60378399b17cd"
|
|
990
|
+
integrity sha512-DLgjqBsYc0AiBb5BPiSMSJrwoP9ceAFePPcB6xvLrH9gas+8X3z79vc4xzlBhwzsF1WJsSOoVVTtJbPDwxvF0g==
|
|
919
991
|
dependencies:
|
|
920
992
|
"@commitlint/cli" "^17.1.2"
|
|
921
993
|
"@commitlint/config-conventional" "^17.1.0"
|
|
@@ -925,7 +997,7 @@
|
|
|
925
997
|
"@types/mocha" "^9.0.0"
|
|
926
998
|
"@types/node" "^15.6.1"
|
|
927
999
|
"@types/sinon" "10.0.11"
|
|
928
|
-
chai "^4.3.
|
|
1000
|
+
chai "^4.3.8"
|
|
929
1001
|
chalk "^4.0.0"
|
|
930
1002
|
cosmiconfig "^7.0.0"
|
|
931
1003
|
eslint "^8.41.0"
|
|
@@ -951,23 +1023,23 @@
|
|
|
951
1023
|
typescript "^4.9.5"
|
|
952
1024
|
wireit "^0.9.5"
|
|
953
1025
|
|
|
954
|
-
"@salesforce/kit@^3.0.11", "@salesforce/kit@^3.0.9":
|
|
955
|
-
version "3.0.
|
|
956
|
-
resolved "https://registry.yarnpkg.com/@salesforce/kit/-/kit-3.0.
|
|
957
|
-
integrity sha512-
|
|
1026
|
+
"@salesforce/kit@^3.0.11", "@salesforce/kit@^3.0.12", "@salesforce/kit@^3.0.9":
|
|
1027
|
+
version "3.0.13"
|
|
1028
|
+
resolved "https://registry.yarnpkg.com/@salesforce/kit/-/kit-3.0.13.tgz#10b47ad6e0e27c3a9f97eb6a5cdcfffa9ba1f163"
|
|
1029
|
+
integrity sha512-HLQ5L5bBi0tsMeH5ZHJAhHUpvNUNPQoNJt2O82Jf6C60GGsrlzwzQ5ONAHGNBgKSZ7HLr0UGL5xaA+hE9uOcgw==
|
|
958
1030
|
dependencies:
|
|
959
|
-
"@salesforce/ts-types" "^2.0.
|
|
1031
|
+
"@salesforce/ts-types" "^2.0.8"
|
|
960
1032
|
tslib "^2.6.2"
|
|
961
1033
|
|
|
962
|
-
"@salesforce/plugin-command-reference@^3.0.
|
|
963
|
-
version "3.0.
|
|
964
|
-
resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.
|
|
965
|
-
integrity sha512-
|
|
1034
|
+
"@salesforce/plugin-command-reference@^3.0.33":
|
|
1035
|
+
version "3.0.33"
|
|
1036
|
+
resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.33.tgz#61b430affc84f7c9bd618923bd50dee792195d1d"
|
|
1037
|
+
integrity sha512-nOBi69uHYoweOrFMtT9MqhlmS7D3fJ6jRLWWhJMqGkHcH9+gz7qhNntCTOy4AEnQ4S9GbD88DZ85HM4YJ4ifGA==
|
|
966
1038
|
dependencies:
|
|
967
1039
|
"@oclif/core" "^2.15.0"
|
|
968
1040
|
"@salesforce/core" "^5.2.7"
|
|
969
1041
|
"@salesforce/kit" "^3.0.9"
|
|
970
|
-
"@salesforce/sf-plugins-core" "^3.1.
|
|
1042
|
+
"@salesforce/sf-plugins-core" "^3.1.22"
|
|
971
1043
|
"@salesforce/ts-types" "^2.0.7"
|
|
972
1044
|
chalk "^4"
|
|
973
1045
|
handlebars "^4.7.8"
|
|
@@ -983,7 +1055,7 @@
|
|
|
983
1055
|
resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.6.0.tgz#14505ebad2fb2d4f7b14837545d662766d293561"
|
|
984
1056
|
integrity sha512-SwhDTLucj/GRbPpxlEoDZeqlX22o+G6fiebTXTu1cZKmd1oE0W2L7SlTTgJnWck8bhTeBIgQi9cpD8c2t5ISKA==
|
|
985
1057
|
|
|
986
|
-
"@salesforce/sf-plugins-core@^3.1.
|
|
1058
|
+
"@salesforce/sf-plugins-core@^3.1.22", "@salesforce/sf-plugins-core@^3.1.23":
|
|
987
1059
|
version "3.1.23"
|
|
988
1060
|
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.23.tgz#c458b4a24d16d6bf1de084cf76cf085623cfcb7c"
|
|
989
1061
|
integrity sha512-cGa1jh6VBQhiqz2LyBqNkex0rVLmK1Xl/jRCj0odr6CApWz10AqgshqusQX2JEqkP/uxiH4n0aDZ/3y+n+ny/A==
|
|
@@ -995,19 +1067,19 @@
|
|
|
995
1067
|
chalk "^4"
|
|
996
1068
|
inquirer "^8.2.5"
|
|
997
1069
|
|
|
998
|
-
"@salesforce/ts-sinon@1.4.
|
|
999
|
-
version "1.4.
|
|
1000
|
-
resolved "https://registry.yarnpkg.com/@salesforce/ts-sinon/-/ts-sinon-1.4.
|
|
1001
|
-
integrity sha512-
|
|
1070
|
+
"@salesforce/ts-sinon@1.4.17":
|
|
1071
|
+
version "1.4.17"
|
|
1072
|
+
resolved "https://registry.yarnpkg.com/@salesforce/ts-sinon/-/ts-sinon-1.4.17.tgz#e4454cd6f2edb54425a6336c5f8a7062b9e6d22c"
|
|
1073
|
+
integrity sha512-hJi+0oE7F70AFtru+KF1AKSin1lzvrU/aXkxPzqJ3obR6Q86Q4LgIl/ekiXv2u2k4GN21KPpkhBEQJuf3qiI8Q==
|
|
1002
1074
|
dependencies:
|
|
1003
|
-
"@salesforce/ts-types" "^2.0.
|
|
1075
|
+
"@salesforce/ts-types" "^2.0.8"
|
|
1004
1076
|
sinon "^5.1.1"
|
|
1005
1077
|
tslib "^2.6.1"
|
|
1006
1078
|
|
|
1007
|
-
"@salesforce/ts-types@^2.0.6", "@salesforce/ts-types@^2.0.7":
|
|
1008
|
-
version "2.0.
|
|
1009
|
-
resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-2.0.
|
|
1010
|
-
integrity sha512-
|
|
1079
|
+
"@salesforce/ts-types@^2.0.6", "@salesforce/ts-types@^2.0.7", "@salesforce/ts-types@^2.0.8":
|
|
1080
|
+
version "2.0.8"
|
|
1081
|
+
resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-2.0.8.tgz#e732b5a42cbec6bda79c089a0633fc643daf8bca"
|
|
1082
|
+
integrity sha512-vuzLcxtThBhpuhmnoh8GFrVU8XjdoNyQm9gPtmcjUyUD/9nQIBTAX8oGoUvCiiq93c4LFEmSua+xm3yu0bbNfg==
|
|
1011
1083
|
dependencies:
|
|
1012
1084
|
tslib "^2.6.2"
|
|
1013
1085
|
|
|
@@ -1241,24 +1313,19 @@
|
|
|
1241
1313
|
resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812"
|
|
1242
1314
|
integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==
|
|
1243
1315
|
|
|
1244
|
-
"@types/inquirer@^9.0.
|
|
1245
|
-
version "9.0.
|
|
1246
|
-
resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-9.0.
|
|
1247
|
-
integrity sha512-
|
|
1316
|
+
"@types/inquirer@^9.0.4":
|
|
1317
|
+
version "9.0.4"
|
|
1318
|
+
resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-9.0.4.tgz#f20d6bce87c2aef4fabe8de9e3a397e80aea309f"
|
|
1319
|
+
integrity sha512-x8UgutCLm5tsp995aeYB8dlT+sGBCtv0zE43tHvo7OljtlA2Rn4+COyLKe9+YjB20uy0G14y0C9vCD2KtNtyGA==
|
|
1248
1320
|
dependencies:
|
|
1249
1321
|
"@types/through" "*"
|
|
1250
1322
|
rxjs "^7.2.0"
|
|
1251
1323
|
|
|
1252
|
-
"@types/json-schema@^7.0.12":
|
|
1324
|
+
"@types/json-schema@^7.0.12", "@types/json-schema@^7.0.9":
|
|
1253
1325
|
version "7.0.12"
|
|
1254
1326
|
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb"
|
|
1255
1327
|
integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==
|
|
1256
1328
|
|
|
1257
|
-
"@types/json-schema@^7.0.9":
|
|
1258
|
-
version "7.0.11"
|
|
1259
|
-
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
|
|
1260
|
-
integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
|
|
1261
|
-
|
|
1262
1329
|
"@types/json5@^0.0.29":
|
|
1263
1330
|
version "0.0.29"
|
|
1264
1331
|
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
|
|
@@ -1328,10 +1395,10 @@
|
|
|
1328
1395
|
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.2.tgz#31f6eec1ed7ec23f4f05608d3a2d381df041f564"
|
|
1329
1396
|
integrity sha512-7aqorHYgdNO4DM36stTiGO3DvKoex9TQRwsJU6vMaFGyqpBA1MNZkz+PG3gaNUPpTAOYhT1WR7M1JyA3fbS9Cw==
|
|
1330
1397
|
|
|
1331
|
-
"@types/shelljs@^0.8.
|
|
1332
|
-
version "0.8.
|
|
1333
|
-
resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.8.
|
|
1334
|
-
integrity sha512
|
|
1398
|
+
"@types/shelljs@^0.8.13":
|
|
1399
|
+
version "0.8.13"
|
|
1400
|
+
resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.8.13.tgz#a94bf7f2b82b7cd9f4496bbe063c3adb0868a650"
|
|
1401
|
+
integrity sha512-++uMLOQSLlse1kCfEOwhgmHuaABZwinkylmUKCpvcEGZUov3TtM+gJZloSkW/W+9pEAEg/VBOwiSR05oqJsa5A==
|
|
1335
1402
|
dependencies:
|
|
1336
1403
|
"@types/glob" "~7.2.0"
|
|
1337
1404
|
"@types/node" "*"
|
|
@@ -1511,7 +1578,7 @@ aggregate-error@^3.0.0:
|
|
|
1511
1578
|
clean-stack "^2.0.0"
|
|
1512
1579
|
indent-string "^4.0.0"
|
|
1513
1580
|
|
|
1514
|
-
ajv@^6.
|
|
1581
|
+
ajv@^6.12.4:
|
|
1515
1582
|
version "6.12.6"
|
|
1516
1583
|
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
|
|
1517
1584
|
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
|
|
@@ -1742,6 +1809,13 @@ astral-regex@^2.0.0:
|
|
|
1742
1809
|
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
|
|
1743
1810
|
integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
|
|
1744
1811
|
|
|
1812
|
+
async-retry@^1.3.3:
|
|
1813
|
+
version "1.3.3"
|
|
1814
|
+
resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.3.3.tgz#0e7f36c04d8478e7a58bdbed80cedf977785f280"
|
|
1815
|
+
integrity sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==
|
|
1816
|
+
dependencies:
|
|
1817
|
+
retry "0.13.1"
|
|
1818
|
+
|
|
1745
1819
|
async@^3.2.3:
|
|
1746
1820
|
version "3.2.4"
|
|
1747
1821
|
resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c"
|
|
@@ -2049,20 +2123,20 @@ cardinal@^2.1.1:
|
|
|
2049
2123
|
ansicolors "~0.3.2"
|
|
2050
2124
|
redeyed "~2.1.0"
|
|
2051
2125
|
|
|
2052
|
-
chai@^4.3.
|
|
2053
|
-
version "4.3.
|
|
2054
|
-
resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.
|
|
2055
|
-
integrity sha512-
|
|
2126
|
+
chai@^4.3.10, chai@^4.3.8:
|
|
2127
|
+
version "4.3.10"
|
|
2128
|
+
resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.10.tgz#d784cec635e3b7e2ffb66446a63b4e33bd390384"
|
|
2129
|
+
integrity sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g==
|
|
2056
2130
|
dependencies:
|
|
2057
2131
|
assertion-error "^1.1.0"
|
|
2058
|
-
check-error "^1.0.
|
|
2059
|
-
deep-eql "^4.1.
|
|
2060
|
-
get-func-name "^2.0.
|
|
2061
|
-
loupe "^2.3.
|
|
2132
|
+
check-error "^1.0.3"
|
|
2133
|
+
deep-eql "^4.1.3"
|
|
2134
|
+
get-func-name "^2.0.2"
|
|
2135
|
+
loupe "^2.3.6"
|
|
2062
2136
|
pathval "^1.1.1"
|
|
2063
|
-
type-detect "^4.0.
|
|
2137
|
+
type-detect "^4.0.8"
|
|
2064
2138
|
|
|
2065
|
-
chalk@^2.0.0:
|
|
2139
|
+
chalk@^2.0.0, chalk@^2.4.2:
|
|
2066
2140
|
version "2.4.2"
|
|
2067
2141
|
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
|
2068
2142
|
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
|
@@ -2110,10 +2184,12 @@ chardet@^0.7.0:
|
|
|
2110
2184
|
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
|
|
2111
2185
|
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
|
|
2112
2186
|
|
|
2113
|
-
check-error@^1.0.
|
|
2114
|
-
version "1.0.
|
|
2115
|
-
resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.
|
|
2116
|
-
integrity sha512-
|
|
2187
|
+
check-error@^1.0.3:
|
|
2188
|
+
version "1.0.3"
|
|
2189
|
+
resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.3.tgz#a6502e4312a7ee969f646e83bb3ddd56281bd694"
|
|
2190
|
+
integrity sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==
|
|
2191
|
+
dependencies:
|
|
2192
|
+
get-func-name "^2.0.2"
|
|
2117
2193
|
|
|
2118
2194
|
chokidar@3.5.3, chokidar@^3.5.3:
|
|
2119
2195
|
version "3.5.3"
|
|
@@ -2554,7 +2630,7 @@ decompress-response@^6.0.0:
|
|
|
2554
2630
|
dependencies:
|
|
2555
2631
|
mimic-response "^3.1.0"
|
|
2556
2632
|
|
|
2557
|
-
deep-eql@^4.1.
|
|
2633
|
+
deep-eql@^4.1.3:
|
|
2558
2634
|
version "4.1.3"
|
|
2559
2635
|
resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d"
|
|
2560
2636
|
integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==
|
|
@@ -2915,12 +2991,12 @@ eslint-plugin-prefer-arrow@^1.2.1:
|
|
|
2915
2991
|
resolved "https://registry.yarnpkg.com/eslint-plugin-prefer-arrow/-/eslint-plugin-prefer-arrow-1.2.3.tgz#e7fbb3fa4cd84ff1015b9c51ad86550e55041041"
|
|
2916
2992
|
integrity sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==
|
|
2917
2993
|
|
|
2918
|
-
eslint-plugin-sf-plugin@^1.16.
|
|
2919
|
-
version "1.16.
|
|
2920
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.16.
|
|
2921
|
-
integrity sha512-
|
|
2994
|
+
eslint-plugin-sf-plugin@^1.16.8:
|
|
2995
|
+
version "1.16.8"
|
|
2996
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.16.8.tgz#3509bbd79aceae106eafbef0f4dbbcdb2fc90154"
|
|
2997
|
+
integrity sha512-vPnJgZcAiqIHw1UJSfaA+aIrJXKfZxKurfxkn+WIU3LWJBPkp/nKOYEAXURcH9Qte3PH4J7WgkQXfJY09Hs9Yg==
|
|
2922
2998
|
dependencies:
|
|
2923
|
-
"@salesforce/core" "^5.
|
|
2999
|
+
"@salesforce/core" "^5.3.1"
|
|
2924
3000
|
"@typescript-eslint/utils" "^5.59.11"
|
|
2925
3001
|
|
|
2926
3002
|
eslint-scope@^5.1.1:
|
|
@@ -2931,40 +3007,40 @@ eslint-scope@^5.1.1:
|
|
|
2931
3007
|
esrecurse "^4.3.0"
|
|
2932
3008
|
estraverse "^4.1.1"
|
|
2933
3009
|
|
|
2934
|
-
eslint-scope@^7.2.
|
|
2935
|
-
version "7.2.
|
|
2936
|
-
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.
|
|
2937
|
-
integrity sha512-
|
|
3010
|
+
eslint-scope@^7.2.2:
|
|
3011
|
+
version "7.2.2"
|
|
3012
|
+
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f"
|
|
3013
|
+
integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==
|
|
2938
3014
|
dependencies:
|
|
2939
3015
|
esrecurse "^4.3.0"
|
|
2940
3016
|
estraverse "^5.2.0"
|
|
2941
3017
|
|
|
2942
|
-
eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1:
|
|
2943
|
-
version "3.4.
|
|
2944
|
-
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.
|
|
2945
|
-
integrity sha512-
|
|
3018
|
+
eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3:
|
|
3019
|
+
version "3.4.3"
|
|
3020
|
+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
|
|
3021
|
+
integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
|
|
2946
3022
|
|
|
2947
|
-
eslint@^8.41.0, eslint@^8.
|
|
2948
|
-
version "8.
|
|
2949
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.
|
|
2950
|
-
integrity sha512-
|
|
3023
|
+
eslint@^8.41.0, eslint@^8.51.0:
|
|
3024
|
+
version "8.51.0"
|
|
3025
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.51.0.tgz#4a82dae60d209ac89a5cff1604fea978ba4950f3"
|
|
3026
|
+
integrity sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==
|
|
2951
3027
|
dependencies:
|
|
2952
3028
|
"@eslint-community/eslint-utils" "^4.2.0"
|
|
2953
|
-
"@eslint-community/regexpp" "^4.
|
|
2954
|
-
"@eslint/eslintrc" "^2.1.
|
|
2955
|
-
"@eslint/js" "8.
|
|
2956
|
-
"@humanwhocodes/config-array" "^0.11.
|
|
3029
|
+
"@eslint-community/regexpp" "^4.6.1"
|
|
3030
|
+
"@eslint/eslintrc" "^2.1.2"
|
|
3031
|
+
"@eslint/js" "8.51.0"
|
|
3032
|
+
"@humanwhocodes/config-array" "^0.11.11"
|
|
2957
3033
|
"@humanwhocodes/module-importer" "^1.0.1"
|
|
2958
3034
|
"@nodelib/fs.walk" "^1.2.8"
|
|
2959
|
-
ajv "^6.
|
|
3035
|
+
ajv "^6.12.4"
|
|
2960
3036
|
chalk "^4.0.0"
|
|
2961
3037
|
cross-spawn "^7.0.2"
|
|
2962
3038
|
debug "^4.3.2"
|
|
2963
3039
|
doctrine "^3.0.0"
|
|
2964
3040
|
escape-string-regexp "^4.0.0"
|
|
2965
|
-
eslint-scope "^7.2.
|
|
2966
|
-
eslint-visitor-keys "^3.4.
|
|
2967
|
-
espree "^9.6.
|
|
3041
|
+
eslint-scope "^7.2.2"
|
|
3042
|
+
eslint-visitor-keys "^3.4.3"
|
|
3043
|
+
espree "^9.6.1"
|
|
2968
3044
|
esquery "^1.4.2"
|
|
2969
3045
|
esutils "^2.0.2"
|
|
2970
3046
|
fast-deep-equal "^3.1.3"
|
|
@@ -2974,7 +3050,6 @@ eslint@^8.41.0, eslint@^8.44.0:
|
|
|
2974
3050
|
globals "^13.19.0"
|
|
2975
3051
|
graphemer "^1.4.0"
|
|
2976
3052
|
ignore "^5.2.0"
|
|
2977
|
-
import-fresh "^3.0.0"
|
|
2978
3053
|
imurmurhash "^0.1.4"
|
|
2979
3054
|
is-glob "^4.0.0"
|
|
2980
3055
|
is-path-inside "^3.0.3"
|
|
@@ -2986,13 +3061,12 @@ eslint@^8.41.0, eslint@^8.44.0:
|
|
|
2986
3061
|
natural-compare "^1.4.0"
|
|
2987
3062
|
optionator "^0.9.3"
|
|
2988
3063
|
strip-ansi "^6.0.1"
|
|
2989
|
-
strip-json-comments "^3.1.0"
|
|
2990
3064
|
text-table "^0.2.0"
|
|
2991
3065
|
|
|
2992
|
-
espree@^9.6.0:
|
|
2993
|
-
version "9.6.
|
|
2994
|
-
resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.
|
|
2995
|
-
integrity sha512-
|
|
3066
|
+
espree@^9.6.0, espree@^9.6.1:
|
|
3067
|
+
version "9.6.1"
|
|
3068
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
|
|
3069
|
+
integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
|
|
2996
3070
|
dependencies:
|
|
2997
3071
|
acorn "^8.9.0"
|
|
2998
3072
|
acorn-jsx "^5.3.2"
|
|
@@ -3396,10 +3470,10 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5:
|
|
|
3396
3470
|
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
|
|
3397
3471
|
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
|
|
3398
3472
|
|
|
3399
|
-
get-func-name@^2.0.0:
|
|
3400
|
-
version "2.0.
|
|
3401
|
-
resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.
|
|
3402
|
-
integrity sha512-
|
|
3473
|
+
get-func-name@^2.0.0, get-func-name@^2.0.2:
|
|
3474
|
+
version "2.0.2"
|
|
3475
|
+
resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41"
|
|
3476
|
+
integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==
|
|
3403
3477
|
|
|
3404
3478
|
get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1:
|
|
3405
3479
|
version "1.2.1"
|
|
@@ -4645,7 +4719,7 @@ lolex@^5.0.1:
|
|
|
4645
4719
|
dependencies:
|
|
4646
4720
|
"@sinonjs/commons" "^1.7.0"
|
|
4647
4721
|
|
|
4648
|
-
loupe@^2.3.
|
|
4722
|
+
loupe@^2.3.6:
|
|
4649
4723
|
version "2.3.6"
|
|
4650
4724
|
resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53"
|
|
4651
4725
|
integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==
|
|
@@ -5397,15 +5471,16 @@ object.values@^1.1.6:
|
|
|
5397
5471
|
define-properties "^1.1.4"
|
|
5398
5472
|
es-abstract "^1.20.4"
|
|
5399
5473
|
|
|
5400
|
-
oclif@^3.
|
|
5401
|
-
version "3.
|
|
5402
|
-
resolved "https://registry.yarnpkg.com/oclif/-/oclif-3.
|
|
5403
|
-
integrity sha512
|
|
5474
|
+
oclif@^3.16.0:
|
|
5475
|
+
version "3.17.2"
|
|
5476
|
+
resolved "https://registry.yarnpkg.com/oclif/-/oclif-3.17.2.tgz#f13756c9b1968047e76b99cb09db9725e96fb2f6"
|
|
5477
|
+
integrity sha512-+vFXxgmR7dGGz+g6YiqSZu2LXVkBMaS9/rhtsLGkYw45e53CW/3kBgPRnOvxcTDM3Td9JPeBD2JWxXnPKGQW3A==
|
|
5404
5478
|
dependencies:
|
|
5405
5479
|
"@oclif/core" "^2.11.4"
|
|
5406
5480
|
"@oclif/plugin-help" "^5.2.14"
|
|
5407
5481
|
"@oclif/plugin-not-found" "^2.3.32"
|
|
5408
5482
|
"@oclif/plugin-warn-if-update-available" "^2.0.44"
|
|
5483
|
+
async-retry "^1.3.3"
|
|
5409
5484
|
aws-sdk "^2.1231.0"
|
|
5410
5485
|
concurrently "^7.6.0"
|
|
5411
5486
|
debug "^4.3.3"
|
|
@@ -6152,6 +6227,11 @@ restore-cursor@^3.1.0:
|
|
|
6152
6227
|
onetime "^5.1.0"
|
|
6153
6228
|
signal-exit "^3.0.2"
|
|
6154
6229
|
|
|
6230
|
+
retry@0.13.1:
|
|
6231
|
+
version "0.13.1"
|
|
6232
|
+
resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658"
|
|
6233
|
+
integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==
|
|
6234
|
+
|
|
6155
6235
|
retry@^0.12.0:
|
|
6156
6236
|
version "0.12.0"
|
|
6157
6237
|
resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
|
|
@@ -6675,7 +6755,7 @@ strip-indent@^3.0.0:
|
|
|
6675
6755
|
dependencies:
|
|
6676
6756
|
min-indent "^1.0.0"
|
|
6677
6757
|
|
|
6678
|
-
strip-json-comments@3.1.1, strip-json-comments@^3.1.
|
|
6758
|
+
strip-json-comments@3.1.1, strip-json-comments@^3.1.1:
|
|
6679
6759
|
version "3.1.1"
|
|
6680
6760
|
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
|
|
6681
6761
|
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
|
|
@@ -6896,7 +6976,7 @@ type-check@^0.4.0, type-check@~0.4.0:
|
|
|
6896
6976
|
dependencies:
|
|
6897
6977
|
prelude-ls "^1.2.1"
|
|
6898
6978
|
|
|
6899
|
-
type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.
|
|
6979
|
+
type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.8:
|
|
6900
6980
|
version "4.0.8"
|
|
6901
6981
|
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
|
|
6902
6982
|
integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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": "2.4.
|
|
4
|
+
"version": "2.4.6",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -13,19 +13,19 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@oclif/plugin-command-snapshot": "^4.0.14",
|
|
16
|
-
"@salesforce/cli-plugins-testkit": "^4.
|
|
16
|
+
"@salesforce/cli-plugins-testkit": "^4.4.5",
|
|
17
17
|
"@salesforce/dev-config": "^4.0.1",
|
|
18
|
-
"@salesforce/dev-scripts": "^5.
|
|
19
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
18
|
+
"@salesforce/dev-scripts": "^5.11.0",
|
|
19
|
+
"@salesforce/plugin-command-reference": "^3.0.33",
|
|
20
20
|
"@salesforce/prettier-config": "^0.0.3",
|
|
21
|
-
"@salesforce/ts-sinon": "1.4.
|
|
22
|
-
"@salesforce/ts-types": "^2.0.
|
|
21
|
+
"@salesforce/ts-sinon": "1.4.17",
|
|
22
|
+
"@salesforce/ts-types": "^2.0.8",
|
|
23
23
|
"@swc/core": "^1.3.39",
|
|
24
|
-
"@types/inquirer": "^9.0.
|
|
24
|
+
"@types/inquirer": "^9.0.4",
|
|
25
25
|
"@typescript-eslint/eslint-plugin": "5.62.0",
|
|
26
26
|
"@typescript-eslint/parser": "^5.62.0",
|
|
27
|
-
"chai": "^4.3.
|
|
28
|
-
"eslint": "^8.
|
|
27
|
+
"chai": "^4.3.10",
|
|
28
|
+
"eslint": "^8.51.0",
|
|
29
29
|
"eslint-config-prettier": "^8.10.0",
|
|
30
30
|
"eslint-config-salesforce": "^2.0.2",
|
|
31
31
|
"eslint-config-salesforce-license": "^0.2.0",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"eslint-plugin-header": "^3.1.1",
|
|
34
34
|
"eslint-plugin-import": "^2.28.1",
|
|
35
35
|
"eslint-plugin-jsdoc": "^43.0.5",
|
|
36
|
-
"eslint-plugin-sf-plugin": "^1.16.
|
|
36
|
+
"eslint-plugin-sf-plugin": "^1.16.8",
|
|
37
37
|
"husky": "^7.0.4",
|
|
38
38
|
"jsforce": "^2.0.0-beta.23",
|
|
39
39
|
"mocha": "^9.2.2",
|
|
40
40
|
"nyc": "^15.1.0",
|
|
41
|
-
"oclif": "^3.
|
|
41
|
+
"oclif": "^3.16.0",
|
|
42
42
|
"prettier": "^2.8.8",
|
|
43
43
|
"pretty-quick": "^3.1.3",
|
|
44
44
|
"shx": "0.3.4",
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
}
|
|
213
213
|
},
|
|
214
214
|
"sfdx": {
|
|
215
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-community/2.4.
|
|
216
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-community/2.4.
|
|
215
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-community/2.4.6.crt",
|
|
216
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-community/2.4.6.sig"
|
|
217
217
|
}
|
|
218
218
|
}
|