@salesforce/plugin-org 3.3.3 → 3.3.5
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 +13 -13
- package/lib/commands/org/open.js +4 -1
- package/lib/commands/org/open.js.map +1 -1
- package/oclif.lock +39 -39
- package/oclif.manifest.json +444 -444
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"commands": {
|
|
3
|
-
"
|
|
4
|
-
"aliases": [
|
|
3
|
+
"org:display": {
|
|
4
|
+
"aliases": [
|
|
5
|
+
"force:org:display"
|
|
6
|
+
],
|
|
5
7
|
"args": {},
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
"version": "60.0"
|
|
9
|
-
},
|
|
10
|
-
"description": "There are two ways to clone a sandbox: either specify a sandbox definition file or provide key=value pairs at the command line. Key-value pairs at the command-line override their equivalent sandbox definition file values. In either case, you must specify both the \"SandboxName\" and \"SourceSandboxName\" options to set the names of the new sandbox and the one being cloned, respectively.\n\nSet the --targetusername (-u) parameter to a production org with sandbox licenses. The --type (-t) parameter is required and must be set to \"sandbox\".",
|
|
8
|
+
"deprecateAliases": true,
|
|
9
|
+
"description": "Output includes your access token, client Id, connected status, org ID, instance URL, username, and alias, if applicable.\n\nUse --verbose to include the SFDX auth URL. WARNING: The SFDX auth URL contains sensitive information, such as a refresh token that can be used to access an org. Don't share or distribute this URL or token.\n\nIncluding --verbose displays the sfdxAuthUrl property only if you authenticated to the org using \"org login web\" (not \"org login jwt\").",
|
|
11
10
|
"examples": [
|
|
12
|
-
"$ <%= config.bin %> <%= command.id %>
|
|
13
|
-
"$ <%= config.bin %> <%= command.id %> -
|
|
11
|
+
"Display information about your default org:\n$ <%= config.bin %> <%= command.id %>",
|
|
12
|
+
"Display information, including the sfdxAuthUrl property, about the org with alias TestOrg1:\n$ <%= config.bin %> <%= command.id %> --target-org TestOrg1 --verbose"
|
|
14
13
|
],
|
|
15
14
|
"flags": {
|
|
16
15
|
"json": {
|
|
@@ -46,54 +45,12 @@
|
|
|
46
45
|
"multiple": false,
|
|
47
46
|
"type": "option"
|
|
48
47
|
},
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"required": true,
|
|
53
|
-
"summary": "Type of org to create.",
|
|
54
|
-
"hasDynamicHelp": false,
|
|
55
|
-
"multiple": false,
|
|
56
|
-
"options": [
|
|
57
|
-
"sandbox"
|
|
58
|
-
],
|
|
59
|
-
"type": "option"
|
|
60
|
-
},
|
|
61
|
-
"definitionfile": {
|
|
62
|
-
"char": "f",
|
|
63
|
-
"name": "definitionfile",
|
|
64
|
-
"summary": "Path to the sandbox definition file.",
|
|
65
|
-
"hasDynamicHelp": false,
|
|
66
|
-
"multiple": false,
|
|
67
|
-
"type": "option"
|
|
68
|
-
},
|
|
69
|
-
"setdefaultusername": {
|
|
70
|
-
"char": "s",
|
|
71
|
-
"name": "setdefaultusername",
|
|
72
|
-
"summary": "Set the cloned org as your default.",
|
|
48
|
+
"verbose": {
|
|
49
|
+
"name": "verbose",
|
|
50
|
+
"summary": "Display the sfdxAuthUrl property.",
|
|
73
51
|
"allowNo": false,
|
|
74
52
|
"type": "boolean"
|
|
75
53
|
},
|
|
76
|
-
"setalias": {
|
|
77
|
-
"char": "a",
|
|
78
|
-
"name": "setalias",
|
|
79
|
-
"summary": "Alias for the cloned org.",
|
|
80
|
-
"hasDynamicHelp": false,
|
|
81
|
-
"multiple": false,
|
|
82
|
-
"type": "option"
|
|
83
|
-
},
|
|
84
|
-
"wait": {
|
|
85
|
-
"char": "w",
|
|
86
|
-
"description": "Sets the streaming client socket timeout, in minutes. If the streaming client socket has no contact from the server for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.",
|
|
87
|
-
"name": "wait",
|
|
88
|
-
"summary": "Number of minutes to wait while polling for status.",
|
|
89
|
-
"default": {
|
|
90
|
-
"quantity": 6,
|
|
91
|
-
"unit": 0
|
|
92
|
-
},
|
|
93
|
-
"hasDynamicHelp": false,
|
|
94
|
-
"multiple": false,
|
|
95
|
-
"type": "option"
|
|
96
|
-
},
|
|
97
54
|
"loglevel": {
|
|
98
55
|
"deprecated": {
|
|
99
56
|
"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."
|
|
@@ -106,47 +63,44 @@
|
|
|
106
63
|
}
|
|
107
64
|
},
|
|
108
65
|
"hasDynamicHelp": true,
|
|
109
|
-
"hidden": true,
|
|
110
66
|
"hiddenAliases": [],
|
|
111
|
-
"id": "
|
|
67
|
+
"id": "org:display",
|
|
112
68
|
"pluginAlias": "@salesforce/plugin-org",
|
|
113
69
|
"pluginName": "@salesforce/plugin-org",
|
|
114
70
|
"pluginType": "core",
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"summary": "Clone a sandbox org.",
|
|
71
|
+
"strict": true,
|
|
72
|
+
"summary": "Display information about an org.",
|
|
118
73
|
"enableJsonFlag": true,
|
|
119
|
-
"SANDBOXDEF_SRC_SANDBOXNAME": "SourceSandboxName",
|
|
120
74
|
"isESM": true,
|
|
121
75
|
"relativePath": [
|
|
122
76
|
"lib",
|
|
123
77
|
"commands",
|
|
124
|
-
"force",
|
|
125
78
|
"org",
|
|
126
|
-
"
|
|
79
|
+
"display.js"
|
|
80
|
+
],
|
|
81
|
+
"aliasPermutations": [
|
|
82
|
+
"force:org:display",
|
|
83
|
+
"org:force:display",
|
|
84
|
+
"org:display:force",
|
|
85
|
+
"force:display:org",
|
|
86
|
+
"display:force:org",
|
|
87
|
+
"display:org:force"
|
|
127
88
|
],
|
|
128
|
-
"aliasPermutations": [],
|
|
129
89
|
"permutations": [
|
|
130
|
-
"
|
|
131
|
-
"org
|
|
132
|
-
"org:clone:force",
|
|
133
|
-
"force:clone:org",
|
|
134
|
-
"clone:force:org",
|
|
135
|
-
"clone:org:force"
|
|
90
|
+
"org:display",
|
|
91
|
+
"display:org"
|
|
136
92
|
]
|
|
137
93
|
},
|
|
138
|
-
"
|
|
139
|
-
"aliases": [
|
|
94
|
+
"org:list": {
|
|
95
|
+
"aliases": [
|
|
96
|
+
"force:org:list"
|
|
97
|
+
],
|
|
140
98
|
"args": {},
|
|
141
|
-
"
|
|
142
|
-
"message": "The force:org:create command is deprecated. Try \"org create scratch\" or \"org create sandbox\" instead."
|
|
143
|
-
},
|
|
144
|
-
"description": "Creates a scratch org or a sandbox org using the values specified in a configuration file or key=value pairs that you specify on the command line. Values specified on the command line override values in the configuration file. Specify a configuration file or provide key=value pairs while creating a scratch org or a sandbox. When creating scratch orgs, —targetdevhubusername (-v) must be a Dev Hub org. When creating sandboxes, the --targetusername (-u) must be a production org with sandbox licenses. The —type (-t) is required if creating a sandbox.",
|
|
99
|
+
"deprecateAliases": true,
|
|
145
100
|
"examples": [
|
|
146
|
-
"$ <%= config.bin %> <%= command.id %>
|
|
147
|
-
"$ <%= config.bin %> <%= command.id %>
|
|
148
|
-
"$ <%= config.bin %> <%= command.id %>
|
|
149
|
-
"$ <%= config.bin %> <%= command.id %> -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg"
|
|
101
|
+
"List all orgs you've created or authenticated to:\n$ <%= config.bin %> <%= command.id %>",
|
|
102
|
+
"List all orgs, including expired, deleted, and unknown-status orgs; don't include the connection status:\n$ <%= config.bin %> <%= command.id %> --skip-connection-status --all",
|
|
103
|
+
"List orgs and remove local org authorization info about non-active scratch orgs:\n$ <%= config.bin %> <%= command.id %> --clean"
|
|
150
104
|
],
|
|
151
105
|
"flags": {
|
|
152
106
|
"json": {
|
|
@@ -156,44 +110,47 @@
|
|
|
156
110
|
"allowNo": false,
|
|
157
111
|
"type": "boolean"
|
|
158
112
|
},
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
"char": "o",
|
|
165
|
-
"deprecateAliases": true,
|
|
166
|
-
"name": "target-org",
|
|
167
|
-
"noCacheDefault": true,
|
|
168
|
-
"summary": "Username or alias of the production org that contains the sandbox license.",
|
|
169
|
-
"hasDynamicHelp": true,
|
|
170
|
-
"multiple": false,
|
|
171
|
-
"type": "option"
|
|
113
|
+
"verbose": {
|
|
114
|
+
"name": "verbose",
|
|
115
|
+
"summary": "List more information about each org.",
|
|
116
|
+
"allowNo": false,
|
|
117
|
+
"type": "boolean"
|
|
172
118
|
},
|
|
173
|
-
"
|
|
119
|
+
"all": {
|
|
120
|
+
"name": "all",
|
|
121
|
+
"summary": "Include expired, deleted, and unknown-status scratch orgs.",
|
|
122
|
+
"allowNo": false,
|
|
123
|
+
"type": "boolean"
|
|
124
|
+
},
|
|
125
|
+
"clean": {
|
|
126
|
+
"name": "clean",
|
|
127
|
+
"summary": "Remove all local org authorizations for non-active scratch orgs. Use \"org logout\" to remove non-scratch orgs.",
|
|
128
|
+
"allowNo": false,
|
|
129
|
+
"type": "boolean"
|
|
130
|
+
},
|
|
131
|
+
"no-prompt": {
|
|
174
132
|
"aliases": [
|
|
175
|
-
"
|
|
133
|
+
"noprompt"
|
|
134
|
+
],
|
|
135
|
+
"char": "p",
|
|
136
|
+
"dependsOn": [
|
|
137
|
+
"clean"
|
|
176
138
|
],
|
|
177
|
-
"char": "v",
|
|
178
139
|
"deprecateAliases": true,
|
|
179
|
-
"name": "
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"hasDynamicHelp": true,
|
|
184
|
-
"multiple": false,
|
|
185
|
-
"type": "option"
|
|
140
|
+
"name": "no-prompt",
|
|
141
|
+
"summary": "Don't prompt for confirmation.",
|
|
142
|
+
"allowNo": false,
|
|
143
|
+
"type": "boolean"
|
|
186
144
|
},
|
|
187
|
-
"
|
|
145
|
+
"skip-connection-status": {
|
|
188
146
|
"aliases": [
|
|
189
|
-
"
|
|
147
|
+
"skipconnectionstatus"
|
|
190
148
|
],
|
|
191
149
|
"deprecateAliases": true,
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"type": "option"
|
|
150
|
+
"name": "skip-connection-status",
|
|
151
|
+
"summary": "Skip retrieving the connection status of non-scratch orgs.",
|
|
152
|
+
"allowNo": false,
|
|
153
|
+
"type": "boolean"
|
|
197
154
|
},
|
|
198
155
|
"loglevel": {
|
|
199
156
|
"deprecated": {
|
|
@@ -204,135 +161,52 @@
|
|
|
204
161
|
"hasDynamicHelp": false,
|
|
205
162
|
"multiple": false,
|
|
206
163
|
"type": "option"
|
|
207
|
-
},
|
|
208
|
-
"type": {
|
|
209
|
-
"char": "t",
|
|
210
|
-
"name": "type",
|
|
211
|
-
"summary": "Type of org to create.",
|
|
212
|
-
"default": "scratch",
|
|
213
|
-
"hasDynamicHelp": false,
|
|
214
|
-
"multiple": false,
|
|
215
|
-
"options": [
|
|
216
|
-
"scratch",
|
|
217
|
-
"sandbox"
|
|
218
|
-
],
|
|
219
|
-
"type": "option"
|
|
220
|
-
},
|
|
221
|
-
"definitionfile": {
|
|
222
|
-
"char": "f",
|
|
223
|
-
"name": "definitionfile",
|
|
224
|
-
"summary": "Path to an org definition file.",
|
|
225
|
-
"hasDynamicHelp": false,
|
|
226
|
-
"multiple": false,
|
|
227
|
-
"type": "option"
|
|
228
|
-
},
|
|
229
|
-
"nonamespace": {
|
|
230
|
-
"char": "n",
|
|
231
|
-
"name": "nonamespace",
|
|
232
|
-
"summary": "Create the scratch org with no namespace.",
|
|
233
|
-
"allowNo": false,
|
|
234
|
-
"type": "boolean"
|
|
235
|
-
},
|
|
236
|
-
"noancestors": {
|
|
237
|
-
"char": "c",
|
|
238
|
-
"name": "noancestors",
|
|
239
|
-
"summary": "Do not include second-generation package ancestors in the scratch org.",
|
|
240
|
-
"allowNo": false,
|
|
241
|
-
"type": "boolean"
|
|
242
|
-
},
|
|
243
|
-
"clientid": {
|
|
244
|
-
"char": "i",
|
|
245
|
-
"name": "clientid",
|
|
246
|
-
"summary": "Connected app consumer key; not supported for sandbox org creation.",
|
|
247
|
-
"hasDynamicHelp": false,
|
|
248
|
-
"multiple": false,
|
|
249
|
-
"type": "option"
|
|
250
|
-
},
|
|
251
|
-
"setdefaultusername": {
|
|
252
|
-
"char": "s",
|
|
253
|
-
"name": "setdefaultusername",
|
|
254
|
-
"summary": "Set the created org as the default username.",
|
|
255
|
-
"allowNo": false,
|
|
256
|
-
"type": "boolean"
|
|
257
|
-
},
|
|
258
|
-
"setalias": {
|
|
259
|
-
"char": "a",
|
|
260
|
-
"name": "setalias",
|
|
261
|
-
"summary": "Alias for the created org.",
|
|
262
|
-
"hasDynamicHelp": false,
|
|
263
|
-
"multiple": false,
|
|
264
|
-
"type": "option"
|
|
265
|
-
},
|
|
266
|
-
"wait": {
|
|
267
|
-
"char": "w",
|
|
268
|
-
"name": "wait",
|
|
269
|
-
"summary": "Streaming client socket timeout (in minutes).",
|
|
270
|
-
"default": {
|
|
271
|
-
"quantity": 6,
|
|
272
|
-
"unit": 0
|
|
273
|
-
},
|
|
274
|
-
"hasDynamicHelp": false,
|
|
275
|
-
"multiple": false,
|
|
276
|
-
"type": "option"
|
|
277
|
-
},
|
|
278
|
-
"durationdays": {
|
|
279
|
-
"char": "d",
|
|
280
|
-
"name": "durationdays",
|
|
281
|
-
"summary": "Duration of the scratch org (in days) (default:7, min:1, max:30).",
|
|
282
|
-
"default": 7,
|
|
283
|
-
"hasDynamicHelp": false,
|
|
284
|
-
"multiple": false,
|
|
285
|
-
"type": "option"
|
|
286
|
-
},
|
|
287
|
-
"retry": {
|
|
288
|
-
"hidden": true,
|
|
289
|
-
"name": "retry",
|
|
290
|
-
"summary": "Number of scratch org auth retries after scratch org is successfully signed up.",
|
|
291
|
-
"default": 0,
|
|
292
|
-
"hasDynamicHelp": false,
|
|
293
|
-
"multiple": false,
|
|
294
|
-
"type": "option"
|
|
295
164
|
}
|
|
296
165
|
},
|
|
297
|
-
"hasDynamicHelp":
|
|
298
|
-
"hidden": true,
|
|
166
|
+
"hasDynamicHelp": false,
|
|
299
167
|
"hiddenAliases": [],
|
|
300
|
-
"id": "
|
|
168
|
+
"id": "org:list",
|
|
301
169
|
"pluginAlias": "@salesforce/plugin-org",
|
|
302
170
|
"pluginName": "@salesforce/plugin-org",
|
|
303
171
|
"pluginType": "core",
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"summary": "Create a scratch org or sandbox.",
|
|
172
|
+
"strict": true,
|
|
173
|
+
"summary": "List all orgs you’ve created or authenticated to.",
|
|
307
174
|
"enableJsonFlag": true,
|
|
308
175
|
"isESM": true,
|
|
309
176
|
"relativePath": [
|
|
310
177
|
"lib",
|
|
311
178
|
"commands",
|
|
312
|
-
"force",
|
|
313
179
|
"org",
|
|
314
|
-
"
|
|
180
|
+
"list.js"
|
|
181
|
+
],
|
|
182
|
+
"aliasPermutations": [
|
|
183
|
+
"force:org:list",
|
|
184
|
+
"org:force:list",
|
|
185
|
+
"org:list:force",
|
|
186
|
+
"force:list:org",
|
|
187
|
+
"list:force:org",
|
|
188
|
+
"list:org:force"
|
|
315
189
|
],
|
|
316
|
-
"aliasPermutations": [],
|
|
317
190
|
"permutations": [
|
|
318
|
-
"
|
|
319
|
-
"org
|
|
320
|
-
"org:create:force",
|
|
321
|
-
"force:create:org",
|
|
322
|
-
"create:force:org",
|
|
323
|
-
"create:org:force"
|
|
191
|
+
"org:list",
|
|
192
|
+
"list:org"
|
|
324
193
|
]
|
|
325
194
|
},
|
|
326
|
-
"
|
|
327
|
-
"aliases": [
|
|
195
|
+
"org:open": {
|
|
196
|
+
"aliases": [
|
|
197
|
+
"force:org:open",
|
|
198
|
+
"force:source:open"
|
|
199
|
+
],
|
|
328
200
|
"args": {},
|
|
329
|
-
"
|
|
330
|
-
|
|
331
|
-
},
|
|
332
|
-
"description": "Salesforce CLI marks the org for deletion in either the Dev Hub org (for scratch orgs) or production org (for sandboxes) and then deletes all local references to the org from your computer.\n\nTo mark the org for deletion without being prompted to confirm, specify --noprompt.",
|
|
201
|
+
"deprecateAliases": true,
|
|
202
|
+
"description": "To open a specific page, specify the portion of the URL after \"https://mydomain.my.salesforce.com\" as the value for the --path flag. For example, specify \"--path lightning\" to open Lightning Experience, or specify \"--path /apex/YourPage\" to open a Visualforce page.\n\nUse the --source-file to open a Lightning Page from your local project in Lightning App Builder. Lightning page files have the suffix .flexipage-meta.xml, and are stored in the \"flexipages\" directory.\n\nTo generate a URL but not launch it in your browser, specify --url-only.\n\nTo open in a specific browser, use the --browser flag. Supported browsers are \"chrome\", \"edge\", and \"firefox\". If you don't specify --browser, the org opens in your default browser.",
|
|
333
203
|
"examples": [
|
|
334
|
-
"$ <%= config.bin %> <%= command.id %>
|
|
335
|
-
"$ <%= config.bin %> <%= command.id %>
|
|
204
|
+
"Open your default org in your default browser:\n$ <%= config.bin %> <%= command.id %>",
|
|
205
|
+
"Open your default org in an incognito window of your default browser:\n$ <%= config.bin %> <%= command.id %> --private",
|
|
206
|
+
"Open the org with alias MyTestOrg1 in the Firefox browser:\n$ <%= config.bin %> <%= command.id %> --target-org MyTestOrg1 --browser firefox",
|
|
207
|
+
"Display the navigation URL for the Lightning Experience page for your default org, but don't open the page in a browser:\n$ <%= config.bin %> <%= command.id %> --url-only --path lightning",
|
|
208
|
+
"Open a local Lightning page in your default org's Lightning App Builder:\n$ <%= config.bin %> <%= command.id %> --source-file force-app/main/default/flexipages/Hello.flexipage-meta.xml",
|
|
209
|
+
"Open a local Flow in Flow Builder:\n$ <%= config.bin %> <%= command.id %> --source-file force-app/main/default/flows/Hello.flow-meta.xml"
|
|
336
210
|
],
|
|
337
211
|
"flags": {
|
|
338
212
|
"json": {
|
|
@@ -350,25 +224,13 @@
|
|
|
350
224
|
"char": "o",
|
|
351
225
|
"deprecateAliases": true,
|
|
352
226
|
"name": "target-org",
|
|
227
|
+
"noCacheDefault": true,
|
|
353
228
|
"required": true,
|
|
354
|
-
"summary": "Username or alias of the target org.",
|
|
229
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
355
230
|
"hasDynamicHelp": true,
|
|
356
231
|
"multiple": false,
|
|
357
232
|
"type": "option"
|
|
358
233
|
},
|
|
359
|
-
"targetdevhubusername": {
|
|
360
|
-
"char": "v",
|
|
361
|
-
"deprecated": {
|
|
362
|
-
"version": "58.0",
|
|
363
|
-
"message": "The targetdevhubusername flag exists only for backwards compatibility. It is not necessary and has no effect."
|
|
364
|
-
},
|
|
365
|
-
"hidden": true,
|
|
366
|
-
"name": "targetdevhubusername",
|
|
367
|
-
"summary": "The targetdevhubusername flag exists only for backwards compatibility. It is not necessary and has no effect.",
|
|
368
|
-
"hasDynamicHelp": false,
|
|
369
|
-
"multiple": false,
|
|
370
|
-
"type": "option"
|
|
371
|
-
},
|
|
372
234
|
"api-version": {
|
|
373
235
|
"aliases": [
|
|
374
236
|
"apiversion"
|
|
@@ -380,14 +242,53 @@
|
|
|
380
242
|
"multiple": false,
|
|
381
243
|
"type": "option"
|
|
382
244
|
},
|
|
383
|
-
"
|
|
384
|
-
"
|
|
385
|
-
"
|
|
245
|
+
"private": {
|
|
246
|
+
"exclusive": [
|
|
247
|
+
"url-only",
|
|
248
|
+
"browser"
|
|
249
|
+
],
|
|
250
|
+
"name": "private",
|
|
251
|
+
"summary": "Open the org in the default browser using private (incognito) mode.",
|
|
252
|
+
"allowNo": false,
|
|
253
|
+
"type": "boolean"
|
|
254
|
+
},
|
|
255
|
+
"browser": {
|
|
256
|
+
"char": "b",
|
|
257
|
+
"exclusive": [
|
|
258
|
+
"url-only",
|
|
259
|
+
"private"
|
|
260
|
+
],
|
|
261
|
+
"name": "browser",
|
|
262
|
+
"summary": "Browser where the org opens.",
|
|
263
|
+
"hasDynamicHelp": false,
|
|
264
|
+
"multiple": false,
|
|
265
|
+
"options": [
|
|
266
|
+
"chrome",
|
|
267
|
+
"edge",
|
|
268
|
+
"firefox"
|
|
386
269
|
],
|
|
270
|
+
"type": "option"
|
|
271
|
+
},
|
|
272
|
+
"path": {
|
|
387
273
|
"char": "p",
|
|
274
|
+
"env": "FORCE_OPEN_URL",
|
|
275
|
+
"exclusive": [
|
|
276
|
+
"source-file"
|
|
277
|
+
],
|
|
278
|
+
"name": "path",
|
|
279
|
+
"summary": "Navigation URL path to open a specific page.",
|
|
280
|
+
"hasDynamicHelp": false,
|
|
281
|
+
"multiple": false,
|
|
282
|
+
"type": "option"
|
|
283
|
+
},
|
|
284
|
+
"url-only": {
|
|
285
|
+
"aliases": [
|
|
286
|
+
"urlonly"
|
|
287
|
+
],
|
|
288
|
+
"char": "r",
|
|
388
289
|
"deprecateAliases": true,
|
|
389
|
-
"name": "
|
|
390
|
-
"summary": "
|
|
290
|
+
"name": "url-only",
|
|
291
|
+
"summary": "Display navigation URL, but don’t launch browser.",
|
|
391
292
|
"allowNo": false,
|
|
392
293
|
"type": "boolean"
|
|
393
294
|
},
|
|
@@ -400,48 +301,69 @@
|
|
|
400
301
|
"hasDynamicHelp": false,
|
|
401
302
|
"multiple": false,
|
|
402
303
|
"type": "option"
|
|
304
|
+
},
|
|
305
|
+
"source-file": {
|
|
306
|
+
"aliases": [
|
|
307
|
+
"sourcefile"
|
|
308
|
+
],
|
|
309
|
+
"char": "f",
|
|
310
|
+
"deprecateAliases": true,
|
|
311
|
+
"exclusive": [
|
|
312
|
+
"path"
|
|
313
|
+
],
|
|
314
|
+
"name": "source-file",
|
|
315
|
+
"summary": "Path to an ApexPage or FlexiPage to open in Lightning App Builder.",
|
|
316
|
+
"hasDynamicHelp": false,
|
|
317
|
+
"multiple": false,
|
|
318
|
+
"type": "option"
|
|
403
319
|
}
|
|
404
320
|
},
|
|
405
321
|
"hasDynamicHelp": true,
|
|
406
|
-
"hidden": true,
|
|
407
322
|
"hiddenAliases": [],
|
|
408
|
-
"id": "
|
|
323
|
+
"id": "org:open",
|
|
409
324
|
"pluginAlias": "@salesforce/plugin-org",
|
|
410
325
|
"pluginName": "@salesforce/plugin-org",
|
|
411
326
|
"pluginType": "core",
|
|
412
|
-
"state": "deprecated",
|
|
413
327
|
"strict": true,
|
|
414
|
-
"summary": "
|
|
328
|
+
"summary": "Open your default scratch org, or another specified org, in a browser.",
|
|
415
329
|
"enableJsonFlag": true,
|
|
416
330
|
"isESM": true,
|
|
417
331
|
"relativePath": [
|
|
418
332
|
"lib",
|
|
419
333
|
"commands",
|
|
420
|
-
"force",
|
|
421
334
|
"org",
|
|
422
|
-
"
|
|
335
|
+
"open.js"
|
|
336
|
+
],
|
|
337
|
+
"aliasPermutations": [
|
|
338
|
+
"force:org:open",
|
|
339
|
+
"org:force:open",
|
|
340
|
+
"org:open:force",
|
|
341
|
+
"force:open:org",
|
|
342
|
+
"open:force:org",
|
|
343
|
+
"open:org:force",
|
|
344
|
+
"force:source:open",
|
|
345
|
+
"source:force:open",
|
|
346
|
+
"source:open:force",
|
|
347
|
+
"force:open:source",
|
|
348
|
+
"open:force:source",
|
|
349
|
+
"open:source:force"
|
|
423
350
|
],
|
|
424
|
-
"aliasPermutations": [],
|
|
425
351
|
"permutations": [
|
|
426
|
-
"
|
|
427
|
-
"org
|
|
428
|
-
"org:delete:force",
|
|
429
|
-
"force:delete:org",
|
|
430
|
-
"delete:force:org",
|
|
431
|
-
"delete:org:force"
|
|
352
|
+
"org:open",
|
|
353
|
+
"open:org"
|
|
432
354
|
]
|
|
433
355
|
},
|
|
434
|
-
"force:org:
|
|
356
|
+
"force:org:clone": {
|
|
435
357
|
"aliases": [],
|
|
436
358
|
"args": {},
|
|
437
359
|
"deprecationOptions": {
|
|
438
|
-
"to": "org:
|
|
360
|
+
"to": "org:create:sandbox",
|
|
439
361
|
"version": "60.0"
|
|
440
362
|
},
|
|
441
|
-
"description": "
|
|
363
|
+
"description": "There are two ways to clone a sandbox: either specify a sandbox definition file or provide key=value pairs at the command line. Key-value pairs at the command-line override their equivalent sandbox definition file values. In either case, you must specify both the \"SandboxName\" and \"SourceSandboxName\" options to set the names of the new sandbox and the one being cloned, respectively.\n\nSet the --targetusername (-u) parameter to a production org with sandbox licenses. The --type (-t) parameter is required and must be set to \"sandbox\".",
|
|
442
364
|
"examples": [
|
|
443
|
-
"$ <%= config.bin %> <%= command.id %>
|
|
444
|
-
"$ <%= config.bin %> <%= command.id %>
|
|
365
|
+
"$ <%= config.bin %> <%= command.id %> -t sandbox -f config/dev-sandbox-def.json -u prodOrg -a MyDevSandbox",
|
|
366
|
+
"$ <%= config.bin %> <%= command.id %> -t sandbox SandboxName=NewClonedSandbox SourceSandboxName=ExistingSandbox -u prodOrg -a MyDevSandbox"
|
|
445
367
|
],
|
|
446
368
|
"flags": {
|
|
447
369
|
"json": {
|
|
@@ -477,11 +399,22 @@
|
|
|
477
399
|
"multiple": false,
|
|
478
400
|
"type": "option"
|
|
479
401
|
},
|
|
480
|
-
"
|
|
481
|
-
"char": "
|
|
482
|
-
"name": "
|
|
402
|
+
"type": {
|
|
403
|
+
"char": "t",
|
|
404
|
+
"name": "type",
|
|
483
405
|
"required": true,
|
|
484
|
-
"summary": "
|
|
406
|
+
"summary": "Type of org to create.",
|
|
407
|
+
"hasDynamicHelp": false,
|
|
408
|
+
"multiple": false,
|
|
409
|
+
"options": [
|
|
410
|
+
"sandbox"
|
|
411
|
+
],
|
|
412
|
+
"type": "option"
|
|
413
|
+
},
|
|
414
|
+
"definitionfile": {
|
|
415
|
+
"char": "f",
|
|
416
|
+
"name": "definitionfile",
|
|
417
|
+
"summary": "Path to the sandbox definition file.",
|
|
485
418
|
"hasDynamicHelp": false,
|
|
486
419
|
"multiple": false,
|
|
487
420
|
"type": "option"
|
|
@@ -489,20 +422,21 @@
|
|
|
489
422
|
"setdefaultusername": {
|
|
490
423
|
"char": "s",
|
|
491
424
|
"name": "setdefaultusername",
|
|
492
|
-
"summary": "Set the
|
|
425
|
+
"summary": "Set the cloned org as your default.",
|
|
493
426
|
"allowNo": false,
|
|
494
427
|
"type": "boolean"
|
|
495
428
|
},
|
|
496
429
|
"setalias": {
|
|
497
430
|
"char": "a",
|
|
498
431
|
"name": "setalias",
|
|
499
|
-
"summary": "Alias for the
|
|
432
|
+
"summary": "Alias for the cloned org.",
|
|
500
433
|
"hasDynamicHelp": false,
|
|
501
434
|
"multiple": false,
|
|
502
435
|
"type": "option"
|
|
503
436
|
},
|
|
504
437
|
"wait": {
|
|
505
438
|
"char": "w",
|
|
439
|
+
"description": "Sets the streaming client socket timeout, in minutes. If the streaming client socket has no contact from the server for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.",
|
|
506
440
|
"name": "wait",
|
|
507
441
|
"summary": "Number of minutes to wait while polling for status.",
|
|
508
442
|
"default": {
|
|
@@ -527,42 +461,45 @@
|
|
|
527
461
|
"hasDynamicHelp": true,
|
|
528
462
|
"hidden": true,
|
|
529
463
|
"hiddenAliases": [],
|
|
530
|
-
"id": "force:org:
|
|
464
|
+
"id": "force:org:clone",
|
|
531
465
|
"pluginAlias": "@salesforce/plugin-org",
|
|
532
466
|
"pluginName": "@salesforce/plugin-org",
|
|
533
467
|
"pluginType": "core",
|
|
534
468
|
"state": "deprecated",
|
|
535
|
-
"strict":
|
|
536
|
-
"summary": "
|
|
469
|
+
"strict": false,
|
|
470
|
+
"summary": "Clone a sandbox org.",
|
|
537
471
|
"enableJsonFlag": true,
|
|
472
|
+
"SANDBOXDEF_SRC_SANDBOXNAME": "SourceSandboxName",
|
|
538
473
|
"isESM": true,
|
|
539
474
|
"relativePath": [
|
|
540
475
|
"lib",
|
|
541
476
|
"commands",
|
|
542
477
|
"force",
|
|
543
478
|
"org",
|
|
544
|
-
"
|
|
479
|
+
"clone.js"
|
|
545
480
|
],
|
|
546
481
|
"aliasPermutations": [],
|
|
547
482
|
"permutations": [
|
|
548
|
-
"force:org:
|
|
549
|
-
"org:force:
|
|
550
|
-
"org:
|
|
551
|
-
"force:
|
|
552
|
-
"
|
|
553
|
-
"
|
|
483
|
+
"force:org:clone",
|
|
484
|
+
"org:force:clone",
|
|
485
|
+
"org:clone:force",
|
|
486
|
+
"force:clone:org",
|
|
487
|
+
"clone:force:org",
|
|
488
|
+
"clone:org:force"
|
|
554
489
|
]
|
|
555
490
|
},
|
|
556
|
-
"org:
|
|
557
|
-
"aliases": [
|
|
558
|
-
"force:org:display"
|
|
559
|
-
],
|
|
491
|
+
"force:org:create": {
|
|
492
|
+
"aliases": [],
|
|
560
493
|
"args": {},
|
|
561
|
-
"
|
|
562
|
-
|
|
494
|
+
"deprecationOptions": {
|
|
495
|
+
"message": "The force:org:create command is deprecated. Try \"org create scratch\" or \"org create sandbox\" instead."
|
|
496
|
+
},
|
|
497
|
+
"description": "Creates a scratch org or a sandbox org using the values specified in a configuration file or key=value pairs that you specify on the command line. Values specified on the command line override values in the configuration file. Specify a configuration file or provide key=value pairs while creating a scratch org or a sandbox. When creating scratch orgs, —targetdevhubusername (-v) must be a Dev Hub org. When creating sandboxes, the --targetusername (-u) must be a production org with sandbox licenses. The —type (-t) is required if creating a sandbox.",
|
|
563
498
|
"examples": [
|
|
564
|
-
"
|
|
565
|
-
"
|
|
499
|
+
"$ <%= config.bin %> <%= command.id %> -f config/enterprise-scratch-def.json -a MyScratchOrg",
|
|
500
|
+
"$ <%= config.bin %> <%= command.id %> edition=Developer -a MyScratchOrg -s -v devHub",
|
|
501
|
+
"$ <%= config.bin %> <%= command.id %> -f config/enterprise-scratch-def.json -a ScratchOrgWithOverrides username=testuser1@mycompany.org",
|
|
502
|
+
"$ <%= config.bin %> <%= command.id %> -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg"
|
|
566
503
|
],
|
|
567
504
|
"flags": {
|
|
568
505
|
"json": {
|
|
@@ -581,8 +518,21 @@
|
|
|
581
518
|
"deprecateAliases": true,
|
|
582
519
|
"name": "target-org",
|
|
583
520
|
"noCacheDefault": true,
|
|
584
|
-
"
|
|
585
|
-
"
|
|
521
|
+
"summary": "Username or alias of the production org that contains the sandbox license.",
|
|
522
|
+
"hasDynamicHelp": true,
|
|
523
|
+
"multiple": false,
|
|
524
|
+
"type": "option"
|
|
525
|
+
},
|
|
526
|
+
"target-dev-hub": {
|
|
527
|
+
"aliases": [
|
|
528
|
+
"targetdevhubusername"
|
|
529
|
+
],
|
|
530
|
+
"char": "v",
|
|
531
|
+
"deprecateAliases": true,
|
|
532
|
+
"name": "target-dev-hub",
|
|
533
|
+
"noCacheDefault": true,
|
|
534
|
+
"required": false,
|
|
535
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
586
536
|
"hasDynamicHelp": true,
|
|
587
537
|
"multiple": false,
|
|
588
538
|
"type": "option"
|
|
@@ -598,12 +548,6 @@
|
|
|
598
548
|
"multiple": false,
|
|
599
549
|
"type": "option"
|
|
600
550
|
},
|
|
601
|
-
"verbose": {
|
|
602
|
-
"name": "verbose",
|
|
603
|
-
"summary": "Display the sfdxAuthUrl property.",
|
|
604
|
-
"allowNo": false,
|
|
605
|
-
"type": "boolean"
|
|
606
|
-
},
|
|
607
551
|
"loglevel": {
|
|
608
552
|
"deprecated": {
|
|
609
553
|
"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."
|
|
@@ -613,47 +557,135 @@
|
|
|
613
557
|
"hasDynamicHelp": false,
|
|
614
558
|
"multiple": false,
|
|
615
559
|
"type": "option"
|
|
560
|
+
},
|
|
561
|
+
"type": {
|
|
562
|
+
"char": "t",
|
|
563
|
+
"name": "type",
|
|
564
|
+
"summary": "Type of org to create.",
|
|
565
|
+
"default": "scratch",
|
|
566
|
+
"hasDynamicHelp": false,
|
|
567
|
+
"multiple": false,
|
|
568
|
+
"options": [
|
|
569
|
+
"scratch",
|
|
570
|
+
"sandbox"
|
|
571
|
+
],
|
|
572
|
+
"type": "option"
|
|
573
|
+
},
|
|
574
|
+
"definitionfile": {
|
|
575
|
+
"char": "f",
|
|
576
|
+
"name": "definitionfile",
|
|
577
|
+
"summary": "Path to an org definition file.",
|
|
578
|
+
"hasDynamicHelp": false,
|
|
579
|
+
"multiple": false,
|
|
580
|
+
"type": "option"
|
|
581
|
+
},
|
|
582
|
+
"nonamespace": {
|
|
583
|
+
"char": "n",
|
|
584
|
+
"name": "nonamespace",
|
|
585
|
+
"summary": "Create the scratch org with no namespace.",
|
|
586
|
+
"allowNo": false,
|
|
587
|
+
"type": "boolean"
|
|
588
|
+
},
|
|
589
|
+
"noancestors": {
|
|
590
|
+
"char": "c",
|
|
591
|
+
"name": "noancestors",
|
|
592
|
+
"summary": "Do not include second-generation package ancestors in the scratch org.",
|
|
593
|
+
"allowNo": false,
|
|
594
|
+
"type": "boolean"
|
|
595
|
+
},
|
|
596
|
+
"clientid": {
|
|
597
|
+
"char": "i",
|
|
598
|
+
"name": "clientid",
|
|
599
|
+
"summary": "Connected app consumer key; not supported for sandbox org creation.",
|
|
600
|
+
"hasDynamicHelp": false,
|
|
601
|
+
"multiple": false,
|
|
602
|
+
"type": "option"
|
|
603
|
+
},
|
|
604
|
+
"setdefaultusername": {
|
|
605
|
+
"char": "s",
|
|
606
|
+
"name": "setdefaultusername",
|
|
607
|
+
"summary": "Set the created org as the default username.",
|
|
608
|
+
"allowNo": false,
|
|
609
|
+
"type": "boolean"
|
|
610
|
+
},
|
|
611
|
+
"setalias": {
|
|
612
|
+
"char": "a",
|
|
613
|
+
"name": "setalias",
|
|
614
|
+
"summary": "Alias for the created org.",
|
|
615
|
+
"hasDynamicHelp": false,
|
|
616
|
+
"multiple": false,
|
|
617
|
+
"type": "option"
|
|
618
|
+
},
|
|
619
|
+
"wait": {
|
|
620
|
+
"char": "w",
|
|
621
|
+
"name": "wait",
|
|
622
|
+
"summary": "Streaming client socket timeout (in minutes).",
|
|
623
|
+
"default": {
|
|
624
|
+
"quantity": 6,
|
|
625
|
+
"unit": 0
|
|
626
|
+
},
|
|
627
|
+
"hasDynamicHelp": false,
|
|
628
|
+
"multiple": false,
|
|
629
|
+
"type": "option"
|
|
630
|
+
},
|
|
631
|
+
"durationdays": {
|
|
632
|
+
"char": "d",
|
|
633
|
+
"name": "durationdays",
|
|
634
|
+
"summary": "Duration of the scratch org (in days) (default:7, min:1, max:30).",
|
|
635
|
+
"default": 7,
|
|
636
|
+
"hasDynamicHelp": false,
|
|
637
|
+
"multiple": false,
|
|
638
|
+
"type": "option"
|
|
639
|
+
},
|
|
640
|
+
"retry": {
|
|
641
|
+
"hidden": true,
|
|
642
|
+
"name": "retry",
|
|
643
|
+
"summary": "Number of scratch org auth retries after scratch org is successfully signed up.",
|
|
644
|
+
"default": 0,
|
|
645
|
+
"hasDynamicHelp": false,
|
|
646
|
+
"multiple": false,
|
|
647
|
+
"type": "option"
|
|
616
648
|
}
|
|
617
649
|
},
|
|
618
650
|
"hasDynamicHelp": true,
|
|
651
|
+
"hidden": true,
|
|
619
652
|
"hiddenAliases": [],
|
|
620
|
-
"id": "org:
|
|
653
|
+
"id": "force:org:create",
|
|
621
654
|
"pluginAlias": "@salesforce/plugin-org",
|
|
622
655
|
"pluginName": "@salesforce/plugin-org",
|
|
623
656
|
"pluginType": "core",
|
|
624
|
-
"
|
|
625
|
-
"
|
|
657
|
+
"state": "deprecated",
|
|
658
|
+
"strict": false,
|
|
659
|
+
"summary": "Create a scratch org or sandbox.",
|
|
626
660
|
"enableJsonFlag": true,
|
|
627
661
|
"isESM": true,
|
|
628
662
|
"relativePath": [
|
|
629
|
-
"lib",
|
|
630
|
-
"commands",
|
|
631
|
-
"
|
|
632
|
-
"
|
|
633
|
-
|
|
634
|
-
"aliasPermutations": [
|
|
635
|
-
"force:org:display",
|
|
636
|
-
"org:force:display",
|
|
637
|
-
"org:display:force",
|
|
638
|
-
"force:display:org",
|
|
639
|
-
"display:force:org",
|
|
640
|
-
"display:org:force"
|
|
663
|
+
"lib",
|
|
664
|
+
"commands",
|
|
665
|
+
"force",
|
|
666
|
+
"org",
|
|
667
|
+
"create.js"
|
|
641
668
|
],
|
|
669
|
+
"aliasPermutations": [],
|
|
642
670
|
"permutations": [
|
|
643
|
-
"org:
|
|
644
|
-
"
|
|
671
|
+
"force:org:create",
|
|
672
|
+
"org:force:create",
|
|
673
|
+
"org:create:force",
|
|
674
|
+
"force:create:org",
|
|
675
|
+
"create:force:org",
|
|
676
|
+
"create:org:force"
|
|
645
677
|
]
|
|
646
678
|
},
|
|
647
|
-
"org:
|
|
648
|
-
"aliases": [
|
|
649
|
-
"force:org:list"
|
|
650
|
-
],
|
|
679
|
+
"force:org:delete": {
|
|
680
|
+
"aliases": [],
|
|
651
681
|
"args": {},
|
|
652
|
-
"
|
|
682
|
+
"deprecationOptions": {
|
|
683
|
+
"message": "The force:org:delete command is deprecated. Try \"org delete scratch\" or \"org delete sandbox\" instead."
|
|
684
|
+
},
|
|
685
|
+
"description": "Salesforce CLI marks the org for deletion in either the Dev Hub org (for scratch orgs) or production org (for sandboxes) and then deletes all local references to the org from your computer.\n\nTo mark the org for deletion without being prompted to confirm, specify --noprompt.",
|
|
653
686
|
"examples": [
|
|
654
|
-
"
|
|
655
|
-
"
|
|
656
|
-
"List orgs and remove local org authorization info about non-active scratch orgs:\n$ <%= config.bin %> <%= command.id %> --clean"
|
|
687
|
+
"$ <%= config.bin %> <%= command.id %> -u me@my.org",
|
|
688
|
+
"$ <%= config.bin %> <%= command.id %> -u MyOrgAlias -p"
|
|
657
689
|
],
|
|
658
690
|
"flags": {
|
|
659
691
|
"json": {
|
|
@@ -663,45 +695,52 @@
|
|
|
663
695
|
"allowNo": false,
|
|
664
696
|
"type": "boolean"
|
|
665
697
|
},
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
698
|
+
"target-org": {
|
|
699
|
+
"aliases": [
|
|
700
|
+
"targetusername",
|
|
701
|
+
"u"
|
|
702
|
+
],
|
|
703
|
+
"char": "o",
|
|
704
|
+
"deprecateAliases": true,
|
|
705
|
+
"name": "target-org",
|
|
706
|
+
"required": true,
|
|
707
|
+
"summary": "Username or alias of the target org.",
|
|
708
|
+
"hasDynamicHelp": true,
|
|
709
|
+
"multiple": false,
|
|
710
|
+
"type": "option"
|
|
671
711
|
},
|
|
672
|
-
"
|
|
673
|
-
"
|
|
674
|
-
"
|
|
675
|
-
|
|
676
|
-
|
|
712
|
+
"targetdevhubusername": {
|
|
713
|
+
"char": "v",
|
|
714
|
+
"deprecated": {
|
|
715
|
+
"version": "58.0",
|
|
716
|
+
"message": "The targetdevhubusername flag exists only for backwards compatibility. It is not necessary and has no effect."
|
|
717
|
+
},
|
|
718
|
+
"hidden": true,
|
|
719
|
+
"name": "targetdevhubusername",
|
|
720
|
+
"summary": "The targetdevhubusername flag exists only for backwards compatibility. It is not necessary and has no effect.",
|
|
721
|
+
"hasDynamicHelp": false,
|
|
722
|
+
"multiple": false,
|
|
723
|
+
"type": "option"
|
|
677
724
|
},
|
|
678
|
-
"
|
|
679
|
-
"
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
"
|
|
725
|
+
"api-version": {
|
|
726
|
+
"aliases": [
|
|
727
|
+
"apiversion"
|
|
728
|
+
],
|
|
729
|
+
"deprecateAliases": true,
|
|
730
|
+
"description": "Override the api version used for api requests made by this command",
|
|
731
|
+
"name": "api-version",
|
|
732
|
+
"hasDynamicHelp": false,
|
|
733
|
+
"multiple": false,
|
|
734
|
+
"type": "option"
|
|
683
735
|
},
|
|
684
736
|
"no-prompt": {
|
|
685
737
|
"aliases": [
|
|
686
738
|
"noprompt"
|
|
687
739
|
],
|
|
688
740
|
"char": "p",
|
|
689
|
-
"dependsOn": [
|
|
690
|
-
"clean"
|
|
691
|
-
],
|
|
692
741
|
"deprecateAliases": true,
|
|
693
742
|
"name": "no-prompt",
|
|
694
|
-
"summary": "
|
|
695
|
-
"allowNo": false,
|
|
696
|
-
"type": "boolean"
|
|
697
|
-
},
|
|
698
|
-
"skip-connection-status": {
|
|
699
|
-
"aliases": [
|
|
700
|
-
"skipconnectionstatus"
|
|
701
|
-
],
|
|
702
|
-
"deprecateAliases": true,
|
|
703
|
-
"name": "skip-connection-status",
|
|
704
|
-
"summary": "Skip retrieving the connection status of non-scratch orgs.",
|
|
743
|
+
"summary": "No prompt to confirm deletion.",
|
|
705
744
|
"allowNo": false,
|
|
706
745
|
"type": "boolean"
|
|
707
746
|
},
|
|
@@ -716,50 +755,46 @@
|
|
|
716
755
|
"type": "option"
|
|
717
756
|
}
|
|
718
757
|
},
|
|
719
|
-
"hasDynamicHelp":
|
|
758
|
+
"hasDynamicHelp": true,
|
|
759
|
+
"hidden": true,
|
|
720
760
|
"hiddenAliases": [],
|
|
721
|
-
"id": "org:
|
|
761
|
+
"id": "force:org:delete",
|
|
722
762
|
"pluginAlias": "@salesforce/plugin-org",
|
|
723
763
|
"pluginName": "@salesforce/plugin-org",
|
|
724
764
|
"pluginType": "core",
|
|
765
|
+
"state": "deprecated",
|
|
725
766
|
"strict": true,
|
|
726
|
-
"summary": "
|
|
767
|
+
"summary": "Delete a scratch or sandbox org.",
|
|
727
768
|
"enableJsonFlag": true,
|
|
728
769
|
"isESM": true,
|
|
729
770
|
"relativePath": [
|
|
730
771
|
"lib",
|
|
731
772
|
"commands",
|
|
773
|
+
"force",
|
|
732
774
|
"org",
|
|
733
|
-
"
|
|
734
|
-
],
|
|
735
|
-
"aliasPermutations": [
|
|
736
|
-
"force:org:list",
|
|
737
|
-
"org:force:list",
|
|
738
|
-
"org:list:force",
|
|
739
|
-
"force:list:org",
|
|
740
|
-
"list:force:org",
|
|
741
|
-
"list:org:force"
|
|
775
|
+
"delete.js"
|
|
742
776
|
],
|
|
777
|
+
"aliasPermutations": [],
|
|
743
778
|
"permutations": [
|
|
744
|
-
"org:
|
|
745
|
-
"
|
|
779
|
+
"force:org:delete",
|
|
780
|
+
"org:force:delete",
|
|
781
|
+
"org:delete:force",
|
|
782
|
+
"force:delete:org",
|
|
783
|
+
"delete:force:org",
|
|
784
|
+
"delete:org:force"
|
|
746
785
|
]
|
|
747
786
|
},
|
|
748
|
-
"org:
|
|
749
|
-
"aliases": [
|
|
750
|
-
"force:org:open",
|
|
751
|
-
"force:source:open"
|
|
752
|
-
],
|
|
787
|
+
"force:org:status": {
|
|
788
|
+
"aliases": [],
|
|
753
789
|
"args": {},
|
|
754
|
-
"
|
|
755
|
-
|
|
790
|
+
"deprecationOptions": {
|
|
791
|
+
"to": "org:resume:sandbox",
|
|
792
|
+
"version": "60.0"
|
|
793
|
+
},
|
|
794
|
+
"description": "Use this command to check the status of your sandbox creation or clone and, if the sandbox is ready, authenticate to it.\n\nUse the --wait (-w) parameter to specify the number of minutes that the command waits for the sandbox creation or clone to complete before returning control of the terminal to you.\n\nSet the --target-org (-o) parameter to the username or alias of the production org that contains the sandbox license.",
|
|
756
795
|
"examples": [
|
|
757
|
-
"
|
|
758
|
-
"
|
|
759
|
-
"Open the org with alias MyTestOrg1 in the Firefox browser:\n$ <%= config.bin %> <%= command.id %> --target-org MyTestOrg1 --browser firefox",
|
|
760
|
-
"Display the navigation URL for the Lightning Experience page for your default org, but don't open the page in a browser:\n$ <%= config.bin %> <%= command.id %> --url-only --path lightning",
|
|
761
|
-
"Open a local Lightning page in your default org's Lightning App Builder:\n$ <%= config.bin %> <%= command.id %> --source-file force-app/main/default/flexipages/Hello.flexipage-meta.xml",
|
|
762
|
-
"Open a local Flow in Flow Builder:\n$ <%= config.bin %> <%= command.id %> --source-file force-app/main/default/flows/Hello.flow-meta.xml"
|
|
796
|
+
"$ <%= config.bin %> <%= command.id %> --sandboxname DevSbx1 --setalias MySandbox -u prodOrg",
|
|
797
|
+
"$ <%= config.bin %> <%= command.id %> --sandboxname DevSbx1 --wait 45 --setdefaultusername -u prodOrg"
|
|
763
798
|
],
|
|
764
799
|
"flags": {
|
|
765
800
|
"json": {
|
|
@@ -795,56 +830,42 @@
|
|
|
795
830
|
"multiple": false,
|
|
796
831
|
"type": "option"
|
|
797
832
|
},
|
|
798
|
-
"
|
|
799
|
-
"
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
"
|
|
804
|
-
"
|
|
833
|
+
"sandboxname": {
|
|
834
|
+
"char": "n",
|
|
835
|
+
"name": "sandboxname",
|
|
836
|
+
"required": true,
|
|
837
|
+
"summary": "Name of the sandbox org to check status for.",
|
|
838
|
+
"hasDynamicHelp": false,
|
|
839
|
+
"multiple": false,
|
|
840
|
+
"type": "option"
|
|
841
|
+
},
|
|
842
|
+
"setdefaultusername": {
|
|
843
|
+
"char": "s",
|
|
844
|
+
"name": "setdefaultusername",
|
|
845
|
+
"summary": "Set the created or cloned org as your default.",
|
|
805
846
|
"allowNo": false,
|
|
806
847
|
"type": "boolean"
|
|
807
848
|
},
|
|
808
|
-
"
|
|
809
|
-
"char": "
|
|
810
|
-
"
|
|
811
|
-
|
|
812
|
-
"private"
|
|
813
|
-
],
|
|
814
|
-
"name": "browser",
|
|
815
|
-
"summary": "Browser where the org opens.",
|
|
849
|
+
"setalias": {
|
|
850
|
+
"char": "a",
|
|
851
|
+
"name": "setalias",
|
|
852
|
+
"summary": "Alias for the created or cloned org.",
|
|
816
853
|
"hasDynamicHelp": false,
|
|
817
854
|
"multiple": false,
|
|
818
|
-
"options": [
|
|
819
|
-
"chrome",
|
|
820
|
-
"edge",
|
|
821
|
-
"firefox"
|
|
822
|
-
],
|
|
823
855
|
"type": "option"
|
|
824
856
|
},
|
|
825
|
-
"
|
|
826
|
-
"char": "
|
|
827
|
-
"
|
|
828
|
-
"
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
857
|
+
"wait": {
|
|
858
|
+
"char": "w",
|
|
859
|
+
"name": "wait",
|
|
860
|
+
"summary": "Number of minutes to wait while polling for status.",
|
|
861
|
+
"default": {
|
|
862
|
+
"quantity": 6,
|
|
863
|
+
"unit": 0
|
|
864
|
+
},
|
|
833
865
|
"hasDynamicHelp": false,
|
|
834
866
|
"multiple": false,
|
|
835
867
|
"type": "option"
|
|
836
868
|
},
|
|
837
|
-
"url-only": {
|
|
838
|
-
"aliases": [
|
|
839
|
-
"urlonly"
|
|
840
|
-
],
|
|
841
|
-
"char": "r",
|
|
842
|
-
"deprecateAliases": true,
|
|
843
|
-
"name": "url-only",
|
|
844
|
-
"summary": "Display navigation URL, but don’t launch browser.",
|
|
845
|
-
"allowNo": false,
|
|
846
|
-
"type": "boolean"
|
|
847
|
-
},
|
|
848
869
|
"loglevel": {
|
|
849
870
|
"deprecated": {
|
|
850
871
|
"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."
|
|
@@ -854,56 +875,35 @@
|
|
|
854
875
|
"hasDynamicHelp": false,
|
|
855
876
|
"multiple": false,
|
|
856
877
|
"type": "option"
|
|
857
|
-
},
|
|
858
|
-
"source-file": {
|
|
859
|
-
"aliases": [
|
|
860
|
-
"sourcefile"
|
|
861
|
-
],
|
|
862
|
-
"char": "f",
|
|
863
|
-
"deprecateAliases": true,
|
|
864
|
-
"exclusive": [
|
|
865
|
-
"path"
|
|
866
|
-
],
|
|
867
|
-
"name": "source-file",
|
|
868
|
-
"summary": "Path to an ApexPage or FlexiPage to open in Lightning App Builder.",
|
|
869
|
-
"hasDynamicHelp": false,
|
|
870
|
-
"multiple": false,
|
|
871
|
-
"type": "option"
|
|
872
878
|
}
|
|
873
879
|
},
|
|
874
880
|
"hasDynamicHelp": true,
|
|
881
|
+
"hidden": true,
|
|
875
882
|
"hiddenAliases": [],
|
|
876
|
-
"id": "org:
|
|
883
|
+
"id": "force:org:status",
|
|
877
884
|
"pluginAlias": "@salesforce/plugin-org",
|
|
878
885
|
"pluginName": "@salesforce/plugin-org",
|
|
879
886
|
"pluginType": "core",
|
|
887
|
+
"state": "deprecated",
|
|
880
888
|
"strict": true,
|
|
881
|
-
"summary": "
|
|
889
|
+
"summary": "Check the status of a sandbox, and if complete, authenticate to it.",
|
|
882
890
|
"enableJsonFlag": true,
|
|
883
891
|
"isESM": true,
|
|
884
892
|
"relativePath": [
|
|
885
893
|
"lib",
|
|
886
894
|
"commands",
|
|
895
|
+
"force",
|
|
887
896
|
"org",
|
|
888
|
-
"
|
|
889
|
-
],
|
|
890
|
-
"aliasPermutations": [
|
|
891
|
-
"force:org:open",
|
|
892
|
-
"org:force:open",
|
|
893
|
-
"org:open:force",
|
|
894
|
-
"force:open:org",
|
|
895
|
-
"open:force:org",
|
|
896
|
-
"open:org:force",
|
|
897
|
-
"force:source:open",
|
|
898
|
-
"source:force:open",
|
|
899
|
-
"source:open:force",
|
|
900
|
-
"force:open:source",
|
|
901
|
-
"open:force:source",
|
|
902
|
-
"open:source:force"
|
|
897
|
+
"status.js"
|
|
903
898
|
],
|
|
899
|
+
"aliasPermutations": [],
|
|
904
900
|
"permutations": [
|
|
905
|
-
"org:
|
|
906
|
-
"
|
|
901
|
+
"force:org:status",
|
|
902
|
+
"org:force:status",
|
|
903
|
+
"org:status:force",
|
|
904
|
+
"force:status:org",
|
|
905
|
+
"status:force:org",
|
|
906
|
+
"status:org:force"
|
|
907
907
|
]
|
|
908
908
|
},
|
|
909
909
|
"org:create:sandbox": {
|
|
@@ -2020,5 +2020,5 @@
|
|
|
2020
2020
|
]
|
|
2021
2021
|
}
|
|
2022
2022
|
},
|
|
2023
|
-
"version": "3.3.
|
|
2023
|
+
"version": "3.3.5"
|
|
2024
2024
|
}
|