@salesforce/cli 2.18.5 → 2.18.7

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.
@@ -1,17 +1,12 @@
1
1
  {
2
2
  "commands": {
3
3
  "cmdt:generate:field": {
4
- "id": "cmdt:generate:field",
5
- "summary": "Generate a field for a custom metadata type based on the provided field type.",
6
- "description": "Similar to a custom object, a custom metadata type has a list of custom fields that represent aspects of the metadata.\n\nThis command creates a metadata file that describes the new custom metadata type field. By default, the file is created in a \"fields\" directory in the current directory. Use the --output-directory to generate the file in the directory that contains the custom metadata type metdata files, such as \"force-app/main/default/objects/MyCmdt__mdt\" for the custom metadata type called MyCmdt.",
7
- "strict": true,
8
- "pluginName": "@salesforce/plugin-custom-metadata",
9
- "pluginAlias": "@salesforce/plugin-custom-metadata",
10
- "pluginType": "jit",
11
4
  "aliases": [
12
5
  "force:cmdt:field:create",
13
6
  "cmdt:field:create"
14
7
  ],
8
+ "args": {},
9
+ "description": "Similar to a custom object, a custom metadata type has a list of custom fields that represent aspects of the metadata.\n\nThis command creates a metadata file that describes the new custom metadata type field. By default, the file is created in a \"fields\" directory in the current directory. Use the --output-directory to generate the file in the directory that contains the custom metadata type metdata files, such as \"force-app/main/default/objects/MyCmdt__mdt\" for the custom metadata type called MyCmdt.",
15
10
  "examples": [
16
11
  "Generate a metadata file for a custom checkbox field and add the file to the MyCmdt__mdt/fields directory:\n<%= config.bin %> <%= command.id %> --name MyCheckboxField --type Checkbox --output-directory force-app/main/default/objects/MyCmdt__mdt",
17
12
  "Generate a metadata file for a custom picklist field and add a few values:\n<%= config.bin %> <%= command.id %> --name MyPicklistField --type Picklist --picklist-values A --picklist-values B --picklist-values C --output-directory force-app/main/default/objects/MyCmdt__mdt",
@@ -19,39 +14,44 @@
19
14
  ],
20
15
  "flags": {
21
16
  "json": {
22
- "name": "json",
23
- "type": "boolean",
24
17
  "description": "Format output as json.",
25
18
  "helpGroup": "GLOBAL",
26
- "allowNo": false
19
+ "name": "json",
20
+ "allowNo": false,
21
+ "type": "boolean"
27
22
  },
28
23
  "loglevel": {
29
- "name": "loglevel",
30
- "type": "option",
31
- "hidden": true,
32
- "multiple": false,
33
24
  "deprecated": {
34
25
  "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."
35
- }
26
+ },
27
+ "hidden": true,
28
+ "name": "loglevel",
29
+ "hasDynamicHelp": false,
30
+ "multiple": false,
31
+ "type": "option"
36
32
  },
37
33
  "name": {
38
- "name": "name",
39
- "type": "option",
34
+ "aliases": [
35
+ "fieldname"
36
+ ],
40
37
  "char": "n",
41
- "summary": "Unique name for the field.",
38
+ "name": "name",
42
39
  "required": true,
40
+ "summary": "Unique name for the field.",
41
+ "hasDynamicHelp": false,
43
42
  "multiple": false,
44
- "aliases": [
45
- "fieldname"
46
- ]
43
+ "type": "option"
47
44
  },
48
45
  "type": {
49
- "name": "type",
50
- "type": "option",
46
+ "aliases": [
47
+ "fieldtype"
48
+ ],
51
49
  "char": "f",
52
- "summary": "Type of the field.",
53
50
  "description": "You can't use this command to create a custom metadata type field of type \"Metadata Relationship\". Use the Salesforce Setup UI instead.",
51
+ "name": "type",
54
52
  "required": true,
53
+ "summary": "Type of the field.",
54
+ "hasDynamicHelp": false,
55
55
  "multiple": false,
56
56
  "options": [
57
57
  "Checkbox",
@@ -67,68 +67,122 @@
67
67
  "LongTextArea",
68
68
  "Url"
69
69
  ],
70
- "aliases": [
71
- "fieldtype"
72
- ]
70
+ "type": "option"
73
71
  },
74
72
  "picklist-values": {
75
- "name": "picklist-values",
76
- "type": "option",
77
- "char": "p",
78
- "summary": "Picklist values; required for picklist fields.",
79
- "multiple": true,
80
73
  "aliases": [
81
74
  "picklistvalues"
82
75
  ],
83
- "delimiter": ","
76
+ "char": "p",
77
+ "name": "picklist-values",
78
+ "summary": "Picklist values; required for picklist fields.",
79
+ "delimiter": ",",
80
+ "hasDynamicHelp": false,
81
+ "multiple": true,
82
+ "type": "option"
84
83
  },
85
84
  "decimal-places": {
86
- "name": "decimal-places",
87
- "type": "option",
85
+ "aliases": [
86
+ "decimalplaces"
87
+ ],
88
88
  "char": "s",
89
- "summary": "Number of decimal places to use for number or percent fields.",
90
89
  "description": "The value must be greater than or equal to zero. Default value is 0.",
91
- "multiple": false,
90
+ "name": "decimal-places",
91
+ "summary": "Number of decimal places to use for number or percent fields.",
92
92
  "default": 0,
93
- "aliases": [
94
- "decimalplaces"
95
- ]
93
+ "hasDynamicHelp": false,
94
+ "multiple": false,
95
+ "type": "option"
96
96
  },
97
97
  "label": {
98
- "name": "label",
99
- "type": "option",
100
98
  "char": "l",
99
+ "name": "label",
101
100
  "summary": "Label for the field.",
102
- "multiple": false
101
+ "hasDynamicHelp": false,
102
+ "multiple": false,
103
+ "type": "option"
103
104
  },
104
105
  "output-directory": {
105
- "name": "output-directory",
106
- "type": "option",
107
- "char": "d",
108
- "summary": "Directory to store newly-created field definition files.",
109
- "description": "New files are automatically created in the \"fields\" directory. The location can be an absolute path or relative to the current working directory. The default is the current directory.",
110
- "multiple": false,
111
- "default": "",
112
106
  "aliases": [
113
107
  "outputdir",
114
108
  "outputdirectory"
115
- ]
109
+ ],
110
+ "char": "d",
111
+ "description": "New files are automatically created in the \"fields\" directory. The location can be an absolute path or relative to the current working directory. The default is the current directory.",
112
+ "name": "output-directory",
113
+ "summary": "Directory to store newly-created field definition files.",
114
+ "default": "",
115
+ "hasDynamicHelp": false,
116
+ "multiple": false,
117
+ "type": "option"
116
118
  }
117
119
  },
118
- "args": {},
119
- "requiresProject": true
120
- },
121
- "cmdt:generate:fromorg": {
122
- "id": "cmdt:generate:fromorg",
123
- "summary": "Generate a custom metadata type and all its records from a Salesforce object.",
124
- "description": "Use this command to migrate existing custom objects or custom settings in an org to custom metadata types. If a field of the Salesforce object is of an unsupported type, the field type is automatically converted to text. Run \"<%= config.bin %> cmdt generate field --help\" to see the list of supported cmdt field types, listed in the --type flag summary. Use the --ignore-unsupported to ignore these fields.\n\nThis command creates the metadata files that describe the new custom metadata type and its fields in the \"force-app/main/default/objects/TypeName__mdt\" directory by default, where \"TypeName\" is the value of the required --dev-name flag. Use --type-output-directory to create them in a different directory.",
125
- "strict": true,
126
- "pluginName": "@salesforce/plugin-custom-metadata",
120
+ "hasDynamicHelp": false,
121
+ "hiddenAliases": [],
122
+ "id": "cmdt:generate:field",
127
123
  "pluginAlias": "@salesforce/plugin-custom-metadata",
124
+ "pluginName": "@salesforce/plugin-custom-metadata",
128
125
  "pluginType": "jit",
126
+ "strict": true,
127
+ "summary": "Generate a field for a custom metadata type based on the provided field type.",
128
+ "enableJsonFlag": true,
129
+ "SF_ENV": "SF_ENV",
130
+ "requiresProject": true,
131
+ "isESM": true,
132
+ "relativePath": [
133
+ "lib",
134
+ "commands",
135
+ "cmdt",
136
+ "generate",
137
+ "field.js"
138
+ ],
139
+ "aliasPermutations": [
140
+ "force:cmdt:field:create",
141
+ "cmdt:force:field:create",
142
+ "cmdt:field:force:create",
143
+ "cmdt:field:create:force",
144
+ "force:field:cmdt:create",
145
+ "field:force:cmdt:create",
146
+ "field:cmdt:force:create",
147
+ "field:cmdt:create:force",
148
+ "force:field:create:cmdt",
149
+ "field:force:create:cmdt",
150
+ "field:create:force:cmdt",
151
+ "field:create:cmdt:force",
152
+ "force:cmdt:create:field",
153
+ "cmdt:force:create:field",
154
+ "cmdt:create:force:field",
155
+ "cmdt:create:field:force",
156
+ "force:create:cmdt:field",
157
+ "create:force:cmdt:field",
158
+ "create:cmdt:force:field",
159
+ "create:cmdt:field:force",
160
+ "force:create:field:cmdt",
161
+ "create:force:field:cmdt",
162
+ "create:field:force:cmdt",
163
+ "create:field:cmdt:force",
164
+ "cmdt:field:create",
165
+ "field:cmdt:create",
166
+ "field:create:cmdt",
167
+ "cmdt:create:field",
168
+ "create:cmdt:field",
169
+ "create:field:cmdt"
170
+ ],
171
+ "permutations": [
172
+ "cmdt:generate:field",
173
+ "generate:cmdt:field",
174
+ "generate:field:cmdt",
175
+ "cmdt:field:generate",
176
+ "field:cmdt:generate",
177
+ "field:generate:cmdt"
178
+ ]
179
+ },
180
+ "cmdt:generate:fromorg": {
129
181
  "aliases": [
130
182
  "force:cmdt:generate"
131
183
  ],
184
+ "args": {},
185
+ "description": "Use this command to migrate existing custom objects or custom settings in an org to custom metadata types. If a field of the Salesforce object is of an unsupported type, the field type is automatically converted to text. Run \"<%= config.bin %> cmdt generate field --help\" to see the list of supported cmdt field types, listed in the --type flag summary. Use the --ignore-unsupported to ignore these fields.\n\nThis command creates the metadata files that describe the new custom metadata type and its fields in the \"force-app/main/default/objects/TypeName__mdt\" directory by default, where \"TypeName\" is the value of the required --dev-name flag. Use --type-output-directory to create them in a different directory.",
132
186
  "examples": [
133
187
  "Generate a custom metadata type from a custom object called MySourceObject__c in your default org:\n<%= config.bin %> <%= command.id %> --dev-name MyCMDT --sobject MySourceObject__c",
134
188
  "Generate a custom metadata type from a custom object in an org with alias my-scratch-org; ignore unsupported field types instead of converting them to text:\n<%= config.bin %> <%= command.id %> --dev-name MyCMDT --sobject MySourceObject__c --ignore-unsupported --target-org my-scratch-org",
@@ -139,661 +193,956 @@
139
193
  ],
140
194
  "flags": {
141
195
  "json": {
142
- "name": "json",
143
- "type": "boolean",
144
196
  "description": "Format output as json.",
145
197
  "helpGroup": "GLOBAL",
146
- "allowNo": false
198
+ "name": "json",
199
+ "allowNo": false,
200
+ "type": "boolean"
147
201
  },
148
202
  "target-org": {
149
- "name": "target-org",
150
- "type": "option",
151
- "char": "o",
152
- "summary": "Username or alias of the target org.",
153
- "required": true,
154
- "multiple": false,
155
203
  "aliases": [
156
204
  "targetusername",
157
205
  "u"
158
- ]
206
+ ],
207
+ "char": "o",
208
+ "deprecateAliases": true,
209
+ "name": "target-org",
210
+ "noCacheDefault": true,
211
+ "required": true,
212
+ "summary": "Username or alias of the target org.",
213
+ "hasDynamicHelp": true,
214
+ "multiple": false,
215
+ "type": "option"
159
216
  },
160
217
  "api-version": {
161
- "name": "api-version",
162
- "type": "option",
163
- "description": "Override the api version used for api requests made by this command",
164
- "multiple": false,
165
218
  "aliases": [
166
219
  "apiversion"
167
- ]
220
+ ],
221
+ "deprecateAliases": true,
222
+ "description": "Override the api version used for api requests made by this command",
223
+ "name": "api-version",
224
+ "hasDynamicHelp": false,
225
+ "multiple": false,
226
+ "type": "option"
168
227
  },
169
228
  "loglevel": {
170
- "name": "loglevel",
171
- "type": "option",
172
- "hidden": true,
173
- "multiple": false,
174
229
  "deprecated": {
175
230
  "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."
176
- }
231
+ },
232
+ "hidden": true,
233
+ "name": "loglevel",
234
+ "hasDynamicHelp": false,
235
+ "multiple": false,
236
+ "type": "option"
177
237
  },
