@salesforce/plugin-custom-metadata 3.1.20 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +335 -2
- package/lib/shared/helpers/validationUtil.js.map +1 -1
- package/lib/shared/templates/templates.js.map +1 -1
- package/npm-shrinkwrap.json +96 -224
- package/oclif.lock +15 -48
- package/oclif.manifest.json +41 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -71,9 +71,342 @@ sfdx plugins
|
|
|
71
71
|
|
|
72
72
|
<!-- commands -->
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
- [`sf cmdt generate field`](#sf-cmdt-generate-field)
|
|
75
|
+
- [`sf cmdt generate fromorg`](#sf-cmdt-generate-fromorg)
|
|
76
|
+
- [`sf cmdt generate object`](#sf-cmdt-generate-object)
|
|
77
|
+
- [`sf cmdt generate record`](#sf-cmdt-generate-record)
|
|
78
|
+
- [`sf cmdt generate records`](#sf-cmdt-generate-records)
|
|
75
79
|
|
|
76
|
-
|
|
80
|
+
## `sf cmdt generate field`
|
|
81
|
+
|
|
82
|
+
Generate a field for a custom metadata type based on the provided field type.
|
|
83
|
+
|
|
84
|
+
```
|
|
85
|
+
USAGE
|
|
86
|
+
$ sf cmdt generate field -n <value> -f
|
|
87
|
+
Checkbox|Date|DateTime|Email|Number|Percent|Phone|Picklist|Text|TextArea|LongTextArea|Url [--json] [--flags-dir
|
|
88
|
+
<value>] [-p <value>] [-s <value>] [-l <value>] [-d <value>]
|
|
89
|
+
|
|
90
|
+
FLAGS
|
|
91
|
+
-d, --output-directory=<value> Directory to store newly-created field definition files.
|
|
92
|
+
-f, --type=<option> (required) Type of the field.
|
|
93
|
+
<options: Checkbox|Date|DateTime|Email|Number|Percent|Phone|Picklist|Text|TextArea|L
|
|
94
|
+
ongTextArea|Url>
|
|
95
|
+
-l, --label=<value> Label for the field.
|
|
96
|
+
-n, --name=<value> (required) Unique name for the field.
|
|
97
|
+
-p, --picklist-values=<value>... Picklist values; required for picklist fields.
|
|
98
|
+
-s, --decimal-places=<value> Number of decimal places to use for number or percent fields.
|
|
99
|
+
|
|
100
|
+
GLOBAL FLAGS
|
|
101
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
102
|
+
--json Format output as json.
|
|
103
|
+
|
|
104
|
+
DESCRIPTION
|
|
105
|
+
Generate a field for a custom metadata type based on the provided field type.
|
|
106
|
+
|
|
107
|
+
Similar to a custom object, a custom metadata type has a list of custom fields that represent aspects of the metadata.
|
|
108
|
+
|
|
109
|
+
This command creates a metadata file that describes the new custom metadata type field. By default, the file is
|
|
110
|
+
created in a "fields" directory in the current directory. Use the --output-directory to generate the file in the
|
|
111
|
+
directory that contains the custom metadata type metdata files, such as "force-app/main/default/objects/MyCmdt__mdt"
|
|
112
|
+
for the custom metadata type called MyCmdt.
|
|
113
|
+
|
|
114
|
+
ALIASES
|
|
115
|
+
$ sf force cmdt field create
|
|
116
|
+
$ sf cmdt field create
|
|
117
|
+
|
|
118
|
+
EXAMPLES
|
|
119
|
+
Generate a metadata file for a custom checkbox field and add the file to the MyCmdt__mdt/fields directory:
|
|
120
|
+
|
|
121
|
+
$ sf cmdt generate field --name MyCheckboxField --type Checkbox --output-directory \
|
|
122
|
+
force-app/main/default/objects/MyCmdt__mdt
|
|
123
|
+
|
|
124
|
+
Generate a metadata file for a custom picklist field and add a few values:
|
|
125
|
+
|
|
126
|
+
$ sf cmdt generate field --name MyPicklistField --type Picklist --picklist-values A --picklist-values B \
|
|
127
|
+
--picklist-values C --output-directory force-app/main/default/objects/MyCmdt__mdt
|
|
128
|
+
|
|
129
|
+
Generate a metadata file for a custom number field and specify 2 decimal places:
|
|
130
|
+
|
|
131
|
+
$ sf cmdt generate field --name MyNumberField --type Number --decimal-places 2 --output-directory \
|
|
132
|
+
force-app/main/default/objects/MyCmdt__mdt
|
|
133
|
+
|
|
134
|
+
FLAG DESCRIPTIONS
|
|
135
|
+
-d, --output-directory=<value> Directory to store newly-created field definition files.
|
|
136
|
+
|
|
137
|
+
New files are automatically created in the "fields" directory. The location can be an absolute path or relative to
|
|
138
|
+
the current working directory. The default is the current directory.
|
|
139
|
+
|
|
140
|
+
-f, --type=Checkbox|Date|DateTime|Email|Number|Percent|Phone|Picklist|Text|TextArea|LongTextArea|Url
|
|
141
|
+
|
|
142
|
+
Type of the field.
|
|
143
|
+
|
|
144
|
+
You can't use this command to create a custom metadata type field of type "Metadata Relationship". Use the
|
|
145
|
+
Salesforce Setup UI instead.
|
|
146
|
+
|
|
147
|
+
-s, --decimal-places=<value> Number of decimal places to use for number or percent fields.
|
|
148
|
+
|
|
149
|
+
The value must be greater than or equal to zero. Default value is 0.
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
_See code: [src/commands/cmdt/generate/field.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.0/src/commands/cmdt/generate/field.ts)_
|
|
153
|
+
|
|
154
|
+
## `sf cmdt generate fromorg`
|
|
155
|
+
|
|
156
|
+
Generate a custom metadata type and all its records from a Salesforce object.
|
|
157
|
+
|
|
158
|
+
```
|
|
159
|
+
USAGE
|
|
160
|
+
$ sf cmdt generate fromorg -o <value> -n <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>] [-l
|
|
161
|
+
<value>] [-p <value>] [-v PackageProtected|Protected|Public] [-i] [-d <value>] [-r <value>]
|
|
162
|
+
|
|
163
|
+
FLAGS
|
|
164
|
+
-d, --type-output-directory=<value> [default: force-app/main/default/objects] Directory to store newly-created custom
|
|
165
|
+
metadata type files.
|
|
166
|
+
-i, --ignore-unsupported Ignore unsupported field types.
|
|
167
|
+
-l, --label=<value> Label for the custom metadata type.
|
|
168
|
+
-n, --dev-name=<value> (required) Name of the custom metadata type.
|
|
169
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
170
|
+
configuration variable is already set.
|
|
171
|
+
-p, --plural-label=<value> Plural version of the label value; if blank, uses label.
|
|
172
|
+
-r, --records-output-dir=<value> [default: force-app/main/default/customMetadata] Directory to store newly-created
|
|
173
|
+
custom metadata record files.
|
|
174
|
+
-s, --sobject=<value> (required) API name of the source Salesforce object used to generate the custom
|
|
175
|
+
metadata type.
|
|
176
|
+
-v, --visibility=<option> [default: Public] Who can see the custom metadata type.
|
|
177
|
+
<options: PackageProtected|Protected|Public>
|
|
178
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
179
|
+
|
|
180
|
+
GLOBAL FLAGS
|
|
181
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
182
|
+
--json Format output as json.
|
|
183
|
+
|
|
184
|
+
DESCRIPTION
|
|
185
|
+
Generate a custom metadata type and all its records from a Salesforce object.
|
|
186
|
+
|
|
187
|
+
Use this command to migrate existing custom objects or custom settings in an org to custom metadata types. If a field
|
|
188
|
+
of the Salesforce object is of an unsupported type, the field type is automatically converted to text. Run "sf cmdt
|
|
189
|
+
generate field --help" to see the list of supported cmdt field types, listed in the --type flag summary. Use the
|
|
190
|
+
--ignore-unsupported to ignore these fields.
|
|
191
|
+
|
|
192
|
+
This command creates the metadata files that describe the new custom metadata type and its fields in the
|
|
193
|
+
"force-app/main/default/objects/TypeName__mdt" directory by default, where "TypeName" is the value of the required
|
|
194
|
+
--dev-name flag. Use --type-output-directory to create them in a different directory.
|
|
195
|
+
|
|
196
|
+
ALIASES
|
|
197
|
+
$ sf force cmdt generate
|
|
198
|
+
|
|
199
|
+
EXAMPLES
|
|
200
|
+
Generate a custom metadata type from a custom object called MySourceObject__c in your default org:
|
|
201
|
+
|
|
202
|
+
$ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c
|
|
203
|
+
|
|
204
|
+
Generate a custom metadata type from a custom object in an org with alias my-scratch-org; ignore unsupported field
|
|
205
|
+
types instead of converting them to text:
|
|
206
|
+
|
|
207
|
+
$ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c --ignore-unsupported --target-org \
|
|
208
|
+
my-scratch-org
|
|
209
|
+
|
|
210
|
+
Generate a protected custom metadata type from a custom object:
|
|
211
|
+
|
|
212
|
+
$ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c --visibility Protected
|
|
213
|
+
|
|
214
|
+
Generate a protected custom metadata type from a custom setting with a specific singular and plural label:
|
|
215
|
+
|
|
216
|
+
$ sf cmdt generate fromorg --dev-name MyCMDT --label "My CMDT" --plural-label "My CMDTs" --sobject \
|
|
217
|
+
MySourceSetting__c --visibility Protected
|
|
218
|
+
|
|
219
|
+
Generate a custom metadata type and put the resulting metadata files in the specified directory:
|
|
220
|
+
|
|
221
|
+
$ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c --type-output-directory \
|
|
222
|
+
path/to/my/cmdt/directory
|
|
223
|
+
|
|
224
|
+
Generate a custom metadata type and put the resulting record metadata file(s) in the specified directory:
|
|
225
|
+
|
|
226
|
+
$ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c --records-output-dir \
|
|
227
|
+
path/to/my/cmdt/record/directory
|
|
228
|
+
|
|
229
|
+
FLAG DESCRIPTIONS
|
|
230
|
+
-i, --ignore-unsupported Ignore unsupported field types.
|
|
231
|
+
|
|
232
|
+
In this context, "ignore" means that the fields aren't created. The default behavior is to create fields of type
|
|
233
|
+
text and convert the field values to text.
|
|
234
|
+
|
|
235
|
+
-v, --visibility=PackageProtected|Protected|Public Who can see the custom metadata type.
|
|
236
|
+
|
|
237
|
+
For more information on what each option means, see this topic in Salesforce Help:
|
|
238
|
+
https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
_See code: [src/commands/cmdt/generate/fromorg.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.0/src/commands/cmdt/generate/fromorg.ts)_
|
|
242
|
+
|
|
243
|
+
## `sf cmdt generate object`
|
|
244
|
+
|
|
245
|
+
Generate a new custom metadata type in the current project.
|
|
246
|
+
|
|
247
|
+
```
|
|
248
|
+
USAGE
|
|
249
|
+
$ sf cmdt generate object -n <value> [--json] [--flags-dir <value>] [-l <value>] [-p <value>] [-v
|
|
250
|
+
PackageProtected|Protected|Public] [-d <value>]
|
|
251
|
+
|
|
252
|
+
FLAGS
|
|
253
|
+
-d, --output-directory=<value> Directory to store the newly-created custom metadata type files
|
|
254
|
+
-l, --label=<value> Label for the custom metadata type.
|
|
255
|
+
-n, --type-name=<value> (required) Unique object name for the custom metadata type.
|
|
256
|
+
-p, --plural-label=<value> Plural version of the label value; if blank, uses label.
|
|
257
|
+
-v, --visibility=<option> [default: Public] Who can see the custom metadata type.
|
|
258
|
+
<options: PackageProtected|Protected|Public>
|
|
259
|
+
|
|
260
|
+
GLOBAL FLAGS
|
|
261
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
262
|
+
--json Format output as json.
|
|
263
|
+
|
|
264
|
+
DESCRIPTION
|
|
265
|
+
Generate a new custom metadata type in the current project.
|
|
266
|
+
|
|
267
|
+
This command creates a metadata file that describes the new custom metadata type. By default, the file is created in
|
|
268
|
+
the MyCustomType__mdt directory in the current directory, where MyCustomType is the value of the required --type-name
|
|
269
|
+
flag. Use the --output-directory to generate the file in a package directory with other custom metadata types, such as
|
|
270
|
+
"force-app/main/default/objects".
|
|
271
|
+
|
|
272
|
+
ALIASES
|
|
273
|
+
$ sf force cmdt create
|
|
274
|
+
$ sf cmdt create
|
|
275
|
+
|
|
276
|
+
EXAMPLES
|
|
277
|
+
Generate a custom metadata type with developer name 'MyCustomType'; this name is also used as the label:
|
|
278
|
+
|
|
279
|
+
$ sf cmdt generate object --type-name MyCustomType
|
|
280
|
+
|
|
281
|
+
Generate a protected custom metadata type with a specific label:
|
|
282
|
+
|
|
283
|
+
$ sf cmdt generate object --type-name MyCustomType --label "Custom Type" --plural-label "Custom Types" \
|
|
284
|
+
--visibility Protected
|
|
285
|
+
|
|
286
|
+
FLAG DESCRIPTIONS
|
|
287
|
+
-d, --output-directory=<value> Directory to store the newly-created custom metadata type files
|
|
288
|
+
|
|
289
|
+
The location can be an absolute path or relative to the current working directory. The default is the current
|
|
290
|
+
directory.
|
|
291
|
+
|
|
292
|
+
-n, --type-name=<value> Unique object name for the custom metadata type.
|
|
293
|
+
|
|
294
|
+
The name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin
|
|
295
|
+
with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores.
|
|
296
|
+
|
|
297
|
+
-v, --visibility=PackageProtected|Protected|Public Who can see the custom metadata type.
|
|
298
|
+
|
|
299
|
+
For more information on what each option means, see this topic in Salesforce Help:
|
|
300
|
+
https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
_See code: [src/commands/cmdt/generate/object.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.0/src/commands/cmdt/generate/object.ts)_
|
|
304
|
+
|
|
305
|
+
## `sf cmdt generate record`
|
|
306
|
+
|
|
307
|
+
Generate a new record for a given custom metadata type in the current project.
|
|
308
|
+
|
|
309
|
+
```
|
|
310
|
+
USAGE
|
|
311
|
+
$ sf cmdt generate record -t <value> -n <value> [--json] [--flags-dir <value>] [-l <value>] [-p true|false] [-i <value>]
|
|
312
|
+
[-d <value>]
|
|
313
|
+
|
|
314
|
+
FLAGS
|
|
315
|
+
-d, --output-directory=<value> [default: force-app/main/default/customMetadata] Directory to store newly-created
|
|
316
|
+
custom metadata record files.
|
|
317
|
+
-i, --input-directory=<value> [default: force-app/main/default/objects] Directory from which to get the custom
|
|
318
|
+
metadata type definition from.
|
|
319
|
+
-l, --label=<value> Label for the new record.
|
|
320
|
+
-n, --record-name=<value> (required) Name of the new record.
|
|
321
|
+
-p, --protected=<option> [default: false] Protect the record when it's in a managed package.
|
|
322
|
+
<options: true|false>
|
|
323
|
+
-t, --type-name=<value> (required) API name of the custom metadata type to create a record for; must end in
|
|
324
|
+
"__mdt".
|
|
325
|
+
|
|
326
|
+
GLOBAL FLAGS
|
|
327
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
328
|
+
--json Format output as json.
|
|
329
|
+
|
|
330
|
+
DESCRIPTION
|
|
331
|
+
Generate a new record for a given custom metadata type in the current project.
|
|
332
|
+
|
|
333
|
+
The custom metadata type must already exist in your project. You must specify a name for the new record. Use
|
|
334
|
+
name=value pairs to specify the values for the fields, such as MyTextField="some text here" or MyNumberField=32.
|
|
335
|
+
|
|
336
|
+
ALIASES
|
|
337
|
+
$ sf force cmdt record create
|
|
338
|
+
$ sf cmdt record create
|
|
339
|
+
|
|
340
|
+
EXAMPLES
|
|
341
|
+
Create a record metadata file for custom metadata type 'MyCMT' with specified values for two custom fields:
|
|
342
|
+
|
|
343
|
+
$ sf cmdt generate record --type-name MyCMT__mdt --record-name MyRecord My_Custom_Field_1=Foo \
|
|
344
|
+
My_Custom_Field_2=Bar
|
|
345
|
+
|
|
346
|
+
Create a protected record metadata file for custom metadata type 'MyCMT' with a specific label and values specified
|
|
347
|
+
for two custom fields:
|
|
348
|
+
|
|
349
|
+
$ sf cmdt generate record --type-name MyCMT__mdt --record-name MyRecord --label "My Record" --protected true \
|
|
350
|
+
My_Custom_Field_1=Foo My_Custom_Field_2=Bar
|
|
351
|
+
|
|
352
|
+
FLAG DESCRIPTIONS
|
|
353
|
+
-p, --protected=true|false Protect the record when it's in a managed package.
|
|
354
|
+
|
|
355
|
+
Protected records can only be accessed by code in the same managed package namespace.
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
_See code: [src/commands/cmdt/generate/record.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.0/src/commands/cmdt/generate/record.ts)_
|
|
359
|
+
|
|
360
|
+
## `sf cmdt generate records`
|
|
361
|
+
|
|
362
|
+
Generate new custom metadata type records from a CSV file.
|
|
363
|
+
|
|
364
|
+
```
|
|
365
|
+
USAGE
|
|
366
|
+
$ sf cmdt generate records -f <value> -t <value> [--json] [--flags-dir <value>] [-i <value>] [-d <value>] [-n <value>]
|
|
367
|
+
|
|
368
|
+
FLAGS
|
|
369
|
+
-d, --output-directory=<value> [default: force-app/main/default/customMetadata] Directory to store newly-created
|
|
370
|
+
custom metadata record files.
|
|
371
|
+
-f, --csv=<value> (required) Pathname of the CSV file.
|
|
372
|
+
-i, --input-directory=<value> [default: force-app/main/default/objects] Directory from which to get the custom
|
|
373
|
+
metadata type definition from.
|
|
374
|
+
-n, --name-column=<value> [default: Name] Column used to determine the name of the record.
|
|
375
|
+
-t, --type-name=<value> (required) API name of the custom metadata type to create a record for.
|
|
376
|
+
|
|
377
|
+
GLOBAL FLAGS
|
|
378
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
379
|
+
--json Format output as json.
|
|
380
|
+
|
|
381
|
+
DESCRIPTION
|
|
382
|
+
Generate new custom metadata type records from a CSV file.
|
|
383
|
+
|
|
384
|
+
The custom metadata type must already exist in your project. By default, the Name column is used to determine the
|
|
385
|
+
record name; use the --name-column flag to specify a different column.
|
|
386
|
+
|
|
387
|
+
ALIASES
|
|
388
|
+
$ sf force cmdt record insert
|
|
389
|
+
$ sf cmdt record insert
|
|
390
|
+
|
|
391
|
+
EXAMPLES
|
|
392
|
+
Generate record metadata files from values in a CSV file for the custom metadata type MyCmdt. Use 'Name' as the
|
|
393
|
+
column that specifies the record name:
|
|
394
|
+
|
|
395
|
+
$ sf cmdt generate records --csv path/to/my.csv --type-name MyCmdt
|
|
396
|
+
|
|
397
|
+
Generate record metadata files from a CSV file in the directory different from the default, and use 'PrimaryKey' as
|
|
398
|
+
the column that specifies the record name:
|
|
399
|
+
|
|
400
|
+
$ sf cmdt generate records --csv path/to/my.csv --type-name MyCmdt --input-directory path/to/my/cmdt/directory \
|
|
401
|
+
--name-column "PrimaryKey"
|
|
402
|
+
|
|
403
|
+
FLAG DESCRIPTIONS
|
|
404
|
+
-t, --type-name=<value> API name of the custom metadata type to create a record for.
|
|
405
|
+
|
|
406
|
+
The '__mdt' suffix is appended to the end of the name if it's omitted.
|
|
407
|
+
```
|
|
408
|
+
|
|
409
|
+
_See code: [src/commands/cmdt/generate/records.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.2.0/src/commands/cmdt/generate/records.ts)_
|
|
77
410
|
|
|
78
411
|
<!-- commandsstop -->
|
|
79
412
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validationUtil.js","sourceRoot":"","sources":["../../../src/shared/helpers/validationUtil.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;
|
|
1
|
+
{"version":3,"file":"validationUtil.js","sourceRoot":"","sources":["../../../src/shared/helpers/validationUtil.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAErD,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,oCAAoC,EAAE,YAAY,CAAC,CAAC;AAE3F;;;;GAIG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,IAAY,EAAE,OAAgB,EAAU,EAAE;IACxE,mGAAmG;IACnG,sFAAsF;IACtF,mCAAmC;IACnC,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;IAChE,IAAI,YAAY,CAAC,MAAM,GAAG,EAAE,IAAI,CAAC,iDAAiD,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC;QACtG,MAAM,IAAI,OAAO,CAAC,OAAO,IAAI,QAAQ,CAAC,UAAU,CAAC,sBAAsB,EAAE,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACpF,CAAC;IACD,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAEF;;;;GAIG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,QAAgB,EAAU,EAAE;IACnE,qGAAqG;IACrG,sFAAsF;IACtF,qCAAqC;IACrC,MAAM,YAAY,GAAG,QAAQ,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IACtD,IAAI,YAAY,CAAC,MAAM,GAAG,EAAE,IAAI,CAAC,mDAAmD,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC;QACxG,MAAM,IAAI,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,oBAAoB,EAAE,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;IAC3E,CAAC;IACD,OAAO,YAAY,CAAC;AACtB,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,UAAkB,EAAW,EAAE,CACvE,UAAU,CAAC,MAAM,IAAI,EAAE,IAAI,wCAAwC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;AACvF;;;;GAIG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,QAAgB,EAAU,EAAE;IACrE,sFAAsF;IACtF,IAAI,CAAC,yBAAyB,CAAC,QAAQ,CAAC,EAAE,CAAC;QACzC,MAAM,IAAI,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,0BAA0B,EAAE,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;IACjF,CAAC;IACD,OAAO,QAAQ,CAAC;AAClB,CAAC,CAAC;AAEF;;;;GAIG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,IAAY,EAAE,OAAe,EAAU,EAAE;IAC7E,IAAI,IAAI,CAAC,MAAM,GAAG,EAAE,EAAE,CAAC;QACrB,MAAM,IAAI,OAAO,CAAC,OAAO,CAAC,CAAC;IAC7B,CAAC;IACD,OAAO,IAAI,CAAC;AACd,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templates.js","sourceRoot":"","sources":["../../../src/shared/templates/templates.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,2CAA2C;
|
|
1
|
+
{"version":3,"file":"templates.js","sourceRoot":"","sources":["../../../src/shared/templates/templates.ts"],"names":[],"mappings":"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"}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-custom-metadata",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-custom-metadata",
|
|
9
|
-
"version": "3.
|
|
9
|
+
"version": "3.2.0",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@oclif/core": "^3.26.0",
|
|
13
|
-
"@salesforce/core": "^6.
|
|
14
|
-
"@salesforce/sf-plugins-core": "^
|
|
13
|
+
"@salesforce/core": "^6.7.3",
|
|
14
|
+
"@salesforce/sf-plugins-core": "^8.0.1",
|
|
15
15
|
"csv-parse": "^5.5.5",
|
|
16
16
|
"fast-xml-parser": "^4.3.6"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@oclif/plugin-command-snapshot": "^5.1.
|
|
19
|
+
"@oclif/plugin-command-snapshot": "^5.1.3",
|
|
20
20
|
"@salesforce/cli-plugins-testkit": "^5.1.11",
|
|
21
21
|
"@salesforce/dev-scripts": "^8.4.2",
|
|
22
22
|
"@salesforce/plugin-command-reference": "^3.0.71",
|
|
@@ -3287,26 +3287,6 @@
|
|
|
3287
3287
|
"url": "https://opencollective.com/eslint"
|
|
3288
3288
|
}
|
|
3289
3289
|
},
|
|
3290
|
-
"node_modules/@eslint/eslintrc/node_modules/argparse": {
|
|
3291
|
-
"version": "2.0.1",
|
|
3292
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
3293
|
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
3294
|
-
"dev": true,
|
|
3295
|
-
"license": "Python-2.0"
|
|
3296
|
-
},
|
|
3297
|
-
"node_modules/@eslint/eslintrc/node_modules/js-yaml": {
|
|
3298
|
-
"version": "4.1.0",
|
|
3299
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
3300
|
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
3301
|
-
"dev": true,
|
|
3302
|
-
"license": "MIT",
|
|
3303
|
-
"dependencies": {
|
|
3304
|
-
"argparse": "^2.0.1"
|
|
3305
|
-
},
|
|
3306
|
-
"bin": {
|
|
3307
|
-
"js-yaml": "bin/js-yaml.js"
|
|
3308
|
-
}
|
|
3309
|
-
},
|
|
3310
3290
|
"node_modules/@eslint/js": {
|
|
3311
3291
|
"version": "8.57.0",
|
|
3312
3292
|
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
|
|
@@ -3603,6 +3583,30 @@
|
|
|
3603
3583
|
"node": ">=8"
|
|
3604
3584
|
}
|
|
3605
3585
|
},
|
|
3586
|
+
"node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": {
|
|
3587
|
+
"version": "1.0.10",
|
|
3588
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
3589
|
+
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
3590
|
+
"dev": true,
|
|
3591
|
+
"license": "MIT",
|
|
3592
|
+
"dependencies": {
|
|
3593
|
+
"sprintf-js": "~1.0.2"
|
|
3594
|
+
}
|
|
3595
|
+
},
|
|
3596
|
+
"node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": {
|
|
3597
|
+
"version": "3.14.1",
|
|
3598
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
3599
|
+
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
3600
|
+
"dev": true,
|
|
3601
|
+
"license": "MIT",
|
|
3602
|
+
"dependencies": {
|
|
3603
|
+
"argparse": "^1.0.7",
|
|
3604
|
+
"esprima": "^4.0.0"
|
|
3605
|
+
},
|
|
3606
|
+
"bin": {
|
|
3607
|
+
"js-yaml": "bin/js-yaml.js"
|
|
3608
|
+
}
|
|
3609
|
+
},
|
|
3606
3610
|
"node_modules/@istanbuljs/schema": {
|
|
3607
3611
|
"version": "0.1.3",
|
|
3608
3612
|
"resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
|
|
@@ -3957,6 +3961,28 @@
|
|
|
3957
3961
|
"node": ">=18.0.0"
|
|
3958
3962
|
}
|
|
3959
3963
|
},
|
|
3964
|
+
"node_modules/@oclif/core/node_modules/argparse": {
|
|
3965
|
+
"version": "1.0.10",
|
|
3966
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
3967
|
+
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
3968
|
+
"license": "MIT",
|
|
3969
|
+
"dependencies": {
|
|
3970
|
+
"sprintf-js": "~1.0.2"
|
|
3971
|
+
}
|
|
3972
|
+
},
|
|
3973
|
+
"node_modules/@oclif/core/node_modules/js-yaml": {
|
|
3974
|
+
"version": "3.14.1",
|
|
3975
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
3976
|
+
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
3977
|
+
"license": "MIT",
|
|
3978
|
+
"dependencies": {
|
|
3979
|
+
"argparse": "^1.0.7",
|
|
3980
|
+
"esprima": "^4.0.0"
|
|
3981
|
+
},
|
|
3982
|
+
"bin": {
|
|
3983
|
+
"js-yaml": "bin/js-yaml.js"
|
|
3984
|
+
}
|
|
3985
|
+
},
|
|
3960
3986
|
"node_modules/@oclif/core/node_modules/minimatch": {
|
|
3961
3987
|
"version": "9.0.3",
|
|
3962
3988
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
|
|
@@ -3988,13 +4014,13 @@
|
|
|
3988
4014
|
}
|
|
3989
4015
|
},
|
|
3990
4016
|
"node_modules/@oclif/plugin-command-snapshot": {
|
|
3991
|
-
"version": "5.1.
|
|
3992
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.
|
|
3993
|
-
"integrity": "sha512-
|
|
4017
|
+
"version": "5.1.3",
|
|
4018
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.3.tgz",
|
|
4019
|
+
"integrity": "sha512-Qyyl+6t/HSvoUlaHTuZPJ/qRan2LngK0g0V3MvwX3nft0/zlu30bSldfu3JdH+Zt3VdReusT1B2VDjNW3rbgTQ==",
|
|
3994
4020
|
"dev": true,
|
|
3995
4021
|
"license": "MIT",
|
|
3996
4022
|
"dependencies": {
|
|
3997
|
-
"@oclif/core": "3.
|
|
4023
|
+
"@oclif/core": "3.26.0",
|
|
3998
4024
|
"@types/lodash.difference": "^4.5.9",
|
|
3999
4025
|
"chalk": "^5.3.0",
|
|
4000
4026
|
"globby": "^14.0.1",
|
|
@@ -4009,106 +4035,6 @@
|
|
|
4009
4035
|
"node": ">=18.0.0"
|
|
4010
4036
|
}
|
|
4011
4037
|
},
|
|
4012
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core": {
|
|
4013
|
-
"version": "3.21.0",
|
|
4014
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.21.0.tgz",
|
|
4015
|
-
"integrity": "sha512-xR7qGPOWtOnYmdYocSn6oEh2oTQLsPOXoj3HYGpb26V3WulwF8Cm33WPnMsSISv4ben3Rtc5i59u9O5NnuG42g==",
|
|
4016
|
-
"dev": true,
|
|
4017
|
-
"license": "MIT",
|
|
4018
|
-
"dependencies": {
|
|
4019
|
-
"@types/cli-progress": "^3.11.5",
|
|
4020
|
-
"ansi-escapes": "^4.3.2",
|
|
4021
|
-
"ansi-styles": "^4.3.0",
|
|
4022
|
-
"cardinal": "^2.1.1",
|
|
4023
|
-
"chalk": "^4.1.2",
|
|
4024
|
-
"clean-stack": "^3.0.1",
|
|
4025
|
-
"cli-progress": "^3.12.0",
|
|
4026
|
-
"color": "^4.2.3",
|
|
4027
|
-
"debug": "^4.3.4",
|
|
4028
|
-
"ejs": "^3.1.9",
|
|
4029
|
-
"get-package-type": "^0.1.0",
|
|
4030
|
-
"globby": "^11.1.0",
|
|
4031
|
-
"hyperlinker": "^1.0.0",
|
|
4032
|
-
"indent-string": "^4.0.0",
|
|
4033
|
-
"is-wsl": "^2.2.0",
|
|
4034
|
-
"js-yaml": "^3.14.1",
|
|
4035
|
-
"natural-orderby": "^2.0.3",
|
|
4036
|
-
"object-treeify": "^1.1.33",
|
|
4037
|
-
"password-prompt": "^1.1.3",
|
|
4038
|
-
"slice-ansi": "^4.0.0",
|
|
4039
|
-
"string-width": "^4.2.3",
|
|
4040
|
-
"strip-ansi": "^6.0.1",
|
|
4041
|
-
"supports-color": "^8.1.1",
|
|
4042
|
-
"supports-hyperlinks": "^2.2.0",
|
|
4043
|
-
"widest-line": "^3.1.0",
|
|
4044
|
-
"wordwrap": "^1.0.0",
|
|
4045
|
-
"wrap-ansi": "^7.0.0"
|
|
4046
|
-
},
|
|
4047
|
-
"engines": {
|
|
4048
|
-
"node": ">=18.0.0"
|
|
4049
|
-
}
|
|
4050
|
-
},
|
|
4051
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk": {
|
|
4052
|
-
"version": "4.1.2",
|
|
4053
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
4054
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
4055
|
-
"dev": true,
|
|
4056
|
-
"license": "MIT",
|
|
4057
|
-
"dependencies": {
|
|
4058
|
-
"ansi-styles": "^4.1.0",
|
|
4059
|
-
"supports-color": "^7.1.0"
|
|
4060
|
-
},
|
|
4061
|
-
"engines": {
|
|
4062
|
-
"node": ">=10"
|
|
4063
|
-
},
|
|
4064
|
-
"funding": {
|
|
4065
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
4066
|
-
}
|
|
4067
|
-
},
|
|
4068
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": {
|
|
4069
|
-
"version": "7.2.0",
|
|
4070
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
4071
|
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
4072
|
-
"dev": true,
|
|
4073
|
-
"license": "MIT",
|
|
4074
|
-
"dependencies": {
|
|
4075
|
-
"has-flag": "^4.0.0"
|
|
4076
|
-
},
|
|
4077
|
-
"engines": {
|
|
4078
|
-
"node": ">=8"
|
|
4079
|
-
}
|
|
4080
|
-
},
|
|
4081
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/globby": {
|
|
4082
|
-
"version": "11.1.0",
|
|
4083
|
-
"resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
|
|
4084
|
-
"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
|
|
4085
|
-
"dev": true,
|
|
4086
|
-
"license": "MIT",
|
|
4087
|
-
"dependencies": {
|
|
4088
|
-
"array-union": "^2.1.0",
|
|
4089
|
-
"dir-glob": "^3.0.1",
|
|
4090
|
-
"fast-glob": "^3.2.9",
|
|
4091
|
-
"ignore": "^5.2.0",
|
|
4092
|
-
"merge2": "^1.4.1",
|
|
4093
|
-
"slash": "^3.0.0"
|
|
4094
|
-
},
|
|
4095
|
-
"engines": {
|
|
4096
|
-
"node": ">=10"
|
|
4097
|
-
},
|
|
4098
|
-
"funding": {
|
|
4099
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
4100
|
-
}
|
|
4101
|
-
},
|
|
4102
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/slash": {
|
|
4103
|
-
"version": "3.0.0",
|
|
4104
|
-
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
4105
|
-
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
|
4106
|
-
"dev": true,
|
|
4107
|
-
"license": "MIT",
|
|
4108
|
-
"engines": {
|
|
4109
|
-
"node": ">=8"
|
|
4110
|
-
}
|
|
4111
|
-
},
|
|
4112
4038
|
"node_modules/@oclif/plugin-command-snapshot/node_modules/chalk": {
|
|
4113
4039
|
"version": "5.3.0",
|
|
4114
4040
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
|
@@ -4169,22 +4095,6 @@
|
|
|
4169
4095
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
4170
4096
|
}
|
|
4171
4097
|
},
|
|
4172
|
-
"node_modules/@oclif/plugin-command-snapshot/node_modules/supports-color": {
|
|
4173
|
-
"version": "8.1.1",
|
|
4174
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
4175
|
-
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
|
4176
|
-
"dev": true,
|
|
4177
|
-
"license": "MIT",
|
|
4178
|
-
"dependencies": {
|
|
4179
|
-
"has-flag": "^4.0.0"
|
|
4180
|
-
},
|
|
4181
|
-
"engines": {
|
|
4182
|
-
"node": ">=10"
|
|
4183
|
-
},
|
|
4184
|
-
"funding": {
|
|
4185
|
-
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
|
4186
|
-
}
|
|
4187
|
-
},
|
|
4188
4098
|
"node_modules/@oclif/plugin-help": {
|
|
4189
4099
|
"version": "6.0.18",
|
|
4190
4100
|
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.18.tgz",
|
|
@@ -4443,9 +4353,9 @@
|
|
|
4443
4353
|
}
|
|
4444
4354
|
},
|
|
4445
4355
|
"node_modules/@salesforce/core": {
|
|
4446
|
-
"version": "6.7.
|
|
4447
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.7.
|
|
4448
|
-
"integrity": "sha512-
|
|
4356
|
+
"version": "6.7.3",
|
|
4357
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.7.3.tgz",
|
|
4358
|
+
"integrity": "sha512-uU+PuZZGXxByhvnXLH1V3eY5P1caw401dIZ/QvhzYxoP/alPLk7dpChnZNJYH5Rw3dc/AhSPw+eg0cvUyjhP1Q==",
|
|
4449
4359
|
"license": "BSD-3-Clause",
|
|
4450
4360
|
"dependencies": {
|
|
4451
4361
|
"@salesforce/kit": "^3.0.15",
|
|
@@ -4696,15 +4606,15 @@
|
|
|
4696
4606
|
"license": "ISC"
|
|
4697
4607
|
},
|
|
4698
4608
|
"node_modules/@salesforce/sf-plugins-core": {
|
|
4699
|
-
"version": "
|
|
4700
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-
|
|
4701
|
-
"integrity": "sha512-
|
|
4609
|
+
"version": "8.0.1",
|
|
4610
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.1.tgz",
|
|
4611
|
+
"integrity": "sha512-R6SqJ1XqSINSWdZruKtC2SKGnLBh7KbFI7+qS0FYlyPU4IlWoa+AZkGwWvlczuSOumqnlhT95rNKwZTS5rJugA==",
|
|
4702
4612
|
"license": "BSD-3-Clause",
|
|
4703
4613
|
"dependencies": {
|
|
4704
4614
|
"@inquirer/confirm": "^2.0.17",
|
|
4705
4615
|
"@inquirer/password": "^1.1.16",
|
|
4706
4616
|
"@oclif/core": "^3.23.0",
|
|
4707
|
-
"@salesforce/core": "^6.
|
|
4617
|
+
"@salesforce/core": "^6.7.3",
|
|
4708
4618
|
"@salesforce/kit": "^3.0.15",
|
|
4709
4619
|
"@salesforce/ts-types": "^2.0.9",
|
|
4710
4620
|
"chalk": "^5.3.0"
|
|
@@ -6308,13 +6218,11 @@
|
|
|
6308
6218
|
"license": "MIT"
|
|
6309
6219
|
},
|
|
6310
6220
|
"node_modules/argparse": {
|
|
6311
|
-
"version": "
|
|
6312
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-
|
|
6313
|
-
"integrity": "sha512-
|
|
6314
|
-
"
|
|
6315
|
-
"
|
|
6316
|
-
"sprintf-js": "~1.0.2"
|
|
6317
|
-
}
|
|
6221
|
+
"version": "2.0.1",
|
|
6222
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
6223
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
6224
|
+
"dev": true,
|
|
6225
|
+
"license": "Python-2.0"
|
|
6318
6226
|
},
|
|
6319
6227
|
"node_modules/array-buffer-byte-length": {
|
|
6320
6228
|
"version": "1.0.0",
|
|
@@ -7653,26 +7561,6 @@
|
|
|
7653
7561
|
"typescript": ">=3"
|
|
7654
7562
|
}
|
|
7655
7563
|
},
|
|
7656
|
-
"node_modules/cosmiconfig/node_modules/argparse": {
|
|
7657
|
-
"version": "2.0.1",
|
|
7658
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
7659
|
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
7660
|
-
"dev": true,
|
|
7661
|
-
"license": "Python-2.0"
|
|
7662
|
-
},
|
|
7663
|
-
"node_modules/cosmiconfig/node_modules/js-yaml": {
|
|
7664
|
-
"version": "4.1.0",
|
|
7665
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
7666
|
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
7667
|
-
"dev": true,
|
|
7668
|
-
"license": "MIT",
|
|
7669
|
-
"dependencies": {
|
|
7670
|
-
"argparse": "^2.0.1"
|
|
7671
|
-
},
|
|
7672
|
-
"bin": {
|
|
7673
|
-
"js-yaml": "bin/js-yaml.js"
|
|
7674
|
-
}
|
|
7675
|
-
},
|
|
7676
7564
|
"node_modules/create-require": {
|
|
7677
7565
|
"version": "1.1.1",
|
|
7678
7566
|
"resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
|
|
@@ -8690,13 +8578,6 @@
|
|
|
8690
8578
|
"url": "https://opencollective.com/eslint"
|
|
8691
8579
|
}
|
|
8692
8580
|
},
|
|
8693
|
-
"node_modules/eslint/node_modules/argparse": {
|
|
8694
|
-
"version": "2.0.1",
|
|
8695
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
8696
|
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
8697
|
-
"dev": true,
|
|
8698
|
-
"license": "Python-2.0"
|
|
8699
|
-
},
|
|
8700
8581
|
"node_modules/eslint/node_modules/doctrine": {
|
|
8701
8582
|
"version": "3.0.0",
|
|
8702
8583
|
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
|
|
@@ -8740,19 +8621,6 @@
|
|
|
8740
8621
|
"node": ">=10.13.0"
|
|
8741
8622
|
}
|
|
8742
8623
|
},
|
|
8743
|
-
"node_modules/eslint/node_modules/js-yaml": {
|
|
8744
|
-
"version": "4.1.0",
|
|
8745
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
8746
|
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
8747
|
-
"dev": true,
|
|
8748
|
-
"license": "MIT",
|
|
8749
|
-
"dependencies": {
|
|
8750
|
-
"argparse": "^2.0.1"
|
|
8751
|
-
},
|
|
8752
|
-
"bin": {
|
|
8753
|
-
"js-yaml": "bin/js-yaml.js"
|
|
8754
|
-
}
|
|
8755
|
-
},
|
|
8756
8624
|
"node_modules/eslint/node_modules/locate-path": {
|
|
8757
8625
|
"version": "6.0.0",
|
|
8758
8626
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
|
@@ -11044,13 +10912,13 @@
|
|
|
11044
10912
|
"license": "MIT"
|
|
11045
10913
|
},
|
|
11046
10914
|
"node_modules/js-yaml": {
|
|
11047
|
-
"version": "
|
|
11048
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-
|
|
11049
|
-
"integrity": "sha512-
|
|
10915
|
+
"version": "4.1.0",
|
|
10916
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
10917
|
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
10918
|
+
"dev": true,
|
|
11050
10919
|
"license": "MIT",
|
|
11051
10920
|
"dependencies": {
|
|
11052
|
-
"argparse": "^
|
|
11053
|
-
"esprima": "^4.0.0"
|
|
10921
|
+
"argparse": "^2.0.1"
|
|
11054
10922
|
},
|
|
11055
10923
|
"bin": {
|
|
11056
10924
|
"js-yaml": "bin/js-yaml.js"
|
|
@@ -11580,6 +11448,30 @@
|
|
|
11580
11448
|
"node": ">=6"
|
|
11581
11449
|
}
|
|
11582
11450
|
},
|
|
11451
|
+
"node_modules/load-yaml-file/node_modules/argparse": {
|
|
11452
|
+
"version": "1.0.10",
|
|
11453
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
11454
|
+
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
11455
|
+
"dev": true,
|
|
11456
|
+
"license": "MIT",
|
|
11457
|
+
"dependencies": {
|
|
11458
|
+
"sprintf-js": "~1.0.2"
|
|
11459
|
+
}
|
|
11460
|
+
},
|
|
11461
|
+
"node_modules/load-yaml-file/node_modules/js-yaml": {
|
|
11462
|
+
"version": "3.14.1",
|
|
11463
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
11464
|
+
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
11465
|
+
"dev": true,
|
|
11466
|
+
"license": "MIT",
|
|
11467
|
+
"dependencies": {
|
|
11468
|
+
"argparse": "^1.0.7",
|
|
11469
|
+
"esprima": "^4.0.0"
|
|
11470
|
+
},
|
|
11471
|
+
"bin": {
|
|
11472
|
+
"js-yaml": "bin/js-yaml.js"
|
|
11473
|
+
}
|
|
11474
|
+
},
|
|
11583
11475
|
"node_modules/load-yaml-file/node_modules/pify": {
|
|
11584
11476
|
"version": "4.0.1",
|
|
11585
11477
|
"resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
|
|
@@ -12555,13 +12447,6 @@
|
|
|
12555
12447
|
"url": "https://opencollective.com/mochajs"
|
|
12556
12448
|
}
|
|
12557
12449
|
},
|
|
12558
|
-
"node_modules/mocha/node_modules/argparse": {
|
|
12559
|
-
"version": "2.0.1",
|
|
12560
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
12561
|
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
12562
|
-
"dev": true,
|
|
12563
|
-
"license": "Python-2.0"
|
|
12564
|
-
},
|
|
12565
12450
|
"node_modules/mocha/node_modules/diff": {
|
|
12566
12451
|
"version": "5.0.0",
|
|
12567
12452
|
"resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
|
|
@@ -12634,19 +12519,6 @@
|
|
|
12634
12519
|
"node": "*"
|
|
12635
12520
|
}
|
|
12636
12521
|
},
|
|
12637
|
-
"node_modules/mocha/node_modules/js-yaml": {
|
|
12638
|
-
"version": "4.1.0",
|
|
12639
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
12640
|
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
12641
|
-
"dev": true,
|
|
12642
|
-
"license": "MIT",
|
|
12643
|
-
"dependencies": {
|
|
12644
|
-
"argparse": "^2.0.1"
|
|
12645
|
-
},
|
|
12646
|
-
"bin": {
|
|
12647
|
-
"js-yaml": "bin/js-yaml.js"
|
|
12648
|
-
}
|
|
12649
|
-
},
|
|
12650
12522
|
"node_modules/mocha/node_modules/locate-path": {
|
|
12651
12523
|
"version": "6.0.0",
|
|
12652
12524
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
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", "@oclif/core@^3.26.0":
|
|
1748
|
+
"@oclif/core@3.26.0", "@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", "@oclif/core@^3.26.0":
|
|
1782
1749
|
version "3.26.0"
|
|
1783
1750
|
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.26.0.tgz#959d5e9f13f4ad6a4e98235ad125189df9ee4279"
|
|
1784
1751
|
integrity sha512-TpMdfD4tfA2tVVbd4l0PrP02o5KoUXYmudBbTC7CeguDo/GLoprw4uL8cMsaVA26+cbcy7WYtOEydQiHVtJixA==
|
|
@@ -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.3":
|
|
1783
|
+
version "5.1.3"
|
|
1784
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.3.tgz#f61c8910ef2d9566042a25f6305c3d311d24872d"
|
|
1785
|
+
integrity sha512-Qyyl+6t/HSvoUlaHTuZPJ/qRan2LngK0g0V3MvwX3nft0/zlu30bSldfu3JdH+Zt3VdReusT1B2VDjNW3rbgTQ==
|
|
1819
1786
|
dependencies:
|
|
1820
|
-
"@oclif/core" "3.
|
|
1787
|
+
"@oclif/core" "3.26.0"
|
|
1821
1788
|
"@types/lodash.difference" "^4.5.9"
|
|
1822
1789
|
chalk "^5.3.0"
|
|
1823
1790
|
globby "^14.0.1"
|
|
@@ -1976,10 +1943,10 @@
|
|
|
1976
1943
|
strip-ansi "6.0.1"
|
|
1977
1944
|
ts-retry-promise "^0.8.0"
|
|
1978
1945
|
|
|
1979
|
-
"@salesforce/core@^6.4.1", "@salesforce/core@^6.
|
|
1980
|
-
version "6.7.
|
|
1981
|
-
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.7.
|
|
1982
|
-
integrity sha512-
|
|
1946
|
+
"@salesforce/core@^6.4.1", "@salesforce/core@^6.7.0", "@salesforce/core@^6.7.1", "@salesforce/core@^6.7.3":
|
|
1947
|
+
version "6.7.3"
|
|
1948
|
+
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.7.3.tgz#5d8f30c40ac3cebb898c8e845fe9a067bc729268"
|
|
1949
|
+
integrity sha512-uU+PuZZGXxByhvnXLH1V3eY5P1caw401dIZ/QvhzYxoP/alPLk7dpChnZNJYH5Rw3dc/AhSPw+eg0cvUyjhP1Q==
|
|
1983
1950
|
dependencies:
|
|
1984
1951
|
"@salesforce/kit" "^3.0.15"
|
|
1985
1952
|
"@salesforce/schemas" "^1.6.1"
|
|
@@ -2082,15 +2049,15 @@
|
|
|
2082
2049
|
chalk "^4"
|
|
2083
2050
|
inquirer "^8.2.5"
|
|
2084
2051
|
|
|
2085
|
-
"@salesforce/sf-plugins-core@^
|
|
2086
|
-
version "
|
|
2087
|
-
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-
|
|
2088
|
-
integrity sha512-
|
|
2052
|
+
"@salesforce/sf-plugins-core@^8.0.1":
|
|
2053
|
+
version "8.0.1"
|
|
2054
|
+
resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-8.0.1.tgz#f155cddfd7695aab0d8264848b634b2a91cdbf2c"
|
|
2055
|
+
integrity sha512-R6SqJ1XqSINSWdZruKtC2SKGnLBh7KbFI7+qS0FYlyPU4IlWoa+AZkGwWvlczuSOumqnlhT95rNKwZTS5rJugA==
|
|
2089
2056
|
dependencies:
|
|
2090
2057
|
"@inquirer/confirm" "^2.0.17"
|
|
2091
2058
|
"@inquirer/password" "^1.1.16"
|
|
2092
2059
|
"@oclif/core" "^3.23.0"
|
|
2093
|
-
"@salesforce/core" "^6.
|
|
2060
|
+
"@salesforce/core" "^6.7.3"
|
|
2094
2061
|
"@salesforce/kit" "^3.0.15"
|
|
2095
2062
|
"@salesforce/ts-types" "^2.0.9"
|
|
2096
2063
|
chalk "^5.3.0"
|
package/oclif.manifest.json
CHANGED
|
@@ -21,6 +21,14 @@
|
|
|
21
21
|
"allowNo": false,
|
|
22
22
|
"type": "boolean"
|
|
23
23
|
},
|
|
24
|
+
"flags-dir": {
|
|
25
|
+
"helpGroup": "GLOBAL",
|
|
26
|
+
"name": "flags-dir",
|
|
27
|
+
"summary": "Import flag values from a directory.",
|
|
28
|
+
"hasDynamicHelp": false,
|
|
29
|
+
"multiple": false,
|
|
30
|
+
"type": "option"
|
|
31
|
+
},
|
|
24
32
|
"loglevel": {
|
|
25
33
|
"deprecated": {
|
|
26
34
|
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
@@ -200,6 +208,14 @@
|
|
|
200
208
|
"allowNo": false,
|
|
201
209
|
"type": "boolean"
|
|
202
210
|
},
|
|
211
|
+
"flags-dir": {
|
|
212
|
+
"helpGroup": "GLOBAL",
|
|
213
|
+
"name": "flags-dir",
|
|
214
|
+
"summary": "Import flag values from a directory.",
|
|
215
|
+
"hasDynamicHelp": false,
|
|
216
|
+
"multiple": false,
|
|
217
|
+
"type": "option"
|
|
218
|
+
},
|
|
203
219
|
"target-org": {
|
|
204
220
|
"aliases": [
|
|
205
221
|
"targetusername",
|
|
@@ -385,6 +401,14 @@
|
|
|
385
401
|
"allowNo": false,
|
|
386
402
|
"type": "boolean"
|
|
387
403
|
},
|
|
404
|
+
"flags-dir": {
|
|
405
|
+
"helpGroup": "GLOBAL",
|
|
406
|
+
"name": "flags-dir",
|
|
407
|
+
"summary": "Import flag values from a directory.",
|
|
408
|
+
"hasDynamicHelp": false,
|
|
409
|
+
"multiple": false,
|
|
410
|
+
"type": "option"
|
|
411
|
+
},
|
|
388
412
|
"loglevel": {
|
|
389
413
|
"deprecated": {
|
|
390
414
|
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
@@ -514,6 +538,14 @@
|
|
|
514
538
|
"allowNo": false,
|
|
515
539
|
"type": "boolean"
|
|
516
540
|
},
|
|
541
|
+
"flags-dir": {
|
|
542
|
+
"helpGroup": "GLOBAL",
|
|
543
|
+
"name": "flags-dir",
|
|
544
|
+
"summary": "Import flag values from a directory.",
|
|
545
|
+
"hasDynamicHelp": false,
|
|
546
|
+
"multiple": false,
|
|
547
|
+
"type": "option"
|
|
548
|
+
},
|
|
517
549
|
"loglevel": {
|
|
518
550
|
"deprecated": {
|
|
519
551
|
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
@@ -676,6 +708,14 @@
|
|
|
676
708
|
"allowNo": false,
|
|
677
709
|
"type": "boolean"
|
|
678
710
|
},
|
|
711
|
+
"flags-dir": {
|
|
712
|
+
"helpGroup": "GLOBAL",
|
|
713
|
+
"name": "flags-dir",
|
|
714
|
+
"summary": "Import flag values from a directory.",
|
|
715
|
+
"hasDynamicHelp": false,
|
|
716
|
+
"multiple": false,
|
|
717
|
+
"type": "option"
|
|
718
|
+
},
|
|
679
719
|
"loglevel": {
|
|
680
720
|
"deprecated": {
|
|
681
721
|
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
@@ -810,5 +850,5 @@
|
|
|
810
850
|
]
|
|
811
851
|
}
|
|
812
852
|
},
|
|
813
|
-
"version": "3.
|
|
853
|
+
"version": "3.2.0"
|
|
814
854
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-custom-metadata",
|
|
3
3
|
"description": "Tools for working with custom metadata types and their records.",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.2.0",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Carolyn Grabill",
|
|
@@ -43,13 +43,13 @@
|
|
|
43
43
|
"bugs": "https://github.com/salesforcecli/plugin-custom-metadata/issues",
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@oclif/core": "^3.26.0",
|
|
46
|
-
"@salesforce/core": "^6.
|
|
47
|
-
"@salesforce/sf-plugins-core": "^
|
|
46
|
+
"@salesforce/core": "^6.7.3",
|
|
47
|
+
"@salesforce/sf-plugins-core": "^8.0.1",
|
|
48
48
|
"csv-parse": "^5.5.5",
|
|
49
49
|
"fast-xml-parser": "^4.3.6"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@oclif/plugin-command-snapshot": "^5.1.
|
|
52
|
+
"@oclif/plugin-command-snapshot": "^5.1.3",
|
|
53
53
|
"@salesforce/cli-plugins-testkit": "^5.1.11",
|
|
54
54
|
"@salesforce/dev-scripts": "^8.4.2",
|
|
55
55
|
"@salesforce/plugin-command-reference": "^3.0.71",
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
"type": "module",
|
|
243
243
|
"author": "Salesforce",
|
|
244
244
|
"sfdx": {
|
|
245
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.
|
|
246
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.
|
|
245
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.2.0.crt",
|
|
246
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.2.0.sig"
|
|
247
247
|
}
|
|
248
248
|
}
|