@salesforce/plugin-custom-metadata 3.1.18 → 3.1.20

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 CHANGED
@@ -71,336 +71,9 @@ sfdx plugins
71
71
 
72
72
  <!-- commands -->
73
73
 
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)
74
+ # Command Topics
79
75
 
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] [-p <value>] [-s
88
- <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
- --json Format output as json.
102
-
103
- DESCRIPTION
104
- Generate a field for a custom metadata type based on the provided field type.
105
-
106
- Similar to a custom object, a custom metadata type has a list of custom fields that represent aspects of the metadata.
107
-
108
- This command creates a metadata file that describes the new custom metadata type field. By default, the file is
109
- created in a "fields" directory in the current directory. Use the --output-directory to generate the file in the
110
- directory that contains the custom metadata type metdata files, such as "force-app/main/default/objects/MyCmdt__mdt"
111
- for the custom metadata type called MyCmdt.
112
-
113
- ALIASES
114
- $ sf force cmdt field create
115
- $ sf cmdt field create
116
-
117
- EXAMPLES
118
- Generate a metadata file for a custom checkbox field and add the file to the MyCmdt__mdt/fields directory:
119
-
120
- $ sf cmdt generate field --name MyCheckboxField --type Checkbox --output-directory \
121
- force-app/main/default/objects/MyCmdt__mdt
122
-
123
- Generate a metadata file for a custom picklist field and add a few values:
124
-
125
- $ sf cmdt generate field --name MyPicklistField --type Picklist --picklist-values A --picklist-values B \
126
- --picklist-values C --output-directory force-app/main/default/objects/MyCmdt__mdt
127
-
128
- Generate a metadata file for a custom number field and specify 2 decimal places:
129
-
130
- $ sf cmdt generate field --name MyNumberField --type Number --decimal-places 2 --output-directory \
131
- force-app/main/default/objects/MyCmdt__mdt
132
-
133
- FLAG DESCRIPTIONS
134
- -d, --output-directory=<value> Directory to store newly-created field definition files.
135
-
136
- New files are automatically created in the "fields" directory. The location can be an absolute path or relative to
137
- the current working directory. The default is the current directory.
138
-
139
- -f, --type=Checkbox|Date|DateTime|Email|Number|Percent|Phone|Picklist|Text|TextArea|LongTextArea|Url
140
-
141
- Type of the field.
142
-
143
- You can't use this command to create a custom metadata type field of type "Metadata Relationship". Use the
144
- Salesforce Setup UI instead.
145
-
146
- -s, --decimal-places=<value> Number of decimal places to use for number or percent fields.
147
-
148
- The value must be greater than or equal to zero. Default value is 0.
149
- ```
150
-
151
- _See code: [src/commands/cmdt/generate/field.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.1.18/src/commands/cmdt/generate/field.ts)_
152
-
153
- ## `sf cmdt generate fromorg`
154
-
155
- Generate a custom metadata type and all its records from a Salesforce object.
156
-
157
- ```
158
- USAGE
159
- $ sf cmdt generate fromorg -o <value> -n <value> -s <value> [--json] [--api-version <value>] [-l <value>] [-p <value>]
160
- [-v PackageProtected|Protected|Public] [-i] [-d <value>] [-r <value>]
161
-
162
- FLAGS
163
- -d, --type-output-directory=<value> [default: force-app/main/default/objects] Directory to store newly-created custom
164
- metadata type files.
165
- -i, --ignore-unsupported Ignore unsupported field types.
166
- -l, --label=<value> Label for the custom metadata type.
167
- -n, --dev-name=<value> (required) Name of the custom metadata type.
168
- -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
169
- configuration variable is already set.
170
- -p, --plural-label=<value> Plural version of the label value; if blank, uses label.
171
- -r, --records-output-dir=<value> [default: force-app/main/default/customMetadata] Directory to store newly-created
172
- custom metadata record files.
173
- -s, --sobject=<value> (required) API name of the source Salesforce object used to generate the custom
174
- metadata type.
175
- -v, --visibility=<option> [default: Public] Who can see the custom metadata type.
176
- <options: PackageProtected|Protected|Public>
177
- --api-version=<value> Override the api version used for api requests made by this command
178
-
179
- GLOBAL FLAGS
180
- --json Format output as json.
181
-
182
- DESCRIPTION
183
- Generate a custom metadata type and all its records from a Salesforce object.
184
-
185
- Use this command to migrate existing custom objects or custom settings in an org to custom metadata types. If a field
186
- of the Salesforce object is of an unsupported type, the field type is automatically converted to text. Run "sf cmdt
187
- generate field --help" to see the list of supported cmdt field types, listed in the --type flag summary. Use the
188
- --ignore-unsupported to ignore these fields.
189
-
190
- This command creates the metadata files that describe the new custom metadata type and its fields in the
191
- "force-app/main/default/objects/TypeName__mdt" directory by default, where "TypeName" is the value of the required
192
- --dev-name flag. Use --type-output-directory to create them in a different directory.
193
-
194
- ALIASES
195
- $ sf force cmdt generate
196
-
197
- EXAMPLES
198
- Generate a custom metadata type from a custom object called MySourceObject__c in your default org:
199
-
200
- $ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c
201
-
202
- Generate a custom metadata type from a custom object in an org with alias my-scratch-org; ignore unsupported field
203
- types instead of converting them to text:
204
-
205
- $ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c --ignore-unsupported --target-org \
206
- my-scratch-org
207
-
208
- Generate a protected custom metadata type from a custom object:
209
-
210
- $ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c --visibility Protected
211
-
212
- Generate a protected custom metadata type from a custom setting with a specific singular and plural label:
213
-
214
- $ sf cmdt generate fromorg --dev-name MyCMDT --label "My CMDT" --plural-label "My CMDTs" --sobject \
215
- MySourceSetting__c --visibility Protected
216
-
217
- Generate a custom metadata type and put the resulting metadata files in the specified directory:
218
-
219
- $ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c --type-output-directory \
220
- path/to/my/cmdt/directory
221
-
222
- Generate a custom metadata type and put the resulting record metadata file(s) in the specified directory:
223
-
224
- $ sf cmdt generate fromorg --dev-name MyCMDT --sobject MySourceObject__c --records-output-dir \
225
- path/to/my/cmdt/record/directory
226
-
227
- FLAG DESCRIPTIONS
228
- -i, --ignore-unsupported Ignore unsupported field types.
229
-
230
- In this context, "ignore" means that the fields aren't created. The default behavior is to create fields of type
231
- text and convert the field values to text.
232
-
233
- -v, --visibility=PackageProtected|Protected|Public Who can see the custom metadata type.
234
-
235
- For more information on what each option means, see this topic in Salesforce Help:
236
- https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.
237
- ```
238
-
239
- _See code: [src/commands/cmdt/generate/fromorg.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.1.18/src/commands/cmdt/generate/fromorg.ts)_
240
-
241
- ## `sf cmdt generate object`
242
-
243
- Generate a new custom metadata type in the current project.
244
-
245
- ```
246
- USAGE
247
- $ sf cmdt generate object -n <value> [--json] [-l <value>] [-p <value>] [-v PackageProtected|Protected|Public] [-d
248
- <value>]
249
-
250
- FLAGS
251
- -d, --output-directory=<value> Directory to store the newly-created custom metadata type files
252
- -l, --label=<value> Label for the custom metadata type.
253
- -n, --type-name=<value> (required) Unique object name for the custom metadata type.
254
- -p, --plural-label=<value> Plural version of the label value; if blank, uses label.
255
- -v, --visibility=<option> [default: Public] Who can see the custom metadata type.
256
- <options: PackageProtected|Protected|Public>
257
-
258
- GLOBAL FLAGS
259
- --json Format output as json.
260
-
261
- DESCRIPTION
262
- Generate a new custom metadata type in the current project.
263
-
264
- This command creates a metadata file that describes the new custom metadata type. By default, the file is created in
265
- the MyCustomType__mdt directory in the current directory, where MyCustomType is the value of the required --type-name
266
- flag. Use the --output-directory to generate the file in a package directory with other custom metadata types, such as
267
- "force-app/main/default/objects".
268
-
269
- ALIASES
270
- $ sf force cmdt create
271
- $ sf cmdt create
272
-
273
- EXAMPLES
274
- Generate a custom metadata type with developer name 'MyCustomType'; this name is also used as the label:
275
-
276
- $ sf cmdt generate object --type-name MyCustomType
277
-
278
- Generate a protected custom metadata type with a specific label:
279
-
280
- $ sf cmdt generate object --type-name MyCustomType --label "Custom Type" --plural-label "Custom Types" \
281
- --visibility Protected
282
-
283
- FLAG DESCRIPTIONS
284
- -d, --output-directory=<value> Directory to store the newly-created custom metadata type files
285
-
286
- The location can be an absolute path or relative to the current working directory. The default is the current
287
- directory.
288
-
289
- -n, --type-name=<value> Unique object name for the custom metadata type.
290
-
291
- The name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin
292
- with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores.
293
-
294
- -v, --visibility=PackageProtected|Protected|Public Who can see the custom metadata type.
295
-
296
- For more information on what each option means, see this topic in Salesforce Help:
297
- https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.
298
- ```
299
-
300
- _See code: [src/commands/cmdt/generate/object.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.1.18/src/commands/cmdt/generate/object.ts)_
301
-
302
- ## `sf cmdt generate record`
303
-
304
- Generate a new record for a given custom metadata type in the current project.
305
-
306
- ```
307
- USAGE
308
- $ sf cmdt generate record -t <value> -n <value> [--json] [-l <value>] [-p true|false] [-i <value>] [-d <value>]
309
-
310
- FLAGS
311
- -d, --output-directory=<value> [default: force-app/main/default/customMetadata] Directory to store newly-created
312
- custom metadata record files.
313
- -i, --input-directory=<value> [default: force-app/main/default/objects] Directory from which to get the custom
314
- metadata type definition from.
315
- -l, --label=<value> Label for the new record.
316
- -n, --record-name=<value> (required) Name of the new record.
317
- -p, --protected=<option> [default: false] Protect the record when it's in a managed package.
318
- <options: true|false>
319
- -t, --type-name=<value> (required) API name of the custom metadata type to create a record for; must end in
320
- "__mdt".
321
-
322
- GLOBAL FLAGS
323
- --json Format output as json.
324
-
325
- DESCRIPTION
326
- Generate a new record for a given custom metadata type in the current project.
327
-
328
- The custom metadata type must already exist in your project. You must specify a name for the new record. Use
329
- name=value pairs to specify the values for the fields, such as MyTextField="some text here" or MyNumberField=32.
330
-
331
- ALIASES
332
- $ sf force cmdt record create
333
- $ sf cmdt record create
334
-
335
- EXAMPLES
336
- Create a record metadata file for custom metadata type 'MyCMT' with specified values for two custom fields:
337
-
338
- $ sf cmdt generate record --type-name MyCMT__mdt --record-name MyRecord My_Custom_Field_1=Foo \
339
- My_Custom_Field_2=Bar
340
-
341
- Create a protected record metadata file for custom metadata type 'MyCMT' with a specific label and values specified
342
- for two custom fields:
343
-
344
- $ sf cmdt generate record --type-name MyCMT__mdt --record-name MyRecord --label "My Record" --protected true \
345
- My_Custom_Field_1=Foo My_Custom_Field_2=Bar
346
-
347
- FLAG DESCRIPTIONS
348
- -p, --protected=true|false Protect the record when it's in a managed package.
349
-
350
- Protected records can only be accessed by code in the same managed package namespace.
351
- ```
352
-
353
- _See code: [src/commands/cmdt/generate/record.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.1.18/src/commands/cmdt/generate/record.ts)_
354
-
355
- ## `sf cmdt generate records`
356
-
357
- Generate new custom metadata type records from a CSV file.
358
-
359
- ```
360
- USAGE
361
- $ sf cmdt generate records -f <value> -t <value> [--json] [-i <value>] [-d <value>] [-n <value>]
362
-
363
- FLAGS
364
- -d, --output-directory=<value> [default: force-app/main/default/customMetadata] Directory to store newly-created
365
- custom metadata record files.
366
- -f, --csv=<value> (required) Pathname of the CSV file.
367
- -i, --input-directory=<value> [default: force-app/main/default/objects] Directory from which to get the custom
368
- metadata type definition from.
369
- -n, --name-column=<value> [default: Name] Column used to determine the name of the record.
370
- -t, --type-name=<value> (required) API name of the custom metadata type to create a record for.
371
-
372
- GLOBAL FLAGS
373
- --json Format output as json.
374
-
375
- DESCRIPTION
376
- Generate new custom metadata type records from a CSV file.
377
-
378
- The custom metadata type must already exist in your project. By default, the Name column is used to determine the
379
- record name; use the --name-column flag to specify a different column.
380
-
381
- ALIASES
382
- $ sf force cmdt record insert
383
- $ sf cmdt record insert
384
-
385
- EXAMPLES
386
- Generate record metadata files from values in a CSV file for the custom metadata type MyCmdt. Use 'Name' as the
387
- column that specifies the record name:
388
-
389
- $ sf cmdt generate records --csv path/to/my.csv --type-name MyCmdt
390
-
391
- Generate record metadata files from a CSV file in the directory different from the default, and use 'PrimaryKey' as
392
- the column that specifies the record name:
393
-
394
- $ sf cmdt generate records --csv path/to/my.csv --type-name MyCmdt --input-directory path/to/my/cmdt/directory \
395
- --name-column "PrimaryKey"
396
-
397
- FLAG DESCRIPTIONS
398
- -t, --type-name=<value> API name of the custom metadata type to create a record for.
399
-
400
- The '__mdt' suffix is appended to the end of the name if it's omitted.
401
- ```
402
-
403
- _See code: [src/commands/cmdt/generate/records.ts](https://github.com/salesforcecli/plugin-custom-metadata/blob/3.1.18/src/commands/cmdt/generate/records.ts)_
76
+ - [`sf cmdt`](docs/cmdt.md) - Generate custom metadata types and their records.
404
77
 
405
78
  <!-- commandsstop -->
406
79
 
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-custom-metadata",
3
- "version": "3.1.18",
3
+ "version": "3.1.20",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/plugin-custom-metadata",
9
- "version": "3.1.18",
9
+ "version": "3.1.20",
10
10
  "license": "BSD-3-Clause",
11
11
  "dependencies": {
12
- "@oclif/core": "^3.19.2",
12
+ "@oclif/core": "^3.26.0",
13
13
  "@salesforce/core": "^6.5.1",
14
- "@salesforce/sf-plugins-core": "^7.1.15",
14
+ "@salesforce/sf-plugins-core": "^7.1.16",
15
15
  "csv-parse": "^5.5.5",
16
16
  "fast-xml-parser": "^4.3.6"
17
17
  },
@@ -19,7 +19,7 @@
19
19
  "@oclif/plugin-command-snapshot": "^5.1.1",
20
20
  "@salesforce/cli-plugins-testkit": "^5.1.11",
21
21
  "@salesforce/dev-scripts": "^8.4.2",
22
- "@salesforce/plugin-command-reference": "^3.0.70",
22
+ "@salesforce/plugin-command-reference": "^3.0.71",
23
23
  "eslint-plugin-sf-plugin": "^1.17.4",
24
24
  "jsforce": "^2.0.0-beta.29",
25
25
  "oclif": "^4.5.5",
@@ -3919,9 +3919,9 @@
3919
3919
  }
3920
3920
  },
3921
3921
  "node_modules/@oclif/core": {
3922
- "version": "3.25.2",
3923
- "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.25.2.tgz",
3924
- "integrity": "sha512-OkW/cNa/3DhoCz2YlSpymVe8DXqkoRaLY4SPTVqNVzR4R1dFBE5KoCtuwKwnhxYLCRCqaViPgRnB5K26f0MnjA==",
3922
+ "version": "3.26.0",
3923
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.0.tgz",
3924
+ "integrity": "sha512-TpMdfD4tfA2tVVbd4l0PrP02o5KoUXYmudBbTC7CeguDo/GLoprw4uL8cMsaVA26+cbcy7WYtOEydQiHVtJixA==",
3925
3925
  "license": "MIT",
3926
3926
  "dependencies": {
3927
3927
  "@types/cli-progress": "^3.11.5",
@@ -4644,14 +4644,14 @@
4644
4644
  }
4645
4645
  },
4646
4646
  "node_modules/@salesforce/plugin-command-reference": {
4647
- "version": "3.0.70",
4648
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.70.tgz",
4649
- "integrity": "sha512-MwgdWn5OzY3d+6PgW/aopYqnGmeLvs/7JXS5VNOO63bnYYfhwCwzoJL9gRkL8v+PWeU6wZhEDITNPOM6x7K+YA==",
4647
+ "version": "3.0.71",
4648
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.71.tgz",
4649
+ "integrity": "sha512-yl9dE8ETC5EgSrFoKjQFDnkZI8/pKYIduorYg8QcB12h6vUyphalpCnLRQ7k1utP0DSBfyjrXGT/OolZbqYhiQ==",
4650
4650
  "dev": true,
4651
4651
  "license": "BSD-3-Clause",
4652
4652
  "dependencies": {
4653
4653
  "@oclif/core": "^3.20.0",
4654
- "@salesforce/core": "^6.5.3",
4654
+ "@salesforce/core": "^6.7.1",
4655
4655
  "@salesforce/kit": "^3.0.15",
4656
4656
  "@salesforce/sf-plugins-core": "^5.0.13",
4657
4657
  "@salesforce/ts-types": "^2.0.9",
@@ -4696,9 +4696,9 @@
4696
4696
  "license": "ISC"
4697
4697
  },
4698
4698
  "node_modules/@salesforce/sf-plugins-core": {
4699
- "version": "7.1.15",
4700
- "resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.15.tgz",
4701
- "integrity": "sha512-dQSSIHEpeFIadkWqZE24068m01vy31hVJdGWYvgscTnNrR30jIC5fXRevYvGG0l+8vVEJkCYYnJFQabUjSw3Eg==",
4699
+ "version": "7.1.16",
4700
+ "resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz",
4701
+ "integrity": "sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==",
4702
4702
  "license": "BSD-3-Clause",
4703
4703
  "dependencies": {
4704
4704
  "@inquirer/confirm": "^2.0.17",
package/oclif.lock CHANGED
@@ -1778,10 +1778,10 @@
1778
1778
  wordwrap "^1.0.0"
1779
1779
  wrap-ansi "^7.0.0"
1780
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":
1782
- version "3.25.2"
1783
- resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.25.2.tgz#a26d56abe5686c57c1e973957777bd2ae324e973"
1784
- integrity sha512-OkW/cNa/3DhoCz2YlSpymVe8DXqkoRaLY4SPTVqNVzR4R1dFBE5KoCtuwKwnhxYLCRCqaViPgRnB5K26f0MnjA==
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":
1782
+ version "3.26.0"
1783
+ resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.26.0.tgz#959d5e9f13f4ad6a4e98235ad125189df9ee4279"
1784
+ integrity sha512-TpMdfD4tfA2tVVbd4l0PrP02o5KoUXYmudBbTC7CeguDo/GLoprw4uL8cMsaVA26+cbcy7WYtOEydQiHVtJixA==
1785
1785
  dependencies:
1786
1786
  "@types/cli-progress" "^3.11.5"
1787
1787
  ansi-escapes "^4.3.2"
@@ -1976,7 +1976,7 @@
1976
1976
  strip-ansi "6.0.1"
1977
1977
  ts-retry-promise "^0.8.0"
1978
1978
 
1979
- "@salesforce/core@^6.4.1", "@salesforce/core@^6.5.1", "@salesforce/core@^6.5.3", "@salesforce/core@^6.6.0", "@salesforce/core@^6.7.0", "@salesforce/core@^6.7.1":
1979
+ "@salesforce/core@^6.4.1", "@salesforce/core@^6.5.1", "@salesforce/core@^6.6.0", "@salesforce/core@^6.7.0", "@salesforce/core@^6.7.1":
1980
1980
  version "6.7.1"
1981
1981
  resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.7.1.tgz#4dcfb62bc3d488462ea6e9438ff092cf202c1696"
1982
1982
  integrity sha512-SxscNdH2l+K5LmqH9XrosX+fjhPkMLN3hsG50sWQi7DbaI1Z0FGAKVOmVe6fZZsUsVNThKvZ+159IwwtxHWY6w==
@@ -2045,13 +2045,13 @@
2045
2045
  "@salesforce/ts-types" "^2.0.9"
2046
2046
  tslib "^2.6.2"
2047
2047
 
2048
- "@salesforce/plugin-command-reference@^3.0.70":
2049
- version "3.0.70"
2050
- resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.70.tgz#0573fcdaf86679a98e0e8088ed75f2e7d0388639"
2051
- integrity sha512-MwgdWn5OzY3d+6PgW/aopYqnGmeLvs/7JXS5VNOO63bnYYfhwCwzoJL9gRkL8v+PWeU6wZhEDITNPOM6x7K+YA==
2048
+ "@salesforce/plugin-command-reference@^3.0.71":
2049
+ version "3.0.71"
2050
+ resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.71.tgz#7645a50e4858b8bed1cf6fd286ffe37a495d2662"
2051
+ integrity sha512-yl9dE8ETC5EgSrFoKjQFDnkZI8/pKYIduorYg8QcB12h6vUyphalpCnLRQ7k1utP0DSBfyjrXGT/OolZbqYhiQ==
2052
2052
  dependencies:
2053
2053
  "@oclif/core" "^3.20.0"
2054
- "@salesforce/core" "^6.5.3"
2054
+ "@salesforce/core" "^6.7.1"
2055
2055
  "@salesforce/kit" "^3.0.15"
2056
2056
  "@salesforce/sf-plugins-core" "^5.0.13"
2057
2057
  "@salesforce/ts-types" "^2.0.9"
@@ -2082,10 +2082,10 @@
2082
2082
  chalk "^4"
2083
2083
  inquirer "^8.2.5"
2084
2084
 
2085
- "@salesforce/sf-plugins-core@^7.1.15":
2086
- version "7.1.15"
2087
- resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.15.tgz#4d6033d56d78cf6046abfce96c119a8a60ee7c07"
2088
- integrity sha512-dQSSIHEpeFIadkWqZE24068m01vy31hVJdGWYvgscTnNrR30jIC5fXRevYvGG0l+8vVEJkCYYnJFQabUjSw3Eg==
2085
+ "@salesforce/sf-plugins-core@^7.1.16":
2086
+ version "7.1.16"
2087
+ resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.16.tgz#a68673560f01421ac18a0bc1d4687abc35e11234"
2088
+ integrity sha512-v135A7TG1n97eFoh0j96kbHKbivXbbd7M5url3L0I5lJsCGGF+mMSL2Tpm8FNUN8DCLOGkvymR1s2QmNzMR7Tw==
2089
2089
  dependencies:
2090
2090
  "@inquirer/confirm" "^2.0.17"
2091
2091
  "@inquirer/password" "^1.1.16"
@@ -810,5 +810,5 @@
810
810
  ]
811
811
  }
812
812
  },
813
- "version": "3.1.18"
813
+ "version": "3.1.20"
814
814
  }
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.1.18",
4
+ "version": "3.1.20",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Carolyn Grabill",
@@ -42,9 +42,9 @@
42
42
  ],
43
43
  "bugs": "https://github.com/salesforcecli/plugin-custom-metadata/issues",
44
44
  "dependencies": {
45
- "@oclif/core": "^3.19.2",
45
+ "@oclif/core": "^3.26.0",
46
46
  "@salesforce/core": "^6.5.1",
47
- "@salesforce/sf-plugins-core": "^7.1.15",
47
+ "@salesforce/sf-plugins-core": "^7.1.16",
48
48
  "csv-parse": "^5.5.5",
49
49
  "fast-xml-parser": "^4.3.6"
50
50
  },
@@ -52,7 +52,7 @@
52
52
  "@oclif/plugin-command-snapshot": "^5.1.1",
53
53
  "@salesforce/cli-plugins-testkit": "^5.1.11",
54
54
  "@salesforce/dev-scripts": "^8.4.2",
55
- "@salesforce/plugin-command-reference": "^3.0.70",
55
+ "@salesforce/plugin-command-reference": "^3.0.71",
56
56
  "eslint-plugin-sf-plugin": "^1.17.4",
57
57
  "jsforce": "^2.0.0-beta.29",
58
58
  "oclif": "^4.5.5",
@@ -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.1.18.crt",
246
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.1.18.sig"
245
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.1.20.crt",
246
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.1.20.sig"
247
247
  }
248
248
  }