178
238
  "dev-name": {
179
- "name": "dev-name",
180
- "type": "option",
239
+ "aliases": [
240
+ "devname"
241
+ ],
181
242
  "char": "n",
182
- "summary": "Name of the custom metadata type.",
243
+ "name": "dev-name",
183
244
  "required": true,
245
+ "summary": "Name of the custom metadata type.",
246
+ "hasDynamicHelp": false,
184
247
  "multiple": false,
185
- "aliases": [
186
- "devname"
187
- ]
248
+ "type": "option"
188
249
  },
189
250
  "label": {
190
- "name": "label",
191
- "type": "option",
192
251
  "char": "l",
252
+ "name": "label",
193
253
  "summary": "Label for the custom metadata type.",
194
- "multiple": false
254
+ "hasDynamicHelp": false,
255
+ "multiple": false,
256
+ "type": "option"
195
257
  },
196
258
  "plural-label": {
197
- "name": "plural-label",
198
- "type": "option",
259
+ "aliases": [
260
+ "plurallabel"
261
+ ],
199
262
  "char": "p",
263
+ "name": "plural-label",
200
264
  "summary": "Plural version of the label value; if blank, uses label.",
265
+ "hasDynamicHelp": false,
201
266
  "multiple": false,
202
- "aliases": [
203
- "plurallabel"
204
- ]
267
+ "type": "option"
205
268
  },
206
269
  "visibility": {
207
- "name": "visibility",
208
- "type": "option",
209
270
  "char": "v",
210
- "summary": "Who can see the custom metadata type.",
211
271
  "description": "For more information on what each option means, see this topic in Salesforce Help: https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.",
272
+ "name": "visibility",
273
+ "summary": "Who can see the custom metadata type.",
274
+ "default": "Public",
275
+ "hasDynamicHelp": false,
212
276
  "multiple": false,
213
277
  "options": [
214
278
  "PackageProtected",
215
279
  "Protected",
216
280
  "Public"
217
281
  ],
218
- "default": "Public"
282
+ "type": "option"
219
283
  },
220
284
  "sobject": {
221
- "name": "sobject",
222
- "type": "option",
285
+ "aliases": [
286
+ "sobjectname"
287
+ ],
223
288
  "char": "s",
224
- "summary": "API name of the source Salesforce object used to generate the custom metadata type.",
289
+ "name": "sobject",
225
290
  "required": true,
291
+ "summary": "API name of the source Salesforce object used to generate the custom metadata type.",
292
+ "hasDynamicHelp": false,
226
293
  "multiple": false,
227
- "aliases": [
228
- "sobjectname"
229
- ]
294
+ "type": "option"
230
295
  },
231
296
  "ignore-unsupported": {
232
- "name": "ignore-unsupported",
233
- "type": "boolean",
297
+ "aliases": [
298
+ "ignoreunsupported"
299
+ ],
234
300
  "char": "i",
235
- "summary": "Ignore unsupported field types.",
236
301
  "description": "In this context, \"ignore\" means that the fields aren't created. The default behavior is to create fields of type text and convert the field values to text.",
302
+ "name": "ignore-unsupported",
303
+ "summary": "Ignore unsupported field types.",
237
304
  "allowNo": false,
238
- "aliases": [
239
- "ignoreunsupported"
240
- ]
305
+ "type": "boolean"
241
306
  },
242
307
  "type-output-directory": {
243
- "name": "type-output-directory",
244
- "type": "option",
308
+ "aliases": [
309
+ "typeoutputdir"
310
+ ],
245
311
  "char": "d",
312
+ "name": "type-output-directory",
246
313
  "summary": "Directory to store newly-created custom metadata type files.",
247
- "multiple": false,
248
314
  "default": "force-app/main/default/objects",
249
- "aliases": [
250
- "typeoutputdir"
251
- ]
315
+ "hasDynamicHelp": false,
316
+ "multiple": false,
317
+ "type": "option"
252
318
  },
253
319
  "records-output-dir": {
254
- "name": "records-output-dir",
255
- "type": "option",
256
- "char": "r",
257
- "summary": "Directory to store newly-created custom metadata record files.",
258
- "multiple": false,
259
- "default": "force-app/main/default/customMetadata",
260
320
  "aliases": [
261
321
  "recordsoutputdir"
262
- ]
322
+ ],
323
+ "char": "r",
324
+ "name": "records-output-dir",
325
+ "summary": "Directory to store newly-created custom metadata record files.",
326
+ "default": "force-app/main/default/customMetadata",
327
+ "hasDynamicHelp": false,
328
+ "multiple": false,
329
+ "type": "option"
263
330
  }
264
331
  },
265
- "args": {},
332
+ "hasDynamicHelp": true,
333
+ "hiddenAliases": [],
334
+ "id": "cmdt:generate:fromorg",
335
+ "pluginAlias": "@salesforce/plugin-custom-metadata",
336
+ "pluginName": "@salesforce/plugin-custom-metadata",
337
+ "pluginType": "jit",
338
+ "strict": true,
339
+ "summary": "Generate a custom metadata type and all its records from a Salesforce object.",
340
+ "enableJsonFlag": true,
341
+ "SF_ENV": "SF_ENV",
266
342
  "requiresProject": true,
267
- "hasDynamicHelp": true
343
+ "isESM": true,
344
+ "relativePath": [
345
+ "lib",
346
+ "commands",
347
+ "cmdt",
348
+ "generate",
349
+ "fromorg.js"
350
+ ],
351
+ "aliasPermutations": [
352
+ "force:cmdt:generate",
353
+ "cmdt:force:generate",
354
+ "cmdt:generate:force",
355
+ "force:generate:cmdt",
356
+ "generate:force:cmdt",
357
+ "generate:cmdt:force"
358
+ ],
359
+ "permutations": [
360
+ "cmdt:generate:fromorg",
361
+ "generate:cmdt:fromorg",
362
+ "generate:fromorg:cmdt",
363
+ "cmdt:fromorg:generate",
364
+ "fromorg:cmdt:generate",
365
+ "fromorg:generate:cmdt"
366
+ ]
268
367
  },
269
368
  "cmdt:generate:object": {
270
- "id": "cmdt:generate:object",
271
- "summary": "Generate a new custom metadata type in the current project.",
272
- "description": "This command creates a metadata file that describes the new custom metadata type. By default, the file is created in the MyCustomType__mdt directory in the current directory, where MyCustomType is the value of the required --type-name flag. Use the --output-directory to generate the file in a package directory with other custom metadata types, such as \"force-app/main/default/objects\".",
273
- "strict": true,
274
- "pluginName": "@salesforce/plugin-custom-metadata",
275
- "pluginAlias": "@salesforce/plugin-custom-metadata",
276
- "pluginType": "jit",
277
369
  "aliases": [
278
370
  "force:cmdt:create",
279
371
  "cmdt:create"
280
372
  ],
373
+ "args": {},
374
+ "description": "This command creates a metadata file that describes the new custom metadata type. By default, the file is created in the MyCustomType__mdt directory in the current directory, where MyCustomType is the value of the required --type-name flag. Use the --output-directory to generate the file in a package directory with other custom metadata types, such as \"force-app/main/default/objects\".",
281
375
  "examples": [
282
376
  "Generate a custom metadata type with developer name 'MyCustomType'; this name is also used as the label:\n<%= config.bin %> <%= command.id %> --type-name MyCustomType",
283
377
  "Generate a protected custom metadata type with a specific label:\n<%= config.bin %> <%= command.id %> --type-name MyCustomType --label \"Custom Type\" --plural-label \"Custom Types\" --visibility Protected"
284
378
  ],
285
379
  "flags": {
286
380
  "json": {
287
- "name": "json",
288
- "type": "boolean",
289
381
  "description": "Format output as json.",
290
382
  "helpGroup": "GLOBAL",
291
- "allowNo": false
383
+ "name": "json",
384
+ "allowNo": false,
385
+ "type": "boolean"
292
386
  },
293
387
  "loglevel": {
294
- "name": "loglevel",
295
- "type": "option",
296
- "hidden": true,
297
- "multiple": false,
298
388
  "deprecated": {
299
389
  "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."
300
- }
390
+ },
391
+ "hidden": true,
392
+ "name": "loglevel",
393
+ "hasDynamicHelp": false,
394
+ "multiple": false,
395
+ "type": "option"
301
396
  },
302
397
  "type-name": {
303
- "name": "type-name",
304
- "type": "option",
398
+ "aliases": [
399
+ "typename"
400
+ ],
305
401
  "char": "n",
306
- "summary": "Unique object name for the custom metadata type.",
307
402
  "description": "The name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores.",
403
+ "name": "type-name",
308
404
  "required": true,
405
+ "summary": "Unique object name for the custom metadata type.",
406
+ "hasDynamicHelp": false,
309
407
  "multiple": false,
310
- "aliases": [
311
- "typename"
312
- ]
408
+ "type": "option"
313
409
  },
314
410
  "label": {
315
- "name": "label",
316
- "type": "option",
317
411
  "char": "l",
412
+ "name": "label",
318
413
  "summary": "Label for the custom metadata type.",
319
- "multiple": false
414
+ "hasDynamicHelp": false,
415
+ "multiple": false,
416
+ "type": "option"
320
417
  },
321
418
  "plural-label": {
322
- "name": "plural-label",
323
- "type": "option",
419
+ "aliases": [
420
+ "plurallabel"
421
+ ],
324
422
  "char": "p",
423
+ "name": "plural-label",
325
424
  "summary": "Plural version of the label value; if blank, uses label.",
425
+ "hasDynamicHelp": false,
326
426
  "multiple": false,
327
- "aliases": [
328
- "plurallabel"
329
- ]
427
+ "type": "option"
330
428
  },
331
429
  "visibility": {
332
- "name": "visibility",
333
- "type": "option",
334
430
  "char": "v",
335
- "summary": "Who can see the custom metadata type.",
336
431
  "description": "For more information on what each option means, see this topic in Salesforce Help: https://help.salesforce.com/s/articleView?id=sf.custommetadatatypes_ui_create.htm&type=5.",
432
+ "name": "visibility",
433
+ "summary": "Who can see the custom metadata type.",
434
+ "default": "Public",
435
+ "hasDynamicHelp": false,
337
436
  "multiple": false,
338
437
  "options": [
339
438
  "PackageProtected",
340
439
  "Protected",
341
440
  "Public"
342
441
  ],
343
- "default": "Public"
442
+ "type": "option"
344
443
  },
345
444
  "output-directory": {
346
- "name": "output-directory",
347
- "type": "option",
348
- "char": "d",
349
- "summary": "Directory to store the newly-created custom metadata type files",
350
- "description": "The location can be an absolute path or relative to the current working directory. The default is the current directory.",
351
- "multiple": false,
352
- "default": "",
353
445
  "aliases": [
354
446
  "outputdir",
355
447
  "outputdirectory"
356
- ]
448
+ ],
449
+ "char": "d",
450
+ "description": "The location can be an absolute path or relative to the current working directory. The default is the current directory.",
451
+ "name": "output-directory",
452
+ "summary": "Directory to store the newly-created custom metadata type files",
453
+ "default": "",
454
+ "hasDynamicHelp": false,
455
+ "multiple": false,
456
+ "type": "option"
357
457
  }
358
458
  },
