@salesforce/cli 2.18.6 → 2.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +129 -165
- package/npm-shrinkwrap.json +666 -674
- package/oclif.manifest.json +1317 -831
- package/package.json +29 -29
package/oclif.manifest.json
CHANGED
|
@@ -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
|
-
"
|
|
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
|
-
"
|
|
39
|
-
|
|
34
|
+
"aliases": [
|
|
35
|
+
"fieldname"
|
|
36
|
+
],
|
|
40
37
|
"char": "n",
|
|
41
|
-
"
|
|
38
|
+
"name": "name",
|
|
42
39
|
"required": true,
|
|
40
|
+
"summary": "Unique name for the field.",
|
|
41
|
+
"hasDynamicHelp": false,
|
|
43
42
|
"multiple": false,
|
|
44
|
-
"
|
|
45
|
-
"fieldname"
|
|
46
|
-
]
|
|
43
|
+
"type": "option"
|
|
47
44
|
},
|
|
48
45
|
"type": {
|
|
49
|
-
"
|
|
50
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
87
|
-
|
|
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
|
-
"
|
|
90
|
+
"name": "decimal-places",
|
|
91
|
+
"summary": "Number of decimal places to use for number or percent fields.",
|
|
92
92
|
"default": 0,
|
|
93
|
-
"
|
|
94
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
119
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
180
|
-
|
|
239
|
+
"aliases": [
|
|
240
|
+
"devname"
|
|
241
|
+
],
|
|
181
242
|
"char": "n",
|
|
182
|
-
"
|
|
243
|
+
"name": "dev-name",
|
|
183
244
|
"required": true,
|
|
245
|
+
"summary": "Name of the custom metadata type.",
|
|
246
|
+
"hasDynamicHelp": false,
|
|
184
247
|
"multiple": false,
|
|
185
|
-
"
|
|
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
|
-
"
|
|
254
|
+
"hasDynamicHelp": false,
|
|
255
|
+
"multiple": false,
|
|
256
|
+
"type": "option"
|
|
195
257
|
},
|
|
196
258
|
"plural-label": {
|
|
197
|
-
"
|
|
198
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
282
|
+
"type": "option"
|
|
219
283
|
},
|
|
220
284
|
"sobject": {
|
|
221
|
-
"
|
|
222
|
-
|
|
285
|
+
"aliases": [
|
|
286
|
+
"sobjectname"
|
|
287
|
+
],
|
|
223
288
|
"char": "s",
|
|
224
|
-
"
|
|
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
|
-
"
|
|
228
|
-
"sobjectname"
|
|
229
|
-
]
|
|
294
|
+
"type": "option"
|
|
230
295
|
},
|
|
231
296
|
"ignore-unsupported": {
|
|
232
|
-
"
|
|
233
|
-
|
|
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
|
-
"
|
|
239
|
-
"ignoreunsupported"
|
|
240
|
-
]
|
|
305
|
+
"type": "boolean"
|
|
241
306
|
},
|
|
242
307
|
"type-output-directory": {
|
|
243
|
-
"
|
|
244
|
-
|
|
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
|
-
"
|
|
250
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
304
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
414
|
+
"hasDynamicHelp": false,
|
|
415
|
+
"multiple": false,
|
|
416
|
+
"type": "option"
|
|
320
417
|
},
|
|
321
418
|
"plural-label": {
|
|
322
|
-
"
|
|
323
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
360
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
397
|
-
|
|
527
|
+
"aliases": [
|
|
528
|
+
"typename"
|
|
529
|
+
],
|
|
398
530
|
"char": "t",
|
|
399
|
-
"
|
|
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
|
-
"
|
|
403
|
-
"typename"
|
|
404
|
-
]
|
|
536
|
+
"type": "option"
|
|
405
537
|
},
|
|
406
538
|
"record-name": {
|
|
407
|
-
"
|
|
408
|
-
|
|
539
|
+
"aliases": [
|
|
540
|
+
"recordname"
|
|
541
|
+
],
|
|
409
542
|
"char": "n",
|
|
410
|
-
"
|
|
543
|
+
"name": "record-name",
|
|
411
544
|
"required": true,
|
|
545
|
+
"summary": "Name of the new record.",
|
|
546
|
+
"hasDynamicHelp": false,
|
|
412
547
|
"multiple": false,
|
|
413
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
463
|
-
"
|
|
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
|
-
"
|
|
474
|
-
|
|
475
|
-
|
|
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
|
-
"
|
|
478
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
500
|
-
|
|
689
|
+
"aliases": [
|
|
690
|
+
"filepath"
|
|
691
|
+
],
|
|
501
692
|
"char": "f",
|
|
502
|
-
"
|
|
693
|
+
"name": "csv",
|
|
503
694
|
"required": true,
|
|
695
|
+
"summary": "Pathname of the CSV file.",
|
|
696
|
+
"hasDynamicHelp": false,
|
|
504
697
|
"multiple": false,
|
|
505
|
-
"
|
|
506
|
-
"filepath"
|
|
507
|
-
]
|
|
698
|
+
"type": "option"
|
|
508
699
|
},
|
|
509
700
|
"type-name": {
|
|
510
|
-
"
|
|
511
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
547
|
-
|
|
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
|
-
"
|
|
553
|
-
|
|
554
|
-
|
|
747
|
+
"hasDynamicHelp": false,
|
|
748
|
+
"multiple": false,
|
|
749
|
+
"type": "option"
|
|
555
750
|
}
|
|
556
751
|
},
|
|
557
|
-
"
|
|
558
|
-
"
|
|
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
|
-
"
|
|
830
|
+
"type": "boolean"
|
|
585
831
|
},
|
|
586
832
|
"name": {
|
|
587
|
-
"name": "name",
|
|
588
|
-
"type": "option",
|
|
589
833
|
"char": "n",
|
|
590
|
-
"
|
|
834
|
+
"name": "name",
|
|
591
835
|
"required": true,
|
|
836
|
+
"summary": "Name of the site to create.",
|
|
837
|
+
"hasDynamicHelp": false,
|
|
592
838
|
"multiple": false,
|
|
593
|
-
"
|
|
839
|
+
"type": "option"
|
|
594
840
|
},
|
|
595
841
|
"template-name": {
|
|
596
|
-
"
|
|
597
|
-
|
|
842
|
+
"aliases": [
|
|
843
|
+
"templatename"
|
|
844
|
+
],
|
|
598
845
|
"char": "t",
|
|
599
|
-
"
|
|
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
|
-
"
|
|
604
|
-
"aliases": [
|
|
605
|
-
"templatename"
|
|
606
|
-
]
|
|
853
|
+
"type": "option"
|
|
607
854
|
},
|
|
608
855
|
"url-path-prefix": {
|
|
609
|
-
"
|
|
610
|
-
|
|
856
|
+
"aliases": [
|
|
857
|
+
"urlpathprefix"
|
|
858
|
+
],
|
|
611
859
|
"char": "p",
|
|
612
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
617
|
-
"
|
|
618
|
-
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
665
|
-
"
|
|
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
|
-
"
|
|
961
|
+
"type": "boolean"
|
|
690
962
|
},
|
|
691
963
|
"name": {
|
|
692
|
-
"name": "name",
|
|
693
|
-
"type": "option",
|
|
694
964
|
"char": "n",
|
|
695
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
1002
|
+
"hidden": true,
|
|
1003
|
+
"name": "loglevel",
|
|
1004
|
+
"hasDynamicHelp": false,
|
|
1005
|
+
"multiple": false,
|
|
1006
|
+
"type": "option"
|
|
732
1007
|
}
|
|
733
1008
|
},
|
|
734
|
-
"
|
|
735
|
-
"
|
|
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
|
-
"
|
|
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
|
-
]
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
"name": "
|
|
786
|
-
"
|
|
787
|
-
"hidden": true,
|
|
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,
|
|
788
1080
|
"multiple": false,
|
|
1081
|
+
"type": "option"
|
|
1082
|
+
},
|
|
1083
|
+
"loglevel": {
|
|
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
|
-
"
|
|
1087
|
+
"hidden": true,
|
|
1088
|
+
"name": "loglevel",
|
|
1089
|
+
"hasDynamicHelp": false,
|
|
1090
|
+
"multiple": false,
|
|
1091
|
+
"type": "option"
|
|
793
1092
|
}
|
|
794
1093
|
},
|
|
795
|
-
"
|
|
796
|
-
"
|
|
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",
|
|
@@ -2877,14 +3226,6 @@
|
|
|
2877
3226
|
],
|
|
2878
3227
|
"deprecateAliases": true,
|
|
2879
3228
|
"flags": {
|
|
2880
|
-
"json": {
|
|
2881
|
-
"name": "json",
|
|
2882
|
-
"type": "boolean",
|
|
2883
|
-
"description": "Format output as json.",
|
|
2884
|
-
"helpGroup": "GLOBAL",
|
|
2885
|
-
"allowNo": false,
|
|
2886
|
-
"deprecateAliases": true
|
|
2887
|
-
},
|
|
2888
3229
|
"loglevel": {
|
|
2889
3230
|
"name": "loglevel",
|
|
2890
3231
|
"type": "option",
|
|
@@ -3024,14 +3365,6 @@
|
|
|
3024
3365
|
],
|
|
3025
3366
|
"deprecateAliases": true,
|
|
3026
3367
|
"flags": {
|
|
3027
|
-
"json": {
|
|
3028
|
-
"name": "json",
|
|
3029
|
-
"type": "boolean",
|
|
3030
|
-
"description": "Format output as json.",
|
|
3031
|
-
"helpGroup": "GLOBAL",
|
|
3032
|
-
"allowNo": false,
|
|
3033
|
-
"deprecateAliases": true
|
|
3034
|
-
},
|
|
3035
3368
|
"loglevel": {
|
|
3036
3369
|
"name": "loglevel",
|
|
3037
3370
|
"type": "option",
|
|
@@ -3165,14 +3498,6 @@
|
|
|
3165
3498
|
],
|
|
3166
3499
|
"deprecateAliases": true,
|
|
3167
3500
|
"flags": {
|
|
3168
|
-
"json": {
|
|
3169
|
-
"name": "json",
|
|
3170
|
-
"type": "boolean",
|
|
3171
|
-
"description": "Format output as json.",
|
|
3172
|
-
"helpGroup": "GLOBAL",
|
|
3173
|
-
"allowNo": false,
|
|
3174
|
-
"deprecateAliases": true
|
|
3175
|
-
},
|
|
3176
3501
|
"loglevel": {
|
|
3177
3502
|
"name": "loglevel",
|
|
3178
3503
|
"type": "option",
|
|
@@ -3258,14 +3583,6 @@
|
|
|
3258
3583
|
],
|
|
3259
3584
|
"deprecateAliases": true,
|
|
3260
3585
|
"flags": {
|
|
3261
|
-
"json": {
|
|
3262
|
-
"name": "json",
|
|
3263
|
-
"type": "boolean",
|
|
3264
|
-
"description": "Format output as json.",
|
|
3265
|
-
"helpGroup": "GLOBAL",
|
|
3266
|
-
"allowNo": false,
|
|
3267
|
-
"deprecateAliases": true
|
|
3268
|
-
},
|
|
3269
3586
|
"loglevel": {
|
|
3270
3587
|
"name": "loglevel",
|
|
3271
3588
|
"type": "option",
|
|
@@ -3443,14 +3760,6 @@
|
|
|
3443
3760
|
],
|
|
3444
3761
|
"deprecateAliases": true,
|
|
3445
3762
|
"flags": {
|
|
3446
|
-
"json": {
|
|
3447
|
-
"name": "json",
|
|
3448
|
-
"type": "boolean",
|
|
3449
|
-
"description": "Format output as json.",
|
|
3450
|
-
"helpGroup": "GLOBAL",
|
|
3451
|
-
"allowNo": false,
|
|
3452
|
-
"deprecateAliases": true
|
|
3453
|
-
},
|
|
3454
3763
|
"loglevel": {
|
|
3455
3764
|
"name": "loglevel",
|
|
3456
3765
|
"type": "option",
|
|
@@ -3514,14 +3823,6 @@
|
|
|
3514
3823
|
],
|
|
3515
3824
|
"deprecateAliases": true,
|
|
3516
3825
|
"flags": {
|
|
3517
|
-
"json": {
|
|
3518
|
-
"name": "json",
|
|
3519
|
-
"type": "boolean",
|
|
3520
|
-
"description": "Format output as json.",
|
|
3521
|
-
"helpGroup": "GLOBAL",
|
|
3522
|
-
"allowNo": false,
|
|
3523
|
-
"deprecateAliases": true
|
|
3524
|
-
},
|
|
3525
3826
|
"loglevel": {
|
|
3526
3827
|
"name": "loglevel",
|
|
3527
3828
|
"type": "option",
|
|
@@ -3597,14 +3898,6 @@
|
|
|
3597
3898
|
],
|
|
3598
3899
|
"deprecateAliases": true,
|
|
3599
3900
|
"flags": {
|
|
3600
|
-
"json": {
|
|
3601
|
-
"name": "json",
|
|
3602
|
-
"type": "boolean",
|
|
3603
|
-
"description": "Format output as json.",
|
|
3604
|
-
"helpGroup": "GLOBAL",
|
|
3605
|
-
"allowNo": false,
|
|
3606
|
-
"deprecateAliases": true
|
|
3607
|
-
},
|
|
3608
3901
|
"loglevel": {
|
|
3609
3902
|
"name": "loglevel",
|
|
3610
3903
|
"type": "option",
|
|
@@ -3703,14 +3996,6 @@
|
|
|
3703
3996
|
],
|
|
3704
3997
|
"deprecateAliases": true,
|
|
3705
3998
|
"flags": {
|
|
3706
|
-
"json": {
|
|
3707
|
-
"name": "json",
|
|
3708
|
-
"type": "boolean",
|
|
3709
|
-
"description": "Format output as json.",
|
|
3710
|
-
"helpGroup": "GLOBAL",
|
|
3711
|
-
"allowNo": false,
|
|
3712
|
-
"deprecateAliases": true
|
|
3713
|
-
},
|
|
3714
3999
|
"target-org": {
|
|
3715
4000
|
"name": "target-org",
|
|
3716
4001
|
"type": "option",
|
|
@@ -3776,14 +4061,6 @@
|
|
|
3776
4061
|
],
|
|
3777
4062
|
"deprecateAliases": true,
|
|
3778
4063
|
"flags": {
|
|
3779
|
-
"json": {
|
|
3780
|
-
"name": "json",
|
|
3781
|
-
"type": "boolean",
|
|
3782
|
-
"description": "Format output as json.",
|
|
3783
|
-
"helpGroup": "GLOBAL",
|
|
3784
|
-
"allowNo": false,
|
|
3785
|
-
"deprecateAliases": true
|
|
3786
|
-
},
|
|
3787
4064
|
"loglevel": {
|
|
3788
4065
|
"name": "loglevel",
|
|
3789
4066
|
"type": "option",
|
|
@@ -3838,14 +4115,6 @@
|
|
|
3838
4115
|
],
|
|
3839
4116
|
"deprecateAliases": true,
|
|
3840
4117
|
"flags": {
|
|
3841
|
-
"json": {
|
|
3842
|
-
"name": "json",
|
|
3843
|
-
"type": "boolean",
|
|
3844
|
-
"description": "Format output as json.",
|
|
3845
|
-
"helpGroup": "GLOBAL",
|
|
3846
|
-
"allowNo": false,
|
|
3847
|
-
"deprecateAliases": true
|
|
3848
|
-
},
|
|
3849
4118
|
"loglevel": {
|
|
3850
4119
|
"name": "loglevel",
|
|
3851
4120
|
"type": "option",
|
|
@@ -3914,14 +4183,6 @@
|
|
|
3914
4183
|
],
|
|
3915
4184
|
"deprecateAliases": true,
|
|
3916
4185
|
"flags": {
|
|
3917
|
-
"json": {
|
|
3918
|
-
"name": "json",
|
|
3919
|
-
"type": "boolean",
|
|
3920
|
-
"description": "Format output as json.",
|
|
3921
|
-
"helpGroup": "GLOBAL",
|
|
3922
|
-
"allowNo": false,
|
|
3923
|
-
"deprecateAliases": true
|
|
3924
|
-
},
|
|
3925
4186
|
"loglevel": {
|
|
3926
4187
|
"name": "loglevel",
|
|
3927
4188
|
"type": "option",
|
|
@@ -4221,14 +4482,6 @@
|
|
|
4221
4482
|
],
|
|
4222
4483
|
"deprecateAliases": true,
|
|
4223
4484
|
"flags": {
|
|
4224
|
-
"json": {
|
|
4225
|
-
"name": "json",
|
|
4226
|
-
"type": "boolean",
|
|
4227
|
-
"description": "Format output as json.",
|
|
4228
|
-
"helpGroup": "GLOBAL",
|
|
4229
|
-
"allowNo": false,
|
|
4230
|
-
"deprecateAliases": true
|
|
4231
|
-
},
|
|
4232
4485
|
"loglevel": {
|
|
4233
4486
|
"name": "loglevel",
|
|
4234
4487
|
"type": "option",
|
|
@@ -4313,14 +4566,6 @@
|
|
|
4313
4566
|
],
|
|
4314
4567
|
"deprecateAliases": true,
|
|
4315
4568
|
"flags": {
|
|
4316
|
-
"json": {
|
|
4317
|
-
"name": "json",
|
|
4318
|
-
"type": "boolean",
|
|
4319
|
-
"description": "Format output as json.",
|
|
4320
|
-
"helpGroup": "GLOBAL",
|
|
4321
|
-
"allowNo": false,
|
|
4322
|
-
"deprecateAliases": true
|
|
4323
|
-
},
|
|
4324
4569
|
"loglevel": {
|
|
4325
4570
|
"name": "loglevel",
|
|
4326
4571
|
"type": "option",
|
|
@@ -4408,14 +4653,6 @@
|
|
|
4408
4653
|
],
|
|
4409
4654
|
"deprecateAliases": true,
|
|
4410
4655
|
"flags": {
|
|
4411
|
-
"json": {
|
|
4412
|
-
"name": "json",
|
|
4413
|
-
"type": "boolean",
|
|
4414
|
-
"description": "Format output as json.",
|
|
4415
|
-
"helpGroup": "GLOBAL",
|
|
4416
|
-
"allowNo": false,
|
|
4417
|
-
"deprecateAliases": true
|
|
4418
|
-
},
|
|
4419
4656
|
"loglevel": {
|
|
4420
4657
|
"name": "loglevel",
|
|
4421
4658
|
"type": "option",
|
|
@@ -4541,14 +4778,6 @@
|
|
|
4541
4778
|
],
|
|
4542
4779
|
"deprecateAliases": true,
|
|
4543
4780
|
"flags": {
|
|
4544
|
-
"json": {
|
|
4545
|
-
"name": "json",
|
|
4546
|
-
"type": "boolean",
|
|
4547
|
-
"description": "Format output as json.",
|
|
4548
|
-
"helpGroup": "GLOBAL",
|
|
4549
|
-
"allowNo": false,
|
|
4550
|
-
"deprecateAliases": true
|
|
4551
|
-
},
|
|
4552
4781
|
"loglevel": {
|
|
4553
4782
|
"name": "loglevel",
|
|
4554
4783
|
"type": "option",
|
|
@@ -4624,14 +4853,6 @@
|
|
|
4624
4853
|
],
|
|
4625
4854
|
"deprecateAliases": true,
|
|
4626
4855
|
"flags": {
|
|
4627
|
-
"json": {
|
|
4628
|
-
"name": "json",
|
|
4629
|
-
"type": "boolean",
|
|
4630
|
-
"description": "Format output as json.",
|
|
4631
|
-
"helpGroup": "GLOBAL",
|
|
4632
|
-
"allowNo": false,
|
|
4633
|
-
"deprecateAliases": true
|
|
4634
|
-
},
|
|
4635
4856
|
"loglevel": {
|
|
4636
4857
|
"name": "loglevel",
|
|
4637
4858
|
"type": "option",
|
|
@@ -4700,13 +4921,6 @@
|
|
|
4700
4921
|
"Retrieve package metadata for a subscriber package version ID (starts with 04t) into my-folder/ within your Salesforce DX project directory:\n<%= config.bin %> <%= command.id %> --package 04t... --output-dir my-folder –-target-org my-scratch\nIf you omit --target-org, this command runs against your default org."
|
|
4701
4922
|
],
|
|
4702
4923
|
"flags": {
|
|
4703
|
-
"json": {
|
|
4704
|
-
"name": "json",
|
|
4705
|
-
"type": "boolean",
|
|
4706
|
-
"description": "Format output as json.",
|
|
4707
|
-
"helpGroup": "GLOBAL",
|
|
4708
|
-
"allowNo": false
|
|
4709
|
-
},
|
|
4710
4924
|
"loglevel": {
|
|
4711
4925
|
"name": "loglevel",
|
|
4712
4926
|
"type": "option",
|
|
@@ -4776,14 +4990,6 @@
|
|
|
4776
4990
|
],
|
|
4777
4991
|
"deprecateAliases": true,
|
|
4778
4992
|
"flags": {
|
|
4779
|
-
"json": {
|
|
4780
|
-
"name": "json",
|
|
4781
|
-
"type": "boolean",
|
|
4782
|
-
"description": "Format output as json.",
|
|
4783
|
-
"helpGroup": "GLOBAL",
|
|
4784
|
-
"allowNo": false,
|
|
4785
|
-
"deprecateAliases": true
|
|
4786
|
-
},
|
|
4787
4993
|
"loglevel": {
|
|
4788
4994
|
"name": "loglevel",
|
|
4789
4995
|
"type": "option",
|
|
@@ -4897,14 +5103,6 @@
|
|
|
4897
5103
|
],
|
|
4898
5104
|
"deprecateAliases": true,
|
|
4899
5105
|
"flags": {
|
|
4900
|
-
"json": {
|
|
4901
|
-
"name": "json",
|
|
4902
|
-
"type": "boolean",
|
|
4903
|
-
"description": "Format output as json.",
|
|
4904
|
-
"helpGroup": "GLOBAL",
|
|
4905
|
-
"allowNo": false,
|
|
4906
|
-
"deprecateAliases": true
|
|
4907
|
-
},
|
|
4908
5106
|
"loglevel": {
|
|
4909
5107
|
"name": "loglevel",
|
|
4910
5108
|
"type": "option",
|
|
@@ -5051,14 +5249,6 @@
|
|
|
5051
5249
|
],
|
|
5052
5250
|
"deprecateAliases": true,
|
|
5053
5251
|
"flags": {
|
|
5054
|
-
"json": {
|
|
5055
|
-
"name": "json",
|
|
5056
|
-
"type": "boolean",
|
|
5057
|
-
"description": "Format output as json.",
|
|
5058
|
-
"helpGroup": "GLOBAL",
|
|
5059
|
-
"allowNo": false,
|
|
5060
|
-
"deprecateAliases": true
|
|
5061
|
-
},
|
|
5062
5252
|
"loglevel": {
|
|
5063
5253
|
"name": "loglevel",
|
|
5064
5254
|
"type": "option",
|
|
@@ -5124,14 +5314,6 @@
|
|
|
5124
5314
|
],
|
|
5125
5315
|
"deprecateAliases": true,
|
|
5126
5316
|
"flags": {
|
|
5127
|
-
"json": {
|
|
5128
|
-
"name": "json",
|
|
5129
|
-
"type": "boolean",
|
|
5130
|
-
"description": "Format output as json.",
|
|
5131
|
-
"helpGroup": "GLOBAL",
|
|
5132
|
-
"allowNo": false,
|
|
5133
|
-
"deprecateAliases": true
|
|
5134
|
-
},
|
|
5135
5317
|
"loglevel": {
|
|
5136
5318
|
"name": "loglevel",
|
|
5137
5319
|
"type": "option",
|
|
@@ -5201,14 +5383,6 @@
|
|
|
5201
5383
|
],
|
|
5202
5384
|
"deprecateAliases": true,
|
|
5203
5385
|
"flags": {
|
|
5204
|
-
"json": {
|
|
5205
|
-
"name": "json",
|
|
5206
|
-
"type": "boolean",
|
|
5207
|
-
"description": "Format output as json.",
|
|
5208
|
-
"helpGroup": "GLOBAL",
|
|
5209
|
-
"allowNo": false,
|
|
5210
|
-
"deprecateAliases": true
|
|
5211
|
-
},
|
|
5212
5386
|
"loglevel": {
|
|
5213
5387
|
"name": "loglevel",
|
|
5214
5388
|
"type": "option",
|
|
@@ -5302,14 +5476,6 @@
|
|
|
5302
5476
|
],
|
|
5303
5477
|
"deprecateAliases": true,
|
|
5304
5478
|
"flags": {
|
|
5305
|
-
"json": {
|
|
5306
|
-
"name": "json",
|
|
5307
|
-
"type": "boolean",
|
|
5308
|
-
"description": "Format output as json.",
|
|
5309
|
-
"helpGroup": "GLOBAL",
|
|
5310
|
-
"allowNo": false,
|
|
5311
|
-
"deprecateAliases": true
|
|
5312
|
-
},
|
|
5313
5479
|
"loglevel": {
|
|
5314
5480
|
"name": "loglevel",
|
|
5315
5481
|
"type": "option",
|
|
@@ -5375,14 +5541,6 @@
|
|
|
5375
5541
|
],
|
|
5376
5542
|
"deprecateAliases": true,
|
|
5377
5543
|
"flags": {
|
|
5378
|
-
"json": {
|
|
5379
|
-
"name": "json",
|
|
5380
|
-
"type": "boolean",
|
|
5381
|
-
"description": "Format output as json.",
|
|
5382
|
-
"helpGroup": "GLOBAL",
|
|
5383
|
-
"allowNo": false,
|
|
5384
|
-
"deprecateAliases": true
|
|
5385
|
-
},
|
|
5386
5544
|
"loglevel": {
|
|
5387
5545
|
"name": "loglevel",
|
|
5388
5546
|
"type": "option",
|
|
@@ -5433,485 +5591,813 @@
|
|
|
5433
5591
|
"hasDynamicHelp": true
|
|
5434
5592
|
},
|
|
5435
5593
|
"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
5594
|
"aliases": [
|
|
5444
5595
|
"force:org:shape:create"
|
|
5445
5596
|
],
|
|
5597
|
+
"args": {},
|
|
5598
|
+
"deprecateAliases": true,
|
|
5599
|
+
"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
5600
|
"examples": [
|
|
5447
5601
|
"Create an org shape for the source org with alias SourceOrg:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg"
|
|
5448
5602
|
],
|
|
5449
|
-
"deprecateAliases": true,
|
|
5450
5603
|
"flags": {
|
|
5451
5604
|
"json": {
|
|
5452
|
-
"name": "json",
|
|
5453
|
-
"type": "boolean",
|
|
5454
5605
|
"description": "Format output as json.",
|
|
5455
5606
|
"helpGroup": "GLOBAL",
|
|
5607
|
+
"name": "json",
|
|
5456
5608
|
"allowNo": false,
|
|
5457
|
-
"
|
|
5609
|
+
"type": "boolean"
|
|
5458
5610
|
},
|
|
5459
5611
|
"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
5612
|
"aliases": [
|
|
5468
5613
|
"targetusername",
|
|
5469
5614
|
"u"
|
|
5470
|
-
]
|
|
5615
|
+
],
|
|
5616
|
+
"char": "o",
|
|
5617
|
+
"deprecateAliases": true,
|
|
5618
|
+
"name": "target-org",
|
|
5619
|
+
"noCacheDefault": true,
|
|
5620
|
+
"required": true,
|
|
5621
|
+
"summary": "Username or alias of the target org.",
|
|
5622
|
+
"hasDynamicHelp": true,
|
|
5623
|
+
"multiple": false,
|
|
5624
|
+
"type": "option"
|
|
5471
5625
|
},
|
|
5472
5626
|
"api-version": {
|
|
5473
|
-
"
|
|
5474
|
-
|
|
5627
|
+
"aliases": [
|
|
5628
|
+
"apiversion"
|
|
5629
|
+
],
|
|
5630
|
+
"deprecateAliases": true,
|
|
5475
5631
|
"description": "Override the api version used for api requests made by this command",
|
|
5632
|
+
"name": "api-version",
|
|
5633
|
+
"hasDynamicHelp": false,
|
|
5476
5634
|
"multiple": false,
|
|
5477
|
-
"
|
|
5478
|
-
"aliases": [
|
|
5479
|
-
"apiversion"
|
|
5480
|
-
]
|
|
5635
|
+
"type": "option"
|
|
5481
5636
|
},
|
|
5482
5637
|
"loglevel": {
|
|
5483
|
-
"name": "loglevel",
|
|
5484
|
-
"type": "option",
|
|
5485
|
-
"hidden": true,
|
|
5486
|
-
"multiple": false,
|
|
5487
5638
|
"deprecated": {
|
|
5488
5639
|
"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
5640
|
},
|
|
5490
|
-
"
|
|
5641
|
+
"hidden": true,
|
|
5642
|
+
"name": "loglevel",
|
|
5643
|
+
"hasDynamicHelp": false,
|
|
5644
|
+
"multiple": false,
|
|
5645
|
+
"type": "option"
|
|
5491
5646
|
}
|
|
5492
5647
|
},
|
|
5493
|
-
"
|
|
5494
|
-
"
|
|
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",
|
|
5648
|
+
"hasDynamicHelp": true,
|
|
5649
|
+
"hiddenAliases": [],
|
|
5650
|
+
"id": "org:create:shape",
|
|
5502
5651
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
5652
|
+
"pluginName": "@salesforce/plugin-signups",
|
|
5503
5653
|
"pluginType": "jit",
|
|
5504
|
-
"
|
|
5654
|
+
"strict": true,
|
|
5655
|
+
"summary": "Create a scratch org configuration (shape) based on the specified source org.",
|
|
5656
|
+
"enableJsonFlag": true,
|
|
5657
|
+
"SF_ENV": "SF_ENV",
|
|
5658
|
+
"isESM": true,
|
|
5659
|
+
"relativePath": [
|
|
5660
|
+
"lib",
|
|
5661
|
+
"commands",
|
|
5662
|
+
"org",
|
|
5663
|
+
"create",
|
|
5664
|
+
"shape.js"
|
|
5665
|
+
],
|
|
5666
|
+
"aliasPermutations": [
|
|
5667
|
+
"force:org:shape:create",
|
|
5668
|
+
"org:force:shape:create",
|
|
5669
|
+
"org:shape:force:create",
|
|
5670
|
+
"org:shape:create:force",
|
|
5671
|
+
"force:shape:org:create",
|
|
5672
|
+
"shape:force:org:create",
|
|
5673
|
+
"shape:org:force:create",
|
|
5674
|
+
"shape:org:create:force",
|
|
5675
|
+
"force:shape:create:org",
|
|
5676
|
+
"shape:force:create:org",
|
|
5677
|
+
"shape:create:force:org",
|
|
5678
|
+
"shape:create:org:force",
|
|
5679
|
+
"force:org:create:shape",
|
|
5680
|
+
"org:force:create:shape",
|
|
5681
|
+
"org:create:force:shape",
|
|
5682
|
+
"org:create:shape:force",
|
|
5683
|
+
"force:create:org:shape",
|
|
5684
|
+
"create:force:org:shape",
|
|
5685
|
+
"create:org:force:shape",
|
|
5686
|
+
"create:org:shape:force",
|
|
5687
|
+
"force:create:shape:org",
|
|
5688
|
+
"create:force:shape:org",
|
|
5689
|
+
"create:shape:force:org",
|
|
5690
|
+
"create:shape:org:force"
|
|
5691
|
+
],
|
|
5692
|
+
"permutations": [
|
|
5693
|
+
"org:create:shape",
|
|
5694
|
+
"create:org:shape",
|
|
5695
|
+
"create:shape:org",
|
|
5696
|
+
"org:shape:create",
|
|
5697
|
+
"shape:org:create",
|
|
5698
|
+
"shape:create:org"
|
|
5699
|
+
]
|
|
5700
|
+
},
|
|
5701
|
+
"org:create:snapshot": {
|
|
5505
5702
|
"aliases": [
|
|
5506
5703
|
"force:org:snapshot:create"
|
|
5507
5704
|
],
|
|
5705
|
+
"args": {},
|
|
5706
|
+
"deprecateAliases": true,
|
|
5707
|
+
"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
5708
|
"examples": [
|
|
5509
5709
|
"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
5710
|
"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
5711
|
],
|
|
5512
|
-
"deprecateAliases": true,
|
|
5513
5712
|
"flags": {
|
|
5514
5713
|
"json": {
|
|
5515
|
-
"name": "json",
|
|
5516
|
-
"type": "boolean",
|
|
5517
5714
|
"description": "Format output as json.",
|
|
5518
5715
|
"helpGroup": "GLOBAL",
|
|
5716
|
+
"name": "json",
|
|
5519
5717
|
"allowNo": false,
|
|
5520
|
-
"
|
|
5718
|
+
"type": "boolean"
|
|
5521
5719
|
},
|
|
5522
5720
|
"target-dev-hub": {
|
|
5523
|
-
"
|
|
5524
|
-
|
|
5721
|
+
"aliases": [
|
|
5722
|
+
"targetdevhubusername"
|
|
5723
|
+
],
|
|
5525
5724
|
"char": "v",
|
|
5526
|
-
"
|
|
5725
|
+
"deprecateAliases": true,
|
|
5726
|
+
"name": "target-dev-hub",
|
|
5727
|
+
"noCacheDefault": true,
|
|
5527
5728
|
"required": true,
|
|
5729
|
+
"summary": "Username or alias of the Dev Hub org.",
|
|
5730
|
+
"hasDynamicHelp": true,
|
|
5528
5731
|
"multiple": false,
|
|
5529
|
-
"
|
|
5530
|
-
"aliases": [
|
|
5531
|
-
"targetdevhubusername"
|
|
5532
|
-
]
|
|
5732
|
+
"type": "option"
|
|
5533
5733
|
},
|
|
5534
5734
|
"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
5735
|
"aliases": [
|
|
5541
5736
|
"apiversion"
|
|
5542
|
-
]
|
|
5737
|
+
],
|
|
5738
|
+
"deprecateAliases": true,
|
|
5739
|
+
"description": "Override the api version used for api requests made by this command",
|
|
5740
|
+
"name": "api-version",
|
|
5741
|
+
"hasDynamicHelp": false,
|
|
5742
|
+
"multiple": false,
|
|
5743
|
+
"type": "option"
|
|
5543
5744
|
},
|
|
5544
5745
|
"loglevel": {
|
|
5545
|
-
"name": "loglevel",
|
|
5546
|
-
"type": "option",
|
|
5547
|
-
"hidden": true,
|
|
5548
|
-
"multiple": false,
|
|
5549
5746
|
"deprecated": {
|
|
5550
5747
|
"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
5748
|
},
|
|
5552
|
-
"
|
|
5749
|
+
"hidden": true,
|
|
5750
|
+
"name": "loglevel",
|
|
5751
|
+
"hasDynamicHelp": false,
|
|
5752
|
+
"multiple": false,
|
|
5753
|
+
"type": "option"
|
|
5553
5754
|
},
|
|
5554
5755
|
"source-org": {
|
|
5555
|
-
"
|
|
5556
|
-
|
|
5756
|
+
"aliases": [
|
|
5757
|
+
"sourceorg"
|
|
5758
|
+
],
|
|
5557
5759
|
"char": "o",
|
|
5558
|
-
"
|
|
5760
|
+
"deprecateAliases": true,
|
|
5761
|
+
"name": "source-org",
|
|
5559
5762
|
"required": true,
|
|
5763
|
+
"summary": "ID or locally authenticated username or alias of scratch org to snapshot.",
|
|
5764
|
+
"hasDynamicHelp": false,
|
|
5560
5765
|
"multiple": false,
|
|
5561
|
-
"
|
|
5562
|
-
"aliases": [
|
|
5563
|
-
"sourceorg"
|
|
5564
|
-
]
|
|
5766
|
+
"type": "option"
|
|
5565
5767
|
},
|
|
5566
5768
|
"name": {
|
|
5567
|
-
"
|
|
5568
|
-
|
|
5769
|
+
"aliases": [
|
|
5770
|
+
"snapshotname"
|
|
5771
|
+
],
|
|
5569
5772
|
"char": "n",
|
|
5570
|
-
"
|
|
5773
|
+
"deprecateAliases": true,
|
|
5774
|
+
"name": "name",
|
|
5571
5775
|
"required": true,
|
|
5776
|
+
"summary": "Unique name of snapshot.",
|
|
5777
|
+
"hasDynamicHelp": false,
|
|
5572
5778
|
"multiple": false,
|
|
5573
|
-
"
|
|
5574
|
-
"aliases": [
|
|
5575
|
-
"snapshotname"
|
|
5576
|
-
]
|
|
5779
|
+
"type": "option"
|
|
5577
5780
|
},
|
|
5578
5781
|
"description": {
|
|
5579
|
-
"name": "description",
|
|
5580
|
-
"type": "option",
|
|
5581
5782
|
"char": "d",
|
|
5582
|
-
"summary": "Description of snapshot.",
|
|
5583
5783
|
"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.",
|
|
5784
|
+
"name": "description",
|
|
5785
|
+
"summary": "Description of snapshot.",
|
|
5786
|
+
"hasDynamicHelp": false,
|
|
5584
5787
|
"multiple": false,
|
|
5585
|
-
"
|
|
5788
|
+
"type": "option"
|
|
5586
5789
|
}
|
|
5587
5790
|
},
|
|
5588
|
-
"
|
|
5589
|
-
"
|
|
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",
|
|
5791
|
+
"hasDynamicHelp": true,
|
|
5792
|
+
"hiddenAliases": [],
|
|
5793
|
+
"id": "org:create:snapshot",
|
|
5597
5794
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
5795
|
+
"pluginName": "@salesforce/plugin-signups",
|
|
5598
5796
|
"pluginType": "jit",
|
|
5797
|
+
"state": "closedPilot",
|
|
5798
|
+
"strict": true,
|
|
5799
|
+
"summary": "Create a snapshot of a scratch org.",
|
|
5800
|
+
"enableJsonFlag": true,
|
|
5801
|
+
"SF_ENV": "SF_ENV",
|
|
5802
|
+
"isESM": true,
|
|
5803
|
+
"relativePath": [
|
|
5804
|
+
"lib",
|
|
5805
|
+
"commands",
|
|
5806
|
+
"org",
|
|
5807
|
+
"create",
|
|
5808
|
+
"snapshot.js"
|
|
5809
|
+
],
|
|
5810
|
+
"aliasPermutations": [
|
|
5811
|
+
"force:org:snapshot:create",
|
|
5812
|
+
"org:force:snapshot:create",
|
|
5813
|
+
"org:snapshot:force:create",
|
|
5814
|
+
"org:snapshot:create:force",
|
|
5815
|
+
"force:snapshot:org:create",
|
|
5816
|
+
"snapshot:force:org:create",
|
|
5817
|
+
"snapshot:org:force:create",
|
|
5818
|
+
"snapshot:org:create:force",
|
|
5819
|
+
"force:snapshot:create:org",
|
|
5820
|
+
"snapshot:force:create:org",
|
|
5821
|
+
"snapshot:create:force:org",
|
|
5822
|
+
"snapshot:create:org:force",
|
|
5823
|
+
"force:org:create:snapshot",
|
|
5824
|
+
"org:force:create:snapshot",
|
|
5825
|
+
"org:create:force:snapshot",
|
|
5826
|
+
"org:create:snapshot:force",
|
|
5827
|
+
"force:create:org:snapshot",
|
|
5828
|
+
"create:force:org:snapshot",
|
|
5829
|
+
"create:org:force:snapshot",
|
|
5830
|
+
"create:org:snapshot:force",
|
|
5831
|
+
"force:create:snapshot:org",
|
|
5832
|
+
"create:force:snapshot:org",
|
|
5833
|
+
"create:snapshot:force:org",
|
|
5834
|
+
"create:snapshot:org:force"
|
|
5835
|
+
],
|
|
5836
|
+
"permutations": [
|
|
5837
|
+
"org:create:snapshot",
|
|
5838
|
+
"create:org:snapshot",
|
|
5839
|
+
"create:snapshot:org",
|
|
5840
|
+
"org:snapshot:create",
|
|
5841
|
+
"snapshot:org:create",
|
|
5842
|
+
"snapshot:create:org"
|
|
5843
|
+
]
|
|
5844
|
+
},
|
|
5845
|
+
"org:delete:shape": {
|
|
5599
5846
|
"aliases": [
|
|
5600
5847
|
"force:org:shape:delete"
|
|
5601
5848
|
],
|
|
5849
|
+
"args": {},
|
|
5850
|
+
"deprecateAliases": true,
|
|
5851
|
+
"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
5852
|
"examples": [
|
|
5603
5853
|
"Delete all org shapes for the source org with alias SourceOrg:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg",
|
|
5604
5854
|
"Delete all org shapes without prompting:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg --no-prompt"
|
|
5605
5855
|
],
|
|
5606
|
-
"deprecateAliases": true,
|
|
5607
5856
|
"flags": {
|
|
5608
5857
|
"json": {
|
|
5609
|
-
"name": "json",
|
|
5610
|
-
"type": "boolean",
|
|
5611
5858
|
"description": "Format output as json.",
|
|
5612
5859
|
"helpGroup": "GLOBAL",
|
|
5860
|
+
"name": "json",
|
|
5613
5861
|
"allowNo": false,
|
|
5614
|
-
"
|
|
5862
|
+
"type": "boolean"
|
|
5615
5863
|
},
|
|
5616
5864
|
"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
5865
|
"aliases": [
|
|
5625
5866
|
"targetusername",
|
|
5626
5867
|
"u"
|
|
5627
|
-
]
|
|
5868
|
+
],
|
|
5869
|
+
"char": "o",
|
|
5870
|
+
"deprecateAliases": true,
|
|
5871
|
+
"name": "target-org",
|
|
5872
|
+
"noCacheDefault": true,
|
|
5873
|
+
"required": true,
|
|
5874
|
+
"summary": "Username or alias of the target org.",
|
|
5875
|
+
"hasDynamicHelp": true,
|
|
5876
|
+
"multiple": false,
|
|
5877
|
+
"type": "option"
|
|
5628
5878
|
},
|
|
5629
5879
|
"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
5880
|
"aliases": [
|
|
5636
5881
|
"apiversion"
|
|
5637
|
-
]
|
|
5882
|
+
],
|
|
5883
|
+
"deprecateAliases": true,
|
|
5884
|
+
"description": "Override the api version used for api requests made by this command",
|
|
5885
|
+
"name": "api-version",
|
|
5886
|
+
"hasDynamicHelp": false,
|
|
5887
|
+
"multiple": false,
|
|
5888
|
+
"type": "option"
|
|
5638
5889
|
},
|
|
5639
5890
|
"loglevel": {
|
|
5640
|
-
"name": "loglevel",
|
|
5641
|
-
"type": "option",
|
|
5642
|
-
"hidden": true,
|
|
5643
|
-
"multiple": false,
|
|
5644
5891
|
"deprecated": {
|
|
5645
5892
|
"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
5893
|
},
|
|
5647
|
-
"
|
|
5894
|
+
"hidden": true,
|
|
5895
|
+
"name": "loglevel",
|
|
5896
|
+
"hasDynamicHelp": false,
|
|
5897
|
+
"multiple": false,
|
|
5898
|
+
"type": "option"
|
|
5648
5899
|
},
|
|
5649
5900
|
"no-prompt": {
|
|
5650
|
-
"
|
|
5651
|
-
|
|
5901
|
+
"aliases": [
|
|
5902
|
+
"noprompt"
|
|
5903
|
+
],
|
|
5652
5904
|
"char": "p",
|
|
5905
|
+
"deprecateAliases": true,
|
|
5906
|
+
"name": "no-prompt",
|
|
5653
5907
|
"summary": "Don't prompt for confirmation.",
|
|
5654
5908
|
"allowNo": false,
|
|
5655
|
-
"
|
|
5656
|
-
"aliases": [
|
|
5657
|
-
"noprompt"
|
|
5658
|
-
]
|
|
5909
|
+
"type": "boolean"
|
|
5659
5910
|
}
|
|
5660
5911
|
},
|
|
5661
|
-
"
|
|
5662
|
-
"
|
|
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",
|
|
5912
|
+
"hasDynamicHelp": true,
|
|
5913
|
+
"hiddenAliases": [],
|
|
5914
|
+
"id": "org:delete:shape",
|
|
5670
5915
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
5916
|
+
"pluginName": "@salesforce/plugin-signups",
|
|
5671
5917
|
"pluginType": "jit",
|
|
5672
|
-
"
|
|
5918
|
+
"strict": true,
|
|
5919
|
+
"summary": "Delete all org shapes for a target org.",
|
|
5920
|
+
"enableJsonFlag": true,
|
|
5921
|
+
"SF_ENV": "SF_ENV",
|
|
5922
|
+
"isESM": true,
|
|
5923
|
+
"relativePath": [
|
|
5924
|
+
"lib",
|
|
5925
|
+
"commands",
|
|
5926
|
+
"org",
|
|
5927
|
+
"delete",
|
|
5928
|
+
"shape.js"
|
|
5929
|
+
],
|
|
5930
|
+
"aliasPermutations": [
|
|
5931
|
+
"force:org:shape:delete",
|
|
5932
|
+
"org:force:shape:delete",
|
|
5933
|
+
"org:shape:force:delete",
|
|
5934
|
+
"org:shape:delete:force",
|
|
5935
|
+
"force:shape:org:delete",
|
|
5936
|
+
"shape:force:org:delete",
|
|
5937
|
+
"shape:org:force:delete",
|
|
5938
|
+
"shape:org:delete:force",
|
|
5939
|
+
"force:shape:delete:org",
|
|
5940
|
+
"shape:force:delete:org",
|
|
5941
|
+
"shape:delete:force:org",
|
|
5942
|
+
"shape:delete:org:force",
|
|
5943
|
+
"force:org:delete:shape",
|
|
5944
|
+
"org:force:delete:shape",
|
|
5945
|
+
"org:delete:force:shape",
|
|
5946
|
+
"org:delete:shape:force",
|
|
5947
|
+
"force:delete:org:shape",
|
|
5948
|
+
"delete:force:org:shape",
|
|
5949
|
+
"delete:org:force:shape",
|
|
5950
|
+
"delete:org:shape:force",
|
|
5951
|
+
"force:delete:shape:org",
|
|
5952
|
+
"delete:force:shape:org",
|
|
5953
|
+
"delete:shape:force:org",
|
|
5954
|
+
"delete:shape:org:force"
|
|
5955
|
+
],
|
|
5956
|
+
"permutations": [
|
|
5957
|
+
"org:delete:shape",
|
|
5958
|
+
"delete:org:shape",
|
|
5959
|
+
"delete:shape:org",
|
|
5960
|
+
"org:shape:delete",
|
|
5961
|
+
"shape:org:delete",
|
|
5962
|
+
"shape:delete:org"
|
|
5963
|
+
]
|
|
5964
|
+
},
|
|
5965
|
+
"org:delete:snapshot": {
|
|
5673
5966
|
"aliases": [
|
|
5674
5967
|
"force:org:snapshot:delete"
|
|
5675
5968
|
],
|
|
5969
|
+
"args": {},
|
|
5970
|
+
"deprecateAliases": true,
|
|
5971
|
+
"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
5972
|
"examples": [
|
|
5677
5973
|
"Delete a snapshot from the default Dev Hub using the snapshot ID:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
|
|
5678
5974
|
"Delete a snapshot from the specified Dev Hub using the snapshot name:\n<%= config.bin %> <%= command.id %> --snapshot BaseSnapshot --target-dev-hub SnapshotDevHub"
|
|
5679
5975
|
],
|
|
5680
|
-
"deprecateAliases": true,
|
|
5681
5976
|
"flags": {
|
|
5682
5977
|
"json": {
|
|
5683
|
-
"name": "json",
|
|
5684
|
-
"type": "boolean",
|
|
5685
5978
|
"description": "Format output as json.",
|
|
5686
5979
|
"helpGroup": "GLOBAL",
|
|
5980
|
+
"name": "json",
|
|
5687
5981
|
"allowNo": false,
|
|
5688
|
-
"
|
|
5982
|
+
"type": "boolean"
|
|
5689
5983
|
},
|
|
5690
5984
|
"target-dev-hub": {
|
|
5691
|
-
"
|
|
5692
|
-
|
|
5985
|
+
"aliases": [
|
|
5986
|
+
"targetdevhubusername"
|
|
5987
|
+
],
|
|
5693
5988
|
"char": "v",
|
|
5694
|
-
"
|
|
5989
|
+
"deprecateAliases": true,
|
|
5990
|
+
"name": "target-dev-hub",
|
|
5991
|
+
"noCacheDefault": true,
|
|
5695
5992
|
"required": true,
|
|
5993
|
+
"summary": "Username or alias of the Dev Hub org.",
|
|
5994
|
+
"hasDynamicHelp": true,
|
|
5696
5995
|
"multiple": false,
|
|
5697
|
-
"
|
|
5698
|
-
"aliases": [
|
|
5699
|
-
"targetdevhubusername"
|
|
5700
|
-
]
|
|
5996
|
+
"type": "option"
|
|
5701
5997
|
},
|
|
5702
5998
|
"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
5999
|
"aliases": [
|
|
5709
6000
|
"apiversion"
|
|
5710
|
-
]
|
|
6001
|
+
],
|
|
6002
|
+
"deprecateAliases": true,
|
|
6003
|
+
"description": "Override the api version used for api requests made by this command",
|
|
6004
|
+
"name": "api-version",
|
|
6005
|
+
"hasDynamicHelp": false,
|
|
6006
|
+
"multiple": false,
|
|
6007
|
+
"type": "option"
|
|
5711
6008
|
},
|
|
5712
6009
|
"loglevel": {
|
|
5713
|
-
"name": "loglevel",
|
|
5714
|
-
"type": "option",
|
|
5715
|
-
"hidden": true,
|
|
5716
|
-
"multiple": false,
|
|
5717
6010
|
"deprecated": {
|
|
5718
6011
|
"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
6012
|
},
|
|
5720
|
-
"
|
|
6013
|
+
"hidden": true,
|
|
6014
|
+
"name": "loglevel",
|
|
6015
|
+
"hasDynamicHelp": false,
|
|
6016
|
+
"multiple": false,
|
|
6017
|
+
"type": "option"
|
|
5721
6018
|
},
|
|
5722
6019
|
"snapshot": {
|
|
5723
|
-
"name": "snapshot",
|
|
5724
|
-
"type": "option",
|
|
5725
6020
|
"char": "s",
|
|
5726
|
-
"summary": "Name or ID of snapshot to delete.",
|
|
5727
6021
|
"description": "The IDs of scratch org snapshots start with 0Oo.",
|
|
6022
|
+
"name": "snapshot",
|
|
5728
6023
|
"required": true,
|
|
6024
|
+
"summary": "Name or ID of snapshot to delete.",
|
|
6025
|
+
"hasDynamicHelp": false,
|
|
5729
6026
|
"multiple": false,
|
|
5730
|
-
"
|
|
6027
|
+
"type": "option"
|
|
5731
6028
|
}
|
|
5732
6029
|
},
|
|
5733
|
-
"
|
|
5734
|
-
"
|
|
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",
|
|
6030
|
+
"hasDynamicHelp": true,
|
|
6031
|
+
"hiddenAliases": [],
|
|
6032
|
+
"id": "org:delete:snapshot",
|
|
5742
6033
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
6034
|
+
"pluginName": "@salesforce/plugin-signups",
|
|
5743
6035
|
"pluginType": "jit",
|
|
5744
6036
|
"state": "closedPilot",
|
|
6037
|
+
"strict": true,
|
|
6038
|
+
"summary": "Delete a scratch org snapshot.",
|
|
6039
|
+
"enableJsonFlag": true,
|
|
6040
|
+
"SF_ENV": "SF_ENV",
|
|
6041
|
+
"isESM": true,
|
|
6042
|
+
"relativePath": [
|
|
6043
|
+
"lib",
|
|
6044
|
+
"commands",
|
|
6045
|
+
"org",
|
|
6046
|
+
"delete",
|
|
6047
|
+
"snapshot.js"
|
|
6048
|
+
],
|
|
6049
|
+
"aliasPermutations": [
|
|
6050
|
+
"force:org:snapshot:delete",
|
|
6051
|
+
"org:force:snapshot:delete",
|
|
6052
|
+
"org:snapshot:force:delete",
|
|
6053
|
+
"org:snapshot:delete:force",
|
|
6054
|
+
"force:snapshot:org:delete",
|
|
6055
|
+
"snapshot:force:org:delete",
|
|
6056
|
+
"snapshot:org:force:delete",
|
|
6057
|
+
"snapshot:org:delete:force",
|
|
6058
|
+
"force:snapshot:delete:org",
|
|
6059
|
+
"snapshot:force:delete:org",
|
|
6060
|
+
"snapshot:delete:force:org",
|
|
6061
|
+
"snapshot:delete:org:force",
|
|
6062
|
+
"force:org:delete:snapshot",
|
|
6063
|
+
"org:force:delete:snapshot",
|
|
6064
|
+
"org:delete:force:snapshot",
|
|
6065
|
+
"org:delete:snapshot:force",
|
|
6066
|
+
"force:delete:org:snapshot",
|
|
6067
|
+
"delete:force:org:snapshot",
|
|
6068
|
+
"delete:org:force:snapshot",
|
|
6069
|
+
"delete:org:snapshot:force",
|
|
6070
|
+
"force:delete:snapshot:org",
|
|
6071
|
+
"delete:force:snapshot:org",
|
|
6072
|
+
"delete:snapshot:force:org",
|
|
6073
|
+
"delete:snapshot:org:force"
|
|
6074
|
+
],
|
|
6075
|
+
"permutations": [
|
|
6076
|
+
"org:delete:snapshot",
|
|
6077
|
+
"delete:org:snapshot",
|
|
6078
|
+
"delete:snapshot:org",
|
|
6079
|
+
"org:snapshot:delete",
|
|
6080
|
+
"snapshot:org:delete",
|
|
6081
|
+
"snapshot:delete:org"
|
|
6082
|
+
]
|
|
6083
|
+
},
|
|
6084
|
+
"org:get:snapshot": {
|
|
5745
6085
|
"aliases": [
|
|
5746
6086
|
"force:org:snapshot:get"
|
|
5747
6087
|
],
|
|
6088
|
+
"args": {},
|
|
6089
|
+
"deprecateAliases": true,
|
|
6090
|
+
"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
6091
|
"examples": [
|
|
5749
6092
|
"Get snapshot details using its ID and the default Dev Hub org:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
|
|
5750
6093
|
"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
6094
|
],
|
|
5752
|
-
"deprecateAliases": true,
|
|
5753
6095
|
"flags": {
|
|
5754
6096
|
"json": {
|
|
5755
|
-
"name": "json",
|
|
5756
|
-
"type": "boolean",
|
|
5757
6097
|
"description": "Format output as json.",
|
|
5758
6098
|
"helpGroup": "GLOBAL",
|
|
6099
|
+
"name": "json",
|
|
5759
6100
|
"allowNo": false,
|
|
5760
|
-
"
|
|
6101
|
+
"type": "boolean"
|
|
5761
6102
|
},
|
|
5762
6103
|
"target-dev-hub": {
|
|
5763
|
-
"
|
|
5764
|
-
|
|
6104
|
+
"aliases": [
|
|
6105
|
+
"targetdevhubusername"
|
|
6106
|
+
],
|
|
5765
6107
|
"char": "v",
|
|
5766
|
-
"
|
|
6108
|
+
"deprecateAliases": true,
|
|
6109
|
+
"name": "target-dev-hub",
|
|
6110
|
+
"noCacheDefault": true,
|
|
5767
6111
|
"required": true,
|
|
6112
|
+
"summary": "Username or alias of the Dev Hub org.",
|
|
6113
|
+
"hasDynamicHelp": true,
|
|
5768
6114
|
"multiple": false,
|
|
5769
|
-
"
|
|
5770
|
-
"aliases": [
|
|
5771
|
-
"targetdevhubusername"
|
|
5772
|
-
]
|
|
6115
|
+
"type": "option"
|
|
5773
6116
|
},
|
|
5774
6117
|
"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
6118
|
"aliases": [
|
|
5781
6119
|
"apiversion"
|
|
5782
|
-
]
|
|
6120
|
+
],
|
|
6121
|
+
"deprecateAliases": true,
|
|
6122
|
+
"description": "Override the api version used for api requests made by this command",
|
|
6123
|
+
"name": "api-version",
|
|
6124
|
+
"hasDynamicHelp": false,
|
|
6125
|
+
"multiple": false,
|
|
6126
|
+
"type": "option"
|
|
5783
6127
|
},
|
|
5784
6128
|
"loglevel": {
|
|
5785
|
-
"name": "loglevel",
|
|
5786
|
-
"type": "option",
|
|
5787
|
-
"hidden": true,
|
|
5788
|
-
"multiple": false,
|
|
5789
6129
|
"deprecated": {
|
|
5790
6130
|
"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
6131
|
},
|
|
5792
|
-
"
|
|
6132
|
+
"hidden": true,
|
|
6133
|
+
"name": "loglevel",
|
|
6134
|
+
"hasDynamicHelp": false,
|
|
6135
|
+
"multiple": false,
|
|
6136
|
+
"type": "option"
|
|
5793
6137
|
},
|
|
5794
6138
|
"snapshot": {
|
|
5795
|
-
"name": "snapshot",
|
|
5796
|
-
"type": "option",
|
|
5797
6139
|
"char": "s",
|
|
5798
|
-
"summary": "Name or ID of snapshot to retrieve.",
|
|
5799
6140
|
"description": "The IDs of scratch org snapshots start with 0Oo.",
|
|
6141
|
+
"name": "snapshot",
|
|
5800
6142
|
"required": true,
|
|
6143
|
+
"summary": "Name or ID of snapshot to retrieve.",
|
|
6144
|
+
"hasDynamicHelp": false,
|
|
5801
6145
|
"multiple": false,
|
|
5802
|
-
"
|
|
6146
|
+
"type": "option"
|
|
5803
6147
|
}
|
|
5804
6148
|
},
|
|
5805
|
-
"
|
|
5806
|
-
"
|
|
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",
|
|
6149
|
+
"hasDynamicHelp": true,
|
|
6150
|
+
"hiddenAliases": [],
|
|
6151
|
+
"id": "org:get:snapshot",
|
|
5814
6152
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
6153
|
+
"pluginName": "@salesforce/plugin-signups",
|
|
5815
6154
|
"pluginType": "jit",
|
|
6155
|
+
"state": "closedPilot",
|
|
6156
|
+
"strict": true,
|
|
6157
|
+
"summary": "Get details about a scratch org snapshot.",
|
|
6158
|
+
"enableJsonFlag": true,
|
|
6159
|
+
"SF_ENV": "SF_ENV",
|
|
6160
|
+
"isESM": true,
|
|
6161
|
+
"relativePath": [
|
|
6162
|
+
"lib",
|
|
6163
|
+
"commands",
|
|
6164
|
+
"org",
|
|
6165
|
+
"get",
|
|
6166
|
+
"snapshot.js"
|
|
6167
|
+
],
|
|
6168
|
+
"aliasPermutations": [
|
|
6169
|
+
"force:org:snapshot:get",
|
|
6170
|
+
"org:force:snapshot:get",
|
|
6171
|
+
"org:snapshot:force:get",
|
|
6172
|
+
"org:snapshot:get:force",
|
|
6173
|
+
"force:snapshot:org:get",
|
|
6174
|
+
"snapshot:force:org:get",
|
|
6175
|
+
"snapshot:org:force:get",
|
|
6176
|
+
"snapshot:org:get:force",
|
|
6177
|
+
"force:snapshot:get:org",
|
|
6178
|
+
"snapshot:force:get:org",
|
|
6179
|
+
"snapshot:get:force:org",
|
|
6180
|
+
"snapshot:get:org:force",
|
|
6181
|
+
"force:org:get:snapshot",
|
|
6182
|
+
"org:force:get:snapshot",
|
|
6183
|
+
"org:get:force:snapshot",
|
|
6184
|
+
"org:get:snapshot:force",
|
|
6185
|
+
"force:get:org:snapshot",
|
|
6186
|
+
"get:force:org:snapshot",
|
|
6187
|
+
"get:org:force:snapshot",
|
|
6188
|
+
"get:org:snapshot:force",
|
|
6189
|
+
"force:get:snapshot:org",
|
|
6190
|
+
"get:force:snapshot:org",
|
|
6191
|
+
"get:snapshot:force:org",
|
|
6192
|
+
"get:snapshot:org:force"
|
|
6193
|
+
],
|
|
6194
|
+
"permutations": [
|
|
6195
|
+
"org:get:snapshot",
|
|
6196
|
+
"get:org:snapshot",
|
|
6197
|
+
"get:snapshot:org",
|
|
6198
|
+
"org:snapshot:get",
|
|
6199
|
+
"snapshot:org:get",
|
|
6200
|
+
"snapshot:get:org"
|
|
6201
|
+
]
|
|
6202
|
+
},
|
|
6203
|
+
"org:list:shape": {
|
|
5816
6204
|
"aliases": [
|
|
5817
6205
|
"force:org:shape:list"
|
|
5818
6206
|
],
|
|
6207
|
+
"args": {},
|
|
6208
|
+
"deprecateAliases": true,
|
|
6209
|
+
"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
6210
|
"examples": [
|
|
5820
6211
|
"List all org shapes you've created:\n<%= config.bin %> <%= command.id %>",
|
|
5821
6212
|
"List all org shapes in JSON format and write the output to a file:\n<%= config.bin %> <%= command.id %> --json > tmp/MyOrgShapeList.json"
|
|
5822
6213
|
],
|
|
5823
|
-
"deprecateAliases": true,
|
|
5824
6214
|
"flags": {
|
|
5825
6215
|
"json": {
|
|
5826
|
-
"name": "json",
|
|
5827
|
-
"type": "boolean",
|
|
5828
6216
|
"description": "Format output as json.",
|
|
5829
6217
|
"helpGroup": "GLOBAL",
|
|
6218
|
+
"name": "json",
|
|
5830
6219
|
"allowNo": false,
|
|
5831
|
-
"
|
|
6220
|
+
"type": "boolean"
|
|
5832
6221
|
},
|
|
5833
6222
|
"verbose": {
|
|
6223
|
+
"hidden": true,
|
|
5834
6224
|
"name": "verbose",
|
|
5835
|
-
"type": "boolean",
|
|
5836
6225
|
"summary": "List more information about each org shape.",
|
|
5837
|
-
"hidden": true,
|
|
5838
6226
|
"allowNo": false,
|
|
5839
|
-
"
|
|
6227
|
+
"type": "boolean"
|
|
5840
6228
|
},
|
|
5841
6229
|
"loglevel": {
|
|
5842
|
-
"name": "loglevel",
|
|
5843
|
-
"type": "option",
|
|
5844
|
-
"hidden": true,
|
|
5845
|
-
"multiple": false,
|
|
5846
6230
|
"deprecated": {
|
|
5847
6231
|
"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
6232
|
},
|
|
5849
|
-
"
|
|
6233
|
+
"hidden": true,
|
|
6234
|
+
"name": "loglevel",
|
|
6235
|
+
"hasDynamicHelp": false,
|
|
6236
|
+
"multiple": false,
|
|
6237
|
+
"type": "option"
|
|
5850
6238
|
}
|
|
5851
6239
|
},
|
|
5852
|
-
"
|
|
5853
|
-
|
|
5854
|
-
|
|
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",
|
|
6240
|
+
"hasDynamicHelp": false,
|
|
6241
|
+
"hiddenAliases": [],
|
|
6242
|
+
"id": "org:list:shape",
|
|
5860
6243
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
6244
|
+
"pluginName": "@salesforce/plugin-signups",
|
|
5861
6245
|
"pluginType": "jit",
|
|
5862
|
-
"
|
|
6246
|
+
"strict": true,
|
|
6247
|
+
"summary": "List all org shapes you’ve created.",
|
|
6248
|
+
"enableJsonFlag": true,
|
|
6249
|
+
"SF_ENV": "SF_ENV",
|
|
6250
|
+
"isESM": true,
|
|
6251
|
+
"relativePath": [
|
|
6252
|
+
"lib",
|
|
6253
|
+
"commands",
|
|
6254
|
+
"org",
|
|
6255
|
+
"list",
|
|
6256
|
+
"shape.js"
|
|
6257
|
+
],
|
|
6258
|
+
"aliasPermutations": [
|
|
6259
|
+
"force:org:shape:list",
|
|
6260
|
+
"org:force:shape:list",
|
|
6261
|
+
"org:shape:force:list",
|
|
6262
|
+
"org:shape:list:force",
|
|
6263
|
+
"force:shape:org:list",
|
|
6264
|
+
"shape:force:org:list",
|
|
6265
|
+
"shape:org:force:list",
|
|
6266
|
+
"shape:org:list:force",
|
|
6267
|
+
"force:shape:list:org",
|
|
6268
|
+
"shape:force:list:org",
|
|
6269
|
+
"shape:list:force:org",
|
|
6270
|
+
"shape:list:org:force",
|
|
6271
|
+
"force:org:list:shape",
|
|
6272
|
+
"org:force:list:shape",
|
|
6273
|
+
"org:list:force:shape",
|
|
6274
|
+
"org:list:shape:force",
|
|
6275
|
+
"force:list:org:shape",
|
|
6276
|
+
"list:force:org:shape",
|
|
6277
|
+
"list:org:force:shape",
|
|
6278
|
+
"list:org:shape:force",
|
|
6279
|
+
"force:list:shape:org",
|
|
6280
|
+
"list:force:shape:org",
|
|
6281
|
+
"list:shape:force:org",
|
|
6282
|
+
"list:shape:org:force"
|
|
6283
|
+
],
|
|
6284
|
+
"permutations": [
|
|
6285
|
+
"org:list:shape",
|
|
6286
|
+
"list:org:shape",
|
|
6287
|
+
"list:shape:org",
|
|
6288
|
+
"org:shape:list",
|
|
6289
|
+
"shape:org:list",
|
|
6290
|
+
"shape:list:org"
|
|
6291
|
+
]
|
|
6292
|
+
},
|
|
6293
|
+
"org:list:snapshot": {
|
|
5863
6294
|
"aliases": [
|
|
5864
6295
|
"force:org:snapshot:list"
|
|
5865
6296
|
],
|
|
6297
|
+
"args": {},
|
|
6298
|
+
"deprecateAliases": true,
|
|
6299
|
+
"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
6300
|
"examples": [
|
|
5867
6301
|
"List snapshots in the default Dev Hub:\n<%= config.bin %> <%= command.id %>",
|
|
5868
6302
|
"List snapshots in the Dev Hub with alias SnapshotDevHub:\n<%= config.bin %> <%= command.id %> --target-dev-hub SnapshotDevHub"
|
|
5869
6303
|
],
|
|
5870
|
-
"deprecateAliases": true,
|
|
5871
6304
|
"flags": {
|
|
5872
6305
|
"json": {
|
|
5873
|
-
"name": "json",
|
|
5874
|
-
"type": "boolean",
|
|
5875
6306
|
"description": "Format output as json.",
|
|
5876
6307
|
"helpGroup": "GLOBAL",
|
|
6308
|
+
"name": "json",
|
|
5877
6309
|
"allowNo": false,
|
|
5878
|
-
"
|
|
6310
|
+
"type": "boolean"
|
|
5879
6311
|
},
|
|
5880
6312
|
"target-dev-hub": {
|
|
5881
|
-
"
|
|
5882
|
-
|
|
6313
|
+
"aliases": [
|
|
6314
|
+
"targetdevhubusername"
|
|
6315
|
+
],
|
|
5883
6316
|
"char": "v",
|
|
5884
|
-
"
|
|
6317
|
+
"deprecateAliases": true,
|
|
6318
|
+
"name": "target-dev-hub",
|
|
6319
|
+
"noCacheDefault": true,
|
|
5885
6320
|
"required": true,
|
|
6321
|
+
"summary": "Username or alias of the Dev Hub org.",
|
|
6322
|
+
"hasDynamicHelp": true,
|
|
5886
6323
|
"multiple": false,
|
|
5887
|
-
"
|
|
5888
|
-
"aliases": [
|
|
5889
|
-
"targetdevhubusername"
|
|
5890
|
-
]
|
|
6324
|
+
"type": "option"
|
|
5891
6325
|
},
|
|
5892
6326
|
"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
6327
|
"aliases": [
|
|
5899
6328
|
"apiversion"
|
|
5900
|
-
]
|
|
6329
|
+
],
|
|
6330
|
+
"deprecateAliases": true,
|
|
6331
|
+
"description": "Override the api version used for api requests made by this command",
|
|
6332
|
+
"name": "api-version",
|
|
6333
|
+
"hasDynamicHelp": false,
|
|
6334
|
+
"multiple": false,
|
|
6335
|
+
"type": "option"
|
|
5901
6336
|
},
|
|
5902
6337
|
"loglevel": {
|
|
5903
|
-
"name": "loglevel",
|
|
5904
|
-
"type": "option",
|
|
5905
|
-
"hidden": true,
|
|
5906
|
-
"multiple": false,
|
|
5907
6338
|
"deprecated": {
|
|
5908
6339
|
"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
6340
|
},
|
|
5910
|
-
"
|
|
6341
|
+
"hidden": true,
|
|
6342
|
+
"name": "loglevel",
|
|
6343
|
+
"hasDynamicHelp": false,
|
|
6344
|
+
"multiple": false,
|
|
6345
|
+
"type": "option"
|
|
5911
6346
|
}
|
|
5912
6347
|
},
|
|
5913
|
-
"
|
|
5914
|
-
"
|
|
6348
|
+
"hasDynamicHelp": true,
|
|
6349
|
+
"hiddenAliases": [],
|
|
6350
|
+
"id": "org:list:snapshot",
|
|
6351
|
+
"pluginAlias": "@salesforce/plugin-signups",
|
|
6352
|
+
"pluginName": "@salesforce/plugin-signups",
|
|
6353
|
+
"pluginType": "jit",
|
|
6354
|
+
"state": "closedPilot",
|
|
6355
|
+
"strict": true,
|
|
6356
|
+
"summary": "List scratch org snapshots.",
|
|
6357
|
+
"enableJsonFlag": true,
|
|
6358
|
+
"SF_ENV": "SF_ENV",
|
|
6359
|
+
"isESM": true,
|
|
6360
|
+
"relativePath": [
|
|
6361
|
+
"lib",
|
|
6362
|
+
"commands",
|
|
6363
|
+
"org",
|
|
6364
|
+
"list",
|
|
6365
|
+
"snapshot.js"
|
|
6366
|
+
],
|
|
6367
|
+
"aliasPermutations": [
|
|
6368
|
+
"force:org:snapshot:list",
|
|
6369
|
+
"org:force:snapshot:list",
|
|
6370
|
+
"org:snapshot:force:list",
|
|
6371
|
+
"org:snapshot:list:force",
|
|
6372
|
+
"force:snapshot:org:list",
|
|
6373
|
+
"snapshot:force:org:list",
|
|
6374
|
+
"snapshot:org:force:list",
|
|
6375
|
+
"snapshot:org:list:force",
|
|
6376
|
+
"force:snapshot:list:org",
|
|
6377
|
+
"snapshot:force:list:org",
|
|
6378
|
+
"snapshot:list:force:org",
|
|
6379
|
+
"snapshot:list:org:force",
|
|
6380
|
+
"force:org:list:snapshot",
|
|
6381
|
+
"org:force:list:snapshot",
|
|
6382
|
+
"org:list:force:snapshot",
|
|
6383
|
+
"org:list:snapshot:force",
|
|
6384
|
+
"force:list:org:snapshot",
|
|
6385
|
+
"list:force:org:snapshot",
|
|
6386
|
+
"list:org:force:snapshot",
|
|
6387
|
+
"list:org:snapshot:force",
|
|
6388
|
+
"force:list:snapshot:org",
|
|
6389
|
+
"list:force:snapshot:org",
|
|
6390
|
+
"list:snapshot:force:org",
|
|
6391
|
+
"list:snapshot:org:force"
|
|
6392
|
+
],
|
|
6393
|
+
"permutations": [
|
|
6394
|
+
"org:list:snapshot",
|
|
6395
|
+
"list:org:snapshot",
|
|
6396
|
+
"list:snapshot:org",
|
|
6397
|
+
"org:snapshot:list",
|
|
6398
|
+
"snapshot:org:list",
|
|
6399
|
+
"snapshot:list:org"
|
|
6400
|
+
]
|
|
5915
6401
|
},
|
|
5916
6402
|
"force:lightning:lwc:test:create": {
|
|
5917
6403
|
"id": "force:lightning:lwc:test:create",
|
|
@@ -6934,5 +7420,5 @@
|
|
|
6934
7420
|
]
|
|
6935
7421
|
}
|
|
6936
7422
|
},
|
|
6937
|
-
"version": "2.
|
|
7423
|
+
"version": "2.19.0"
|
|
6938
7424
|
}
|