359
- "args": {},
360
- "requiresProject": true
361
- },
362
- "cmdt:generate:record": {
363
- "id": "cmdt:generate:record",
364
- "summary": "Generate a new record for a given custom metadata type in the current project.",
365
- "description": "The custom metadata type must already exist in your project. You must specify a name for the new record. Use name=value pairs to specify the values for the fields, such as MyTextField=\"some text here\" or MyNumberField=32.",
366
- "strict": false,
367
- "pluginName": "@salesforce/plugin-custom-metadata",
459
+ "hasDynamicHelp": false,
460
+ "hiddenAliases": [],
461
+ "id": "cmdt:generate:object",
368
462
  "pluginAlias": "@salesforce/plugin-custom-metadata",
463
+ "pluginName": "@salesforce/plugin-custom-metadata",
369
464
  "pluginType": "jit",
465
+ "strict": true,
466
+ "summary": "Generate a new custom metadata type in the current project.",
467
+ "enableJsonFlag": true,
468
+ "SF_ENV": "SF_ENV",
469
+ "requiresProject": true,
470
+ "isESM": true,
471
+ "relativePath": [
472
+ "lib",
473
+ "commands",
474
+ "cmdt",
475
+ "generate",
476
+ "object.js"
477
+ ],
478
+ "aliasPermutations": [
479
+ "force:cmdt:create",
480
+ "cmdt:force:create",
481
+ "cmdt:create:force",
482
+ "force:create:cmdt",
483
+ "create:force:cmdt",
484
+ "create:cmdt:force",
485
+ "cmdt:create",
486
+ "create:cmdt"
487
+ ],
488
+ "permutations": [
489
+ "cmdt:generate:object",
490
+ "generate:cmdt:object",
491
+ "generate:object:cmdt",
492
+ "cmdt:object:generate",
493
+ "object:cmdt:generate",
494
+ "object:generate:cmdt"
495
+ ]
496
+ },
497
+ "cmdt:generate:record": {
370
498
  "aliases": [
371
499
  "force:cmdt:record:create",
372
500
  "cmdt:record:create"
373
501
  ],
502
+ "args": {},
503
+ "description": "The custom metadata type must already exist in your project. You must specify a name for the new record. Use name=value pairs to specify the values for the fields, such as MyTextField=\"some text here\" or MyNumberField=32.",
374
504
  "examples": [
375
505
  "Create a record metadata file for custom metadata type 'MyCMT' with specified values for two custom fields:\n<%= config.bin %> <%= command.id %> --type-name MyCMT__mdt --record-name MyRecord My_Custom_Field_1=Foo My_Custom_Field_2=Bar",
376
506
  "Create a protected record metadata file for custom metadata type 'MyCMT' with a specific label and values specified for two custom fields:\n<%= config.bin %> <%= command.id %> --type-name MyCMT__mdt --record-name MyRecord --label \"My Record\" --protected true My_Custom_Field_1=Foo My_Custom_Field_2=Bar"
377
507
  ],
378
508
  "flags": {
379
509
  "json": {
380
- "name": "json",
381
- "type": "boolean",
382
510
  "description": "Format output as json.",
383
511
  "helpGroup": "GLOBAL",
384
- "allowNo": false
512
+ "name": "json",
513
+ "allowNo": false,
514
+ "type": "boolean"
385
515
  },
386
516
  "loglevel": {
387
- "name": "loglevel",
388
- "type": "option",
389
- "hidden": true,
390
- "multiple": false,
391
517
  "deprecated": {
392
518
  "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."
393
- }
519
+ },
520
+ "hidden": true,
521
+ "name": "loglevel",
522
+ "hasDynamicHelp": false,
523
+ "multiple": false,
524
+ "type": "option"
394
525
  },
395
526
  "type-name": {
396
- "name": "type-name",
397
- "type": "option",
527
+ "aliases": [
528
+ "typename"
529
+ ],
398
530
  "char": "t",
399
- "summary": "API name of the custom metadata type to create a record for; must end in \"__mdt\".",
531
+ "name": "type-name",
400
532
  "required": true,
533
+ "summary": "API name of the custom metadata type to create a record for; must end in \"__mdt\".",
534
+ "hasDynamicHelp": false,
401
535
  "multiple": false,
402
- "aliases": [
403
- "typename"
404
- ]
536
+ "type": "option"
405
537
  },
406
538
  "record-name": {
407
- "name": "record-name",
408
- "type": "option",
539
+ "aliases": [
540
+ "recordname"
541
+ ],
409
542
  "char": "n",
410
- "summary": "Name of the new record.",
543
+ "name": "record-name",
411
544
  "required": true,
545
+ "summary": "Name of the new record.",
546
+ "hasDynamicHelp": false,
412
547
  "multiple": false,
413
- "aliases": [
414
- "recordname"
415
- ]
548
+ "type": "option"
416
549
  },
417
550
  "label": {
418
- "name": "label",
419
- "type": "option",
420
551
  "char": "l",
552
+ "name": "label",
421
553
  "summary": "Label for the new record.",
422
- "multiple": false
554
+ "hasDynamicHelp": false,
555
+ "multiple": false,
556
+ "type": "option"
423
557
  },
424
558
  "protected": {
425
- "name": "protected",
426
- "type": "option",
427
559
  "char": "p",
428
- "summary": "Protect the record when it's in a managed package.",
429
560
  "description": "Protected records can only be accessed by code in the same managed package namespace.",
561
+ "name": "protected",
562
+ "summary": "Protect the record when it's in a managed package.",
563
+ "default": "false",
564
+ "hasDynamicHelp": false,
430
565
  "multiple": false,
431
566
  "options": [
432
567
  "true",
433
568
  "false"
434
569
  ],
435
- "default": "false"
570
+ "type": "option"
436
571
  },
437
572
  "input-directory": {
438
- "name": "input-directory",
439
- "type": "option",
440
- "char": "i",
441
- "summary": "Directory from which to get the custom metadata type definition from.",
442
- "multiple": false,
443
- "default": "force-app/main/default/objects",
444
573
  "aliases": [
445
574
  "inputdir",
446
575
  "inputdirectory"
447
- ]
576
+ ],
577
+ "char": "i",
578
+ "name": "input-directory",
579
+ "summary": "Directory from which to get the custom metadata type definition from.",
580
+ "default": "force-app/main/default/objects",
581
+ "hasDynamicHelp": false,
582
+ "multiple": false,
583
+ "type": "option"
448
584
  },
449
585
  "output-directory": {
450
- "name": "output-directory",
451
- "type": "option",
452
- "char": "d",
453
- "summary": "Directory to store newly-created custom metadata record files.",
454
- "multiple": false,
455
- "default": "force-app/main/default/customMetadata",
456
586
  "aliases": [
457
587
  "outputdir",
458
588
  "outputdirectory"
459
- ]
589
+ ],
590
+ "char": "d",
591
+ "name": "output-directory",
592
+ "summary": "Directory to store newly-created custom metadata record files.",
593
+ "default": "force-app/main/default/customMetadata",
594
+ "hasDynamicHelp": false,
595
+ "multiple": false,
596
+ "type": "option"
460
597
  }
461
598
  },
462
- "args": {},
463
- "requiresProject": true
464
- },
465
- "cmdt:generate:records": {
466
- "id": "cmdt:generate:records",
467
- "summary": "Generate new custom metadata type records from a CSV file.",
468
- "description": "The custom metadata type must already exist in your project. By default, the Name column is used to determine the record name; use the --name-column flag to specify a different column.",
469
- "strict": true,
470
- "pluginName": "@salesforce/plugin-custom-metadata",
599
+ "hasDynamicHelp": false,
600
+ "hiddenAliases": [],
601
+ "id": "cmdt:generate:record",
471
602
  "pluginAlias": "@salesforce/plugin-custom-metadata",
603
+ "pluginName": "@salesforce/plugin-custom-metadata",
472
604
  "pluginType": "jit",
473
- "aliases": [
474
- "force:cmdt:record:insert",
475
- "cmdt:record:insert"
605
+ "strict": false,
606
+ "summary": "Generate a new record for a given custom metadata type in the current project.",
607
+ "enableJsonFlag": true,
608
+ "SF_ENV": "SF_ENV",
609
+ "requiresProject": true,
610
+ "isESM": true,
611
+ "relativePath": [
612
+ "lib",
613
+ "commands",
614
+ "cmdt",
615
+ "generate",
616
+ "record.js"
476
617
  ],
477
- "examples": [
478
- "Generate record metadata files from values in a CSV file for the custom metadata type MyCmdt. Use 'Name' as the column that specifies the record name:\n<%= config.bin %> <%= command.id %> --csv path/to/my.csv --type-name MyCmdt",
618
+ "aliasPermutations": [
619
+ "force:cmdt:record:create",
620
+ "cmdt:force:record:create",
621
+ "cmdt:record:force:create",
622
+ "cmdt:record:create:force",
623
+ "force:record:cmdt:create",
624
+ "record:force:cmdt:create",
625
+ "record:cmdt:force:create",
626
+ "record:cmdt:create:force",
627
+ "force:record:create:cmdt",
628
+ "record:force:create:cmdt",
629
+ "record:create:force:cmdt",
630
+ "record:create:cmdt:force",
631
+ "force:cmdt:create:record",
632
+ "cmdt:force:create:record",
633
+ "cmdt:create:force:record",
634
+ "cmdt:create:record:force",
635
+ "force:create:cmdt:record",
636
+ "create:force:cmdt:record",
637
+ "create:cmdt:force:record",
638
+ "create:cmdt:record:force",
639
+ "force:create:record:cmdt",
640
+ "create:force:record:cmdt",
641
+ "create:record:force:cmdt",
642
+ "create:record:cmdt:force",
643
+ "cmdt:record:create",
644
+ "record:cmdt:create",
645
+ "record:create:cmdt",
646
+ "cmdt:create:record",
647
+ "create:cmdt:record",
648
+ "create:record:cmdt"
649
+ ],
650
+ "permutations": [
651
+ "cmdt:generate:record",
652
+ "generate:cmdt:record",
653
+ "generate:record:cmdt",
654
+ "cmdt:record:generate",
655
+ "record:cmdt:generate",
656
+ "record:generate:cmdt"
657
+ ]
658
+ },
659
+ "cmdt:generate:records": {
660
+ "aliases": [
661
+ "force:cmdt:record:insert",
662
+ "cmdt:record:insert"
663
+ ],
664
+ "args": {},
665
+ "description": "The custom metadata type must already exist in your project. By default, the Name column is used to determine the record name; use the --name-column flag to specify a different column.",
666
+ "examples": [
667
+ "Generate record metadata files from values in a CSV file for the custom metadata type MyCmdt. Use 'Name' as the column that specifies the record name:\n<%= config.bin %> <%= command.id %> --csv path/to/my.csv --type-name MyCmdt",
479
668
  "Generate record metadata files from a CSV file in the directory different from the default, and use 'PrimaryKey' as the column that specifies the record name:\n<%= config.bin %> <%= command.id %> --csv path/to/my.csv --type-name MyCmdt --input-directory path/to/my/cmdt/directory --name-column \"PrimaryKey\""
480
669
  ],
481
670
  "flags": {
482
671
  "json": {
483
- "name": "json",
484
- "type": "boolean",
485
672
  "description": "Format output as json.",
486
673
  "helpGroup": "GLOBAL",
487
- "allowNo": false
674
+ "name": "json",
675
+ "allowNo": false,
676
+ "type": "boolean"
488
677
  },
489
678
  "loglevel": {
490
- "name": "loglevel",
491
- "type": "option",
492
- "hidden": true,
493
- "multiple": false,
494
679
  "deprecated": {
495
680
  "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."
496
- }
681
+ },
682
+ "hidden": true,
683
+ "name": "loglevel",
684
+ "hasDynamicHelp": false,
685
+ "multiple": false,
686
+ "type": "option"
497
687
  },
498
688
  "csv": {
499
- "name": "csv",
500
- "type": "option",
689
+ "aliases": [
690
+ "filepath"
691
+ ],
501
692
  "char": "f",
502
- "summary": "Pathname of the CSV file.",
693
+ "name": "csv",
503
694
  "required": true,
695
+ "summary": "Pathname of the CSV file.",
696
+ "hasDynamicHelp": false,
504
697
  "multiple": false,
505
- "aliases": [
506
- "filepath"
507
- ]
698
+ "type": "option"
508
699
  },
509
700
  "type-name": {
510
- "name": "type-name",
511
- "type": "option",
701
+ "aliases": [
702
+ "typename"
703
+ ],
512
704
  "char": "t",
513
- "summary": "API name of the custom metadata type to create a record for.",
514
705
  "description": "The '__mdt' suffix is appended to the end of the name if it's omitted.",
706
+ "name": "type-name",
515
707
  "required": true,
708
+ "summary": "API name of the custom metadata type to create a record for.",
709
+ "hasDynamicHelp": false,
516
710
  "multiple": false,
517
- "aliases": [
518
- "typename"
519
- ]
711
+ "type": "option"
520
712
  },
521
713
  "input-directory": {
522
- "name": "input-directory",
523
- "type": "option",
524
- "char": "i",
525
- "summary": "Directory from which to get the custom metadata type definition from.",
526
- "multiple": false,
527
- "default": "force-app/main/default/objects",
528
714
  "aliases": [
529
715
  "inputdir",
530
716
  "inputdirectory"
531
- ]
717
+ ],
718
+ "char": "i",
719
+ "name": "input-directory",
720
+ "summary": "Directory from which to get the custom metadata type definition from.",
721
+ "default": "force-app/main/default/objects",
722
+ "hasDynamicHelp": false,
723
+ "multiple": false,
724
+ "type": "option"
532
725
  },
533
726
  "output-directory": {
534
- "name": "output-directory",
535
- "type": "option",
536
- "char": "d",
537
- "summary": "Directory to store newly-created custom metadata record files.",
538
- "multiple": false,
539
- "default": "force-app/main/default/customMetadata",
540
727
  "aliases": [
541
728
  "outputdir",
542
729
  "outputdirectory"
543
- ]
730
+ ],
731
+ "char": "d",
732
+ "name": "output-directory",
733
+ "summary": "Directory to store newly-created custom metadata record files.",
734
+ "default": "force-app/main/default/customMetadata",
735
+ "hasDynamicHelp": false,
736
+ "multiple": false,
737
+ "type": "option"
544
738
  },
545
739
  "name-column": {
546
- "name": "name-column",
547
- "type": "option",
740
+ "aliases": [
741
+ "namecolumn"
742
+ ],
548
743
  "char": "n",
744
+ "name": "name-column",
549
745
  "summary": "Column used to determine the name of the record.",
550
- "multiple": false,
551
746
  "default": "Name",
552
- "aliases": [
553
- "namecolumn"
554
- ]
747
+ "hasDynamicHelp": false,
748
+ "multiple": false,
749
+ "type": "option"
555
750
  }
556
751
  },
557
- "args": {},
558
- "requiresProject": true
752
+ "hasDynamicHelp": false,
753
+ "hiddenAliases": [],
754
+ "id": "cmdt:generate:records",
755
+ "pluginAlias": "@salesforce/plugin-custom-metadata",
756
+ "pluginName": "@salesforce/plugin-custom-metadata",
757
+ "pluginType": "jit",
758
+ "strict": true,
759
+ "summary": "Generate new custom metadata type records from a CSV file.",
760
+ "enableJsonFlag": true,
761
+ "SF_ENV": "SF_ENV",
762
+ "requiresProject": true,
763
+ "isESM": true,
764
+ "relativePath": [
765
+ "lib",
766
+ "commands",
767
+ "cmdt",
768
+ "generate",
769
+ "records.js"
770
+ ],
771
+ "aliasPermutations": [
772
+ "force:cmdt:record:insert",
773
+ "cmdt:force:record:insert",
774
+ "cmdt:record:force:insert",
775
+ "cmdt:record:insert:force",
776
+ "force:record:cmdt:insert",
777
+ "record:force:cmdt:insert",
778
+ "record:cmdt:force:insert",
779
+ "record:cmdt:insert:force",
780
+ "force:record:insert:cmdt",
781
+ "record:force:insert:cmdt",
782
+ "record:insert:force:cmdt",
783
+ "record:insert:cmdt:force",
784
+ "force:cmdt:insert:record",
785
+ "cmdt:force:insert:record",
786
+ "cmdt:insert:force:record",
787
+ "cmdt:insert:record:force",
788
+ "force:insert:cmdt:record",
789
+ "insert:force:cmdt:record",
790
+ "insert:cmdt:force:record",
791
+ "insert:cmdt:record:force",
792
+ "force:insert:record:cmdt",
793
+ "insert:force:record:cmdt",
794
+ "insert:record:force:cmdt",
795
+ "insert:record:cmdt:force",
796
+ "cmdt:record:insert",
797
+ "record:cmdt:insert",
798
+ "record:insert:cmdt",
799
+ "cmdt:insert:record",
800
+ "insert:cmdt:record",
801
+ "insert:record:cmdt"
802
+ ],
803
+ "permutations": [
804
+ "cmdt:generate:records",
805
+ "generate:cmdt:records",
806
+ "generate:records:cmdt",
807
+ "cmdt:records:generate",
808
+ "records:cmdt:generate",
809
+ "records:generate:cmdt"
810
+ ]
559
811
  },
560
812
  "community:create": {
561
- "id": "community:create",
562
- "summary": "Create an Experience Cloud site using a template.",
563
- "description": "Run the \"community list template\" command to see the templates available in your org. See 'Which Experience Cloud Template Should I Use?' in Salesforce Help for more information about the different template types available. (https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5)\n\nWhen you create a site with the Build Your Own (LWR) template, you must also specify the AuthenticationType value using the format templateParams.AuthenticationType=value, where value is AUTHENTICATED or AUTHENTICATED_WITH_PUBLIC_ACCESS_ENABLED. Name and values are case-sensitive. See 'DigitalExperienceBundle' in the Metadata API Developer Guide for more information. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_digitalexperiencebundle.htm)\n\nThe site creation process is an async job that generates a jobId. To check the site creation status, query the BackgroundOperation object and enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the Salesforce Platform for more information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_backgroundoperation.htm)\n\nIf the job doesn’t complete within 10 minutes, it times out. You receive an error message and must restart the site creation process. Completed jobs expire after 24 hours and are removed from the database.\n\nWhen you run this command, it creates the site in preview status, which means that the site isn't yet live. After you finish building your site, you can make it live.\n\nIf you have an Experience Builder site, publish the site using the \"community publish\" command to make it live.\n\nIf you have a Salesforce Tabs + Visualforce site, to activate the site and make it live, update the status field of the Network type in Metadata API. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm) Alternatively, in Experience Workspaces, go to Administration | Settings, and click Activate.\n\nFor Experience Builder sites, activating the site sends a welcome email to site members.",
564
- "strict": false,
565
- "pluginName": "@salesforce/plugin-community",
566
- "pluginAlias": "@salesforce/plugin-community",
567
- "pluginType": "jit",
568
813
  "aliases": [
569
814
  "force:community:create"
570
815
  ],
816
+ "args": {},
817
+ "deprecateAliases": true,
818
+ "description": "Run the \"community list template\" command to see the templates available in your org. See 'Which Experience Cloud Template Should I Use?' in Salesforce Help for more information about the different template types available. (https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5)\n\nWhen you create a site with the Build Your Own (LWR) template, you must also specify the AuthenticationType value using the format templateParams.AuthenticationType=value, where value is AUTHENTICATED or AUTHENTICATED_WITH_PUBLIC_ACCESS_ENABLED. Name and values are case-sensitive. See 'DigitalExperienceBundle' in the Metadata API Developer Guide for more information. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_digitalexperiencebundle.htm)\n\nThe site creation process is an async job that generates a jobId. To check the site creation status, query the BackgroundOperation object and enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the Salesforce Platform for more information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_backgroundoperation.htm)\n\nIf the job doesn’t complete within 10 minutes, it times out. You receive an error message and must restart the site creation process. Completed jobs expire after 24 hours and are removed from the database.\n\nWhen you run this command, it creates the site in preview status, which means that the site isn't yet live. After you finish building your site, you can make it live.\n\nIf you have an Experience Builder site, publish the site using the \"community publish\" command to make it live.\n\nIf you have a Salesforce Tabs + Visualforce site, to activate the site and make it live, update the status field of the Network type in Metadata API. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm) Alternatively, in Experience Workspaces, go to Administration | Settings, and click Activate.\n\nFor Experience Builder sites, activating the site sends a welcome email to site members.",
571
819
  "examples": [
572
820
  "Create an Experience Cloud site using template 'Customer Service' and URL path prefix 'customers':\n<%= config.bin %> <%= command.id %> --name 'My Customer Site' --template-name 'Customer Service' --url-path-prefix customers --description 'My customer site'",
573
821
  "Create a site using 'Partner Central' template:\n<%= config.bin %> <%= command.id %> --name partnercentral --template-name 'Partner Central' --url-path-prefix partners",
574
822
  "Create a site using the 'Build Your Own (LWR)' template with authentication type of UNAUTHENTICATED:\n<%= config.bin %> <%= command.id %> --name lwrsite --template-name 'Build Your Own (LWR)' --url-path-prefix lwrsite templateParams.AuthenticationType=UNAUTHENTICATED"
575
823
  ],
576
- "deprecateAliases": true,
577
824
  "flags": {
578
825
  "json": {
579
- "name": "json",
580
- "type": "boolean",
581
826
  "description": "Format output as json.",
582
827
  "helpGroup": "GLOBAL",
828
+ "name": "json",
583
829
  "allowNo": false,
584
- "deprecateAliases": true
830
+ "type": "boolean"
585
831
  },
586
832
  "name": {
587
- "name": "name",
588
- "type": "option",
589
833
  "char": "n",
590
- "summary": "Name of the site to create.",
834
+ "name": "name",
591
835
  "required": true,
836
+ "summary": "Name of the site to create.",
837
+ "hasDynamicHelp": false,
592
838
  "multiple": false,
593
- "deprecateAliases": true
839
+ "type": "option"
594
840
  },
595
841
  "template-name": {
596
- "name": "template-name",
597
- "type": "option",
842
+ "aliases": [
843
+ "templatename"
844
+ ],
598
845
  "char": "t",
599
- "summary": "Template to use to create a site.",
846
+ "deprecateAliases": true,
600
847
  "description": "An example of a template is Customer Service. Run the \"community template list\" command to see which templates are available in your org.",
848
+ "name": "template-name",
601
849
  "required": true,
850
+ "summary": "Template to use to create a site.",
851
+ "hasDynamicHelp": false,
602
852
  "multiple": false,
603
- "deprecateAliases": true,
604
- "aliases": [
605
- "templatename"
606
- ]
853
+ "type": "option"
607
854
  },
608
855
  "url-path-prefix": {
609
- "name": "url-path-prefix",
610
- "type": "option",
856
+ "aliases": [
857
+ "urlpathprefix"
858
+ ],
611
859
  "char": "p",
612
- "summary": "URL to append to the domain created when Digital Experiences was enabled for this org.",
860
+ "deprecateAliases": true,
613
861
  "description": "For example, if your domain name is https://MyDomainName.my.site.com and you create a customer site, enter 'customers' to create the unique URL https://MyDomainName.my.site.com/customers.",
614
- "multiple": false,
862
+ "name": "url-path-prefix",
863
+ "summary": "URL to append to the domain created when Digital Experiences was enabled for this org.",
615
864
  "default": "",
616
- "deprecateAliases": true,
617
- "aliases": [
618
- "urlpathprefix"
619
- ]
865
+ "hasDynamicHelp": false,
866
+ "multiple": false,
867
+ "type": "option"
620
868
  },
621
869
  "description": {
622
- "name": "description",
623
- "type": "option",
624
870
  "char": "d",
625
- "summary": "Description of the site.",
626
871
  "description": "The description displays in Digital Experiences - All Sites in Setup and helps with site identification.",
872
+ "name": "description",
873
+ "summary": "Description of the site.",
874
+ "hasDynamicHelp": false,
627
875
  "multiple": false,
628
- "deprecateAliases": true
876
+ "type": "option"
629
877
  },
630
878
  "target-org": {
631
- "name": "target-org",
632
- "type": "option",
633
- "char": "o",
634
- "summary": "Username or alias of the target org.",
635
- "required": true,
636
- "multiple": false,
637
- "deprecateAliases": true,
638
879
  "aliases": [
639
880
  "targetusername",
640
881
  "u"
641
- ]
882
+ ],
883
+ "char": "o",
884
+ "deprecateAliases": true,
885
+ "name": "target-org",
886
+ "noCacheDefault": true,
887
+ "required": true,
888
+ "summary": "Username or alias of the target org.",
889
+ "hasDynamicHelp": true,
890
+ "multiple": false,
891
+ "type": "option"
642
892
  },
643
893
  "loglevel": {
644
- "name": "loglevel",
645
- "type": "option",
646
- "hidden": true,
647
- "multiple": false,
648
894
  "deprecated": {
649
895
  "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."
650
896
  },
651
- "deprecateAliases": true
897
+ "hidden": true,
898
+ "name": "loglevel",
899
+ "hasDynamicHelp": false,
900
+ "multiple": false,
901
+ "type": "option"
652
902
  },
653
903
  "api-version": {
654
- "name": "api-version",
655
- "type": "option",
656
- "description": "Override the api version used for api requests made by this command",
657
- "multiple": false,
658
- "deprecateAliases": true,
659
904
  "aliases": [
660
905
  "apiversion"
661
- ]
906
+ ],
907
+ "deprecateAliases": true,
908
+ "description": "Override the api version used for api requests made by this command",
909
+ "name": "api-version",
910
+ "hasDynamicHelp": false,
911
+ "multiple": false,
912
+ "type": "option"
662
913
  }
663
914
  },
664
- "args": {},
665
- "hasDynamicHelp": true
666
- },
667
- "community:publish": {
668
- "id": "community:publish",
669
- "summary": "Publish an Experience Builder site to make it live.",
670
- "description": "Each time you publish a site, you update the live site with the most recent updates. When you publish an Experience Builder site for the first time, you make the site's URL live and enable login access for site members.\n\nIn addition to publishing, you must activate a site to send a welcome email to all site members. Activation is also required to set up SEO for Experience Builder sites. To activate a site, update the status field of the Network type in Metadata API. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm)Alternatively, in Experience Workspaces, go to Administration | Settings, and click Activate.\n\nAn email notification informs you when your changes are live on the published site. The site publish process is an async job that generates a jobId. To check the site publish status manually, query the BackgroundOperation object and enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the Salesforce Platform for more information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_backgroundoperation.htm)\n\nIf the job doesn’t complete within 15 minutes, it times out. You receive an error message and must restart the site publish process. Completed jobs expire after 24 hours and are removed from the database.",
671
- "strict": true,
672
- "pluginName": "@salesforce/plugin-community",
915
+ "hasDynamicHelp": true,
916
+ "hiddenAliases": [],
917
+ "id": "community:create",
673
918
  "pluginAlias": "@salesforce/plugin-community",
919
+ "pluginName": "@salesforce/plugin-community",
674
920
  "pluginType": "jit",
921
+ "strict": false,
922
+ "summary": "Create an Experience Cloud site using a template.",
923
+ "enableJsonFlag": true,
924
+ "SF_ENV": "SF_ENV",
925
+ "isESM": true,
926
+ "relativePath": [
927
+ "lib",
928
+ "commands",
929
+ "community",
930
+ "create.js"
931
+ ],
932
+ "aliasPermutations": [
933
+ "force:community:create",
934
+ "community:force:create",
935
+ "community:create:force",
936
+ "force:create:community",
937
+ "create:force:community",
938
+ "create:community:force"
939
+ ],
940
+ "permutations": [
941
+ "community:create",
942
+ "create:community"
943
+ ]
944
+ },
945
+ "community:publish": {
675
946
  "aliases": [
676
947
  "force:community:publish"
677
948
  ],
949
+ "args": {},
950
+ "deprecateAliases": true,
951
+ "description": "Each time you publish a site, you update the live site with the most recent updates. When you publish an Experience Builder site for the first time, you make the site's URL live and enable login access for site members.\n\nIn addition to publishing, you must activate a site to send a welcome email to all site members. Activation is also required to set up SEO for Experience Builder sites. To activate a site, update the status field of the Network type in Metadata API. (https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_network.htm)Alternatively, in Experience Workspaces, go to Administration | Settings, and click Activate.\n\nAn email notification informs you when your changes are live on the published site. The site publish process is an async job that generates a jobId. To check the site publish status manually, query the BackgroundOperation object and enter the jobId as the Id. See ‘BackgroundOperation’ in the Object Reference for the Salesforce Platform for more information. (https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_backgroundoperation.htm)\n\nIf the job doesn’t complete within 15 minutes, it times out. You receive an error message and must restart the site publish process. Completed jobs expire after 24 hours and are removed from the database.",
678
952
  "examples": [
679
953
  "Publish the Experience Builder site with name \"My Customer Site':\n<%= config.bin %> <%= command.id %> --name 'My Customer Site'"
680
954
  ],
681
- "deprecateAliases": true,
682
955
  "flags": {
683
956
  "json": {
684
- "name": "json",
685
- "type": "boolean",
686
957
  "description": "Format output as json.",
687
958
  "helpGroup": "GLOBAL",
959
+ "name": "json",
688
960
  "allowNo": false,
689
- "deprecateAliases": true
961
+ "type": "boolean"
690
962
  },
691
963
  "name": {
692
- "name": "name",
693
- "type": "option",
694
964
  "char": "n",
695
- "summary": "Name of the Experience Builder site to publish.",
965
+ "name": "name",
696
966
  "required": true,
967
+ "summary": "Name of the Experience Builder site to publish.",
968
+ "hasDynamicHelp": false,
697
969
  "multiple": false,
698
- "deprecateAliases": true
970
+ "type": "option"
699
971
  },
700
972
  "target-org": {
701
- "name": "target-org",
702
- "type": "option",
703
- "char": "o",
704
- "summary": "Username or alias of the target org.",
705
- "required": true,
706
- "multiple": false,
707
- "deprecateAliases": true,
708
973
  "aliases": [
709
974
  "targetusername",
710
975
  "u"
711
- ]
976
+ ],
977
+ "char": "o",
978
+ "deprecateAliases": true,
979
+ "name": "target-org",
980
+ "noCacheDefault": true,
981
+ "required": true,
982
+ "summary": "Username or alias of the target org.",
983
+ "hasDynamicHelp": true,
984
+ "multiple": false,
985
+ "type": "option"
712
986
  },
713
987
  "api-version": {
714
- "name": "api-version",
715
- "type": "option",
716
- "description": "Override the api version used for api requests made by this command",
717
- "multiple": false,
718
- "deprecateAliases": true,
719
988
  "aliases": [
720
989
  "apiversion"
721
- ]
990
+ ],
991
+ "deprecateAliases": true,
992
+ "description": "Override the api version used for api requests made by this command",
993
+ "name": "api-version",
994
+ "hasDynamicHelp": false,
995
+ "multiple": false,
996
+ "type": "option"
722
997
  },
723
998
  "loglevel": {
724
- "name": "loglevel",
725
- "type": "option",
726
- "hidden": true,
727
- "multiple": false,
728
999
  "deprecated": {
729
1000
  "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."
730
1001
  },
731
- "deprecateAliases": true
1002
+ "hidden": true,
1003
+ "name": "loglevel",
1004
+ "hasDynamicHelp": false,
1005
+ "multiple": false,
1006
+ "type": "option"
732
1007
  }
733
1008
  },
734
- "args": {},
735
- "hasDynamicHelp": true
736
- },
737
- "community:list:template": {
738
- "id": "community:list:template",
739
- "summary": "Retrieve the list of templates available in your org.",
740
- "description": "See 'Which Experience Cloud Template Should I Use?' (https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5) in Salesforce Help for more information about the different template types available for Experience Cloud.",
741
- "strict": true,
742
- "pluginName": "@salesforce/plugin-community",
1009
+ "hasDynamicHelp": true,
1010
+ "hiddenAliases": [],
1011
+ "id": "community:publish",
743
1012
  "pluginAlias": "@salesforce/plugin-community",
1013
+ "pluginName": "@salesforce/plugin-community",
744
1014
  "pluginType": "jit",
1015
+ "strict": true,
1016
+ "summary": "Publish an Experience Builder site to make it live.",
1017
+ "enableJsonFlag": true,
1018
+ "SF_ENV": "SF_ENV",
1019
+ "isESM": true,
1020
+ "relativePath": [
1021
+ "lib",
1022
+ "commands",
1023
+ "community",
1024
+ "publish.js"
1025
+ ],
1026
+ "aliasPermutations": [
1027
+ "force:community:publish",
1028
+ "community:force:publish",
1029
+ "community:publish:force",
1030
+ "force:publish:community",
1031
+ "publish:force:community",
1032
+ "publish:community:force"
1033
+ ],
1034
+ "permutations": [
1035
+ "community:publish",
1036
+ "publish:community"
1037
+ ]
1038
+ },
1039
+ "community:list:template": {
745
1040
  "aliases": [
746
1041
  "force:community:template:list"
747
1042
  ],
1043
+ "args": {},
1044
+ "deprecateAliases": true,
1045
+ "description": "See 'Which Experience Cloud Template Should I Use?' (https://help.salesforce.com/s/articleView?id=sf.siteforce_commtemp_intro.htm&type=5) in Salesforce Help for more information about the different template types available for Experience Cloud.",
748
1046
  "examples": [
749
1047
  "Retrieve the template list from an org with alias my-scratch-org:\n<%= config.bin %> <%= command.id %> --target-org my-scratch-org"
750
1048
  ],
751
- "deprecateAliases": true,
752
1049
  "flags": {
753
1050
  "json": {
754
- "name": "json",
755
- "type": "boolean",
756
1051
  "description": "Format output as json.",
757
1052
  "helpGroup": "GLOBAL",
1053
+ "name": "json",
758
1054
  "allowNo": false,
759
- "deprecateAliases": true
1055
+ "type": "boolean"
760
1056
  },
761
1057
  "target-org": {
762
- "name": "target-org",
763
- "type": "option",
764
- "char": "o",
765
- "summary": "Username or alias of the target org.",
766
- "required": true,
767
- "multiple": false,
768
- "deprecateAliases": true,
769
1058
  "aliases": [
770
1059
  "targetusername",
771
1060
  "u"
772
- ]
1061
+ ],
1062
+ "char": "o",
1063
+ "deprecateAliases": true,
1064
+ "name": "target-org",
1065
+ "noCacheDefault": true,
1066
+ "required": true,
1067
+ "summary": "Username or alias of the target org.",
1068
+ "hasDynamicHelp": true,
1069
+ "multiple": false,
1070
+ "type": "option"
773
1071
  },
774
1072
  "api-version": {
775
- "name": "api-version",
776
- "type": "option",
777
- "description": "Override the api version used for api requests made by this command",
778
- "multiple": false,
779
- "deprecateAliases": true,
780
1073
  "aliases": [
781
1074
  "apiversion"
782
- ]
1075
+ ],
1076
+ "deprecateAliases": true,
1077
+ "description": "Override the api version used for api requests made by this command",
1078
+ "name": "api-version",
1079
+ "hasDynamicHelp": false,
1080
+ "multiple": false,
1081
+ "type": "option"
783
1082
  },
784
1083
  "loglevel": {
785
- "name": "loglevel",
786
- "type": "option",
787
- "hidden": true,
788
- "multiple": false,
789
1084
  "deprecated": {
790
1085
  "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."
791
1086
  },
792
- "deprecateAliases": true
1087
+ "hidden": true,
1088
+ "name": "loglevel",
1089
+ "hasDynamicHelp": false,
1090
+ "multiple": false,
1091
+ "type": "option"
793
1092
  }
794
1093
  },
795
- "args": {},
796
- "hasDynamicHelp": true
1094
+ "hasDynamicHelp": true,
1095
+ "hiddenAliases": [],
1096
+ "id": "community:list:template",
1097
+ "pluginAlias": "@salesforce/plugin-community",
1098
+ "pluginName": "@salesforce/plugin-community",
1099
+ "pluginType": "jit",
1100
+ "strict": true,
1101
+ "summary": "Retrieve the list of templates available in your org.",
1102
+ "enableJsonFlag": true,
1103
+ "SF_ENV": "SF_ENV",
1104
+ "isESM": true,
1105
+ "relativePath": [
1106
+ "lib",
1107
+ "commands",
1108
+ "community",
1109
+ "list",
1110
+ "template.js"
1111
+ ],
1112
+ "aliasPermutations": [
1113
+ "force:community:template:list",
1114
+ "community:force:template:list",
1115
+ "community:template:force:list",
1116
+ "community:template:list:force",
1117
+ "force:template:community:list",
1118
+ "template:force:community:list",
1119
+ "template:community:force:list",
1120
+ "template:community:list:force",
1121
+ "force:template:list:community",
1122
+ "template:force:list:community",
1123
+ "template:list:force:community",
1124
+ "template:list:community:force",
1125
+ "force:community:list:template",
1126
+ "community:force:list:template",
1127
+ "community:list:force:template",
1128
+ "community:list:template:force",
1129
+ "force:list:community:template",
1130
+ "list:force:community:template",
1131
+ "list:community:force:template",
1132
+ "list:community:template:force",
1133
+ "force:list:template:community",
1134
+ "list:force:template:community",
1135
+ "list:template:force:community",
1136
+ "list:template:community:force"
1137
+ ],
1138
+ "permutations": [
1139
+ "community:list:template",
1140
+ "list:community:template",
1141
+ "list:template:community",
1142
+ "community:template:list",
1143
+ "template:community:list",
1144
+ "template:list:community"
1145
+ ]
797
1146
  },
798
1147
  "dev:audit:messages": {
799
1148
  "id": "dev:audit:messages",
@@ -5433,485 +5782,813 @@
5433
5782
  "hasDynamicHelp": true
5434
5783
  },
5435
5784
  "org:create:shape": {
5436
- "id": "org:create:shape",
5437
- "summary": "Create a scratch org configuration (shape) based on the specified source org.",
5438
- "description": "Scratch org shapes mimic the baseline setup (features, limits, edition, and Metadata API settings) of a source org without the extraneous data and metadata.\n\nRun \"<%= config.bin %> org list shape\" to view the available org shapes and their IDs.\n\nTo create a scratch org from an org shape, include the \"sourceOrg\" property in the scratch org definition file and set it to the org ID of the source org. Then create a scratch org with the \"<%= config.bin %> force:org:create\" command.",
5439
- "strict": true,
5440
- "pluginName": "@salesforce/plugin-signups",
5441
- "pluginAlias": "@salesforce/plugin-signups",
5442
- "pluginType": "jit",
5443
5785
  "aliases": [
5444
5786
  "force:org:shape:create"
5445
5787
  ],
5788
+ "args": {},
5789
+ "deprecateAliases": true,
5790
+ "description": "Scratch org shapes mimic the baseline setup (features, limits, edition, and Metadata API settings) of a source org without the extraneous data and metadata.\n\nRun \"<%= config.bin %> org list shape\" to view the available org shapes and their IDs.\n\nTo create a scratch org from an org shape, include the \"sourceOrg\" property in the scratch org definition file and set it to the org ID of the source org. Then create a scratch org with the \"<%= config.bin %> force:org:create\" command.",
5446
5791
  "examples": [
5447
5792
  "Create an org shape for the source org with alias SourceOrg:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg"
5448
5793
  ],
5449
- "deprecateAliases": true,
5450
5794
  "flags": {
5451
5795
  "json": {
5452
- "name": "json",
5453
- "type": "boolean",
5454
5796
  "description": "Format output as json.",
5455
5797
  "helpGroup": "GLOBAL",
5798
+ "name": "json",
5456
5799
  "allowNo": false,
5457
- "deprecateAliases": true
5800
+ "type": "boolean"
5458
5801
  },
5459
5802
  "target-org": {
5460
- "name": "target-org",
5461
- "type": "option",
5462
- "char": "o",
5463
- "summary": "Username or alias of the target org.",
5464
- "required": true,
5465
- "multiple": false,
5466
- "deprecateAliases": true,
5467
5803
  "aliases": [
5468
5804
  "targetusername",
5469
5805
  "u"
5470
- ]
5806
+ ],
5807
+ "char": "o",
5808
+ "deprecateAliases": true,
5809
+ "name": "target-org",
5810
+ "noCacheDefault": true,
5811
+ "required": true,
5812
+ "summary": "Username or alias of the target org.",
5813
+ "hasDynamicHelp": true,
5814
+ "multiple": false,
5815
+ "type": "option"
5471
5816
  },
5472
5817
  "api-version": {
5473
- "name": "api-version",
5474
- "type": "option",
5818
+ "aliases": [
5819
+ "apiversion"
5820
+ ],
5821
+ "deprecateAliases": true,
5475
5822
  "description": "Override the api version used for api requests made by this command",
5823
+ "name": "api-version",
5824
+ "hasDynamicHelp": false,
5476
5825
  "multiple": false,
5477
- "deprecateAliases": true,
5478
- "aliases": [
5479
- "apiversion"
5480
- ]
5826
+ "type": "option"
5481
5827
  },
5482
5828
  "loglevel": {
5483
- "name": "loglevel",
5484
- "type": "option",
5485
- "hidden": true,
5486
- "multiple": false,
5487
5829
  "deprecated": {
5488
5830
  "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."
5489
5831
  },
5490
- "deprecateAliases": true
5832
+ "hidden": true,
5833
+ "name": "loglevel",
5834
+ "hasDynamicHelp": false,
5835
+ "multiple": false,
5836
+ "type": "option"
5491
5837
  }
5492
5838
  },
5493
- "args": {},
5494
- "hasDynamicHelp": true
5495
- },
5496
- "org:create:snapshot": {
5497
- "id": "org:create:snapshot",
5498
- "summary": "Create a snapshot of a scratch org.",
5499
- "description": "A snapshot is a point-in-time copy of a scratch org. The copy is referenced by its unique name in a scratch org definition file.\n\nUse \"<%= config.bin %> org get snapshot\" to get details, including status, about a snapshot creation request.\n\nTo create a scratch org from a snapshot, include the \"snapshot\" option (instead of \"edition\") in the scratch org definition file and set it to the name of the snapshot. Then use \"<%= config.bin %> force:org:create\" to create the scratch org.",
5500
- "strict": true,
5501
- "pluginName": "@salesforce/plugin-signups",
5839
+ "hasDynamicHelp": true,
5840
+ "hiddenAliases": [],
5841
+ "id": "org:create:shape",
5502
5842
  "pluginAlias": "@salesforce/plugin-signups",
5843
+ "pluginName": "@salesforce/plugin-signups",
5503
5844
  "pluginType": "jit",
5504
- "state": "closedPilot",
5845
+ "strict": true,
5846
+ "summary": "Create a scratch org configuration (shape) based on the specified source org.",
5847
+ "enableJsonFlag": true,
5848
+ "SF_ENV": "SF_ENV",
5849
+ "isESM": true,
5850
+ "relativePath": [
5851
+ "lib",
5852
+ "commands",
5853
+ "org",
5854
+ "create",
5855
+ "shape.js"
5856
+ ],
5857
+ "aliasPermutations": [
5858
+ "force:org:shape:create",
5859
+ "org:force:shape:create",
5860
+ "org:shape:force:create",
5861
+ "org:shape:create:force",
5862
+ "force:shape:org:create",
5863
+ "shape:force:org:create",
5864
+ "shape:org:force:create",
5865
+ "shape:org:create:force",
5866
+ "force:shape:create:org",
5867
+ "shape:force:create:org",
5868
+ "shape:create:force:org",
5869
+ "shape:create:org:force",
5870
+ "force:org:create:shape",
5871
+ "org:force:create:shape",
5872
+ "org:create:force:shape",
5873
+ "org:create:shape:force",
5874
+ "force:create:org:shape",
5875
+ "create:force:org:shape",
5876
+ "create:org:force:shape",
5877
+ "create:org:shape:force",
5878
+ "force:create:shape:org",
5879
+ "create:force:shape:org",
5880
+ "create:shape:force:org",
5881
+ "create:shape:org:force"
5882
+ ],
5883
+ "permutations": [
5884
+ "org:create:shape",
5885
+ "create:org:shape",
5886
+ "create:shape:org",
5887
+ "org:shape:create",
5888
+ "shape:org:create",
5889
+ "shape:create:org"
5890
+ ]
5891
+ },
5892
+ "org:create:snapshot": {
5505
5893
  "aliases": [
5506
5894
  "force:org:snapshot:create"
5507
5895
  ],
5896
+ "args": {},
5897
+ "deprecateAliases": true,
5898
+ "description": "A snapshot is a point-in-time copy of a scratch org. The copy is referenced by its unique name in a scratch org definition file.\n\nUse \"<%= config.bin %> org get snapshot\" to get details, including status, about a snapshot creation request.\n\nTo create a scratch org from a snapshot, include the \"snapshot\" option (instead of \"edition\") in the scratch org definition file and set it to the name of the snapshot. Then use \"<%= config.bin %> force:org:create\" to create the scratch org.",
5508
5899
  "examples": [
5509
5900
  "Create a snapshot called \"Dependencies\" using the source scratch org ID and your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --source-org 00Dxx0000000000 --name Dependencies --description 'Contains PackageA v1.1.0'",
5510
5901
  "Create a snapshot called \"NightlyBranch\" using the source scratch org username and a Dev Hub org with alias NightlyDevHub:\n<%= config.bin %> <%= command.id %> --source-org myuser@myorg --name NightlyBranch --description 'Contains PkgA v2.1.0 and PkgB 3.3.0' --target-dev-hub NightlyDevHub"
5511
5902
  ],
5512
- "deprecateAliases": true,
5513
5903
  "flags": {
5514
5904
  "json": {
5515
- "name": "json",
5516
- "type": "boolean",
5517
5905
  "description": "Format output as json.",
5518
5906
  "helpGroup": "GLOBAL",
5907
+ "name": "json",
5519
5908
  "allowNo": false,
5520
- "deprecateAliases": true
5909
+ "type": "boolean"
5521
5910
  },
5522
5911
  "target-dev-hub": {
5523
- "name": "target-dev-hub",
5524
- "type": "option",
5912
+ "aliases": [
5913
+ "targetdevhubusername"
5914
+ ],
5525
5915
  "char": "v",
5526
- "summary": "Username or alias of the Dev Hub org.",
5916
+ "deprecateAliases": true,
5917
+ "name": "target-dev-hub",
5918
+ "noCacheDefault": true,
5527
5919
  "required": true,
5920
+ "summary": "Username or alias of the Dev Hub org.",
5921
+ "hasDynamicHelp": true,
5528
5922
  "multiple": false,
5529
- "deprecateAliases": true,
5530
- "aliases": [
5531
- "targetdevhubusername"
5532
- ]
5923
+ "type": "option"
5533
5924
  },
5534
5925
  "api-version": {
5535
- "name": "api-version",
5536
- "type": "option",
5537
- "description": "Override the api version used for api requests made by this command",
5538
- "multiple": false,
5539
- "deprecateAliases": true,
5540
5926
  "aliases": [
5541
5927
  "apiversion"
5542
- ]
5928
+ ],
5929
+ "deprecateAliases": true,
5930
+ "description": "Override the api version used for api requests made by this command",
5931
+ "name": "api-version",
5932
+ "hasDynamicHelp": false,
5933
+ "multiple": false,
5934
+ "type": "option"
5543
5935
  },
5544
5936
  "loglevel": {
5545
- "name": "loglevel",
5546
- "type": "option",
5547
- "hidden": true,
5548
- "multiple": false,
5549
5937
  "deprecated": {
5550
5938
  "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."
5551
5939
  },
5552
- "deprecateAliases": true
5940
+ "hidden": true,
5941
+ "name": "loglevel",
5942
+ "hasDynamicHelp": false,
5943
+ "multiple": false,
5944
+ "type": "option"
5553
5945
  },
5554
5946
  "source-org": {
5555
- "name": "source-org",
5556
- "type": "option",
5947
+ "aliases": [
5948
+ "sourceorg"
5949
+ ],
5557
5950
  "char": "o",
5558
- "summary": "ID or locally authenticated username or alias of scratch org to snapshot.",
5951
+ "deprecateAliases": true,
5952
+ "name": "source-org",
5559
5953
  "required": true,
5954
+ "summary": "ID or locally authenticated username or alias of scratch org to snapshot.",
5955
+ "hasDynamicHelp": false,
5560
5956
  "multiple": false,
5561
- "deprecateAliases": true,
5562
- "aliases": [
5563
- "sourceorg"
5564
- ]
5957
+ "type": "option"
5565
5958
  },
5566
5959
  "name": {
5567
- "name": "name",
5568
- "type": "option",
5960
+ "aliases": [
5961
+ "snapshotname"
5962
+ ],
5569
5963
  "char": "n",
5570
- "summary": "Unique name of snapshot.",
5964
+ "deprecateAliases": true,
5965
+ "name": "name",
5571
5966
  "required": true,
5967
+ "summary": "Unique name of snapshot.",
5968
+ "hasDynamicHelp": false,
5572
5969
  "multiple": false,
5573
- "deprecateAliases": true,
5574
- "aliases": [
5575
- "snapshotname"
5576
- ]
5970
+ "type": "option"
5577
5971
  },
5578
5972
  "description": {
5579
- "name": "description",
5580
- "type": "option",
5581
5973
  "char": "d",
5582
- "summary": "Description of snapshot.",
5583
5974
  "description": "Use this description to document the contents of the snapshot. We suggest that you include a reference point, such as a version control system tag or commit ID.",
5975
+ "name": "description",
5976
+ "summary": "Description of snapshot.",
5977
+ "hasDynamicHelp": false,
5584
5978
  "multiple": false,
5585
- "deprecateAliases": true
5979
+ "type": "option"
5586
5980
  }
5587
5981
  },
5588
- "args": {},
5589
- "hasDynamicHelp": true
5590
- },
5591
- "org:delete:shape": {
5592
- "id": "org:delete:shape",
5593
- "summary": "Delete all org shapes for a target org.",
5594
- "description": "A source org can have only one active org shape. If you try to create an org shape for a source org that already has one, the previous shape is marked inactive and replaced by a new active shape. If you don’t want to create scratch orgs based on this shape, you can delete the org shape.",
5595
- "strict": true,
5596
- "pluginName": "@salesforce/plugin-signups",
5982
+ "hasDynamicHelp": true,
5983
+ "hiddenAliases": [],
5984
+ "id": "org:create:snapshot",
5597
5985
  "pluginAlias": "@salesforce/plugin-signups",
5986
+ "pluginName": "@salesforce/plugin-signups",
5598
5987
  "pluginType": "jit",
5988
+ "state": "closedPilot",
5989
+ "strict": true,
5990
+ "summary": "Create a snapshot of a scratch org.",
5991
+ "enableJsonFlag": true,
5992
+ "SF_ENV": "SF_ENV",
5993
+ "isESM": true,
5994
+ "relativePath": [
5995
+ "lib",
5996
+ "commands",
5997
+ "org",
5998
+ "create",
5999
+ "snapshot.js"
6000
+ ],
6001
+ "aliasPermutations": [
6002
+ "force:org:snapshot:create",
6003
+ "org:force:snapshot:create",
6004
+ "org:snapshot:force:create",
6005
+ "org:snapshot:create:force",
6006
+ "force:snapshot:org:create",
6007
+ "snapshot:force:org:create",
6008
+ "snapshot:org:force:create",
6009
+ "snapshot:org:create:force",
6010
+ "force:snapshot:create:org",
6011
+ "snapshot:force:create:org",
6012
+ "snapshot:create:force:org",
6013
+ "snapshot:create:org:force",
6014
+ "force:org:create:snapshot",
6015
+ "org:force:create:snapshot",
6016
+ "org:create:force:snapshot",
6017
+ "org:create:snapshot:force",
6018
+ "force:create:org:snapshot",
6019
+ "create:force:org:snapshot",
6020
+ "create:org:force:snapshot",
6021
+ "create:org:snapshot:force",
6022
+ "force:create:snapshot:org",
6023
+ "create:force:snapshot:org",
6024
+ "create:snapshot:force:org",
6025
+ "create:snapshot:org:force"
6026
+ ],
6027
+ "permutations": [
6028
+ "org:create:snapshot",
6029
+ "create:org:snapshot",
6030
+ "create:snapshot:org",
6031
+ "org:snapshot:create",
6032
+ "snapshot:org:create",
6033
+ "snapshot:create:org"
6034
+ ]
6035
+ },
6036
+ "org:delete:shape": {
5599
6037
  "aliases": [
5600
6038
  "force:org:shape:delete"
5601
6039
  ],
6040
+ "args": {},
6041
+ "deprecateAliases": true,
6042
+ "description": "A source org can have only one active org shape. If you try to create an org shape for a source org that already has one, the previous shape is marked inactive and replaced by a new active shape. If you don’t want to create scratch orgs based on this shape, you can delete the org shape.",
5602
6043
  "examples": [
5603
6044
  "Delete all org shapes for the source org with alias SourceOrg:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg",
5604
6045
  "Delete all org shapes without prompting:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg --no-prompt"
5605
6046
  ],
5606
- "deprecateAliases": true,
5607
6047
  "flags": {
5608
6048
  "json": {
5609
- "name": "json",
5610
- "type": "boolean",
5611
6049
  "description": "Format output as json.",
5612
6050
  "helpGroup": "GLOBAL",
6051
+ "name": "json",
5613
6052
  "allowNo": false,
5614
- "deprecateAliases": true
6053
+ "type": "boolean"
5615
6054
  },
5616
6055
  "target-org": {
5617
- "name": "target-org",
5618
- "type": "option",
5619
- "char": "o",
5620
- "summary": "Username or alias of the target org.",
5621
- "required": true,
5622
- "multiple": false,
5623
- "deprecateAliases": true,
5624
6056
  "aliases": [
5625
6057
  "targetusername",
5626
6058
  "u"
5627
- ]
6059
+ ],
6060
+ "char": "o",
6061
+ "deprecateAliases": true,
6062
+ "name": "target-org",
6063
+ "noCacheDefault": true,
6064
+ "required": true,
6065
+ "summary": "Username or alias of the target org.",
6066
+ "hasDynamicHelp": true,
6067
+ "multiple": false,
6068
+ "type": "option"
5628
6069
  },
5629
6070
  "api-version": {
5630
- "name": "api-version",
5631
- "type": "option",
5632
- "description": "Override the api version used for api requests made by this command",
5633
- "multiple": false,
5634
- "deprecateAliases": true,
5635
6071
  "aliases": [
5636
6072
  "apiversion"
5637
- ]
6073
+ ],
6074
+ "deprecateAliases": true,
6075
+ "description": "Override the api version used for api requests made by this command",
6076
+ "name": "api-version",
6077
+ "hasDynamicHelp": false,
6078
+ "multiple": false,
6079
+ "type": "option"
5638
6080
  },
5639
6081
  "loglevel": {
5640
- "name": "loglevel",
5641
- "type": "option",
5642
- "hidden": true,
5643
- "multiple": false,
5644
6082
  "deprecated": {
5645
6083
  "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."
5646
6084
  },
5647
- "deprecateAliases": true
6085
+ "hidden": true,
6086
+ "name": "loglevel",
6087
+ "hasDynamicHelp": false,
6088
+ "multiple": false,
6089
+ "type": "option"
5648
6090
  },
5649
6091
  "no-prompt": {
5650
- "name": "no-prompt",
5651
- "type": "boolean",
6092
+ "aliases": [
6093
+ "noprompt"
6094
+ ],
5652
6095
  "char": "p",
6096
+ "deprecateAliases": true,
6097
+ "name": "no-prompt",
5653
6098
  "summary": "Don't prompt for confirmation.",
5654
6099
  "allowNo": false,
5655
- "deprecateAliases": true,
5656
- "aliases": [
5657
- "noprompt"
5658
- ]
6100
+ "type": "boolean"
5659
6101
  }
5660
6102
  },
5661
- "args": {},
5662
- "hasDynamicHelp": true
5663
- },
5664
- "org:delete:snapshot": {
5665
- "id": "org:delete:snapshot",
5666
- "summary": "Delete a scratch org snapshot.",
5667
- "description": "Dev Hub admins can delete any snapshot, while users can delete only their own unless a Dev Hub admin gives the user Modify All permissions.",
5668
- "strict": true,
5669
- "pluginName": "@salesforce/plugin-signups",
6103
+ "hasDynamicHelp": true,
6104
+ "hiddenAliases": [],
6105
+ "id": "org:delete:shape",
5670
6106
  "pluginAlias": "@salesforce/plugin-signups",
6107
+ "pluginName": "@salesforce/plugin-signups",
5671
6108
  "pluginType": "jit",
5672
- "state": "closedPilot",
6109
+ "strict": true,
6110
+ "summary": "Delete all org shapes for a target org.",
6111
+ "enableJsonFlag": true,
6112
+ "SF_ENV": "SF_ENV",
6113
+ "isESM": true,
6114
+ "relativePath": [
6115
+ "lib",
6116
+ "commands",
6117
+ "org",
6118
+ "delete",
6119
+ "shape.js"
6120
+ ],
6121
+ "aliasPermutations": [
6122
+ "force:org:shape:delete",
6123
+ "org:force:shape:delete",
6124
+ "org:shape:force:delete",
6125
+ "org:shape:delete:force",
6126
+ "force:shape:org:delete",
6127
+ "shape:force:org:delete",
6128
+ "shape:org:force:delete",
6129
+ "shape:org:delete:force",
6130
+ "force:shape:delete:org",
6131
+ "shape:force:delete:org",
6132
+ "shape:delete:force:org",
6133
+ "shape:delete:org:force",
6134
+ "force:org:delete:shape",
6135
+ "org:force:delete:shape",
6136
+ "org:delete:force:shape",
6137
+ "org:delete:shape:force",
6138
+ "force:delete:org:shape",
6139
+ "delete:force:org:shape",
6140
+ "delete:org:force:shape",
6141
+ "delete:org:shape:force",
6142
+ "force:delete:shape:org",
6143
+ "delete:force:shape:org",
6144
+ "delete:shape:force:org",
6145
+ "delete:shape:org:force"
6146
+ ],
6147
+ "permutations": [
6148
+ "org:delete:shape",
6149
+ "delete:org:shape",
6150
+ "delete:shape:org",
6151
+ "org:shape:delete",
6152
+ "shape:org:delete",
6153
+ "shape:delete:org"
6154
+ ]
6155
+ },
6156
+ "org:delete:snapshot": {
5673
6157
  "aliases": [
5674
6158
  "force:org:snapshot:delete"
5675
6159
  ],
6160
+ "args": {},
6161
+ "deprecateAliases": true,
6162
+ "description": "Dev Hub admins can delete any snapshot, while users can delete only their own unless a Dev Hub admin gives the user Modify All permissions.",
5676
6163
  "examples": [
5677
6164
  "Delete a snapshot from the default Dev Hub using the snapshot ID:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
5678
6165
  "Delete a snapshot from the specified Dev Hub using the snapshot name:\n<%= config.bin %> <%= command.id %> --snapshot BaseSnapshot --target-dev-hub SnapshotDevHub"
5679
6166
  ],
5680
- "deprecateAliases": true,
5681
6167
  "flags": {
5682
6168
  "json": {
5683
- "name": "json",
5684
- "type": "boolean",
5685
6169
  "description": "Format output as json.",
5686
6170
  "helpGroup": "GLOBAL",
6171
+ "name": "json",
5687
6172
  "allowNo": false,
5688
- "deprecateAliases": true
6173
+ "type": "boolean"
5689
6174
  },
5690
6175
  "target-dev-hub": {
5691
- "name": "target-dev-hub",
5692
- "type": "option",
6176
+ "aliases": [
6177
+ "targetdevhubusername"
6178
+ ],
5693
6179
  "char": "v",
5694
- "summary": "Username or alias of the Dev Hub org.",
6180
+ "deprecateAliases": true,
6181
+ "name": "target-dev-hub",
6182
+ "noCacheDefault": true,
5695
6183
  "required": true,
6184
+ "summary": "Username or alias of the Dev Hub org.",
6185
+ "hasDynamicHelp": true,
5696
6186
  "multiple": false,
5697
- "deprecateAliases": true,
5698
- "aliases": [
5699
- "targetdevhubusername"
5700
- ]
6187
+ "type": "option"
5701
6188
  },
5702
6189
  "api-version": {
5703
- "name": "api-version",
5704
- "type": "option",
5705
- "description": "Override the api version used for api requests made by this command",
5706
- "multiple": false,
5707
- "deprecateAliases": true,
5708
6190
  "aliases": [
5709
6191
  "apiversion"
5710
- ]
6192
+ ],
6193
+ "deprecateAliases": true,
6194
+ "description": "Override the api version used for api requests made by this command",
6195
+ "name": "api-version",
6196
+ "hasDynamicHelp": false,
6197
+ "multiple": false,
6198
+ "type": "option"
5711
6199
  },
5712
6200
  "loglevel": {
5713
- "name": "loglevel",
5714
- "type": "option",
5715
- "hidden": true,
5716
- "multiple": false,
5717
6201
  "deprecated": {
5718
6202
  "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."
5719
6203
  },
5720
- "deprecateAliases": true
6204
+ "hidden": true,
6205
+ "name": "loglevel",
6206
+ "hasDynamicHelp": false,
6207
+ "multiple": false,
6208
+ "type": "option"
5721
6209
  },
5722
6210
  "snapshot": {
5723
- "name": "snapshot",
5724
- "type": "option",
5725
6211
  "char": "s",
5726
- "summary": "Name or ID of snapshot to delete.",
5727
6212
  "description": "The IDs of scratch org snapshots start with 0Oo.",
6213
+ "name": "snapshot",
5728
6214
  "required": true,
6215
+ "summary": "Name or ID of snapshot to delete.",
6216
+ "hasDynamicHelp": false,
5729
6217
  "multiple": false,
5730
- "deprecateAliases": true
6218
+ "type": "option"
5731
6219
  }
5732
6220
  },
5733
- "args": {},
5734
- "hasDynamicHelp": true
5735
- },
5736
- "org:get:snapshot": {
5737
- "id": "org:get:snapshot",
5738
- "summary": "Get details about a scratch org snapshot.",
5739
- "description": "Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After the status changes to Active, you can use the snapshot to create scratch orgs.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To retrieve a list of all snapshots, use \"<%= config.bin %> org list snapshot\".",
5740
- "strict": true,
5741
- "pluginName": "@salesforce/plugin-signups",
6221
+ "hasDynamicHelp": true,
6222
+ "hiddenAliases": [],
6223
+ "id": "org:delete:snapshot",
5742
6224
  "pluginAlias": "@salesforce/plugin-signups",
6225
+ "pluginName": "@salesforce/plugin-signups",
5743
6226
  "pluginType": "jit",
5744
6227
  "state": "closedPilot",
6228
+ "strict": true,
6229
+ "summary": "Delete a scratch org snapshot.",
6230
+ "enableJsonFlag": true,
6231
+ "SF_ENV": "SF_ENV",
6232
+ "isESM": true,
6233
+ "relativePath": [
6234
+ "lib",
6235
+ "commands",
6236
+ "org",
6237
+ "delete",
6238
+ "snapshot.js"
6239
+ ],
6240
+ "aliasPermutations": [
6241
+ "force:org:snapshot:delete",
6242
+ "org:force:snapshot:delete",
6243
+ "org:snapshot:force:delete",
6244
+ "org:snapshot:delete:force",
6245
+ "force:snapshot:org:delete",
6246
+ "snapshot:force:org:delete",
6247
+ "snapshot:org:force:delete",
6248
+ "snapshot:org:delete:force",
6249
+ "force:snapshot:delete:org",
6250
+ "snapshot:force:delete:org",
6251
+ "snapshot:delete:force:org",
6252
+ "snapshot:delete:org:force",
6253
+ "force:org:delete:snapshot",
6254
+ "org:force:delete:snapshot",
6255
+ "org:delete:force:snapshot",
6256
+ "org:delete:snapshot:force",
6257
+ "force:delete:org:snapshot",
6258
+ "delete:force:org:snapshot",
6259
+ "delete:org:force:snapshot",
6260
+ "delete:org:snapshot:force",
6261
+ "force:delete:snapshot:org",
6262
+ "delete:force:snapshot:org",
6263
+ "delete:snapshot:force:org",
6264
+ "delete:snapshot:org:force"
6265
+ ],
6266
+ "permutations": [
6267
+ "org:delete:snapshot",
6268
+ "delete:org:snapshot",
6269
+ "delete:snapshot:org",
6270
+ "org:snapshot:delete",
6271
+ "snapshot:org:delete",
6272
+ "snapshot:delete:org"
6273
+ ]
6274
+ },
6275
+ "org:get:snapshot": {
5745
6276
  "aliases": [
5746
6277
  "force:org:snapshot:get"
5747
6278
  ],
6279
+ "args": {},
6280
+ "deprecateAliases": true,
6281
+ "description": "Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After the status changes to Active, you can use the snapshot to create scratch orgs.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To retrieve a list of all snapshots, use \"<%= config.bin %> org list snapshot\".",
5748
6282
  "examples": [
5749
6283
  "Get snapshot details using its ID and the default Dev Hub org:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
5750
6284
  "Get snapshot details using its name from a Dev Hub org with alias SnapshotDevHub:\n<%= config.bin %> <%= command.id %> --snapshot Dependencies --target-dev-hub SnapshotDevHub"
5751
6285
  ],
5752
- "deprecateAliases": true,
5753
6286
  "flags": {
5754
6287
  "json": {
5755
- "name": "json",
5756
- "type": "boolean",
5757
6288
  "description": "Format output as json.",
5758
6289
  "helpGroup": "GLOBAL",
6290
+ "name": "json",
5759
6291
  "allowNo": false,
5760
- "deprecateAliases": true
6292
+ "type": "boolean"
5761
6293
  },
5762
6294
  "target-dev-hub": {
5763
- "name": "target-dev-hub",
5764
- "type": "option",
6295
+ "aliases": [
6296
+ "targetdevhubusername"
6297
+ ],
5765
6298
  "char": "v",
5766
- "summary": "Username or alias of the Dev Hub org.",
6299
+ "deprecateAliases": true,
6300
+ "name": "target-dev-hub",
6301
+ "noCacheDefault": true,
5767
6302
  "required": true,
6303
+ "summary": "Username or alias of the Dev Hub org.",
6304
+ "hasDynamicHelp": true,
5768
6305
  "multiple": false,
5769
- "deprecateAliases": true,
5770
- "aliases": [
5771
- "targetdevhubusername"
5772
- ]
6306
+ "type": "option"
5773
6307
  },
5774
6308
  "api-version": {
5775
- "name": "api-version",
5776
- "type": "option",
5777
- "description": "Override the api version used for api requests made by this command",
5778
- "multiple": false,
5779
- "deprecateAliases": true,
5780
6309
  "aliases": [
5781
6310
  "apiversion"
5782
- ]
6311
+ ],
6312
+ "deprecateAliases": true,
6313
+ "description": "Override the api version used for api requests made by this command",
6314
+ "name": "api-version",
6315
+ "hasDynamicHelp": false,
6316
+ "multiple": false,
6317
+ "type": "option"
5783
6318
  },
5784
6319
  "loglevel": {
5785
- "name": "loglevel",
5786
- "type": "option",
5787
- "hidden": true,
5788
- "multiple": false,
5789
6320
  "deprecated": {
5790
6321
  "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."
5791
6322
  },
5792
- "deprecateAliases": true
6323
+ "hidden": true,
6324
+ "name": "loglevel",
6325
+ "hasDynamicHelp": false,
6326
+ "multiple": false,
6327
+ "type": "option"
5793
6328
  },
5794
6329
  "snapshot": {
5795
- "name": "snapshot",
5796
- "type": "option",
5797
6330
  "char": "s",
5798
- "summary": "Name or ID of snapshot to retrieve.",
5799
6331
  "description": "The IDs of scratch org snapshots start with 0Oo.",
6332
+ "name": "snapshot",
5800
6333
  "required": true,
6334
+ "summary": "Name or ID of snapshot to retrieve.",
6335
+ "hasDynamicHelp": false,
5801
6336
  "multiple": false,
5802
- "deprecateAliases": true
6337
+ "type": "option"
5803
6338
  }
5804
6339
  },
5805
- "args": {},
5806
- "hasDynamicHelp": true
5807
- },
5808
- "org:list:shape": {
5809
- "id": "org:list:shape",
5810
- "summary": "List all org shapes you’ve created.",
5811
- "description": "The output includes the alias, username, and ID of the source org, the status of the org shape creation, and more. Use the org ID to update your scratch org configuration file so you can create a scratch org based on this org shape.",
5812
- "strict": true,
5813
- "pluginName": "@salesforce/plugin-signups",
6340
+ "hasDynamicHelp": true,
6341
+ "hiddenAliases": [],
6342
+ "id": "org:get:snapshot",
5814
6343
  "pluginAlias": "@salesforce/plugin-signups",
6344
+ "pluginName": "@salesforce/plugin-signups",
5815
6345
  "pluginType": "jit",
6346
+ "state": "closedPilot",
6347
+ "strict": true,
6348
+ "summary": "Get details about a scratch org snapshot.",
6349
+ "enableJsonFlag": true,
6350
+ "SF_ENV": "SF_ENV",
6351
+ "isESM": true,
6352
+ "relativePath": [
6353
+ "lib",
6354
+ "commands",
6355
+ "org",
6356
+ "get",
6357
+ "snapshot.js"
6358
+ ],
6359
+ "aliasPermutations": [
6360
+ "force:org:snapshot:get",
6361
+ "org:force:snapshot:get",
6362
+ "org:snapshot:force:get",
6363
+ "org:snapshot:get:force",
6364
+ "force:snapshot:org:get",
6365
+ "snapshot:force:org:get",
6366
+ "snapshot:org:force:get",
6367
+ "snapshot:org:get:force",
6368
+ "force:snapshot:get:org",
6369
+ "snapshot:force:get:org",
6370
+ "snapshot:get:force:org",
6371
+ "snapshot:get:org:force",
6372
+ "force:org:get:snapshot",
6373
+ "org:force:get:snapshot",
6374
+ "org:get:force:snapshot",
6375
+ "org:get:snapshot:force",
6376
+ "force:get:org:snapshot",
6377
+ "get:force:org:snapshot",
6378
+ "get:org:force:snapshot",
6379
+ "get:org:snapshot:force",
6380
+ "force:get:snapshot:org",
6381
+ "get:force:snapshot:org",
6382
+ "get:snapshot:force:org",
6383
+ "get:snapshot:org:force"
6384
+ ],
6385
+ "permutations": [
6386
+ "org:get:snapshot",
6387
+ "get:org:snapshot",
6388
+ "get:snapshot:org",
6389
+ "org:snapshot:get",
6390
+ "snapshot:org:get",
6391
+ "snapshot:get:org"
6392
+ ]
6393
+ },
6394
+ "org:list:shape": {
5816
6395
  "aliases": [
5817
6396
  "force:org:shape:list"
5818
6397
  ],
6398
+ "args": {},
6399
+ "deprecateAliases": true,
6400
+ "description": "The output includes the alias, username, and ID of the source org, the status of the org shape creation, and more. Use the org ID to update your scratch org configuration file so you can create a scratch org based on this org shape.",
5819
6401
  "examples": [
5820
6402
  "List all org shapes you've created:\n<%= config.bin %> <%= command.id %>",
5821
6403
  "List all org shapes in JSON format and write the output to a file:\n<%= config.bin %> <%= command.id %> --json > tmp/MyOrgShapeList.json"
5822
6404
  ],
5823
- "deprecateAliases": true,
5824
6405
  "flags": {
5825
6406
  "json": {
5826
- "name": "json",
5827
- "type": "boolean",
5828
6407
  "description": "Format output as json.",
5829
6408
  "helpGroup": "GLOBAL",
6409
+ "name": "json",
5830
6410
  "allowNo": false,
5831
- "deprecateAliases": true
6411
+ "type": "boolean"
5832
6412
  },
5833
6413
  "verbose": {
6414
+ "hidden": true,
5834
6415
  "name": "verbose",
5835
- "type": "boolean",
5836
6416
  "summary": "List more information about each org shape.",
5837
- "hidden": true,
5838
6417
  "allowNo": false,
5839
- "deprecateAliases": true
6418
+ "type": "boolean"
5840
6419
  },
5841
6420
  "loglevel": {
5842
- "name": "loglevel",
5843
- "type": "option",
5844
- "hidden": true,
5845
- "multiple": false,
5846
6421
  "deprecated": {
5847
6422
  "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."
5848
6423
  },
5849
- "deprecateAliases": true
6424
+ "hidden": true,
6425
+ "name": "loglevel",
6426
+ "hasDynamicHelp": false,
6427
+ "multiple": false,
6428
+ "type": "option"
5850
6429
  }
5851
6430
  },
5852
- "args": {}
5853
- },
5854
- "org:list:snapshot": {
5855
- "id": "org:list:snapshot",
5856
- "summary": "List scratch org snapshots.",
5857
- "description": "You can view all the snapshots in a Dev Hub that you have access to. If you’re an admin, you can see all snapshots associated with the Dev Hub org. If you’re a user, you can see only your snapshots unless a Dev Hub admin gives you View All permissions.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To get details about a snapshot request, use \"<%= config.bin %> org get snapshot\".",
5858
- "strict": true,
5859
- "pluginName": "@salesforce/plugin-signups",
6431
+ "hasDynamicHelp": false,
6432
+ "hiddenAliases": [],
6433
+ "id": "org:list:shape",
5860
6434
  "pluginAlias": "@salesforce/plugin-signups",
6435
+ "pluginName": "@salesforce/plugin-signups",
5861
6436
  "pluginType": "jit",
5862
- "state": "closedPilot",
6437
+ "strict": true,
6438
+ "summary": "List all org shapes you’ve created.",
6439
+ "enableJsonFlag": true,
6440
+ "SF_ENV": "SF_ENV",
6441
+ "isESM": true,
6442
+ "relativePath": [
6443
+ "lib",
6444
+ "commands",
6445
+ "org",
6446
+ "list",
6447
+ "shape.js"
6448
+ ],
6449
+ "aliasPermutations": [
6450
+ "force:org:shape:list",
6451
+ "org:force:shape:list",
6452
+ "org:shape:force:list",
6453
+ "org:shape:list:force",
6454
+ "force:shape:org:list",
6455
+ "shape:force:org:list",
6456
+ "shape:org:force:list",
6457
+ "shape:org:list:force",
6458
+ "force:shape:list:org",
6459
+ "shape:force:list:org",
6460
+ "shape:list:force:org",
6461
+ "shape:list:org:force",
6462
+ "force:org:list:shape",
6463
+ "org:force:list:shape",
6464
+ "org:list:force:shape",
6465
+ "org:list:shape:force",
6466
+ "force:list:org:shape",
6467
+ "list:force:org:shape",
6468
+ "list:org:force:shape",
6469
+ "list:org:shape:force",
6470
+ "force:list:shape:org",
6471
+ "list:force:shape:org",
6472
+ "list:shape:force:org",
6473
+ "list:shape:org:force"
6474
+ ],
6475
+ "permutations": [
6476
+ "org:list:shape",
6477
+ "list:org:shape",
6478
+ "list:shape:org",
6479
+ "org:shape:list",
6480
+ "shape:org:list",
6481
+ "shape:list:org"
6482
+ ]
6483
+ },
6484
+ "org:list:snapshot": {
5863
6485
  "aliases": [
5864
6486
  "force:org:snapshot:list"
5865
6487
  ],
6488
+ "args": {},
6489
+ "deprecateAliases": true,
6490
+ "description": "You can view all the snapshots in a Dev Hub that you have access to. If you’re an admin, you can see all snapshots associated with the Dev Hub org. If you’re a user, you can see only your snapshots unless a Dev Hub admin gives you View All permissions.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To get details about a snapshot request, use \"<%= config.bin %> org get snapshot\".",
5866
6491
  "examples": [
5867
6492
  "List snapshots in the default Dev Hub:\n<%= config.bin %> <%= command.id %>",
5868
6493
  "List snapshots in the Dev Hub with alias SnapshotDevHub:\n<%= config.bin %> <%= command.id %> --target-dev-hub SnapshotDevHub"
5869
6494
  ],
5870
- "deprecateAliases": true,
5871
6495
  "flags": {
5872
6496
  "json": {
5873
- "name": "json",
5874
- "type": "boolean",
5875
6497
  "description": "Format output as json.",
5876
6498
  "helpGroup": "GLOBAL",
6499
+ "name": "json",
5877
6500
  "allowNo": false,
5878
- "deprecateAliases": true
6501
+ "type": "boolean"
5879
6502
  },
5880
6503
  "target-dev-hub": {
5881
- "name": "target-dev-hub",
5882
- "type": "option",
6504
+ "aliases": [
6505
+ "targetdevhubusername"
6506
+ ],
5883
6507
  "char": "v",
5884
- "summary": "Username or alias of the Dev Hub org.",
6508
+ "deprecateAliases": true,
6509
+ "name": "target-dev-hub",
6510
+ "noCacheDefault": true,
5885
6511
  "required": true,
6512
+ "summary": "Username or alias of the Dev Hub org.",
6513
+ "hasDynamicHelp": true,
5886
6514
  "multiple": false,
5887
- "deprecateAliases": true,
5888
- "aliases": [
5889
- "targetdevhubusername"
5890
- ]
6515
+ "type": "option"
5891
6516
  },
5892
6517
  "api-version": {
5893
- "name": "api-version",
5894
- "type": "option",
5895
- "description": "Override the api version used for api requests made by this command",
5896
- "multiple": false,
5897
- "deprecateAliases": true,
5898
6518
  "aliases": [
5899
6519
  "apiversion"
5900
- ]
6520
+ ],
6521
+ "deprecateAliases": true,
6522
+ "description": "Override the api version used for api requests made by this command",
6523
+ "name": "api-version",
6524
+ "hasDynamicHelp": false,
6525
+ "multiple": false,
6526
+ "type": "option"
5901
6527
  },
5902
6528
  "loglevel": {
5903
- "name": "loglevel",
5904
- "type": "option",
5905
- "hidden": true,
5906
- "multiple": false,
5907
6529
  "deprecated": {
5908
6530
  "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."
5909
6531
  },
5910
- "deprecateAliases": true
6532
+ "hidden": true,
6533
+ "name": "loglevel",
6534
+ "hasDynamicHelp": false,
6535
+ "multiple": false,
6536
+ "type": "option"
5911
6537
  }
5912
6538
  },
5913
- "args": {},
5914
- "hasDynamicHelp": true
6539
+ "hasDynamicHelp": true,
6540
+ "hiddenAliases": [],
6541
+ "id": "org:list:snapshot",
6542
+ "pluginAlias": "@salesforce/plugin-signups",
6543
+ "pluginName": "@salesforce/plugin-signups",
6544
+ "pluginType": "jit",
6545
+ "state": "closedPilot",
6546
+ "strict": true,
6547
+ "summary": "List scratch org snapshots.",
6548
+ "enableJsonFlag": true,
6549
+ "SF_ENV": "SF_ENV",
6550
+ "isESM": true,
6551
+ "relativePath": [
6552
+ "lib",
6553
+ "commands",
6554
+ "org",
6555
+ "list",
6556
+ "snapshot.js"
6557
+ ],
6558
+ "aliasPermutations": [
6559
+ "force:org:snapshot:list",
6560
+ "org:force:snapshot:list",
6561
+ "org:snapshot:force:list",
6562
+ "org:snapshot:list:force",
6563
+ "force:snapshot:org:list",
6564
+ "snapshot:force:org:list",
6565
+ "snapshot:org:force:list",
6566
+ "snapshot:org:list:force",
6567
+ "force:snapshot:list:org",
6568
+ "snapshot:force:list:org",
6569
+ "snapshot:list:force:org",
6570
+ "snapshot:list:org:force",
6571
+ "force:org:list:snapshot",
6572
+ "org:force:list:snapshot",
6573
+ "org:list:force:snapshot",
6574
+ "org:list:snapshot:force",
6575
+ "force:list:org:snapshot",
6576
+ "list:force:org:snapshot",
6577
+ "list:org:force:snapshot",
6578
+ "list:org:snapshot:force",
6579
+ "force:list:snapshot:org",
6580
+ "list:force:snapshot:org",
6581
+ "list:snapshot:force:org",
6582
+ "list:snapshot:org:force"
6583
+ ],
6584
+ "permutations": [
6585
+ "org:list:snapshot",
6586
+ "list:org:snapshot",
6587
+ "list:snapshot:org",
6588
+ "org:snapshot:list",
6589
+ "snapshot:org:list",
6590
+ "snapshot:list:org"
6591
+ ]
5915
6592
  },
5916
6593
  "force:lightning:lwc:test:create": {
5917
6594
  "id": "force:lightning:lwc:test:create",
@@ -6934,5 +7611,5 @@
6934
7611
  ]
6935
7612
  }
6936
7613
  },
6937
- "version": "2.18.5"
7614
+ "version": "2.18.7"
6938
7615
  }