@salesforce/plugin-packaging 1.27.3 → 1.27.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 +175 -109
- package/oclif.lock +166 -79
- package/oclif.manifest.json +1728 -1200
- package/package.json +4 -4
package/oclif.manifest.json
CHANGED
|
@@ -1,1441 +1,1717 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.27.3",
|
|
3
2
|
"commands": {
|
|
4
3
|
"package:convert": {
|
|
5
|
-
"id": "package:convert",
|
|
6
|
-
"summary": "Create a second-generation package version from a first-generation package.",
|
|
7
|
-
"description": "The package convert creates a new package in the Dev Hub if one does not already exist for the specified first-generation package.\n\nIt then creates a new package version in the Dev Hub with contents based on the specified first-generation package.\n\nThe latest released non-patch package version from the specified first-generation package will be converted.\n\nTo retrieve details about a package version create request, including status and package version ID (04t), run \"<%= config.bin %> package version create report -i 08c...\".\n\nWe recommend specifying the --installation-key to protect the contents of your package and to prevent unauthorized installation of your package.\n\nTo list package version creation requests in the org, run \"<%= config.bin %> package version create list\".",
|
|
8
|
-
"strict": true,
|
|
9
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
10
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
11
|
-
"pluginType": "core",
|
|
12
|
-
"hidden": true,
|
|
13
4
|
"aliases": [
|
|
14
5
|
"force:package:convert"
|
|
15
6
|
],
|
|
7
|
+
"args": {},
|
|
8
|
+
"deprecateAliases": true,
|
|
9
|
+
"description": "The package convert creates a new package in the Dev Hub if one does not already exist for the specified first-generation package.\n\nIt then creates a new package version in the Dev Hub with contents based on the specified first-generation package.\n\nThe latest released non-patch package version from the specified first-generation package will be converted.\n\nTo retrieve details about a package version create request, including status and package version ID (04t), run \"<%= config.bin %> package version create report -i 08c...\".\n\nWe recommend specifying the --installation-key to protect the contents of your package and to prevent unauthorized installation of your package.\n\nTo list package version creation requests in the org, run \"<%= config.bin %> package version create list\".",
|
|
16
10
|
"examples": [
|
|
17
11
|
"Create a second-generation package version from the first-generation package with the specified ID and give it the installation key \"password123\"; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 033... --installation-key password123",
|
|
18
12
|
"Similar to previous example, but uses the specified Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 033... --installation-key password123 --target-dev-hub devhuborg@example.com"
|
|
19
13
|
],
|
|
20
|
-
"deprecateAliases": true,
|
|
21
14
|
"flags": {
|
|
15
|
+
"json": {
|
|
16
|
+
"description": "Format output as json.",
|
|
17
|
+
"helpGroup": "GLOBAL",
|
|
18
|
+
"name": "json",
|
|
19
|
+
"allowNo": false,
|
|
20
|
+
"type": "boolean"
|
|
21
|
+
},
|
|
22
22
|
"loglevel": {
|
|
23
|
-
"name": "loglevel",
|
|
24
|
-
"type": "option",
|
|
25
|
-
"hidden": true,
|
|
26
|
-
"multiple": false,
|
|
27
23
|
"deprecated": {
|
|
28
24
|
"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."
|
|
29
25
|
},
|
|
30
|
-
"
|
|
26
|
+
"hidden": true,
|
|
27
|
+
"name": "loglevel",
|
|
28
|
+
"hasDynamicHelp": false,
|
|
29
|
+
"multiple": false,
|
|
30
|
+
"type": "option"
|
|
31
31
|
},
|
|
32
32
|
"target-dev-hub": {
|
|
33
|
-
"name": "target-dev-hub",
|
|
34
|
-
"type": "option",
|
|
35
|
-
"char": "v",
|
|
36
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
37
|
-
"required": true,
|
|
38
|
-
"multiple": false,
|
|
39
|
-
"deprecateAliases": true,
|
|
40
33
|
"aliases": [
|
|
41
34
|
"targetdevhubusername",
|
|
42
35
|
"target-hub-org"
|
|
43
|
-
]
|
|
36
|
+
],
|
|
37
|
+
"char": "v",
|
|
38
|
+
"deprecateAliases": true,
|
|
39
|
+
"name": "target-dev-hub",
|
|
40
|
+
"noCacheDefault": true,
|
|
41
|
+
"required": true,
|
|
42
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
43
|
+
"hasDynamicHelp": true,
|
|
44
|
+
"multiple": false,
|
|
45
|
+
"type": "option"
|
|
44
46
|
},
|
|
45
47
|
"api-version": {
|
|
46
|
-
"name": "api-version",
|
|
47
|
-
"type": "option",
|
|
48
|
-
"description": "Override the api version used for api requests made by this command",
|
|
49
|
-
"multiple": false,
|
|
50
|
-
"deprecateAliases": true,
|
|
51
48
|
"aliases": [
|
|
52
49
|
"apiversion"
|
|
53
|
-
]
|
|
50
|
+
],
|
|
51
|
+
"deprecateAliases": true,
|
|
52
|
+
"description": "Override the api version used for api requests made by this command",
|
|
53
|
+
"name": "api-version",
|
|
54
|
+
"hasDynamicHelp": false,
|
|
55
|
+
"multiple": false,
|
|
56
|
+
"type": "option"
|
|
54
57
|
},
|
|
55
58
|
"package": {
|
|
56
|
-
"name": "package",
|
|
57
|
-
"type": "option",
|
|
58
59
|
"char": "p",
|
|
59
|
-
"
|
|
60
|
+
"name": "package",
|
|
60
61
|
"required": true,
|
|
62
|
+
"summary": "ID (starts with 033) of the first-generation package to convert.",
|
|
63
|
+
"hasDynamicHelp": false,
|
|
61
64
|
"multiple": false,
|
|
62
|
-
"
|
|
65
|
+
"type": "option"
|
|
63
66
|
},
|
|
64
67
|
"installation-key": {
|
|
65
|
-
"
|
|
66
|
-
|
|
68
|
+
"aliases": [
|
|
69
|
+
"installationkey"
|
|
70
|
+
],
|
|
67
71
|
"char": "k",
|
|
68
|
-
"
|
|
72
|
+
"deprecateAliases": true,
|
|
69
73
|
"description": "Either an --installation-key value or the --installation-key-bypass flag is required.",
|
|
74
|
+
"name": "installation-key",
|
|
75
|
+
"summary": "Installation key for key-protected package.",
|
|
76
|
+
"hasDynamicHelp": false,
|
|
70
77
|
"multiple": false,
|
|
71
|
-
"
|
|
72
|
-
"aliases": [
|
|
73
|
-
"installationkey"
|
|
74
|
-
]
|
|
78
|
+
"type": "option"
|
|
75
79
|
},
|
|
76
80
|
"definition-file": {
|
|
77
|
-
"
|
|
78
|
-
|
|
81
|
+
"aliases": [
|
|
82
|
+
"definitionfile"
|
|
83
|
+
],
|
|
79
84
|
"char": "f",
|
|
80
|
-
"
|
|
85
|
+
"deprecateAliases": true,
|
|
81
86
|
"description": "This definition file is similar to the scratch org definition file.",
|
|
87
|
+
"name": "definition-file",
|
|
88
|
+
"summary": "Path to a definition file that contains features and org preferences that the metadata of the package version depends on.",
|
|
89
|
+
"hasDynamicHelp": false,
|
|
82
90
|
"multiple": false,
|
|
83
|
-
"
|
|
84
|
-
"aliases": [
|
|
85
|
-
"definitionfile"
|
|
86
|
-
]
|
|
91
|
+
"type": "option"
|
|
87
92
|
},
|
|
88
93
|
"installation-key-bypass": {
|
|
89
|
-
"
|
|
90
|
-
|
|
94
|
+
"aliases": [
|
|
95
|
+
"installationkeybypass"
|
|
96
|
+
],
|
|
91
97
|
"char": "x",
|
|
92
|
-
"
|
|
98
|
+
"deprecateAliases": true,
|
|
93
99
|
"description": "If you bypass this requirement, anyone can install your package. Either an --installation-key value or the --installation-key-bypass flag is required.",
|
|
100
|
+
"name": "installation-key-bypass",
|
|
101
|
+
"summary": "Bypass the installation key requirement.",
|
|
94
102
|
"allowNo": false,
|
|
95
|
-
"
|
|
96
|
-
"aliases": [
|
|
97
|
-
"installationkeybypass"
|
|
98
|
-
]
|
|
103
|
+
"type": "boolean"
|
|
99
104
|
},
|
|
100
105
|
"wait": {
|
|
101
|
-
"name": "wait",
|
|
102
|
-
"type": "option",
|
|
103
106
|
"char": "w",
|
|
107
|
+
"name": "wait",
|
|
104
108
|
"summary": "Minutes to wait for the package version to be created.",
|
|
105
|
-
"multiple": false,
|
|
106
109
|
"default": {
|
|
107
110
|
"quantity": 0,
|
|
108
111
|
"unit": 0
|
|
109
112
|
},
|
|
110
|
-
"
|
|
113
|
+
"hasDynamicHelp": false,
|
|
114
|
+
"multiple": false,
|
|
115
|
+
"type": "option"
|
|
111
116
|
},
|
|
112
117
|
"build-instance": {
|
|
113
|
-
"
|
|
114
|
-
|
|
118
|
+
"aliases": [
|
|
119
|
+
"buildinstance"
|
|
120
|
+
],
|
|
115
121
|
"char": "s",
|
|
116
|
-
"
|
|
122
|
+
"deprecateAliases": true,
|
|
117
123
|
"hidden": true,
|
|
124
|
+
"name": "build-instance",
|
|
125
|
+
"summary": "Instance where the conversion package version will be created, such as NA50.",
|
|
126
|
+
"hasDynamicHelp": false,
|
|
118
127
|
"multiple": false,
|
|
119
|
-
"
|
|
120
|
-
"aliases": [
|
|
121
|
-
"buildinstance"
|
|
122
|
-
]
|
|
128
|
+
"type": "option"
|
|
123
129
|
},
|
|
124
130
|
"seed-metadata": {
|
|
125
|
-
"name": "seed-metadata",
|
|
126
|
-
"type": "option",
|
|
127
131
|
"char": "m",
|
|
128
|
-
"summary": "Directory containing metadata to be deployed prior to conversion.",
|
|
129
132
|
"description": "The directory containing metadata that will be deployed on the build org prior to attempting conversion.",
|
|
133
|
+
"name": "seed-metadata",
|
|
134
|
+
"summary": "Directory containing metadata to be deployed prior to conversion.",
|
|
135
|
+
"hasDynamicHelp": false,
|
|
130
136
|
"multiple": false,
|
|
131
|
-
"
|
|
137
|
+
"type": "option"
|
|
132
138
|
},
|
|
133
139
|
"verbose": {
|
|
134
140
|
"name": "verbose",
|
|
135
|
-
"type": "boolean",
|
|
136
141
|
"summary": "Display verbose command output.",
|
|
137
142
|
"allowNo": false,
|
|
138
|
-
"
|
|
143
|
+
"type": "boolean"
|
|
139
144
|
}
|
|
140
145
|
},
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
"id": "package:create",
|
|
146
|
-
"summary": "Create a package.",
|
|
147
|
-
"description": "First, use this command to create a package. Then create a package version.\n\nIf you don’t have a namespace defined in your sfdx-project.json file, use --no-namespace.\n\nYour --name value must be unique within your namespace.\n\nRun '<%= config.bin %> package list to list all packages in the Dev Hub org.",
|
|
148
|
-
"strict": true,
|
|
149
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
146
|
+
"hasDynamicHelp": true,
|
|
147
|
+
"hidden": true,
|
|
148
|
+
"hiddenAliases": [],
|
|
149
|
+
"id": "package:convert",
|
|
150
150
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
151
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
151
152
|
"pluginType": "core",
|
|
153
|
+
"strict": true,
|
|
154
|
+
"summary": "Create a second-generation package version from a first-generation package.",
|
|
155
|
+
"enableJsonFlag": true,
|
|
156
|
+
"SF_ENV": "SF_ENV",
|
|
157
|
+
"isESM": false,
|
|
158
|
+
"relativePath": [
|
|
159
|
+
"lib",
|
|
160
|
+
"commands",
|
|
161
|
+
"package",
|
|
162
|
+
"convert.js"
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
"package:create": {
|
|
152
166
|
"aliases": [
|
|
153
167
|
"force:package:create"
|
|
154
168
|
],
|
|
169
|
+
"args": {},
|
|
170
|
+
"deprecateAliases": true,
|
|
171
|
+
"description": "First, use this command to create a package. Then create a package version.\n\nIf you don’t have a namespace defined in your sfdx-project.json file, use --no-namespace.\n\nYour --name value must be unique within your namespace.\n\nRun '<%= config.bin %> package list to list all packages in the Dev Hub org.",
|
|
155
172
|
"examples": [
|
|
156
173
|
"Create an unlocked package from the files in the \"force-app\" directory; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --name MyUnlockedPackage --package-type Unlocked --path force-app",
|
|
157
174
|
"Create a managed packaged from the \"force-app\" directory files, give the package a description, and use the specified Dev Hub org:\n<%= config.bin %> <%= command.id %> --name MyManagedPackage --description \"Your Package Descripton\" --package-type Managed --path force-app --target-dev-hub devhub@example.com"
|
|
158
175
|
],
|
|
159
|
-
"deprecateAliases": true,
|
|
160
176
|
"flags": {
|
|
177
|
+
"json": {
|
|
178
|
+
"description": "Format output as json.",
|
|
179
|
+
"helpGroup": "GLOBAL",
|
|
180
|
+
"name": "json",
|
|
181
|
+
"allowNo": false,
|
|
182
|
+
"type": "boolean"
|
|
183
|
+
},
|
|
161
184
|
"loglevel": {
|
|
162
|
-
"name": "loglevel",
|
|
163
|
-
"type": "option",
|
|
164
|
-
"hidden": true,
|
|
165
|
-
"multiple": false,
|
|
166
185
|
"deprecated": {
|
|
167
186
|
"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."
|
|
168
187
|
},
|
|
169
|
-
"
|
|
188
|
+
"hidden": true,
|
|
189
|
+
"name": "loglevel",
|
|
190
|
+
"hasDynamicHelp": false,
|
|
191
|
+
"multiple": false,
|
|
192
|
+
"type": "option"
|
|
170
193
|
},
|
|
171
194
|
"target-dev-hub": {
|
|
172
|
-
"name": "target-dev-hub",
|
|
173
|
-
"type": "option",
|
|
174
|
-
"char": "v",
|
|
175
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
176
|
-
"required": true,
|
|
177
|
-
"multiple": false,
|
|
178
|
-
"deprecateAliases": true,
|
|
179
195
|
"aliases": [
|
|
180
196
|
"targetdevhubusername",
|
|
181
197
|
"target-hub-org"
|
|
182
|
-
]
|
|
198
|
+
],
|
|
199
|
+
"char": "v",
|
|
200
|
+
"deprecateAliases": true,
|
|
201
|
+
"name": "target-dev-hub",
|
|
202
|
+
"noCacheDefault": true,
|
|
203
|
+
"required": true,
|
|
204
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
205
|
+
"hasDynamicHelp": true,
|
|
206
|
+
"multiple": false,
|
|
207
|
+
"type": "option"
|
|
183
208
|
},
|
|
184
209
|
"api-version": {
|
|
185
|
-
"name": "api-version",
|
|
186
|
-
"type": "option",
|
|
187
|
-
"description": "Override the api version used for api requests made by this command",
|
|
188
|
-
"multiple": false,
|
|
189
|
-
"deprecateAliases": true,
|
|
190
210
|
"aliases": [
|
|
191
211
|
"apiversion"
|
|
192
|
-
]
|
|
212
|
+
],
|
|
213
|
+
"deprecateAliases": true,
|
|
214
|
+
"description": "Override the api version used for api requests made by this command",
|
|
215
|
+
"name": "api-version",
|
|
216
|
+
"hasDynamicHelp": false,
|
|
217
|
+
"multiple": false,
|
|
218
|
+
"type": "option"
|
|
193
219
|
},
|
|
194
220
|
"name": {
|
|
195
|
-
"name": "name",
|
|
196
|
-
"type": "option",
|
|
197
221
|
"char": "n",
|
|
198
|
-
"
|
|
222
|
+
"name": "name",
|
|
199
223
|
"required": true,
|
|
224
|
+
"summary": "Name of the package to create.",
|
|
225
|
+
"hasDynamicHelp": false,
|
|
200
226
|
"multiple": false,
|
|
201
|
-
"
|
|
227
|
+
"type": "option"
|
|
202
228
|
},
|
|
203
229
|
"package-type": {
|
|
204
|
-
"
|
|
205
|
-
|
|
230
|
+
"aliases": [
|
|
231
|
+
"packagetype"
|
|
232
|
+
],
|
|
206
233
|
"char": "t",
|
|
207
|
-
"
|
|
234
|
+
"deprecateAliases": true,
|
|
208
235
|
"description": "The options for package type are Managed and Unlocked (Managed=DeveloperManagedSubscriberManaged, Unlocked=DeveloperControlledSubscriberEditable). These options determine upgrade and editability rules.",
|
|
236
|
+
"name": "package-type",
|
|
209
237
|
"required": true,
|
|
238
|
+
"summary": "Type of package.",
|
|
239
|
+
"hasDynamicHelp": false,
|
|
210
240
|
"multiple": false,
|
|
211
241
|
"options": [
|
|
212
242
|
"Managed",
|
|
213
243
|
"Unlocked"
|
|
214
244
|
],
|
|
215
|
-
"
|
|
216
|
-
"aliases": [
|
|
217
|
-
"packagetype"
|
|
218
|
-
]
|
|
245
|
+
"type": "option"
|
|
219
246
|
},
|
|
220
247
|
"description": {
|
|
221
|
-
"name": "description",
|
|
222
|
-
"type": "option",
|
|
223
248
|
"char": "d",
|
|
249
|
+
"name": "description",
|
|
224
250
|
"summary": "Description of the package.",
|
|
251
|
+
"hasDynamicHelp": false,
|
|
225
252
|
"multiple": false,
|
|
226
|
-
"
|
|
253
|
+
"type": "option"
|
|
227
254
|
},
|
|
228
255
|
"no-namespace": {
|
|
229
|
-
"
|
|
230
|
-
|
|
256
|
+
"aliases": [
|
|
257
|
+
"nonamespace"
|
|
258
|
+
],
|
|
231
259
|
"char": "e",
|
|
232
|
-
"
|
|
260
|
+
"deprecateAliases": true,
|
|
233
261
|
"description": "This flag is useful when you’re migrating an existing org to packages. But use a namespaced package for new metadata.",
|
|
262
|
+
"name": "no-namespace",
|
|
263
|
+
"summary": "Create the package with no namespace; available only for unlocked packages.",
|
|
234
264
|
"allowNo": false,
|
|
235
|
-
"
|
|
236
|
-
"aliases": [
|
|
237
|
-
"nonamespace"
|
|
238
|
-
]
|
|
265
|
+
"type": "boolean"
|
|
239
266
|
},
|
|
240
267
|
"path": {
|
|
241
|
-
"name": "path",
|
|
242
|
-
"type": "option",
|
|
243
268
|
"char": "r",
|
|
244
|
-
"
|
|
269
|
+
"name": "path",
|
|
245
270
|
"required": true,
|
|
271
|
+
"summary": "Path to directory that contains the contents of the package.",
|
|
272
|
+
"hasDynamicHelp": false,
|
|
246
273
|
"multiple": false,
|
|
247
|
-
"
|
|
274
|
+
"type": "option"
|
|
248
275
|
},
|
|
249
276
|
"org-dependent": {
|
|
277
|
+
"aliases": [
|
|
278
|
+
"orgdependent"
|
|
279
|
+
],
|
|
280
|
+
"deprecateAliases": true,
|
|
281
|
+
"description": "Use Source Tracking in Sandboxes to develop your org-dependent unlocked package. For more information, see \"Create Org-Dependent Unlocked Packages\" in the Salesforce DX Developer Guide.",
|
|
250
282
|
"name": "org-dependent",
|
|
251
|
-
"type": "boolean",
|
|
252
283
|
"summary": "Depends on unpackaged metadata in the installation org; applies to unlocked packages only.",
|
|
253
|
-
"description": "Use Source Tracking in Sandboxes to develop your org-dependent unlocked package. For more information, see \"Create Org-Dependent Unlocked Packages\" in the Salesforce DX Developer Guide.",
|
|
254
284
|
"allowNo": false,
|
|
255
|
-
"
|
|
256
|
-
"aliases": [
|
|
257
|
-
"orgdependent"
|
|
258
|
-
]
|
|
285
|
+
"type": "boolean"
|
|
259
286
|
},
|
|
260
287
|
"error-notification-username": {
|
|
261
|
-
"
|
|
262
|
-
|
|
288
|
+
"aliases": [
|
|
289
|
+
"errornotificationusername"
|
|
290
|
+
],
|
|
263
291
|
"char": "o",
|
|
264
|
-
"
|
|
292
|
+
"deprecateAliases": true,
|
|
265
293
|
"description": "Email notifications include information about unhandled Apex exceptions, and install, upgrade, or uninstall failures associated with your package.",
|
|
294
|
+
"name": "error-notification-username",
|
|
295
|
+
"summary": "Active Dev Hub user designated to receive email notifications for package errors.",
|
|
296
|
+
"hasDynamicHelp": false,
|
|
266
297
|
"multiple": false,
|
|
267
|
-
"
|
|
268
|
-
"aliases": [
|
|
269
|
-
"errornotificationusername"
|
|
270
|
-
]
|
|
298
|
+
"type": "option"
|
|
271
299
|
}
|
|
272
300
|
},
|
|
273
|
-
"
|
|
301
|
+
"hasDynamicHelp": true,
|
|
302
|
+
"hiddenAliases": [],
|
|
303
|
+
"id": "package:create",
|
|
304
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
305
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
306
|
+
"pluginType": "core",
|
|
307
|
+
"strict": true,
|
|
308
|
+
"summary": "Create a package.",
|
|
309
|
+
"enableJsonFlag": true,
|
|
310
|
+
"SF_ENV": "SF_ENV",
|
|
274
311
|
"requiresProject": true,
|
|
275
|
-
"
|
|
312
|
+
"isESM": false,
|
|
313
|
+
"relativePath": [
|
|
314
|
+
"lib",
|
|
315
|
+
"commands",
|
|
316
|
+
"package",
|
|
317
|
+
"create.js"
|
|
318
|
+
]
|
|
276
319
|
},
|
|
277
320
|
"package:delete": {
|
|
278
|
-
"id": "package:delete",
|
|
279
|
-
"summary": "Delete a package.",
|
|
280
|
-
"description": "Specify the ID or alias of the package you want to delete.\n\nDelete unlocked and second-generation managed packages. Before you delete a package, first delete all associated package versions.",
|
|
281
|
-
"strict": true,
|
|
282
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
283
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
284
|
-
"pluginType": "core",
|
|
285
321
|
"aliases": [
|
|
286
322
|
"force:package:delete"
|
|
287
323
|
],
|
|
324
|
+
"args": {},
|
|
325
|
+
"deprecateAliases": true,
|
|
326
|
+
"description": "Specify the ID or alias of the package you want to delete.\n\nDelete unlocked and second-generation managed packages. Before you delete a package, first delete all associated package versions.",
|
|
288
327
|
"examples": [
|
|
289
328
|
"Delete a package using its alias from your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\"",
|
|
290
329
|
"Delete a package using its ID from the specified Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 0Ho... --target-dev-hub devhub@example.com"
|
|
291
330
|
],
|
|
292
|
-
"deprecateAliases": true,
|
|
293
331
|
"flags": {
|
|
332
|
+
"json": {
|
|
333
|
+
"description": "Format output as json.",
|
|
334
|
+
"helpGroup": "GLOBAL",
|
|
335
|
+
"name": "json",
|
|
336
|
+
"allowNo": false,
|
|
337
|
+
"type": "boolean"
|
|
338
|
+
},
|
|
294
339
|
"loglevel": {
|
|
295
|
-
"name": "loglevel",
|
|
296
|
-
"type": "option",
|
|
297
|
-
"hidden": true,
|
|
298
|
-
"multiple": false,
|
|
299
340
|
"deprecated": {
|
|
300
341
|
"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."
|
|
301
342
|
},
|
|
302
|
-
"
|
|
343
|
+
"hidden": true,
|
|
344
|
+
"name": "loglevel",
|
|
345
|
+
"hasDynamicHelp": false,
|
|
346
|
+
"multiple": false,
|
|
347
|
+
"type": "option"
|
|
303
348
|
},
|
|
304
349
|
"target-dev-hub": {
|
|
305
|
-
"name": "target-dev-hub",
|
|
306
|
-
"type": "option",
|
|
307
|
-
"char": "v",
|
|
308
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
309
|
-
"required": true,
|
|
310
|
-
"multiple": false,
|
|
311
|
-
"deprecateAliases": true,
|
|
312
350
|
"aliases": [
|
|
313
351
|
"targetdevhubusername",
|
|
314
352
|
"target-hub-org"
|
|
315
|
-
]
|
|
353
|
+
],
|
|
354
|
+
"char": "v",
|
|
355
|
+
"deprecateAliases": true,
|
|
356
|
+
"name": "target-dev-hub",
|
|
357
|
+
"noCacheDefault": true,
|
|
358
|
+
"required": true,
|
|
359
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
360
|
+
"hasDynamicHelp": true,
|
|
361
|
+
"multiple": false,
|
|
362
|
+
"type": "option"
|
|
316
363
|
},
|
|
317
364
|
"api-version": {
|
|
318
|
-
"name": "api-version",
|
|
319
|
-
"type": "option",
|
|
320
|
-
"description": "Override the api version used for api requests made by this command",
|
|
321
|
-
"multiple": false,
|
|
322
|
-
"deprecateAliases": true,
|
|
323
365
|
"aliases": [
|
|
324
366
|
"apiversion"
|
|
325
|
-
]
|
|
367
|
+
],
|
|
368
|
+
"deprecateAliases": true,
|
|
369
|
+
"description": "Override the api version used for api requests made by this command",
|
|
370
|
+
"name": "api-version",
|
|
371
|
+
"hasDynamicHelp": false,
|
|
372
|
+
"multiple": false,
|
|
373
|
+
"type": "option"
|
|
326
374
|
},
|
|
327
375
|
"no-prompt": {
|
|
328
|
-
"
|
|
329
|
-
|
|
376
|
+
"aliases": [
|
|
377
|
+
"noprompt"
|
|
378
|
+
],
|
|
330
379
|
"char": "n",
|
|
380
|
+
"deprecateAliases": true,
|
|
381
|
+
"name": "no-prompt",
|
|
331
382
|
"summary": "Don’t prompt before deleting the package.",
|
|
332
383
|
"allowNo": false,
|
|
333
|
-
"
|
|
334
|
-
"aliases": [
|
|
335
|
-
"noprompt"
|
|
336
|
-
]
|
|
384
|
+
"type": "boolean"
|
|
337
385
|
},
|
|
338
386
|
"package": {
|
|
339
|
-
"name": "package",
|
|
340
|
-
"type": "option",
|
|
341
387
|
"char": "p",
|
|
342
|
-
"
|
|
388
|
+
"name": "package",
|
|
343
389
|
"required": true,
|
|
390
|
+
"summary": "ID (starts with 0Ho) or alias of the package to delete.",
|
|
391
|
+
"hasDynamicHelp": false,
|
|
344
392
|
"multiple": false,
|
|
345
|
-
"
|
|
393
|
+
"type": "option"
|
|
346
394
|
},
|
|
347
395
|
"undelete": {
|
|
396
|
+
"hidden": true,
|
|
348
397
|
"name": "undelete",
|
|
349
|
-
"type": "boolean",
|
|
350
398
|
"summary": "Undelete a deleted package.",
|
|
351
|
-
"hidden": true,
|
|
352
399
|
"allowNo": false,
|
|
353
|
-
"
|
|
400
|
+
"type": "boolean"
|
|
354
401
|
}
|
|
355
402
|
},
|
|
356
|
-
"
|
|
403
|
+
"hasDynamicHelp": true,
|
|
404
|
+
"hiddenAliases": [],
|
|
405
|
+
"id": "package:delete",
|
|
406
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
407
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
408
|
+
"pluginType": "core",
|
|
409
|
+
"strict": true,
|
|
410
|
+
"summary": "Delete a package.",
|
|
411
|
+
"enableJsonFlag": true,
|
|
412
|
+
"SF_ENV": "SF_ENV",
|
|
357
413
|
"requiresProject": true,
|
|
358
|
-
"
|
|
414
|
+
"isESM": false,
|
|
415
|
+
"relativePath": [
|
|
416
|
+
"lib",
|
|
417
|
+
"commands",
|
|
418
|
+
"package",
|
|
419
|
+
"delete.js"
|
|
420
|
+
]
|
|
359
421
|
},
|
|
360
422
|
"package:install": {
|
|
361
|
-
"id": "package:install",
|
|
362
|
-
"summary": "Install a version of a package in the target org.",
|
|
363
|
-
"description": "To install a package, specify a specific version of the package using the 04t package ID. The package and the version you specified installs in your default target org unless you supply the username for a different target org.\n\nFor package upgrades, to specify options for component deprecation or deletion of removed components, include an --upgrade-type value. To delete components that can be safely deleted and deprecate the others, specify --upgrade-type Mixed (the default). To deprecate all removed components, specify --upgrade-type DeprecateOnly. To delete all removed components, except for custom objects and custom fields, that don't have dependencies, specify --upgrade-type Delete. (Note: This option can result in the loss of data that is associated with the deleted components.) The default is Mixed.",
|
|
364
|
-
"strict": true,
|
|
365
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
366
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
367
|
-
"pluginType": "core",
|
|
368
423
|
"aliases": [
|
|
369
424
|
"force:package:install"
|
|
370
425
|
],
|
|
426
|
+
"args": {},
|
|
427
|
+
"deprecateAliases": true,
|
|
428
|
+
"description": "To install a package, specify a specific version of the package using the 04t package ID. The package and the version you specified installs in your default target org unless you supply the username for a different target org.\n\nFor package upgrades, to specify options for component deprecation or deletion of removed components, include an --upgrade-type value. To delete components that can be safely deleted and deprecate the others, specify --upgrade-type Mixed (the default). To deprecate all removed components, specify --upgrade-type DeprecateOnly. To delete all removed components, except for custom objects and custom fields, that don't have dependencies, specify --upgrade-type Delete. (Note: This option can result in the loss of data that is associated with the deleted components.) The default is Mixed.",
|
|
371
429
|
"examples": [
|
|
372
430
|
"Install a package version with the specified ID in the org with username \"me@example.com\":\n<%= config.bin %> <%= command.id %> --package 04t... --target-org me@example.com",
|
|
373
431
|
"Install a package version with the specified alias into your default org:\n<%= config.bin %> <%= command.id %> --package awesome_package_alias",
|
|
374
432
|
"Install a package version with an alias that includes spaces into your default org:\n<%= config.bin %> <%= command.id %> --package \"Awesome Package Alias\"",
|
|
375
433
|
"Install an unlocked package version with the specified ID and deprecate all removed components:\n<%= config.bin %> <%= command.id %> --package 04t... --upgrade-type DeprecateOnly"
|
|
376
434
|
],
|
|
377
|
-
"deprecateAliases": true,
|
|
378
435
|
"flags": {
|
|
436
|
+
"json": {
|
|
437
|
+
"description": "Format output as json.",
|
|
438
|
+
"helpGroup": "GLOBAL",
|
|
439
|
+
"name": "json",
|
|
440
|
+
"allowNo": false,
|
|
441
|
+
"type": "boolean"
|
|
442
|
+
},
|
|
379
443
|
"loglevel": {
|
|
380
|
-
"name": "loglevel",
|
|
381
|
-
"type": "option",
|
|
382
|
-
"hidden": true,
|
|
383
|
-
"multiple": false,
|
|
384
444
|
"deprecated": {
|
|
385
445
|
"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."
|
|
386
446
|
},
|
|
387
|
-
"
|
|
447
|
+
"hidden": true,
|
|
448
|
+
"name": "loglevel",
|
|
449
|
+
"hasDynamicHelp": false,
|
|
450
|
+
"multiple": false,
|
|
451
|
+
"type": "option"
|
|
388
452
|
},
|
|
389
453
|
"target-org": {
|
|
390
|
-
"name": "target-org",
|
|
391
|
-
"type": "option",
|
|
392
|
-
"char": "o",
|
|
393
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
394
|
-
"required": true,
|
|
395
|
-
"multiple": false,
|
|
396
|
-
"deprecateAliases": true,
|
|
397
454
|
"aliases": [
|
|
398
455
|
"targetusername",
|
|
399
456
|
"u"
|
|
400
|
-
]
|
|
457
|
+
],
|
|
458
|
+
"char": "o",
|
|
459
|
+
"deprecateAliases": true,
|
|
460
|
+
"name": "target-org",
|
|
461
|
+
"noCacheDefault": true,
|
|
462
|
+
"required": true,
|
|
463
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
464
|
+
"hasDynamicHelp": true,
|
|
465
|
+
"multiple": false,
|
|
466
|
+
"type": "option"
|
|
401
467
|
},
|
|
402
468
|
"api-version": {
|
|
403
|
-
"name": "api-version",
|
|
404
|
-
"type": "option",
|
|
405
|
-
"description": "Override the api version used for api requests made by this command",
|
|
406
|
-
"multiple": false,
|
|
407
|
-
"deprecateAliases": true,
|
|
408
469
|
"aliases": [
|
|
409
470
|
"apiversion"
|
|
410
|
-
]
|
|
471
|
+
],
|
|
472
|
+
"deprecateAliases": true,
|
|
473
|
+
"description": "Override the api version used for api requests made by this command",
|
|
474
|
+
"name": "api-version",
|
|
475
|
+
"hasDynamicHelp": false,
|
|
476
|
+
"multiple": false,
|
|
477
|
+
"type": "option"
|
|
411
478
|
},
|
|
412
479
|
"wait": {
|
|
413
|
-
"name": "wait",
|
|
414
|
-
"type": "option",
|
|
415
480
|
"char": "w",
|
|
481
|
+
"name": "wait",
|
|
416
482
|
"summary": "Number of minutes to wait for installation status.",
|
|
417
|
-
"multiple": false,
|
|
418
483
|
"default": {
|
|
419
484
|
"quantity": 0,
|
|
420
485
|
"unit": 0
|
|
421
486
|
},
|
|
422
|
-
"
|
|
487
|
+
"hasDynamicHelp": false,
|
|
488
|
+
"multiple": false,
|
|
489
|
+
"type": "option"
|
|
423
490
|
},
|
|
424
491
|
"installation-key": {
|
|
425
|
-
"
|
|
426
|
-
|
|
492
|
+
"aliases": [
|
|
493
|
+
"installationkey"
|
|
494
|
+
],
|
|
427
495
|
"char": "k",
|
|
496
|
+
"deprecateAliases": true,
|
|
497
|
+
"name": "installation-key",
|
|
428
498
|
"summary": "Installation key for key-protected package (default: null).",
|
|
499
|
+
"hasDynamicHelp": false,
|
|
429
500
|
"multiple": false,
|
|
430
|
-
"
|
|
431
|
-
"aliases": [
|
|
432
|
-
"installationkey"
|
|
433
|
-
]
|
|
501
|
+
"type": "option"
|
|
434
502
|
},
|
|
435
503
|
"publish-wait": {
|
|
436
|
-
"
|
|
437
|
-
|
|
504
|
+
"aliases": [
|
|
505
|
+
"publishwait"
|
|
506
|
+
],
|
|
438
507
|
"char": "b",
|
|
508
|
+
"deprecateAliases": true,
|
|
509
|
+
"name": "publish-wait",
|
|
439
510
|
"summary": "Maximum number of minutes to wait for the Subscriber Package Version ID to become available in the target org before canceling the install request.",
|
|
440
|
-
"multiple": false,
|
|
441
511
|
"default": {
|
|
442
512
|
"quantity": 0,
|
|
443
513
|
"unit": 0
|
|
444
514
|
},
|
|
445
|
-
"
|
|
446
|
-
"
|
|
447
|
-
|
|
448
|
-
]
|
|
515
|
+
"hasDynamicHelp": false,
|
|
516
|
+
"multiple": false,
|
|
517
|
+
"type": "option"
|
|
449
518
|
},
|
|
450
519
|
"no-prompt": {
|
|
451
|
-
"
|
|
452
|
-
|
|
520
|
+
"aliases": [
|
|
521
|
+
"noprompt"
|
|
522
|
+
],
|
|
453
523
|
"char": "r",
|
|
454
|
-
"
|
|
524
|
+
"deprecateAliases": true,
|
|
455
525
|
"description": "Allows the following without an explicit confirmation response: 1) Remote Site Settings and Content Security Policy websites to send or receive data, and 2) --upgrade-type Delete to proceed.",
|
|
526
|
+
"name": "no-prompt",
|
|
527
|
+
"summary": "Don't prompt for confirmation.",
|
|
456
528
|
"allowNo": false,
|
|
457
|
-
"
|
|
458
|
-
"aliases": [
|
|
459
|
-
"noprompt"
|
|
460
|
-
]
|
|
529
|
+
"type": "boolean"
|
|
461
530
|
},
|
|
462
531
|
"package": {
|
|
463
|
-
"name": "package",
|
|
464
|
-
"type": "option",
|
|
465
532
|
"char": "p",
|
|
466
|
-
"
|
|
533
|
+
"name": "package",
|
|
467
534
|
"required": true,
|
|
535
|
+
"summary": "ID (starts with 04t) or alias of the package version to install.",
|
|
536
|
+
"hasDynamicHelp": false,
|
|
468
537
|
"multiple": false,
|
|
469
|
-
"
|
|
538
|
+
"type": "option"
|
|
470
539
|
},
|
|
471
540
|
"apex-compile": {
|
|
472
|
-
"
|
|
473
|
-
|
|
541
|
+
"aliases": [
|
|
542
|
+
"apexcompile"
|
|
543
|
+
],
|
|
474
544
|
"char": "a",
|
|
475
|
-
"
|
|
545
|
+
"deprecateAliases": true,
|
|
476
546
|
"description": "Applies to unlocked packages only. Specifies whether to compile all Apex in the org and package, or only the Apex in the package.\n\nFor package installs into production orgs, or any org that has Apex Compile on Deploy enabled, the platform compiles all Apex in the org after the package install or upgrade operation completes.\n\nThis approach assures that package installs and upgrades don’t impact the performance of an org, and is done even if --apex-compile package is specified.",
|
|
547
|
+
"name": "apex-compile",
|
|
548
|
+
"summary": "Compile all Apex in the org and package, or only Apex in the package; unlocked packages only.",
|
|
549
|
+
"default": "all",
|
|
550
|
+
"hasDynamicHelp": false,
|
|
477
551
|
"multiple": false,
|
|
478
552
|
"options": [
|
|
479
553
|
"all",
|
|
480
554
|
"package"
|
|
481
555
|
],
|
|
482
|
-
"
|
|
483
|
-
"deprecateAliases": true,
|
|
484
|
-
"aliases": [
|
|
485
|
-
"apexcompile"
|
|
486
|
-
]
|
|
556
|
+
"type": "option"
|
|
487
557
|
},
|
|
488
558
|
"security-type": {
|
|
489
|
-
"
|
|
490
|
-
|
|
559
|
+
"aliases": [
|
|
560
|
+
"securitytype"
|
|
561
|
+
],
|
|
491
562
|
"char": "s",
|
|
563
|
+
"deprecateAliases": true,
|
|
564
|
+
"name": "security-type",
|
|
492
565
|
"summary": "Security access type for the installed package. (deprecation notice: The default --security-type value will change from AllUsers to AdminsOnly in v47.0 or later.)",
|
|
566
|
+
"default": "AdminsOnly",
|
|
567
|
+
"hasDynamicHelp": false,
|
|
493
568
|
"multiple": false,
|
|
494
569
|
"options": [
|
|
495
570
|
"AllUsers",
|
|
496
571
|
"AdminsOnly"
|
|
497
572
|
],
|
|
498
|
-
"
|
|
499
|
-
"deprecateAliases": true,
|
|
500
|
-
"aliases": [
|
|
501
|
-
"securitytype"
|
|
502
|
-
]
|
|
573
|
+
"type": "option"
|
|
503
574
|
},
|
|
504
575
|
"upgrade-type": {
|
|
505
|
-
"
|
|
506
|
-
|
|
576
|
+
"aliases": [
|
|
577
|
+
"upgradetype"
|
|
578
|
+
],
|
|
507
579
|
"char": "t",
|
|
508
|
-
"
|
|
580
|
+
"deprecateAliases": true,
|
|
509
581
|
"description": "For package upgrades, specifies whether to mark all removed components as deprecated (DeprecateOnly), to delete removed components that can be safely deleted and deprecate the others (Mixed), or to delete all removed components, except for custom objects and custom fields, that don't have dependencies (Delete). The default is Mixed. Can specify DeprecateOnly or Delete only for unlocked package upgrades.",
|
|
582
|
+
"name": "upgrade-type",
|
|
583
|
+
"summary": "Upgrade type for the package installation; available only for unlocked packages.",
|
|
584
|
+
"default": "Mixed",
|
|
585
|
+
"hasDynamicHelp": false,
|
|
510
586
|
"multiple": false,
|
|
511
587
|
"options": [
|
|
512
588
|
"DeprecateOnly",
|
|
513
589
|
"Mixed",
|
|
514
590
|
"Delete"
|
|
515
591
|
],
|
|
516
|
-
"
|
|
517
|
-
"deprecateAliases": true,
|
|
518
|
-
"aliases": [
|
|
519
|
-
"upgradetype"
|
|
520
|
-
]
|
|
592
|
+
"type": "option"
|
|
521
593
|
},
|
|
522
594
|
"skip-handlers": {
|
|
523
|
-
"name": "skip-handlers",
|
|
524
|
-
"type": "option",
|
|
525
595
|
"char": "l",
|
|
526
|
-
"summary": "Skip install handlers (available handlers: FeatureEnforcement).",
|
|
527
596
|
"description": "Allows the installer of a package to optionally skip install handlers in order to decrease overall installation time (available handlers: FeatureEnforcement).",
|
|
528
597
|
"hidden": true,
|
|
598
|
+
"name": "skip-handlers",
|
|
599
|
+
"summary": "Skip install handlers (available handlers: FeatureEnforcement).",
|
|
600
|
+
"hasDynamicHelp": false,
|
|
529
601
|
"multiple": true,
|
|
530
602
|
"options": [
|
|
531
603
|
"FeatureEnforcement"
|
|
532
604
|
],
|
|
533
|
-
"
|
|
605
|
+
"type": "option"
|
|
534
606
|
}
|
|
535
607
|
},
|
|
536
|
-
"
|
|
537
|
-
"
|
|
538
|
-
|
|
539
|
-
"package:list": {
|
|
540
|
-
"id": "package:list",
|
|
541
|
-
"summary": "List all packages in the Dev Hub org.",
|
|
542
|
-
"description": "Description",
|
|
543
|
-
"strict": true,
|
|
544
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
608
|
+
"hasDynamicHelp": true,
|
|
609
|
+
"hiddenAliases": [],
|
|
610
|
+
"id": "package:install",
|
|
545
611
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
612
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
546
613
|
"pluginType": "core",
|
|
614
|
+
"strict": true,
|
|
615
|
+
"summary": "Install a version of a package in the target org.",
|
|
616
|
+
"enableJsonFlag": true,
|
|
617
|
+
"SF_ENV": "SF_ENV",
|
|
618
|
+
"isESM": false,
|
|
619
|
+
"relativePath": [
|
|
620
|
+
"lib",
|
|
621
|
+
"commands",
|
|
622
|
+
"package",
|
|
623
|
+
"install.js"
|
|
624
|
+
]
|
|
625
|
+
},
|
|
626
|
+
"package:list": {
|
|
547
627
|
"aliases": [
|
|
548
628
|
"force:package:list"
|
|
549
629
|
],
|
|
630
|
+
"args": {},
|
|
631
|
+
"deprecateAliases": true,
|
|
632
|
+
"description": "Description",
|
|
550
633
|
"examples": [
|
|
551
634
|
"List all packages in the specified Dev Hub org:\n<%= config.bin %> <%= command.id %> --target-dev-hub devhub@example.com",
|
|
552
635
|
"List all packages details in the specified Dev Hub org, and show extended details about each package:\n<%= config.bin %> <%= command.id %> --target-dev-hub devhub@example.com --verbose"
|
|
553
636
|
],
|
|
554
|
-
"deprecateAliases": true,
|
|
555
637
|
"flags": {
|
|
638
|
+
"json": {
|
|
639
|
+
"description": "Format output as json.",
|
|
640
|
+
"helpGroup": "GLOBAL",
|
|
641
|
+
"name": "json",
|
|
642
|
+
"allowNo": false,
|
|
643
|
+
"type": "boolean"
|
|
644
|
+
},
|
|
556
645
|
"loglevel": {
|
|
557
|
-
"name": "loglevel",
|
|
558
|
-
"type": "option",
|
|
559
|
-
"hidden": true,
|
|
560
|
-
"multiple": false,
|
|
561
646
|
"deprecated": {
|
|
562
647
|
"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."
|
|
563
648
|
},
|
|
564
|
-
"
|
|
649
|
+
"hidden": true,
|
|
650
|
+
"name": "loglevel",
|
|
651
|
+
"hasDynamicHelp": false,
|
|
652
|
+
"multiple": false,
|
|
653
|
+
"type": "option"
|
|
565
654
|
},
|
|
566
655
|
"target-dev-hub": {
|
|
567
|
-
"name": "target-dev-hub",
|
|
568
|
-
"type": "option",
|
|
569
|
-
"char": "v",
|
|
570
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
571
|
-
"required": true,
|
|
572
|
-
"multiple": false,
|
|
573
|
-
"deprecateAliases": true,
|
|
574
656
|
"aliases": [
|
|
575
657
|
"targetdevhubusername",
|
|
576
658
|
"target-hub-org"
|
|
577
|
-
]
|
|
659
|
+
],
|
|
660
|
+
"char": "v",
|
|
661
|
+
"deprecateAliases": true,
|
|
662
|
+
"name": "target-dev-hub",
|
|
663
|
+
"noCacheDefault": true,
|
|
664
|
+
"required": true,
|
|
665
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
666
|
+
"hasDynamicHelp": true,
|
|
667
|
+
"multiple": false,
|
|
668
|
+
"type": "option"
|
|
578
669
|
},
|
|
579
670
|
"api-version": {
|
|
580
|
-
"name": "api-version",
|
|
581
|
-
"type": "option",
|
|
582
|
-
"description": "Override the api version used for api requests made by this command",
|
|
583
|
-
"multiple": false,
|
|
584
|
-
"deprecateAliases": true,
|
|
585
671
|
"aliases": [
|
|
586
672
|
"apiversion"
|
|
587
|
-
]
|
|
673
|
+
],
|
|
674
|
+
"deprecateAliases": true,
|
|
675
|
+
"description": "Override the api version used for api requests made by this command",
|
|
676
|
+
"name": "api-version",
|
|
677
|
+
"hasDynamicHelp": false,
|
|
678
|
+
"multiple": false,
|
|
679
|
+
"type": "option"
|
|
588
680
|
},
|
|
589
681
|
"verbose": {
|
|
590
682
|
"name": "verbose",
|
|
591
|
-
"type": "boolean",
|
|
592
683
|
"summary": "Display extended package detail.",
|
|
593
684
|
"allowNo": false,
|
|
594
|
-
"
|
|
685
|
+
"type": "boolean"
|
|
595
686
|
}
|
|
596
687
|
},
|
|
597
|
-
"
|
|
688
|
+
"hasDynamicHelp": true,
|
|
689
|
+
"hiddenAliases": [],
|
|
690
|
+
"id": "package:list",
|
|
691
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
692
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
693
|
+
"pluginType": "core",
|
|
694
|
+
"strict": true,
|
|
695
|
+
"summary": "List all packages in the Dev Hub org.",
|
|
696
|
+
"enableJsonFlag": true,
|
|
697
|
+
"SF_ENV": "SF_ENV",
|
|
598
698
|
"requiresProject": true,
|
|
599
|
-
"
|
|
699
|
+
"isESM": false,
|
|
700
|
+
"relativePath": [
|
|
701
|
+
"lib",
|
|
702
|
+
"commands",
|
|
703
|
+
"package",
|
|
704
|
+
"list.js"
|
|
705
|
+
]
|
|
600
706
|
},
|
|
601
707
|
"package:uninstall": {
|
|
602
|
-
"id": "package:uninstall",
|
|
603
|
-
"summary": "Uninstall a second-generation package from the target org.",
|
|
604
|
-
"description": "Specify the package ID for a second-generation package.\n\nTo list the org’s installed packages, run \"<%= config.bin %> package installed list\".\n\nTo uninstall a first-generation package, from Setup, enter Installed Packages in the Quick Find box, then select Installed Packages.",
|
|
605
|
-
"strict": true,
|
|
606
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
607
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
608
|
-
"pluginType": "core",
|
|
609
708
|
"aliases": [
|
|
610
709
|
"force:package:uninstall"
|
|
611
710
|
],
|
|
711
|
+
"args": {},
|
|
712
|
+
"deprecateAliases": true,
|
|
713
|
+
"description": "Specify the package ID for a second-generation package.\n\nTo list the org’s installed packages, run \"<%= config.bin %> package installed list\".\n\nTo uninstall a first-generation package, from Setup, enter Installed Packages in the Quick Find box, then select Installed Packages.",
|
|
612
714
|
"examples": [
|
|
613
715
|
"Uninstall a package with specified ID from an org with username me@example.com:\n<%= config.bin %> <%= command.id %> --package 04t... --target-org me@example.com",
|
|
614
716
|
"Uninstall a package with the specified alias from your default org:\n<%= config.bin %> <%= command.id %> --package undesirable_package_alias",
|
|
615
717
|
"Uninstall a package with an alias that contains spaces from your default org:\n<%= config.bin %> <%= command.id %> --package \"Undesirable Package Alias\""
|
|
616
718
|
],
|
|
617
|
-
"deprecateAliases": true,
|
|
618
719
|
"flags": {
|
|
720
|
+
"json": {
|
|
721
|
+
"description": "Format output as json.",
|
|
722
|
+
"helpGroup": "GLOBAL",
|
|
723
|
+
"name": "json",
|
|
724
|
+
"allowNo": false,
|
|
725
|
+
"type": "boolean"
|
|
726
|
+
},
|
|
619
727
|
"loglevel": {
|
|
620
|
-
"name": "loglevel",
|
|
621
|
-
"type": "option",
|
|
622
|
-
"hidden": true,
|
|
623
|
-
"multiple": false,
|
|
624
728
|
"deprecated": {
|
|
625
729
|
"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."
|
|
626
730
|
},
|
|
627
|
-
"
|
|
731
|
+
"hidden": true,
|
|
732
|
+
"name": "loglevel",
|
|
733
|
+
"hasDynamicHelp": false,
|
|
734
|
+
"multiple": false,
|
|
735
|
+
"type": "option"
|
|
628
736
|
},
|
|
629
737
|
"target-org": {
|
|
630
|
-
"name": "target-org",
|
|
631
|
-
"type": "option",
|
|
632
|
-
"char": "o",
|
|
633
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
634
|
-
"required": true,
|
|
635
|
-
"multiple": false,
|
|
636
|
-
"deprecateAliases": true,
|
|
637
738
|
"aliases": [
|
|
638
739
|
"targetusername",
|
|
639
740
|
"u"
|
|
640
|
-
]
|
|
741
|
+
],
|
|
742
|
+
"char": "o",
|
|
743
|
+
"deprecateAliases": true,
|
|
744
|
+
"name": "target-org",
|
|
745
|
+
"noCacheDefault": true,
|
|
746
|
+
"required": true,
|
|
747
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
748
|
+
"hasDynamicHelp": true,
|
|
749
|
+
"multiple": false,
|
|
750
|
+
"type": "option"
|
|
641
751
|
},
|
|
642
752
|
"api-version": {
|
|
643
|
-
"name": "api-version",
|
|
644
|
-
"type": "option",
|
|
645
|
-
"description": "Override the api version used for api requests made by this command",
|
|
646
|
-
"multiple": false,
|
|
647
|
-
"deprecateAliases": true,
|
|
648
753
|
"aliases": [
|
|
649
754
|
"apiversion"
|
|
650
|
-
]
|
|
755
|
+
],
|
|
756
|
+
"deprecateAliases": true,
|
|
757
|
+
"description": "Override the api version used for api requests made by this command",
|
|
758
|
+
"name": "api-version",
|
|
759
|
+
"hasDynamicHelp": false,
|
|
760
|
+
"multiple": false,
|
|
761
|
+
"type": "option"
|
|
651
762
|
},
|
|
652
763
|
"wait": {
|
|
653
|
-
"name": "wait",
|
|
654
|
-
"type": "option",
|
|
655
764
|
"char": "w",
|
|
765
|
+
"name": "wait",
|
|
656
766
|
"summary": "Number of minutes to wait for uninstall status.",
|
|
657
|
-
"multiple": false,
|
|
658
767
|
"default": {
|
|
659
768
|
"quantity": 0,
|
|
660
769
|
"unit": 0
|
|
661
770
|
},
|
|
662
|
-
"
|
|
771
|
+
"hasDynamicHelp": false,
|
|
772
|
+
"multiple": false,
|
|
773
|
+
"type": "option"
|
|
663
774
|
},
|
|
664
775
|
"package": {
|
|
665
|
-
"name": "package",
|
|
666
|
-
"type": "option",
|
|
667
776
|
"char": "p",
|
|
668
|
-
"
|
|
777
|
+
"name": "package",
|
|
669
778
|
"required": true,
|
|
779
|
+
"summary": "ID (starts with 04t) or alias of the package version to uninstall.",
|
|
780
|
+
"hasDynamicHelp": false,
|
|
670
781
|
"multiple": false,
|
|
671
|
-
"
|
|
782
|
+
"type": "option"
|
|
672
783
|
}
|
|
673
784
|
},
|
|
674
|
-
"
|
|
675
|
-
"
|
|
676
|
-
|
|
677
|
-
"package:update": {
|
|
678
|
-
"id": "package:update",
|
|
679
|
-
"summary": "Update package details.",
|
|
680
|
-
"description": "Specify a new value for each option you want to update.\n\nRun \"<%= config.bin %> package list\" to list all packages in the Dev Hub org.",
|
|
681
|
-
"strict": true,
|
|
682
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
785
|
+
"hasDynamicHelp": true,
|
|
786
|
+
"hiddenAliases": [],
|
|
787
|
+
"id": "package:uninstall",
|
|
683
788
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
789
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
684
790
|
"pluginType": "core",
|
|
791
|
+
"strict": true,
|
|
792
|
+
"summary": "Uninstall a second-generation package from the target org.",
|
|
793
|
+
"enableJsonFlag": true,
|
|
794
|
+
"SF_ENV": "SF_ENV",
|
|
795
|
+
"isESM": false,
|
|
796
|
+
"relativePath": [
|
|
797
|
+
"lib",
|
|
798
|
+
"commands",
|
|
799
|
+
"package",
|
|
800
|
+
"uninstall.js"
|
|
801
|
+
]
|
|
802
|
+
},
|
|
803
|
+
"package:update": {
|
|
685
804
|
"aliases": [
|
|
686
805
|
"force:package:update"
|
|
687
806
|
],
|
|
807
|
+
"args": {},
|
|
808
|
+
"deprecateAliases": true,
|
|
809
|
+
"description": "Specify a new value for each option you want to update.\n\nRun \"<%= config.bin %> package list\" to list all packages in the Dev Hub org.",
|
|
688
810
|
"examples": [
|
|
689
811
|
"Update the name of the package with the specified alias; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --name \"New Package Name\"",
|
|
690
812
|
"Update the description of the package with the specified ID; uses the specified Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 0Ho... --description \"New Package Description\" --target-dev-hub devhub@example.com"
|
|
691
813
|
],
|
|
692
|
-
"deprecateAliases": true,
|
|
693
814
|
"flags": {
|
|
815
|
+
"json": {
|
|
816
|
+
"description": "Format output as json.",
|
|
817
|
+
"helpGroup": "GLOBAL",
|
|
818
|
+
"name": "json",
|
|
819
|
+
"allowNo": false,
|
|
820
|
+
"type": "boolean"
|
|
821
|
+
},
|
|
694
822
|
"loglevel": {
|
|
695
|
-
"name": "loglevel",
|
|
696
|
-
"type": "option",
|
|
697
|
-
"hidden": true,
|
|
698
|
-
"multiple": false,
|
|
699
823
|
"deprecated": {
|
|
700
824
|
"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."
|
|
701
825
|
},
|
|
702
|
-
"
|
|
826
|
+
"hidden": true,
|
|
827
|
+
"name": "loglevel",
|
|
828
|
+
"hasDynamicHelp": false,
|
|
829
|
+
"multiple": false,
|
|
830
|
+
"type": "option"
|
|
703
831
|
},
|
|
704
832
|
"target-dev-hub": {
|
|
705
|
-
"name": "target-dev-hub",
|
|
706
|
-
"type": "option",
|
|
707
|
-
"char": "v",
|
|
708
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
709
|
-
"required": true,
|
|
710
|
-
"multiple": false,
|
|
711
|
-
"deprecateAliases": true,
|
|
712
833
|
"aliases": [
|
|
713
834
|
"targetdevhubusername",
|
|
714
835
|
"target-hub-org"
|
|
715
|
-
]
|
|
836
|
+
],
|
|
837
|
+
"char": "v",
|
|
838
|
+
"deprecateAliases": true,
|
|
839
|
+
"name": "target-dev-hub",
|
|
840
|
+
"noCacheDefault": true,
|
|
841
|
+
"required": true,
|
|
842
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
843
|
+
"hasDynamicHelp": true,
|
|
844
|
+
"multiple": false,
|
|
845
|
+
"type": "option"
|
|
716
846
|
},
|
|
717
847
|
"api-version": {
|
|
718
|
-
"name": "api-version",
|
|
719
|
-
"type": "option",
|
|
720
|
-
"description": "Override the api version used for api requests made by this command",
|
|
721
|
-
"multiple": false,
|
|
722
|
-
"deprecateAliases": true,
|
|
723
848
|
"aliases": [
|
|
724
849
|
"apiversion"
|
|
725
|
-
]
|
|
850
|
+
],
|
|
851
|
+
"deprecateAliases": true,
|
|
852
|
+
"description": "Override the api version used for api requests made by this command",
|
|
853
|
+
"name": "api-version",
|
|
854
|
+
"hasDynamicHelp": false,
|
|
855
|
+
"multiple": false,
|
|
856
|
+
"type": "option"
|
|
726
857
|
},
|
|
727
858
|
"package": {
|
|
728
|
-
"name": "package",
|
|
729
|
-
"type": "option",
|
|
730
859
|
"char": "p",
|
|
731
|
-
"
|
|
860
|
+
"name": "package",
|
|
732
861
|
"required": true,
|
|
862
|
+
"summary": "ID (starts with 0Ho) or alias of the package to update.",
|
|
863
|
+
"hasDynamicHelp": false,
|
|
733
864
|
"multiple": false,
|
|
734
|
-
"
|
|
865
|
+
"type": "option"
|
|
735
866
|
},
|
|
736
867
|
"name": {
|
|
737
|
-
"name": "name",
|
|
738
|
-
"type": "option",
|
|
739
868
|
"char": "n",
|
|
869
|
+
"name": "name",
|
|
740
870
|
"summary": "New name of the package.",
|
|
871
|
+
"hasDynamicHelp": false,
|
|
741
872
|
"multiple": false,
|
|
742
|
-
"
|
|
873
|
+
"type": "option"
|
|
743
874
|
},
|
|
744
875
|
"description": {
|
|
745
|
-
"name": "description",
|
|
746
|
-
"type": "option",
|
|
747
876
|
"char": "d",
|
|
877
|
+
"name": "description",
|
|
748
878
|
"summary": "New description of the package.",
|
|
879
|
+
"hasDynamicHelp": false,
|
|
749
880
|
"multiple": false,
|
|
750
|
-
"
|
|
881
|
+
"type": "option"
|
|
751
882
|
},
|
|
752
883
|
"error-notification-username": {
|
|
753
|
-
"
|
|
754
|
-
|
|
884
|
+
"aliases": [
|
|
885
|
+
"errornotificationusername"
|
|
886
|
+
],
|
|
755
887
|
"char": "o",
|
|
756
|
-
"
|
|
888
|
+
"deprecateAliases": true,
|
|
757
889
|
"description": "Email notifications include information about unhandled Apex exceptions, and install, upgrade, or uninstall failures associated with your package.",
|
|
890
|
+
"name": "error-notification-username",
|
|
891
|
+
"summary": "Active Dev Hub user designated to receive email notifications for package errors.",
|
|
892
|
+
"hasDynamicHelp": false,
|
|
758
893
|
"multiple": false,
|
|
759
|
-
"
|
|
760
|
-
"aliases": [
|
|
761
|
-
"errornotificationusername"
|
|
762
|
-
]
|
|
894
|
+
"type": "option"
|
|
763
895
|
},
|
|
764
896
|
"enable-app-analytics": {
|
|
765
897
|
"name": "enable-app-analytics",
|
|
766
|
-
"type": "boolean",
|
|
767
898
|
"summary": "Enable AppExchange App Analytics usage data collection on this managed package and its components.",
|
|
768
899
|
"allowNo": true,
|
|
769
|
-
"
|
|
900
|
+
"type": "boolean"
|
|
770
901
|
}
|
|
771
902
|
},
|
|
772
|
-
"
|
|
903
|
+
"hasDynamicHelp": true,
|
|
904
|
+
"hiddenAliases": [],
|
|
905
|
+
"id": "package:update",
|
|
906
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
907
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
908
|
+
"pluginType": "core",
|
|
909
|
+
"strict": true,
|
|
910
|
+
"summary": "Update package details.",
|
|
911
|
+
"enableJsonFlag": true,
|
|
912
|
+
"SF_ENV": "SF_ENV",
|
|
773
913
|
"requiresProject": true,
|
|
774
|
-
"
|
|
914
|
+
"isESM": false,
|
|
915
|
+
"relativePath": [
|
|
916
|
+
"lib",
|
|
917
|
+
"commands",
|
|
918
|
+
"package",
|
|
919
|
+
"update.js"
|
|
920
|
+
]
|
|
775
921
|
},
|
|
776
922
|
"package:install:report": {
|
|
777
|
-
"id": "package:install:report",
|
|
778
|
-
"summary": "Retrieve the status of a package installation request.",
|
|
779
|
-
"strict": true,
|
|
780
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
781
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
782
|
-
"pluginType": "core",
|
|
783
923
|
"aliases": [
|
|
784
924
|
"force:package:install:report"
|
|
785
925
|
],
|
|
926
|
+
"args": {},
|
|
927
|
+
"deprecateAliases": true,
|
|
786
928
|
"examples": [
|
|
787
929
|
"Retrieve the status of a package installation request with the specified ID on your default org:\n<%= config.bin %> <%= command.id %> --request-id 0Hf...",
|
|
788
930
|
"Similar to previous example, except use the org with username me@example.com:\n<%= config.bin %> <%= command.id %> --request-id 0Hf... --target-org me@example.com"
|
|
789
931
|
],
|
|
790
|
-
"deprecateAliases": true,
|
|
791
932
|
"flags": {
|
|
933
|
+
"json": {
|
|
934
|
+
"description": "Format output as json.",
|
|
935
|
+
"helpGroup": "GLOBAL",
|
|
936
|
+
"name": "json",
|
|
937
|
+
"allowNo": false,
|
|
938
|
+
"type": "boolean"
|
|
939
|
+
},
|
|
792
940
|
"target-org": {
|
|
793
|
-
"name": "target-org",
|
|
794
|
-
"type": "option",
|
|
795
|
-
"char": "o",
|
|
796
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
797
|
-
"required": true,
|
|
798
|
-
"multiple": false,
|
|
799
|
-
"deprecateAliases": true,
|
|
800
941
|
"aliases": [
|
|
801
942
|
"targetusername",
|
|
802
943
|
"u"
|
|
803
|
-
]
|
|
944
|
+
],
|
|
945
|
+
"char": "o",
|
|
946
|
+
"deprecateAliases": true,
|
|
947
|
+
"name": "target-org",
|
|
948
|
+
"noCacheDefault": true,
|
|
949
|
+
"required": true,
|
|
950
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
951
|
+
"hasDynamicHelp": true,
|
|
952
|
+
"multiple": false,
|
|
953
|
+
"type": "option"
|
|
804
954
|
},
|
|
805
955
|
"api-version": {
|
|
806
|
-
"name": "api-version",
|
|
807
|
-
"type": "option",
|
|
808
|
-
"description": "Override the api version used for api requests made by this command",
|
|
809
|
-
"multiple": false,
|
|
810
|
-
"deprecateAliases": true,
|
|
811
956
|
"aliases": [
|
|
812
957
|
"apiversion"
|
|
813
|
-
]
|
|
958
|
+
],
|
|
959
|
+
"deprecateAliases": true,
|
|
960
|
+
"description": "Override the api version used for api requests made by this command",
|
|
961
|
+
"name": "api-version",
|
|
962
|
+
"hasDynamicHelp": false,
|
|
963
|
+
"multiple": false,
|
|
964
|
+
"type": "option"
|
|
814
965
|
},
|
|
815
966
|
"loglevel": {
|
|
816
|
-
"name": "loglevel",
|
|
817
|
-
"type": "option",
|
|
818
|
-
"hidden": true,
|
|
819
|
-
"multiple": false,
|
|
820
967
|
"deprecated": {
|
|
821
968
|
"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."
|
|
822
969
|
},
|
|
823
|
-
"
|
|
970
|
+
"hidden": true,
|
|
971
|
+
"name": "loglevel",
|
|
972
|
+
"hasDynamicHelp": false,
|
|
973
|
+
"multiple": false,
|
|
974
|
+
"type": "option"
|
|
824
975
|
},
|
|
825
976
|
"request-id": {
|
|
826
|
-
"
|
|
827
|
-
|
|
977
|
+
"aliases": [
|
|
978
|
+
"requestid"
|
|
979
|
+
],
|
|
828
980
|
"char": "i",
|
|
829
|
-
"
|
|
981
|
+
"deprecateAliases": true,
|
|
982
|
+
"name": "request-id",
|
|
830
983
|
"required": true,
|
|
984
|
+
"summary": "ID of the package install request you want to check; starts with 0Hf.",
|
|
985
|
+
"hasDynamicHelp": false,
|
|
831
986
|
"multiple": false,
|
|
832
|
-
"
|
|
833
|
-
"aliases": [
|
|
834
|
-
"requestid"
|
|
835
|
-
]
|
|
987
|
+
"type": "option"
|
|
836
988
|
}
|
|
837
989
|
},
|
|
838
|
-
"
|
|
839
|
-
"
|
|
840
|
-
|
|
841
|
-
"package:installed:list": {
|
|
842
|
-
"id": "package:installed:list",
|
|
843
|
-
"summary": "List the org’s installed packages.",
|
|
844
|
-
"strict": true,
|
|
845
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
990
|
+
"hasDynamicHelp": true,
|
|
991
|
+
"hiddenAliases": [],
|
|
992
|
+
"id": "package:install:report",
|
|
846
993
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
994
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
847
995
|
"pluginType": "core",
|
|
996
|
+
"strict": true,
|
|
997
|
+
"summary": "Retrieve the status of a package installation request.",
|
|
998
|
+
"enableJsonFlag": true,
|
|
999
|
+
"SF_ENV": "SF_ENV",
|
|
1000
|
+
"isESM": false,
|
|
1001
|
+
"relativePath": [
|
|
1002
|
+
"lib",
|
|
1003
|
+
"commands",
|
|
1004
|
+
"package",
|
|
1005
|
+
"install",
|
|
1006
|
+
"report.js"
|
|
1007
|
+
]
|
|
1008
|
+
},
|
|
1009
|
+
"package:installed:list": {
|
|
848
1010
|
"aliases": [
|
|
849
1011
|
"force:package:installed:list"
|
|
850
1012
|
],
|
|
1013
|
+
"args": {},
|
|
1014
|
+
"deprecateAliases": true,
|
|
851
1015
|
"examples": [
|
|
852
1016
|
"List the installed packages in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
853
1017
|
"List the installed packages in the org with username me@example.com:\n<%= config.bin %> <%= command.id %> --target-org me@example.com"
|
|
854
1018
|
],
|
|
855
|
-
"deprecateAliases": true,
|
|
856
1019
|
"flags": {
|
|
1020
|
+
"json": {
|
|
1021
|
+
"description": "Format output as json.",
|
|
1022
|
+
"helpGroup": "GLOBAL",
|
|
1023
|
+
"name": "json",
|
|
1024
|
+
"allowNo": false,
|
|
1025
|
+
"type": "boolean"
|
|
1026
|
+
},
|
|
857
1027
|
"loglevel": {
|
|
858
|
-
"name": "loglevel",
|
|
859
|
-
"type": "option",
|
|
860
|
-
"hidden": true,
|
|
861
|
-
"multiple": false,
|
|
862
1028
|
"deprecated": {
|
|
863
1029
|
"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."
|
|
864
1030
|
},
|
|
865
|
-
"
|
|
1031
|
+
"hidden": true,
|
|
1032
|
+
"name": "loglevel",
|
|
1033
|
+
"hasDynamicHelp": false,
|
|
1034
|
+
"multiple": false,
|
|
1035
|
+
"type": "option"
|
|
866
1036
|
},
|
|
867
1037
|
"target-org": {
|
|
868
|
-
"name": "target-org",
|
|
869
|
-
"type": "option",
|
|
870
|
-
"char": "o",
|
|
871
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
872
|
-
"required": true,
|
|
873
|
-
"multiple": false,
|
|
874
|
-
"deprecateAliases": true,
|
|
875
1038
|
"aliases": [
|
|
876
1039
|
"targetusername",
|
|
877
1040
|
"u"
|
|
878
|
-
]
|
|
1041
|
+
],
|
|
1042
|
+
"char": "o",
|
|
1043
|
+
"deprecateAliases": true,
|
|
1044
|
+
"name": "target-org",
|
|
1045
|
+
"noCacheDefault": true,
|
|
1046
|
+
"required": true,
|
|
1047
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1048
|
+
"hasDynamicHelp": true,
|
|
1049
|
+
"multiple": false,
|
|
1050
|
+
"type": "option"
|
|
879
1051
|
},
|
|
880
1052
|
"api-version": {
|
|
881
|
-
"name": "api-version",
|
|
882
|
-
"type": "option",
|
|
883
|
-
"description": "Override the api version used for api requests made by this command",
|
|
884
|
-
"multiple": false,
|
|
885
|
-
"deprecateAliases": true,
|
|
886
1053
|
"aliases": [
|
|
887
1054
|
"apiversion"
|
|
888
|
-
]
|
|
1055
|
+
],
|
|
1056
|
+
"deprecateAliases": true,
|
|
1057
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1058
|
+
"name": "api-version",
|
|
1059
|
+
"hasDynamicHelp": false,
|
|
1060
|
+
"multiple": false,
|
|
1061
|
+
"type": "option"
|
|
889
1062
|
}
|
|
890
1063
|
},
|
|
891
|
-
"
|
|
1064
|
+
"hasDynamicHelp": true,
|
|
1065
|
+
"hiddenAliases": [],
|
|
1066
|
+
"id": "package:installed:list",
|
|
1067
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1068
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
1069
|
+
"pluginType": "core",
|
|
1070
|
+
"strict": true,
|
|
1071
|
+
"summary": "List the org’s installed packages.",
|
|
1072
|
+
"enableJsonFlag": true,
|
|
1073
|
+
"SF_ENV": "SF_ENV",
|
|
892
1074
|
"requiresProject": true,
|
|
893
|
-
"
|
|
1075
|
+
"isESM": false,
|
|
1076
|
+
"relativePath": [
|
|
1077
|
+
"lib",
|
|
1078
|
+
"commands",
|
|
1079
|
+
"package",
|
|
1080
|
+
"installed",
|
|
1081
|
+
"list.js"
|
|
1082
|
+
]
|
|
894
1083
|
},
|
|
895
1084
|
"package:uninstall:report": {
|
|
896
|
-
"id": "package:uninstall:report",
|
|
897
|
-
"summary": "Retrieve the status of a package uninstall request.",
|
|
898
|
-
"strict": true,
|
|
899
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
900
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
901
|
-
"pluginType": "core",
|
|
902
1085
|
"aliases": [
|
|
903
1086
|
"force:package:uninstall:report"
|
|
904
1087
|
],
|
|
1088
|
+
"args": {},
|
|
1089
|
+
"deprecateAliases": true,
|
|
905
1090
|
"examples": [
|
|
906
1091
|
"Retrieve the status of a package uninstall in your default org using the specified request ID:\n<%= config.bin %> <%= command.id %> --request-id 06y...",
|
|
907
1092
|
"Similar to previous example, but use the org with username me@example.com:\n<%= config.bin %> <%= command.id %> --request-id 06y... --target-org me@example.com"
|
|
908
1093
|
],
|
|
909
|
-
"deprecateAliases": true,
|
|
910
1094
|
"flags": {
|
|
1095
|
+
"json": {
|
|
1096
|
+
"description": "Format output as json.",
|
|
1097
|
+
"helpGroup": "GLOBAL",
|
|
1098
|
+
"name": "json",
|
|
1099
|
+
"allowNo": false,
|
|
1100
|
+
"type": "boolean"
|
|
1101
|
+
},
|
|
911
1102
|
"loglevel": {
|
|
912
|
-
"name": "loglevel",
|
|
913
|
-
"type": "option",
|
|
914
|
-
"hidden": true,
|
|
915
|
-
"multiple": false,
|
|
916
1103
|
"deprecated": {
|
|
917
1104
|
"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."
|
|
918
1105
|
},
|
|
919
|
-
"
|
|
1106
|
+
"hidden": true,
|
|
1107
|
+
"name": "loglevel",
|
|
1108
|
+
"hasDynamicHelp": false,
|
|
1109
|
+
"multiple": false,
|
|
1110
|
+
"type": "option"
|
|
920
1111
|
},
|
|
921
1112
|
"target-org": {
|
|
922
|
-
"name": "target-org",
|
|
923
|
-
"type": "option",
|
|
924
|
-
"char": "o",
|
|
925
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
926
|
-
"required": true,
|
|
927
|
-
"multiple": false,
|
|
928
|
-
"deprecateAliases": true,
|
|
929
1113
|
"aliases": [
|
|
930
1114
|
"targetusername",
|
|
931
1115
|
"u"
|
|
932
|
-
]
|
|
1116
|
+
],
|
|
1117
|
+
"char": "o",
|
|
1118
|
+
"deprecateAliases": true,
|
|
1119
|
+
"name": "target-org",
|
|
1120
|
+
"noCacheDefault": true,
|
|
1121
|
+
"required": true,
|
|
1122
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1123
|
+
"hasDynamicHelp": true,
|
|
1124
|
+
"multiple": false,
|
|
1125
|
+
"type": "option"
|
|
933
1126
|
},
|
|
934
1127
|
"api-version": {
|
|
935
|
-
"name": "api-version",
|
|
936
|
-
"type": "option",
|
|
937
|
-
"description": "Override the api version used for api requests made by this command",
|
|
938
|
-
"multiple": false,
|
|
939
|
-
"deprecateAliases": true,
|
|
940
1128
|
"aliases": [
|
|
941
1129
|
"apiversion"
|
|
942
|
-
]
|
|
1130
|
+
],
|
|
1131
|
+
"deprecateAliases": true,
|
|
1132
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1133
|
+
"name": "api-version",
|
|
1134
|
+
"hasDynamicHelp": false,
|
|
1135
|
+
"multiple": false,
|
|
1136
|
+
"type": "option"
|
|
943
1137
|
},
|
|
944
1138
|
"request-id": {
|
|
945
|
-
"
|
|
946
|
-
|
|
1139
|
+
"aliases": [
|
|
1140
|
+
"requestid"
|
|
1141
|
+
],
|
|
947
1142
|
"char": "i",
|
|
948
|
-
"
|
|
1143
|
+
"deprecateAliases": true,
|
|
1144
|
+
"name": "request-id",
|
|
949
1145
|
"required": true,
|
|
1146
|
+
"summary": "ID of the package uninstall request you want to check; starts with 06y.",
|
|
1147
|
+
"hasDynamicHelp": false,
|
|
950
1148
|
"multiple": false,
|
|
951
|
-
"
|
|
952
|
-
"aliases": [
|
|
953
|
-
"requestid"
|
|
954
|
-
]
|
|
1149
|
+
"type": "option"
|
|
955
1150
|
}
|
|
956
1151
|
},
|
|
957
|
-
"
|
|
958
|
-
"
|
|
959
|
-
|
|
960
|
-
"package:version:create": {
|
|
961
|
-
"id": "package:version:create",
|
|
962
|
-
"summary": "Create a package version in the Dev Hub org.",
|
|
963
|
-
"description": "The package version is based on the package contents in the specified directory.\n\nTo retrieve details about a package version create request, including status and package version ID (04t), run \"<%= config.bin %> package version create report -i 08c...\".\n\nWe recommend that you specify the --installation-key parameter to protect the contents of your package and to prevent unauthorized installation of your package.\n\nTo list package version creation requests in the org, run \"<%= config.bin %> package version create list\".\nTo promote a package version to released, you must use the --code-coverage parameter. The package must also meet the code coverage requirements. This requirement applies to both managed and unlocked packages.\n\nWe don’t calculate code coverage for org-dependent unlocked packages, or for package versions that specify --skip-validation.",
|
|
964
|
-
"strict": true,
|
|
965
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1152
|
+
"hasDynamicHelp": true,
|
|
1153
|
+
"hiddenAliases": [],
|
|
1154
|
+
"id": "package:uninstall:report",
|
|
966
1155
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1156
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
967
1157
|
"pluginType": "core",
|
|
1158
|
+
"strict": true,
|
|
1159
|
+
"summary": "Retrieve the status of a package uninstall request.",
|
|
1160
|
+
"enableJsonFlag": true,
|
|
1161
|
+
"SF_ENV": "SF_ENV",
|
|
1162
|
+
"isESM": false,
|
|
1163
|
+
"relativePath": [
|
|
1164
|
+
"lib",
|
|
1165
|
+
"commands",
|
|
1166
|
+
"package",
|
|
1167
|
+
"uninstall",
|
|
1168
|
+
"report.js"
|
|
1169
|
+
]
|
|
1170
|
+
},
|
|
1171
|
+
"package:version:create": {
|
|
968
1172
|
"aliases": [
|
|
969
1173
|
"force:package:version:create"
|
|
970
1174
|
],
|
|
1175
|
+
"args": {},
|
|
1176
|
+
"deprecateAliases": true,
|
|
1177
|
+
"description": "The package version is based on the package contents in the specified directory.\n\nTo retrieve details about a package version create request, including status and package version ID (04t), run \"<%= config.bin %> package version create report -i 08c...\".\n\nWe recommend that you specify the --installation-key parameter to protect the contents of your package and to prevent unauthorized installation of your package.\n\nTo list package version creation requests in the org, run \"<%= config.bin %> package version create list\".\nTo promote a package version to released, you must use the --code-coverage parameter. The package must also meet the code coverage requirements. This requirement applies to both managed and unlocked packages.\n\nWe don’t calculate code coverage for org-dependent unlocked packages, or for package versions that specify --skip-validation.",
|
|
971
1178
|
"examples": [
|
|
972
1179
|
"Create a package version from the contents of the \"common\" directory and give it an installation key of \"password123\"; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123",
|
|
973
1180
|
"Create a package version from a package with the specified alias; uses the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --installation-key password123 --target-dev-hub devhub@example.com",
|
|
974
1181
|
"Create a package version from a package with the specified ID:\n<%= config.bin %> <%= command.id %> --package 0Ho... --installation-key password123",
|
|
975
1182
|
"Create a package version and skip the validation step:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --skip-validation"
|
|
976
1183
|
],
|
|
977
|
-
"deprecateAliases": true,
|
|
978
1184
|
"flags": {
|
|
1185
|
+
"json": {
|
|
1186
|
+
"description": "Format output as json.",
|
|
1187
|
+
"helpGroup": "GLOBAL",
|
|
1188
|
+
"name": "json",
|
|
1189
|
+
"allowNo": false,
|
|
1190
|
+
"type": "boolean"
|
|
1191
|
+
},
|
|
979
1192
|
"loglevel": {
|
|
980
|
-
"name": "loglevel",
|
|
981
|
-
"type": "option",
|
|
982
|
-
"hidden": true,
|
|
983
|
-
"multiple": false,
|
|
984
1193
|
"deprecated": {
|
|
985
1194
|
"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."
|
|
986
1195
|
},
|
|
987
|
-
"
|
|
1196
|
+
"hidden": true,
|
|
1197
|
+
"name": "loglevel",
|
|
1198
|
+
"hasDynamicHelp": false,
|
|
1199
|
+
"multiple": false,
|
|
1200
|
+
"type": "option"
|
|
988
1201
|
},
|
|
989
1202
|
"target-dev-hub": {
|
|
990
|
-
"name": "target-dev-hub",
|
|
991
|
-
"type": "option",
|
|
992
|
-
"char": "v",
|
|
993
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
994
|
-
"required": true,
|
|
995
|
-
"multiple": false,
|
|
996
|
-
"deprecateAliases": true,
|
|
997
1203
|
"aliases": [
|
|
998
1204
|
"targetdevhubusername",
|
|
999
1205
|
"target-hub-org"
|
|
1000
|
-
]
|
|
1206
|
+
],
|
|
1207
|
+
"char": "v",
|
|
1208
|
+
"deprecateAliases": true,
|
|
1209
|
+
"name": "target-dev-hub",
|
|
1210
|
+
"noCacheDefault": true,
|
|
1211
|
+
"required": true,
|
|
1212
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1213
|
+
"hasDynamicHelp": true,
|
|
1214
|
+
"multiple": false,
|
|
1215
|
+
"type": "option"
|
|
1001
1216
|
},
|
|
1002
1217
|
"api-version": {
|
|
1003
|
-
"name": "api-version",
|
|
1004
|
-
"type": "option",
|
|
1005
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1006
|
-
"multiple": false,
|
|
1007
|
-
"deprecateAliases": true,
|
|
1008
1218
|
"aliases": [
|
|
1009
1219
|
"apiversion"
|
|
1010
|
-
]
|
|
1220
|
+
],
|
|
1221
|
+
"deprecateAliases": true,
|
|
1222
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1223
|
+
"name": "api-version",
|
|
1224
|
+
"hasDynamicHelp": false,
|
|
1225
|
+
"multiple": false,
|
|
1226
|
+
"type": "option"
|
|
1011
1227
|
},
|
|
1012
1228
|
"branch": {
|
|
1013
|
-
"name": "branch",
|
|
1014
|
-
"type": "option",
|
|
1015
1229
|
"char": "b",
|
|
1230
|
+
"name": "branch",
|
|
1016
1231
|
"summary": "Name of the branch in your source control system that the package version is based on.",
|
|
1232
|
+
"hasDynamicHelp": false,
|
|
1017
1233
|
"multiple": false,
|
|
1018
|
-
"
|
|
1234
|
+
"type": "option"
|
|
1019
1235
|
},
|
|
1020
1236
|
"build-instance": {
|
|
1237
|
+
"aliases": [
|
|
1238
|
+
"buildinstance"
|
|
1239
|
+
],
|
|
1240
|
+
"char": "s",
|
|
1241
|
+
"deprecateAliases": true,
|
|
1242
|
+
"hidden": true,
|
|
1021
1243
|
"name": "build-instance",
|
|
1022
|
-
"type": "option",
|
|
1023
|
-
"char": "s",
|
|
1024
1244
|
"summary": "Instance where the package version will be created, such as NA50.",
|
|
1025
|
-
"
|
|
1245
|
+
"hasDynamicHelp": false,
|
|
1026
1246
|
"multiple": false,
|
|
1027
|
-
"
|
|
1028
|
-
"aliases": [
|
|
1029
|
-
"buildinstance"
|
|
1030
|
-
]
|
|
1247
|
+
"type": "option"
|
|
1031
1248
|
},
|
|
1032
1249
|
"code-coverage": {
|
|
1033
|
-
"
|
|
1034
|
-
|
|
1250
|
+
"aliases": [
|
|
1251
|
+
"codecoverage"
|
|
1252
|
+
],
|
|
1035
1253
|
"char": "c",
|
|
1036
|
-
"
|
|
1254
|
+
"deprecateAliases": true,
|
|
1037
1255
|
"description": "Before you can promote and release a managed or unlocked package version, the Apex code must meet a minimum 75% code coverage requirement. We don’t calculate code coverage for org-dependent unlocked packages or for package versions that specify --skip-validation.",
|
|
1038
|
-
"allowNo": false,
|
|
1039
1256
|
"exclusive": [
|
|
1040
1257
|
"skip-validation"
|
|
1041
1258
|
],
|
|
1042
|
-
"
|
|
1043
|
-
"
|
|
1044
|
-
|
|
1045
|
-
|
|
1259
|
+
"name": "code-coverage",
|
|
1260
|
+
"summary": "Calculate and store the code coverage percentage by running the packaged Apex tests included in this package version.",
|
|
1261
|
+
"allowNo": false,
|
|
1262
|
+
"type": "boolean"
|
|
1046
1263
|
},
|
|
1047
1264
|
"definition-file": {
|
|
1048
|
-
"
|
|
1049
|
-
|
|
1265
|
+
"aliases": [
|
|
1266
|
+
"definitionfile"
|
|
1267
|
+
],
|
|
1050
1268
|
"char": "f",
|
|
1269
|
+
"deprecateAliases": true,
|
|
1270
|
+
"name": "definition-file",
|
|
1051
1271
|
"summary": "Path to a definition file similar to scratch org definition file that contains the list of features and org preferences that the metadata of the package version depends on.",
|
|
1272
|
+
"hasDynamicHelp": false,
|
|
1052
1273
|
"multiple": false,
|
|
1053
|
-
"
|
|
1054
|
-
"aliases": [
|
|
1055
|
-
"definitionfile"
|
|
1056
|
-
]
|
|
1274
|
+
"type": "option"
|
|
1057
1275
|
},
|
|
1058
1276
|
"installation-key": {
|
|
1059
|
-
"
|
|
1060
|
-
|
|
1277
|
+
"aliases": [
|
|
1278
|
+
"installationkey"
|
|
1279
|
+
],
|
|
1061
1280
|
"char": "k",
|
|
1281
|
+
"deprecateAliases": true,
|
|
1282
|
+
"name": "installation-key",
|
|
1062
1283
|
"summary": "Installation key for key-protected package. (either --installation-key or --installation-key-bypass is required)",
|
|
1284
|
+
"hasDynamicHelp": false,
|
|
1063
1285
|
"multiple": false,
|
|
1064
|
-
"
|
|
1065
|
-
"aliases": [
|
|
1066
|
-
"installationkey"
|
|
1067
|
-
]
|
|
1286
|
+
"type": "option"
|
|
1068
1287
|
},
|
|
1069
1288
|
"installation-key-bypass": {
|
|
1070
|
-
"
|
|
1071
|
-
|
|
1289
|
+
"aliases": [
|
|
1290
|
+
"installationkeybypass"
|
|
1291
|
+
],
|
|
1072
1292
|
"char": "x",
|
|
1073
|
-
"
|
|
1293
|
+
"deprecateAliases": true,
|
|
1074
1294
|
"description": "If you bypass this requirement, anyone can install your package.",
|
|
1295
|
+
"name": "installation-key-bypass",
|
|
1296
|
+
"summary": "Bypass the installation key requirement. (either --installation-key or --installation-key-bypass is required)",
|
|
1075
1297
|
"allowNo": false,
|
|
1076
|
-
"
|
|
1077
|
-
"aliases": [
|
|
1078
|
-
"installationkeybypass"
|
|
1079
|
-
]
|
|
1298
|
+
"type": "boolean"
|
|
1080
1299
|
},
|
|
1081
1300
|
"package": {
|
|
1082
|
-
"name": "package",
|
|
1083
|
-
"type": "option",
|
|
1084
1301
|
"char": "p",
|
|
1302
|
+
"name": "package",
|
|
1085
1303
|
"summary": "ID (starts with 0Ho) or alias of the package to create a version of.",
|
|
1304
|
+
"hasDynamicHelp": false,
|
|
1086
1305
|
"multiple": false,
|
|
1087
|
-
"
|
|
1306
|
+
"type": "option"
|
|
1088
1307
|
},
|
|
1089
1308
|
"path": {
|
|
1090
|
-
"name": "path",
|
|
1091
|
-
"type": "option",
|
|
1092
1309
|
"char": "d",
|
|
1310
|
+
"name": "path",
|
|
1093
1311
|
"summary": "Path to the directory that contains the contents of the package.",
|
|
1312
|
+
"hasDynamicHelp": false,
|
|
1094
1313
|
"multiple": false,
|
|
1095
|
-
"
|
|
1314
|
+
"type": "option"
|
|
1096
1315
|
},
|
|
1097
1316
|
"post-install-script": {
|
|
1317
|
+
"aliases": [
|
|
1318
|
+
"postinstallscript"
|
|
1319
|
+
],
|
|
1320
|
+
"deprecateAliases": true,
|
|
1321
|
+
"description": "The post-install script is an Apex class within this package that is run in the installing org after installations or upgrades of this package version.",
|
|
1098
1322
|
"name": "post-install-script",
|
|
1099
|
-
"type": "option",
|
|
1100
1323
|
"summary": "Name of the post-install script; applies to managed packages only.",
|
|
1101
|
-
"
|
|
1324
|
+
"hasDynamicHelp": false,
|
|
1102
1325
|
"multiple": false,
|
|
1103
|
-
"
|
|
1104
|
-
"aliases": [
|
|
1105
|
-
"postinstallscript"
|
|
1106
|
-
]
|
|
1326
|
+
"type": "option"
|
|
1107
1327
|
},
|
|
1108
1328
|
"post-install-url": {
|
|
1329
|
+
"aliases": [
|
|
1330
|
+
"postinstallurl"
|
|
1331
|
+
],
|
|
1332
|
+
"deprecateAliases": true,
|
|
1333
|
+
"description": "The contents of the post-installation instructions URL are displayed in the UI after installation of the package version.",
|
|
1109
1334
|
"name": "post-install-url",
|
|
1110
|
-
"type": "option",
|
|
1111
1335
|
"summary": "Post-install instructions URL.",
|
|
1112
|
-
"
|
|
1336
|
+
"hasDynamicHelp": false,
|
|
1113
1337
|
"multiple": false,
|
|
1114
|
-
"
|
|
1115
|
-
"aliases": [
|
|
1116
|
-
"postinstallurl"
|
|
1117
|
-
]
|
|
1338
|
+
"type": "option"
|
|
1118
1339
|
},
|
|
1119
1340
|
"preserve": {
|
|
1120
|
-
"name": "preserve",
|
|
1121
|
-
"type": "boolean",
|
|
1122
1341
|
"char": "r",
|
|
1123
|
-
"summary": "Preserve temp files that would otherwise be deleted.",
|
|
1124
1342
|
"hidden": true,
|
|
1343
|
+
"name": "preserve",
|
|
1344
|
+
"summary": "Preserve temp files that would otherwise be deleted.",
|
|
1125
1345
|
"allowNo": false,
|
|
1126
|
-
"
|
|
1346
|
+
"type": "boolean"
|
|
1127
1347
|
},
|
|
1128
1348
|
"releasenotes-url": {
|
|
1349
|
+
"aliases": [
|
|
1350
|
+
"releasenotesurl"
|
|
1351
|
+
],
|
|
1352
|
+
"deprecateAliases": true,
|
|
1353
|
+
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
1129
1354
|
"name": "releasenotes-url",
|
|
1130
|
-
"type": "option",
|
|
1131
1355
|
"summary": "Release notes URL.",
|
|
1132
|
-
"
|
|
1356
|
+
"hasDynamicHelp": false,
|
|
1133
1357
|
"multiple": false,
|
|
1134
|
-
"
|
|
1135
|
-
"aliases": [
|
|
1136
|
-
"releasenotesurl"
|
|
1137
|
-
]
|
|
1358
|
+
"type": "option"
|
|
1138
1359
|
},
|
|
1139
1360
|
"skip-ancestor-check": {
|
|
1361
|
+
"aliases": [
|
|
1362
|
+
"skipancestorcheck"
|
|
1363
|
+
],
|
|
1364
|
+
"deprecateAliases": true,
|
|
1140
1365
|
"name": "skip-ancestor-check",
|
|
1141
|
-
"type": "boolean",
|
|
1142
1366
|
"summary": "Overrides ancestry requirements, which allows you to specify a package ancestor that isn’t the highest released package version.",
|
|
1143
1367
|
"allowNo": false,
|
|
1144
|
-
"
|
|
1145
|
-
"aliases": [
|
|
1146
|
-
"skipancestorcheck"
|
|
1147
|
-
]
|
|
1368
|
+
"type": "boolean"
|
|
1148
1369
|
},
|
|
1149
1370
|
"skip-validation": {
|
|
1150
|
-
"
|
|
1151
|
-
|
|
1152
|
-
|
|
1371
|
+
"aliases": [
|
|
1372
|
+
"skipvalidation"
|
|
1373
|
+
],
|
|
1374
|
+
"deprecateAliases": true,
|
|
1153
1375
|
"description": "Skips validation of dependencies, package ancestors, and metadata during package version creation. Skipping validation reduces the time it takes to create a new package version, but you can promote only validated package versions. Skipping validation can suppress important errors that can surface at a later stage. You can specify skip validation or code coverage, but not both. Code coverage is calculated during validation.",
|
|
1154
|
-
"allowNo": false,
|
|
1155
1376
|
"exclusive": [
|
|
1156
1377
|
"code-coverage"
|
|
1157
1378
|
],
|
|
1158
|
-
"
|
|
1159
|
-
"
|
|
1160
|
-
|
|
1161
|
-
|
|
1379
|
+
"name": "skip-validation",
|
|
1380
|
+
"summary": "Skip validation during package version creation; you can’t promote unvalidated package versions.",
|
|
1381
|
+
"allowNo": false,
|
|
1382
|
+
"type": "boolean"
|
|
1162
1383
|
},
|
|
1163
1384
|
"tag": {
|
|
1164
|
-
"name": "tag",
|
|
1165
|
-
"type": "option",
|
|
1166
1385
|
"char": "t",
|
|
1386
|
+
"name": "tag",
|
|
1167
1387
|
"summary": "Package version’s tag.",
|
|
1388
|
+
"hasDynamicHelp": false,
|
|
1168
1389
|
"multiple": false,
|
|
1169
|
-
"
|
|
1390
|
+
"type": "option"
|
|
1170
1391
|
},
|
|
1171
1392
|
"uninstall-script": {
|
|
1393
|
+
"aliases": [
|
|
1394
|
+
"uninstallscript"
|
|
1395
|
+
],
|
|
1396
|
+
"deprecateAliases": true,
|
|
1397
|
+
"description": "The uninstall script is an Apex class within this package that is run in the installing org after uninstallations of this package.",
|
|
1172
1398
|
"name": "uninstall-script",
|
|
1173
|
-
"type": "option",
|
|
1174
1399
|
"summary": "Uninstall script name; applies to managed packages only.",
|
|
1175
|
-
"
|
|
1400
|
+
"hasDynamicHelp": false,
|
|
1176
1401
|
"multiple": false,
|
|
1177
|
-
"
|
|
1178
|
-
"aliases": [
|
|
1179
|
-
"uninstallscript"
|
|
1180
|
-
]
|
|
1402
|
+
"type": "option"
|
|
1181
1403
|
},
|
|
1182
1404
|
"validate-schema": {
|
|
1183
|
-
"
|
|
1184
|
-
|
|
1405
|
+
"aliases": [
|
|
1406
|
+
"validateschema"
|
|
1407
|
+
],
|
|
1185
1408
|
"char": "j",
|
|
1186
|
-
"
|
|
1409
|
+
"deprecateAliases": true,
|
|
1187
1410
|
"hidden": true,
|
|
1411
|
+
"name": "validate-schema",
|
|
1412
|
+
"summary": "Validate the sfdx-project.json file against the JSON schema.",
|
|
1188
1413
|
"allowNo": false,
|
|
1189
|
-
"
|
|
1190
|
-
"aliases": [
|
|
1191
|
-
"validateschema"
|
|
1192
|
-
]
|
|
1414
|
+
"type": "boolean"
|
|
1193
1415
|
},
|
|
1194
1416
|
"version-description": {
|
|
1195
|
-
"
|
|
1196
|
-
|
|
1417
|
+
"aliases": [
|
|
1418
|
+
"versiondescription"
|
|
1419
|
+
],
|
|
1197
1420
|
"char": "e",
|
|
1421
|
+
"deprecateAliases": true,
|
|
1422
|
+
"name": "version-description",
|
|
1198
1423
|
"summary": "Description of the package version to be created; overrides the sfdx-project.json value.",
|
|
1424
|
+
"hasDynamicHelp": false,
|
|
1199
1425
|
"multiple": false,
|
|
1200
|
-
"
|
|
1201
|
-
"aliases": [
|
|
1202
|
-
"versiondescription"
|
|
1203
|
-
]
|
|
1426
|
+
"type": "option"
|
|
1204
1427
|
},
|
|
1205
1428
|
"version-name": {
|
|
1206
|
-
"
|
|
1207
|
-
|
|
1429
|
+
"aliases": [
|
|
1430
|
+
"versionname"
|
|
1431
|
+
],
|
|
1208
1432
|
"char": "a",
|
|
1433
|
+
"deprecateAliases": true,
|
|
1434
|
+
"name": "version-name",
|
|
1209
1435
|
"summary": "Name of the package version to be created; overrides the sfdx-project.json value.",
|
|
1436
|
+
"hasDynamicHelp": false,
|
|
1210
1437
|
"multiple": false,
|
|
1211
|
-
"
|
|
1212
|
-
"aliases": [
|
|
1213
|
-
"versionname"
|
|
1214
|
-
]
|
|
1438
|
+
"type": "option"
|
|
1215
1439
|
},
|
|
1216
1440
|
"version-number": {
|
|
1217
|
-
"
|
|
1218
|
-
|
|
1441
|
+
"aliases": [
|
|
1442
|
+
"versionnumber"
|
|
1443
|
+
],
|
|
1219
1444
|
"char": "n",
|
|
1220
|
-
"
|
|
1445
|
+
"deprecateAliases": true,
|
|
1221
1446
|
"description": "For information about the format of the version number, see https://developer.salesforce.com/docs/atlas.en-us.pkg2_dev.meta/pkg2_dev/sfdx_dev2gp_config_file.htm.",
|
|
1447
|
+
"name": "version-number",
|
|
1448
|
+
"summary": "Version number of the package version to be created; overrides the sfdx-project.json value.",
|
|
1449
|
+
"hasDynamicHelp": false,
|
|
1222
1450
|
"multiple": false,
|
|
1223
|
-
"
|
|
1224
|
-
"aliases": [
|
|
1225
|
-
"versionnumber"
|
|
1226
|
-
]
|
|
1451
|
+
"type": "option"
|
|
1227
1452
|
},
|
|
1228
1453
|
"wait": {
|
|
1229
|
-
"name": "wait",
|
|
1230
|
-
"type": "option",
|
|
1231
1454
|
"char": "w",
|
|
1455
|
+
"name": "wait",
|
|
1232
1456
|
"summary": "Number of minutes to wait for the package version to be created.",
|
|
1233
|
-
"multiple": false,
|
|
1234
1457
|
"default": {
|
|
1235
1458
|
"quantity": 0,
|
|
1236
1459
|
"unit": 0
|
|
1237
1460
|
},
|
|
1238
|
-
"
|
|
1461
|
+
"hasDynamicHelp": false,
|
|
1462
|
+
"multiple": false,
|
|
1463
|
+
"type": "option"
|
|
1239
1464
|
},
|
|
1240
1465
|
"language": {
|
|
1466
|
+
"description": "Specify the language using a language code listed under \"Supported Languages\" in Salesforce Help. If no language is specified, the language defaults to the language of the Dev Hub user who created the package.",
|
|
1241
1467
|
"name": "language",
|
|
1242
|
-
"type": "option",
|
|
1243
1468
|
"summary": "Language for the package.",
|
|
1244
|
-
"
|
|
1469
|
+
"hasDynamicHelp": false,
|
|
1245
1470
|
"multiple": false,
|
|
1246
|
-
"
|
|
1471
|
+
"type": "option"
|
|
1247
1472
|
},
|
|
1248
1473
|
"verbose": {
|
|
1474
|
+
"description": "Display verbose command output. When polling for the status of the creation, this will output status and timeout data on a separate line for each poll request, which is useful in CI systems where timeouts can occur with long periods of no output from commands.",
|
|
1249
1475
|
"name": "verbose",
|
|
1250
|
-
"type": "boolean",
|
|
1251
1476
|
"summary": "Display verbose command output.",
|
|
1252
|
-
"description": "Display verbose command output. When polling for the status of the creation, this will output status and timeout data on a separate line for each poll request, which is useful in CI systems where timeouts can occur with long periods of no output from commands.",
|
|
1253
1477
|
"allowNo": false,
|
|
1254
|
-
"
|
|
1478
|
+
"type": "boolean"
|
|
1255
1479
|
}
|
|
1256
1480
|
},
|
|
1257
|
-
"
|
|
1481
|
+
"hasDynamicHelp": true,
|
|
1482
|
+
"hiddenAliases": [],
|
|
1483
|
+
"id": "package:version:create",
|
|
1484
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1485
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
1486
|
+
"pluginType": "core",
|
|
1487
|
+
"strict": true,
|
|
1488
|
+
"summary": "Create a package version in the Dev Hub org.",
|
|
1489
|
+
"enableJsonFlag": true,
|
|
1490
|
+
"SF_ENV": "SF_ENV",
|
|
1258
1491
|
"requiresProject": true,
|
|
1259
|
-
"
|
|
1492
|
+
"isESM": false,
|
|
1493
|
+
"relativePath": [
|
|
1494
|
+
"lib",
|
|
1495
|
+
"commands",
|
|
1496
|
+
"package",
|
|
1497
|
+
"version",
|
|
1498
|
+
"create.js"
|
|
1499
|
+
]
|
|
1260
1500
|
},
|
|
1261
1501
|
"package:version:delete": {
|
|
1262
|
-
"id": "package:version:delete",
|
|
1263
|
-
"summary": "Delete a package version.",
|
|
1264
|
-
"description": "Specify the ID or alias of the package version you want to delete.",
|
|
1265
|
-
"strict": true,
|
|
1266
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1267
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1268
|
-
"pluginType": "core",
|
|
1269
1502
|
"aliases": [
|
|
1270
1503
|
"force:package:version:delete"
|
|
1271
1504
|
],
|
|
1505
|
+
"args": {},
|
|
1506
|
+
"deprecateAliases": true,
|
|
1507
|
+
"description": "Specify the ID or alias of the package version you want to delete.",
|
|
1272
1508
|
"examples": [
|
|
1273
1509
|
"Delete a package version with the specified alias using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\"",
|
|
1274
1510
|
"Delete a package version with the specified ID using the Dev Hub org with username \"devhub@example.com\":\n<%= config.bin %> <%= command.id %> --package 04t... --target-org devhub@example.com"
|
|
1275
1511
|
],
|
|
1276
|
-
"deprecateAliases": true,
|
|
1277
1512
|
"flags": {
|
|
1513
|
+
"json": {
|
|
1514
|
+
"description": "Format output as json.",
|
|
1515
|
+
"helpGroup": "GLOBAL",
|
|
1516
|
+
"name": "json",
|
|
1517
|
+
"allowNo": false,
|
|
1518
|
+
"type": "boolean"
|
|
1519
|
+
},
|
|
1278
1520
|
"loglevel": {
|
|
1279
|
-
"name": "loglevel",
|
|
1280
|
-
"type": "option",
|
|
1281
|
-
"hidden": true,
|
|
1282
|
-
"multiple": false,
|
|
1283
1521
|
"deprecated": {
|
|
1284
1522
|
"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."
|
|
1285
1523
|
},
|
|
1286
|
-
"
|
|
1524
|
+
"hidden": true,
|
|
1525
|
+
"name": "loglevel",
|
|
1526
|
+
"hasDynamicHelp": false,
|
|
1527
|
+
"multiple": false,
|
|
1528
|
+
"type": "option"
|
|
1287
1529
|
},
|
|
1288
1530
|
"target-dev-hub": {
|
|
1289
|
-
"name": "target-dev-hub",
|
|
1290
|
-
"type": "option",
|
|
1291
|
-
"char": "v",
|
|
1292
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1293
|
-
"required": true,
|
|
1294
|
-
"multiple": false,
|
|
1295
|
-
"deprecateAliases": true,
|
|
1296
1531
|
"aliases": [
|
|
1297
1532
|
"targetdevhubusername",
|
|
1298
1533
|
"target-hub-org"
|
|
1299
|
-
]
|
|
1534
|
+
],
|
|
1535
|
+
"char": "v",
|
|
1536
|
+
"deprecateAliases": true,
|
|
1537
|
+
"name": "target-dev-hub",
|
|
1538
|
+
"noCacheDefault": true,
|
|
1539
|
+
"required": true,
|
|
1540
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1541
|
+
"hasDynamicHelp": true,
|
|
1542
|
+
"multiple": false,
|
|
1543
|
+
"type": "option"
|
|
1300
1544
|
},
|
|
1301
1545
|
"api-version": {
|
|
1302
|
-
"name": "api-version",
|
|
1303
|
-
"type": "option",
|
|
1304
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1305
|
-
"multiple": false,
|
|
1306
|
-
"deprecateAliases": true,
|
|
1307
1546
|
"aliases": [
|
|
1308
1547
|
"apiversion"
|
|
1309
|
-
]
|
|
1548
|
+
],
|
|
1549
|
+
"deprecateAliases": true,
|
|
1550
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1551
|
+
"name": "api-version",
|
|
1552
|
+
"hasDynamicHelp": false,
|
|
1553
|
+
"multiple": false,
|
|
1554
|
+
"type": "option"
|
|
1310
1555
|
},
|
|
1311
1556
|
"no-prompt": {
|
|
1312
|
-
"
|
|
1313
|
-
|
|
1557
|
+
"aliases": [
|
|
1558
|
+
"noprompt"
|
|
1559
|
+
],
|
|
1314
1560
|
"char": "n",
|
|
1561
|
+
"deprecateAliases": true,
|
|
1562
|
+
"name": "no-prompt",
|
|
1315
1563
|
"summary": "Don’t prompt before deleting the package version.",
|
|
1316
1564
|
"allowNo": false,
|
|
1317
|
-
"
|
|
1318
|
-
"aliases": [
|
|
1319
|
-
"noprompt"
|
|
1320
|
-
]
|
|
1565
|
+
"type": "boolean"
|
|
1321
1566
|
},
|
|
1322
1567
|
"package": {
|
|
1323
|
-
"name": "package",
|
|
1324
|
-
"type": "option",
|
|
1325
1568
|
"char": "p",
|
|
1326
|
-
"
|
|
1569
|
+
"name": "package",
|
|
1327
1570
|
"required": true,
|
|
1571
|
+
"summary": "ID (starts with 04t) or alias of the package version to delete.",
|
|
1572
|
+
"hasDynamicHelp": false,
|
|
1328
1573
|
"multiple": false,
|
|
1329
|
-
"
|
|
1574
|
+
"type": "option"
|
|
1330
1575
|
},
|
|
1331
1576
|
"undelete": {
|
|
1577
|
+
"hidden": true,
|
|
1332
1578
|
"name": "undelete",
|
|
1333
|
-
"type": "boolean",
|
|
1334
1579
|
"summary": "Undelete a deleted package version.",
|
|
1335
|
-
"hidden": true,
|
|
1336
1580
|
"allowNo": false,
|
|
1337
|
-
"
|
|
1581
|
+
"type": "boolean"
|
|
1338
1582
|
}
|
|
1339
1583
|
},
|
|
1340
|
-
"
|
|
1584
|
+
"hasDynamicHelp": true,
|
|
1585
|
+
"hiddenAliases": [],
|
|
1586
|
+
"id": "package:version:delete",
|
|
1587
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1588
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
1589
|
+
"pluginType": "core",
|
|
1590
|
+
"strict": true,
|
|
1591
|
+
"summary": "Delete a package version.",
|
|
1592
|
+
"enableJsonFlag": true,
|
|
1593
|
+
"SF_ENV": "SF_ENV",
|
|
1341
1594
|
"requiresProject": true,
|
|
1342
|
-
"
|
|
1595
|
+
"isESM": false,
|
|
1596
|
+
"relativePath": [
|
|
1597
|
+
"lib",
|
|
1598
|
+
"commands",
|
|
1599
|
+
"package",
|
|
1600
|
+
"version",
|
|
1601
|
+
"delete.js"
|
|
1602
|
+
]
|
|
1343
1603
|
},
|
|
1344
1604
|
"package:version:displayancestry": {
|
|
1345
|
-
"id": "package:version:displayancestry",
|
|
1346
|
-
"summary": "Display the ancestry tree for a 2GP managed package version.",
|
|
1347
|
-
"strict": true,
|
|
1348
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1349
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1350
|
-
"pluginType": "core",
|
|
1351
1605
|
"aliases": [
|
|
1352
1606
|
"force:package:version:displayancestry"
|
|
1353
1607
|
],
|
|
1608
|
+
"args": {},
|
|
1609
|
+
"deprecateAliases": true,
|
|
1354
1610
|
"examples": [
|
|
1355
1611
|
"Display the ancestry tree for a package version with the specified alias, using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package package_version_alias",
|
|
1356
1612
|
"Similar to previous example, but display the output in DOT code:\n<%= config.bin %> <%= command.id %> --package package_version_alias --dot-code",
|
|
1357
1613
|
"Display the ancestry tree for a package with the specified ID, using the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package OHo... --target-dev-hub devhub@example.com",
|
|
1358
1614
|
"Display the ancestry tree of a package version with the specified ID, using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t..."
|
|
1359
1615
|
],
|
|
1360
|
-
"deprecateAliases": true,
|
|
1361
1616
|
"flags": {
|
|
1617
|
+
"json": {
|
|
1618
|
+
"description": "Format output as json.",
|
|
1619
|
+
"helpGroup": "GLOBAL",
|
|
1620
|
+
"name": "json",
|
|
1621
|
+
"allowNo": false,
|
|
1622
|
+
"type": "boolean"
|
|
1623
|
+
},
|
|
1362
1624
|
"loglevel": {
|
|
1363
|
-
"name": "loglevel",
|
|
1364
|
-
"type": "option",
|
|
1365
|
-
"hidden": true,
|
|
1366
|
-
"multiple": false,
|
|
1367
1625
|
"deprecated": {
|
|
1368
1626
|
"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."
|
|
1369
1627
|
},
|
|
1370
|
-
"
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
"name": "target-dev-hub",
|
|
1374
|
-
"type": "option",
|
|
1375
|
-
"char": "v",
|
|
1376
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1377
|
-
"required": true,
|
|
1628
|
+
"hidden": true,
|
|
1629
|
+
"name": "loglevel",
|
|
1630
|
+
"hasDynamicHelp": false,
|
|
1378
1631
|
"multiple": false,
|
|
1379
|
-
"
|
|
1632
|
+
"type": "option"
|
|
1633
|
+
},
|
|
1634
|
+
"target-dev-hub": {
|
|
1380
1635
|
"aliases": [
|
|
1381
1636
|
"targetdevhubusername",
|
|
1382
1637
|
"target-hub-org"
|
|
1383
|
-
]
|
|
1638
|
+
],
|
|
1639
|
+
"char": "v",
|
|
1640
|
+
"deprecateAliases": true,
|
|
1641
|
+
"name": "target-dev-hub",
|
|
1642
|
+
"noCacheDefault": true,
|
|
1643
|
+
"required": true,
|
|
1644
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1645
|
+
"hasDynamicHelp": true,
|
|
1646
|
+
"multiple": false,
|
|
1647
|
+
"type": "option"
|
|
1384
1648
|
},
|
|
1385
1649
|
"api-version": {
|
|
1386
|
-
"name": "api-version",
|
|
1387
|
-
"type": "option",
|
|
1388
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1389
|
-
"multiple": false,
|
|
1390
|
-
"deprecateAliases": true,
|
|
1391
1650
|
"aliases": [
|
|
1392
1651
|
"apiversion"
|
|
1393
|
-
]
|
|
1652
|
+
],
|
|
1653
|
+
"deprecateAliases": true,
|
|
1654
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1655
|
+
"name": "api-version",
|
|
1656
|
+
"hasDynamicHelp": false,
|
|
1657
|
+
"multiple": false,
|
|
1658
|
+
"type": "option"
|
|
1394
1659
|
},
|
|
1395
1660
|
"package": {
|
|
1396
|
-
"name": "package",
|
|
1397
|
-
"type": "option",
|
|
1398
1661
|
"char": "p",
|
|
1399
|
-
"summary": "ID or alias of the package (starts with 0Ho) or package version (starts with 04t) to display ancestry for.",
|
|
1400
1662
|
"description": "If you specify a package ID (starts with 0Ho) or alias, the ancestor tree for every package version associated with the package ID is displayed. If you specify a package version (starts with 04t) or alias, the ancestry tree of the specified package version is displayed.",
|
|
1663
|
+
"name": "package",
|
|
1401
1664
|
"required": true,
|
|
1665
|
+
"summary": "ID or alias of the package (starts with 0Ho) or package version (starts with 04t) to display ancestry for.",
|
|
1666
|
+
"hasDynamicHelp": false,
|
|
1402
1667
|
"multiple": false,
|
|
1403
|
-
"
|
|
1668
|
+
"type": "option"
|
|
1404
1669
|
},
|
|
1405
1670
|
"dot-code": {
|
|
1671
|
+
"aliases": [
|
|
1672
|
+
"dotcode"
|
|
1673
|
+
],
|
|
1674
|
+
"deprecateAliases": true,
|
|
1675
|
+
"description": "You can use the DOT code output in graph visualization software to create tree visualizations.",
|
|
1406
1676
|
"name": "dot-code",
|
|
1407
|
-
"type": "boolean",
|
|
1408
1677
|
"summary": "Display the ancestry tree in DOT code.",
|
|
1409
|
-
"description": "You can use the DOT code output in graph visualization software to create tree visualizations.",
|
|
1410
1678
|
"allowNo": false,
|
|
1411
|
-
"
|
|
1412
|
-
"aliases": [
|
|
1413
|
-
"dotcode"
|
|
1414
|
-
]
|
|
1679
|
+
"type": "boolean"
|
|
1415
1680
|
},
|
|
1416
1681
|
"verbose": {
|
|
1417
1682
|
"name": "verbose",
|
|
1418
|
-
"type": "boolean",
|
|
1419
1683
|
"summary": "Display both the package version ID (starts with 04t) and the version number (major.minor.patch.build) in the ancestry tree.",
|
|
1420
1684
|
"allowNo": false,
|
|
1421
|
-
"
|
|
1685
|
+
"type": "boolean"
|
|
1422
1686
|
}
|
|
1423
1687
|
},
|
|
1424
|
-
"
|
|
1688
|
+
"hasDynamicHelp": true,
|
|
1689
|
+
"hiddenAliases": [],
|
|
1690
|
+
"id": "package:version:displayancestry",
|
|
1691
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1692
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
1693
|
+
"pluginType": "core",
|
|
1694
|
+
"strict": true,
|
|
1695
|
+
"summary": "Display the ancestry tree for a 2GP managed package version.",
|
|
1696
|
+
"enableJsonFlag": true,
|
|
1697
|
+
"SF_ENV": "SF_ENV",
|
|
1425
1698
|
"requiresProject": true,
|
|
1426
|
-
"
|
|
1699
|
+
"isESM": false,
|
|
1700
|
+
"relativePath": [
|
|
1701
|
+
"lib",
|
|
1702
|
+
"commands",
|
|
1703
|
+
"package",
|
|
1704
|
+
"version",
|
|
1705
|
+
"displayancestry.js"
|
|
1706
|
+
]
|
|
1427
1707
|
},
|
|
1428
1708
|
"package:version:list": {
|
|
1429
|
-
"id": "package:version:list",
|
|
1430
|
-
"summary": "List all package versions in the Dev Hub org.",
|
|
1431
|
-
"description": "Description",
|
|
1432
|
-
"strict": true,
|
|
1433
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1434
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1435
|
-
"pluginType": "core",
|
|
1436
1709
|
"aliases": [
|
|
1437
1710
|
"force:package:version:list"
|
|
1438
1711
|
],
|
|
1712
|
+
"args": {},
|
|
1713
|
+
"deprecateAliases": true,
|
|
1714
|
+
"description": "Description",
|
|
1439
1715
|
"examples": [
|
|
1440
1716
|
"List package versions in your default Dev Hub org that were created in the last 3 days; show only the released versions and order the list using the PatchVersion field. Display extended details about each package version:\n<%= config.bin %> <%= command.id %> --verbose --created-last-days 3 --released --order-by PatchVersion",
|
|
1441
1717
|
"List the released package versions for the two specified packages that were modified today; use the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --packages 0Ho000000000000,0Ho000000000001 --released --modified-last-days 0 --target-dev-hub devhub@example.com",
|
|
@@ -1444,729 +1720,909 @@
|
|
|
1444
1720
|
"List released package versions that were created in the last 3 days in your default Dev Hub org; show limited details:\n<%= config.bin %> <%= command.id %> --concise --created-last-days 3 --released",
|
|
1445
1721
|
"List released package versions that were modified today for the two packages with specified aliases in your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --packages exp-mgr,exp-mgr-util --released --modified-last-days 0"
|
|
1446
1722
|
],
|
|
1447
|
-
"deprecateAliases": true,
|
|
1448
1723
|
"flags": {
|
|
1724
|
+
"json": {
|
|
1725
|
+
"description": "Format output as json.",
|
|
1726
|
+
"helpGroup": "GLOBAL",
|
|
1727
|
+
"name": "json",
|
|
1728
|
+
"allowNo": false,
|
|
1729
|
+
"type": "boolean"
|
|
1730
|
+
},
|
|
1449
1731
|
"loglevel": {
|
|
1450
|
-
"name": "loglevel",
|
|
1451
|
-
"type": "option",
|
|
1452
|
-
"hidden": true,
|
|
1453
|
-
"multiple": false,
|
|
1454
1732
|
"deprecated": {
|
|
1455
1733
|
"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."
|
|
1456
1734
|
},
|
|
1457
|
-
"
|
|
1735
|
+
"hidden": true,
|
|
1736
|
+
"name": "loglevel",
|
|
1737
|
+
"hasDynamicHelp": false,
|
|
1738
|
+
"multiple": false,
|
|
1739
|
+
"type": "option"
|
|
1458
1740
|
},
|
|
1459
1741
|
"target-dev-hub": {
|
|
1460
|
-
"name": "target-dev-hub",
|
|
1461
|
-
"type": "option",
|
|
1462
|
-
"char": "v",
|
|
1463
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1464
|
-
"required": true,
|
|
1465
|
-
"multiple": false,
|
|
1466
|
-
"deprecateAliases": true,
|
|
1467
1742
|
"aliases": [
|
|
1468
1743
|
"targetdevhubusername",
|
|
1469
1744
|
"target-hub-org"
|
|
1470
|
-
]
|
|
1745
|
+
],
|
|
1746
|
+
"char": "v",
|
|
1747
|
+
"deprecateAliases": true,
|
|
1748
|
+
"name": "target-dev-hub",
|
|
1749
|
+
"noCacheDefault": true,
|
|
1750
|
+
"required": true,
|
|
1751
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1752
|
+
"hasDynamicHelp": true,
|
|
1753
|
+
"multiple": false,
|
|
1754
|
+
"type": "option"
|
|
1471
1755
|
},
|
|
1472
1756
|
"api-version": {
|
|
1473
|
-
"name": "api-version",
|
|
1474
|
-
"type": "option",
|
|
1475
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1476
|
-
"multiple": false,
|
|
1477
|
-
"deprecateAliases": true,
|
|
1478
1757
|
"aliases": [
|
|
1479
1758
|
"apiversion"
|
|
1480
|
-
]
|
|
1759
|
+
],
|
|
1760
|
+
"deprecateAliases": true,
|
|
1761
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1762
|
+
"name": "api-version",
|
|
1763
|
+
"hasDynamicHelp": false,
|
|
1764
|
+
"multiple": false,
|
|
1765
|
+
"type": "option"
|
|
1481
1766
|
},
|
|
1482
1767
|
"created-last-days": {
|
|
1483
|
-
"
|
|
1484
|
-
|
|
1768
|
+
"aliases": [
|
|
1769
|
+
"createdlastdays"
|
|
1770
|
+
],
|
|
1485
1771
|
"char": "c",
|
|
1772
|
+
"deprecateAliases": true,
|
|
1773
|
+
"name": "created-last-days",
|
|
1486
1774
|
"summary": "Number of days since the request was created, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
1775
|
+
"hasDynamicHelp": false,
|
|
1487
1776
|
"multiple": false,
|
|
1488
|
-
"
|
|
1489
|
-
"aliases": [
|
|
1490
|
-
"createdlastdays"
|
|
1491
|
-
]
|
|
1777
|
+
"type": "option"
|
|
1492
1778
|
},
|
|
1493
1779
|
"concise": {
|
|
1494
1780
|
"name": "concise",
|
|
1495
|
-
"type": "boolean",
|
|
1496
1781
|
"summary": "Display limited package version details.",
|
|
1497
1782
|
"allowNo": false,
|
|
1498
|
-
"
|
|
1783
|
+
"type": "boolean"
|
|
1499
1784
|
},
|
|
1500
1785
|
"show-conversions-only": {
|
|
1501
1786
|
"name": "show-conversions-only",
|
|
1502
|
-
"type": "boolean",
|
|
1503
1787
|
"summary": "Filter the list output to display only converted package version.",
|
|
1504
1788
|
"allowNo": false,
|
|
1505
|
-
"
|
|
1789
|
+
"type": "boolean"
|
|
1506
1790
|
},
|
|
1507
1791
|
"modified-last-days": {
|
|
1508
|
-
"
|
|
1509
|
-
|
|
1792
|
+
"aliases": [
|
|
1793
|
+
"modifiedlastdays"
|
|
1794
|
+
],
|
|
1510
1795
|
"char": "m",
|
|
1796
|
+
"deprecateAliases": true,
|
|
1797
|
+
"name": "modified-last-days",
|
|
1511
1798
|
"summary": "Number of days since the items were modified, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
1799
|
+
"hasDynamicHelp": false,
|
|
1512
1800
|
"multiple": false,
|
|
1513
|
-
"
|
|
1514
|
-
"aliases": [
|
|
1515
|
-
"modifiedlastdays"
|
|
1516
|
-
]
|
|
1801
|
+
"type": "option"
|
|
1517
1802
|
},
|
|
1518
1803
|
"packages": {
|
|
1519
|
-
"name": "packages",
|
|
1520
|
-
"type": "option",
|
|
1521
1804
|
"char": "p",
|
|
1805
|
+
"name": "packages",
|
|
1522
1806
|
"summary": "Comma-delimited list of packages (aliases or 0Ho IDs) to list.",
|
|
1807
|
+
"hasDynamicHelp": false,
|
|
1523
1808
|
"multiple": false,
|
|
1524
|
-
"
|
|
1809
|
+
"type": "option"
|
|
1525
1810
|
},
|
|
1526
1811
|
"released": {
|
|
1527
|
-
"name": "released",
|
|
1528
|
-
"type": "boolean",
|
|
1529
1812
|
"char": "r",
|
|
1813
|
+
"name": "released",
|
|
1530
1814
|
"summary": "Display released versions only (IsReleased=true).",
|
|
1531
1815
|
"allowNo": false,
|
|
1532
|
-
"
|
|
1816
|
+
"type": "boolean"
|
|
1533
1817
|
},
|
|
1534
1818
|
"order-by": {
|
|
1535
|
-
"
|
|
1536
|
-
|
|
1819
|
+
"aliases": [
|
|
1820
|
+
"orderby"
|
|
1821
|
+
],
|
|
1537
1822
|
"char": "o",
|
|
1823
|
+
"deprecateAliases": true,
|
|
1824
|
+
"name": "order-by",
|
|
1538
1825
|
"summary": "Package version fields used to order the list.",
|
|
1826
|
+
"hasDynamicHelp": false,
|
|
1539
1827
|
"multiple": false,
|
|
1540
|
-
"
|
|
1541
|
-
"aliases": [
|
|
1542
|
-
"orderby"
|
|
1543
|
-
]
|
|
1828
|
+
"type": "option"
|
|
1544
1829
|
},
|
|
1545
1830
|
"verbose": {
|
|
1546
1831
|
"name": "verbose",
|
|
1547
|
-
"type": "boolean",
|
|
1548
1832
|
"summary": "Display extended package version details.",
|
|
1549
1833
|
"allowNo": false,
|
|
1550
|
-
"
|
|
1834
|
+
"type": "boolean"
|
|
1551
1835
|
}
|
|
1552
1836
|
},
|
|
1553
|
-
"
|
|
1554
|
-
"
|
|
1555
|
-
|
|
1556
|
-
"package:version:promote": {
|
|
1557
|
-
"id": "package:version:promote",
|
|
1558
|
-
"summary": "Promote a package version to released.",
|
|
1559
|
-
"description": "Supply the ID or alias of the package version you want to promote. Promotes the package version to released status.",
|
|
1560
|
-
"strict": true,
|
|
1561
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1837
|
+
"hasDynamicHelp": true,
|
|
1838
|
+
"hiddenAliases": [],
|
|
1839
|
+
"id": "package:version:list",
|
|
1562
1840
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1841
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
1563
1842
|
"pluginType": "core",
|
|
1843
|
+
"strict": true,
|
|
1844
|
+
"summary": "List all package versions in the Dev Hub org.",
|
|
1845
|
+
"enableJsonFlag": true,
|
|
1846
|
+
"SF_ENV": "SF_ENV",
|
|
1847
|
+
"isESM": false,
|
|
1848
|
+
"relativePath": [
|
|
1849
|
+
"lib",
|
|
1850
|
+
"commands",
|
|
1851
|
+
"package",
|
|
1852
|
+
"version",
|
|
1853
|
+
"list.js"
|
|
1854
|
+
]
|
|
1855
|
+
},
|
|
1856
|
+
"package:version:promote": {
|
|
1564
1857
|
"aliases": [
|
|
1565
1858
|
"force:package:version:promote"
|
|
1566
1859
|
],
|
|
1860
|
+
"args": {},
|
|
1861
|
+
"deprecateAliases": true,
|
|
1862
|
+
"description": "Supply the ID or alias of the package version you want to promote. Promotes the package version to released status.",
|
|
1567
1863
|
"examples": [
|
|
1568
1864
|
"Promote the package version with the specified ID to released; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
1569
1865
|
"Promote the package version with the specified alias to released; uses the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package awesome_package_alias --target-dev-hub devhub@example.com",
|
|
1570
1866
|
"Promote the package version with an alias that has spaces to released:\n<%= config.bin %> <%= command.id %> --package \"Awesome Package Alias\""
|
|
1571
1867
|
],
|
|
1572
|
-
"deprecateAliases": true,
|
|
1573
1868
|
"flags": {
|
|
1869
|
+
"json": {
|
|
1870
|
+
"description": "Format output as json.",
|
|
1871
|
+
"helpGroup": "GLOBAL",
|
|
1872
|
+
"name": "json",
|
|
1873
|
+
"allowNo": false,
|
|
1874
|
+
"type": "boolean"
|
|
1875
|
+
},
|
|
1574
1876
|
"loglevel": {
|
|
1575
|
-
"name": "loglevel",
|
|
1576
|
-
"type": "option",
|
|
1577
|
-
"hidden": true,
|
|
1578
|
-
"multiple": false,
|
|
1579
1877
|
"deprecated": {
|
|
1580
1878
|
"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."
|
|
1581
1879
|
},
|
|
1582
|
-
"
|
|
1880
|
+
"hidden": true,
|
|
1881
|
+
"name": "loglevel",
|
|
1882
|
+
"hasDynamicHelp": false,
|
|
1883
|
+
"multiple": false,
|
|
1884
|
+
"type": "option"
|
|
1583
1885
|
},
|
|
1584
1886
|
"target-dev-hub": {
|
|
1585
|
-
"name": "target-dev-hub",
|
|
1586
|
-
"type": "option",
|
|
1587
|
-
"char": "v",
|
|
1588
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1589
|
-
"required": true,
|
|
1590
|
-
"multiple": false,
|
|
1591
|
-
"deprecateAliases": true,
|
|
1592
1887
|
"aliases": [
|
|
1593
1888
|
"targetdevhubusername",
|
|
1594
1889
|
"target-hub-org"
|
|
1595
|
-
]
|
|
1890
|
+
],
|
|
1891
|
+
"char": "v",
|
|
1892
|
+
"deprecateAliases": true,
|
|
1893
|
+
"name": "target-dev-hub",
|
|
1894
|
+
"noCacheDefault": true,
|
|
1895
|
+
"required": true,
|
|
1896
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1897
|
+
"hasDynamicHelp": true,
|
|
1898
|
+
"multiple": false,
|
|
1899
|
+
"type": "option"
|
|
1596
1900
|
},
|
|
1597
1901
|
"api-version": {
|
|
1598
|
-
"name": "api-version",
|
|
1599
|
-
"type": "option",
|
|
1600
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1601
|
-
"multiple": false,
|
|
1602
|
-
"deprecateAliases": true,
|
|
1603
1902
|
"aliases": [
|
|
1604
1903
|
"apiversion"
|
|
1605
|
-
]
|
|
1904
|
+
],
|
|
1905
|
+
"deprecateAliases": true,
|
|
1906
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1907
|
+
"name": "api-version",
|
|
1908
|
+
"hasDynamicHelp": false,
|
|
1909
|
+
"multiple": false,
|
|
1910
|
+
"type": "option"
|
|
1606
1911
|
},
|
|
1607
1912
|
"package": {
|
|
1608
|
-
"name": "package",
|
|
1609
|
-
"type": "option",
|
|
1610
1913
|
"char": "p",
|
|
1611
|
-
"
|
|
1914
|
+
"name": "package",
|
|
1612
1915
|
"required": true,
|
|
1916
|
+
"summary": "ID (starts with 04t) or alias of the package version to promote.",
|
|
1917
|
+
"hasDynamicHelp": false,
|
|
1613
1918
|
"multiple": false,
|
|
1614
|
-
"
|
|
1919
|
+
"type": "option"
|
|
1615
1920
|
},
|
|
1616
1921
|
"no-prompt": {
|
|
1617
|
-
"
|
|
1618
|
-
|
|
1922
|
+
"aliases": [
|
|
1923
|
+
"noprompt"
|
|
1924
|
+
],
|
|
1619
1925
|
"char": "n",
|
|
1926
|
+
"deprecateAliases": true,
|
|
1927
|
+
"name": "no-prompt",
|
|
1620
1928
|
"summary": "Don't prompt to confirm setting the package version as released.",
|
|
1621
1929
|
"allowNo": false,
|
|
1622
|
-
"
|
|
1623
|
-
"aliases": [
|
|
1624
|
-
"noprompt"
|
|
1625
|
-
]
|
|
1930
|
+
"type": "boolean"
|
|
1626
1931
|
}
|
|
1627
1932
|
},
|
|
1628
|
-
"
|
|
1933
|
+
"hasDynamicHelp": true,
|
|
1934
|
+
"hiddenAliases": [],
|
|
1935
|
+
"id": "package:version:promote",
|
|
1936
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1937
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
1938
|
+
"pluginType": "core",
|
|
1939
|
+
"strict": true,
|
|
1940
|
+
"summary": "Promote a package version to released.",
|
|
1941
|
+
"enableJsonFlag": true,
|
|
1942
|
+
"SF_ENV": "SF_ENV",
|
|
1629
1943
|
"requiresProject": true,
|
|
1630
|
-
"
|
|
1944
|
+
"isESM": false,
|
|
1945
|
+
"relativePath": [
|
|
1946
|
+
"lib",
|
|
1947
|
+
"commands",
|
|
1948
|
+
"package",
|
|
1949
|
+
"version",
|
|
1950
|
+
"promote.js"
|
|
1951
|
+
]
|
|
1631
1952
|
},
|
|
1632
1953
|
"package:version:report": {
|
|
1633
|
-
"id": "package:version:report",
|
|
1634
|
-
"summary": "Retrieve details about a package version in the Dev Hub org.",
|
|
1635
|
-
"description": "To update package version values, run \"<%= config.bin %> package version update\".",
|
|
1636
|
-
"strict": true,
|
|
1637
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1638
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1639
|
-
"pluginType": "core",
|
|
1640
1954
|
"aliases": [
|
|
1641
1955
|
"force:package:version:report"
|
|
1642
1956
|
],
|
|
1957
|
+
"args": {},
|
|
1958
|
+
"deprecateAliases": true,
|
|
1959
|
+
"description": "To update package version values, run \"<%= config.bin %> package version update\".",
|
|
1643
1960
|
"examples": [
|
|
1644
1961
|
"Retrieve details about the package version with the specified ID from your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
1645
1962
|
"Retrieve details about the package version with the specified alias (that contains spaces) from the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --target-dev-hub devhub@example.com"
|
|
1646
1963
|
],
|
|
1647
|
-
"deprecateAliases": true,
|
|
1648
1964
|
"flags": {
|
|
1965
|
+
"json": {
|
|
1966
|
+
"description": "Format output as json.",
|
|
1967
|
+
"helpGroup": "GLOBAL",
|
|
1968
|
+
"name": "json",
|
|
1969
|
+
"allowNo": false,
|
|
1970
|
+
"type": "boolean"
|
|
1971
|
+
},
|
|
1649
1972
|
"loglevel": {
|
|
1650
|
-
"name": "loglevel",
|
|
1651
|
-
"type": "option",
|
|
1652
|
-
"hidden": true,
|
|
1653
|
-
"multiple": false,
|
|
1654
1973
|
"deprecated": {
|
|
1655
1974
|
"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."
|
|
1656
1975
|
},
|
|
1657
|
-
"
|
|
1976
|
+
"hidden": true,
|
|
1977
|
+
"name": "loglevel",
|
|
1978
|
+
"hasDynamicHelp": false,
|
|
1979
|
+
"multiple": false,
|
|
1980
|
+
"type": "option"
|
|
1658
1981
|
},
|
|
1659
1982
|
"target-dev-hub": {
|
|
1660
|
-
"name": "target-dev-hub",
|
|
1661
|
-
"type": "option",
|
|
1662
|
-
"char": "v",
|
|
1663
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1664
|
-
"required": true,
|
|
1665
|
-
"multiple": false,
|
|
1666
|
-
"deprecateAliases": true,
|
|
1667
1983
|
"aliases": [
|
|
1668
1984
|
"targetdevhubusername",
|
|
1669
1985
|
"target-hub-org"
|
|
1670
|
-
]
|
|
1986
|
+
],
|
|
1987
|
+
"char": "v",
|
|
1988
|
+
"deprecateAliases": true,
|
|
1989
|
+
"name": "target-dev-hub",
|
|
1990
|
+
"noCacheDefault": true,
|
|
1991
|
+
"required": true,
|
|
1992
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1993
|
+
"hasDynamicHelp": true,
|
|
1994
|
+
"multiple": false,
|
|
1995
|
+
"type": "option"
|
|
1671
1996
|
},
|
|
1672
1997
|
"api-version": {
|
|
1673
|
-
"name": "api-version",
|
|
1674
|
-
"type": "option",
|
|
1675
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1676
|
-
"multiple": false,
|
|
1677
|
-
"deprecateAliases": true,
|
|
1678
1998
|
"aliases": [
|
|
1679
1999
|
"apiversion"
|
|
1680
|
-
]
|
|
2000
|
+
],
|
|
2001
|
+
"deprecateAliases": true,
|
|
2002
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2003
|
+
"name": "api-version",
|
|
2004
|
+
"hasDynamicHelp": false,
|
|
2005
|
+
"multiple": false,
|
|
2006
|
+
"type": "option"
|
|
1681
2007
|
},
|
|
1682
2008
|
"package": {
|
|
1683
|
-
"name": "package",
|
|
1684
|
-
"type": "option",
|
|
1685
2009
|
"char": "p",
|
|
1686
|
-
"
|
|
2010
|
+
"name": "package",
|
|
1687
2011
|
"required": true,
|
|
2012
|
+
"summary": "ID (starts with 04t) or alias of the package to retrieve details for.",
|
|
2013
|
+
"hasDynamicHelp": false,
|
|
1688
2014
|
"multiple": false,
|
|
1689
|
-
"
|
|
2015
|
+
"type": "option"
|
|
1690
2016
|
},
|
|
1691
2017
|
"verbose": {
|
|
1692
2018
|
"name": "verbose",
|
|
1693
|
-
"type": "boolean",
|
|
1694
2019
|
"summary": "Display extended package version details.",
|
|
1695
2020
|
"allowNo": false,
|
|
1696
|
-
"
|
|
2021
|
+
"type": "boolean"
|
|
1697
2022
|
}
|
|
1698
2023
|
},
|
|
1699
|
-
"
|
|
2024
|
+
"hasDynamicHelp": true,
|
|
2025
|
+
"hiddenAliases": [],
|
|
2026
|
+
"id": "package:version:report",
|
|
2027
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2028
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2029
|
+
"pluginType": "core",
|
|
2030
|
+
"strict": true,
|
|
2031
|
+
"summary": "Retrieve details about a package version in the Dev Hub org.",
|
|
2032
|
+
"enableJsonFlag": true,
|
|
2033
|
+
"SF_ENV": "SF_ENV",
|
|
1700
2034
|
"requiresProject": true,
|
|
1701
|
-
"
|
|
2035
|
+
"isESM": false,
|
|
2036
|
+
"relativePath": [
|
|
2037
|
+
"lib",
|
|
2038
|
+
"commands",
|
|
2039
|
+
"package",
|
|
2040
|
+
"version",
|
|
2041
|
+
"report.js"
|
|
2042
|
+
]
|
|
1702
2043
|
},
|
|
1703
2044
|
"package:version:retrieve": {
|
|
1704
|
-
"id": "package:version:retrieve",
|
|
1705
|
-
"summary": "Retrieve package metadata for a specified package version.",
|
|
1706
|
-
"description": "Retrieving a package version downloads the metadata into the directory you specify.\n\nYou can retrieve metadata for a second- or first-generation managed package, or an unlocked package.\n\nSpecify the subscriber package version ID (starts with 04t) and the path to an empty directory when you run this command.",
|
|
1707
|
-
"strict": true,
|
|
1708
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1709
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1710
|
-
"pluginType": "core",
|
|
1711
|
-
"hidden": true,
|
|
1712
2045
|
"aliases": [],
|
|
2046
|
+
"args": {},
|
|
2047
|
+
"description": "Retrieving a package version downloads the metadata into the directory you specify.\n\nYou can retrieve metadata for a second- or first-generation managed package, or an unlocked package.\n\nSpecify the subscriber package version ID (starts with 04t) and the path to an empty directory when you run this command.",
|
|
1713
2048
|
"examples": [
|
|
1714
2049
|
"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."
|
|
1715
2050
|
],
|
|
1716
2051
|
"flags": {
|
|
2052
|
+
"json": {
|
|
2053
|
+
"description": "Format output as json.",
|
|
2054
|
+
"helpGroup": "GLOBAL",
|
|
2055
|
+
"name": "json",
|
|
2056
|
+
"allowNo": false,
|
|
2057
|
+
"type": "boolean"
|
|
2058
|
+
},
|
|
1717
2059
|
"loglevel": {
|
|
1718
|
-
"name": "loglevel",
|
|
1719
|
-
"type": "option",
|
|
1720
|
-
"hidden": true,
|
|
1721
|
-
"multiple": false,
|
|
1722
2060
|
"deprecated": {
|
|
1723
2061
|
"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."
|
|
1724
|
-
}
|
|
2062
|
+
},
|
|
2063
|
+
"hidden": true,
|
|
2064
|
+
"name": "loglevel",
|
|
2065
|
+
"hasDynamicHelp": false,
|
|
2066
|
+
"multiple": false,
|
|
2067
|
+
"type": "option"
|
|
1725
2068
|
},
|
|
1726
2069
|
"api-version": {
|
|
1727
|
-
"name": "api-version",
|
|
1728
|
-
"type": "option",
|
|
1729
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1730
|
-
"multiple": false,
|
|
1731
2070
|
"aliases": [
|
|
1732
2071
|
"apiversion"
|
|
1733
|
-
]
|
|
2072
|
+
],
|
|
2073
|
+
"deprecateAliases": true,
|
|
2074
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2075
|
+
"name": "api-version",
|
|
2076
|
+
"hasDynamicHelp": false,
|
|
2077
|
+
"multiple": false,
|
|
2078
|
+
"type": "option"
|
|
1734
2079
|
},
|
|
1735
2080
|
"target-org": {
|
|
1736
|
-
"name": "target-org",
|
|
1737
|
-
"type": "option",
|
|
1738
|
-
"char": "o",
|
|
1739
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1740
|
-
"required": true,
|
|
1741
|
-
"multiple": false,
|
|
1742
2081
|
"aliases": [
|
|
1743
2082
|
"targetusername",
|
|
1744
2083
|
"u"
|
|
1745
|
-
]
|
|
2084
|
+
],
|
|
2085
|
+
"char": "o",
|
|
2086
|
+
"deprecateAliases": true,
|
|
2087
|
+
"name": "target-org",
|
|
2088
|
+
"noCacheDefault": true,
|
|
2089
|
+
"required": true,
|
|
2090
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2091
|
+
"hasDynamicHelp": true,
|
|
2092
|
+
"multiple": false,
|
|
2093
|
+
"type": "option"
|
|
1746
2094
|
},
|
|
1747
2095
|
"package": {
|
|
1748
|
-
"name": "package",
|
|
1749
|
-
"type": "option",
|
|
1750
2096
|
"char": "p",
|
|
1751
|
-
"
|
|
2097
|
+
"name": "package",
|
|
1752
2098
|
"required": true,
|
|
1753
|
-
"
|
|
2099
|
+
"summary": "Subscriber package version ID (starts with 04t).",
|
|
2100
|
+
"hasDynamicHelp": false,
|
|
2101
|
+
"multiple": false,
|
|
2102
|
+
"type": "option"
|
|
1754
2103
|
},
|
|
1755
2104
|
"output-dir": {
|
|
1756
|
-
"name": "output-dir",
|
|
1757
|
-
"type": "option",
|
|
1758
2105
|
"char": "d",
|
|
2106
|
+
"name": "output-dir",
|
|
1759
2107
|
"summary": "Path within your Salesforce DX project directory in which to download the metadata. This directory must be empty.",
|
|
2108
|
+
"default": "force-app",
|
|
2109
|
+
"hasDynamicHelp": false,
|
|
1760
2110
|
"multiple": false,
|
|
1761
|
-
"
|
|
2111
|
+
"type": "option"
|
|
1762
2112
|
}
|
|
1763
2113
|
},
|
|
1764
|
-
"
|
|
2114
|
+
"hasDynamicHelp": true,
|
|
2115
|
+
"hidden": true,
|
|
2116
|
+
"hiddenAliases": [],
|
|
2117
|
+
"id": "package:version:retrieve",
|
|
2118
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2119
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2120
|
+
"pluginType": "core",
|
|
2121
|
+
"strict": true,
|
|
2122
|
+
"summary": "Retrieve package metadata for a specified package version.",
|
|
2123
|
+
"enableJsonFlag": true,
|
|
2124
|
+
"SF_ENV": "SF_ENV",
|
|
1765
2125
|
"requiresProject": true,
|
|
1766
|
-
"
|
|
2126
|
+
"isESM": false,
|
|
2127
|
+
"relativePath": [
|
|
2128
|
+
"lib",
|
|
2129
|
+
"commands",
|
|
2130
|
+
"package",
|
|
2131
|
+
"version",
|
|
2132
|
+
"retrieve.js"
|
|
2133
|
+
]
|
|
1767
2134
|
},
|
|
1768
2135
|
"package:version:update": {
|
|
1769
|
-
"id": "package:version:update",
|
|
1770
|
-
"summary": "Update a package version.",
|
|
1771
|
-
"description": "Specify a new value for each option you want to update.\n\nTo display details about a package version, run \"<%= config.bin %> package version display\".",
|
|
1772
|
-
"strict": true,
|
|
1773
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1774
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1775
|
-
"pluginType": "core",
|
|
1776
2136
|
"aliases": [
|
|
1777
2137
|
"force:package:version:update"
|
|
1778
2138
|
],
|
|
2139
|
+
"args": {},
|
|
2140
|
+
"deprecateAliases": true,
|
|
2141
|
+
"description": "Specify a new value for each option you want to update.\n\nTo display details about a package version, run \"<%= config.bin %> package version display\".",
|
|
1779
2142
|
"examples": [
|
|
1780
2143
|
"Update the package version that has the specified alias (that contains spaces) with a new installation key \"password123\"; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --installation-key password123",
|
|
1781
2144
|
"Update the package version that has the specified ID with a new branch and tag; use the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package 04t... --branch main --tag 'Release 1.0.7' --target-dev-hub devhub@example.com",
|
|
1782
2145
|
"Update the package version that has the specified ID with a new description:\n<%= config.bin %> <%= command.id %> --package 04t... --version-description \"New Package Version Description\""
|
|
1783
2146
|
],
|
|
1784
|
-
"deprecateAliases": true,
|
|
1785
2147
|
"flags": {
|
|
2148
|
+
"json": {
|
|
2149
|
+
"description": "Format output as json.",
|
|
2150
|
+
"helpGroup": "GLOBAL",
|
|
2151
|
+
"name": "json",
|
|
2152
|
+
"allowNo": false,
|
|
2153
|
+
"type": "boolean"
|
|
2154
|
+
},
|
|
1786
2155
|
"loglevel": {
|
|
1787
|
-
"name": "loglevel",
|
|
1788
|
-
"type": "option",
|
|
1789
|
-
"hidden": true,
|
|
1790
|
-
"multiple": false,
|
|
1791
2156
|
"deprecated": {
|
|
1792
2157
|
"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."
|
|
1793
2158
|
},
|
|
1794
|
-
"
|
|
2159
|
+
"hidden": true,
|
|
2160
|
+
"name": "loglevel",
|
|
2161
|
+
"hasDynamicHelp": false,
|
|
2162
|
+
"multiple": false,
|
|
2163
|
+
"type": "option"
|
|
1795
2164
|
},
|
|
1796
2165
|
"target-dev-hub": {
|
|
1797
|
-
"name": "target-dev-hub",
|
|
1798
|
-
"type": "option",
|
|
1799
|
-
"char": "v",
|
|
1800
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1801
|
-
"required": true,
|
|
1802
|
-
"multiple": false,
|
|
1803
|
-
"deprecateAliases": true,
|
|
1804
2166
|
"aliases": [
|
|
1805
2167
|
"targetdevhubusername",
|
|
1806
2168
|
"target-hub-org"
|
|
1807
|
-
]
|
|
2169
|
+
],
|
|
2170
|
+
"char": "v",
|
|
2171
|
+
"deprecateAliases": true,
|
|
2172
|
+
"name": "target-dev-hub",
|
|
2173
|
+
"noCacheDefault": true,
|
|
2174
|
+
"required": true,
|
|
2175
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2176
|
+
"hasDynamicHelp": true,
|
|
2177
|
+
"multiple": false,
|
|
2178
|
+
"type": "option"
|
|
1808
2179
|
},
|
|
1809
2180
|
"api-version": {
|
|
1810
|
-
"name": "api-version",
|
|
1811
|
-
"type": "option",
|
|
1812
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1813
|
-
"multiple": false,
|
|
1814
|
-
"deprecateAliases": true,
|
|
1815
2181
|
"aliases": [
|
|
1816
2182
|
"apiversion"
|
|
1817
|
-
]
|
|
2183
|
+
],
|
|
2184
|
+
"deprecateAliases": true,
|
|
2185
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2186
|
+
"name": "api-version",
|
|
2187
|
+
"hasDynamicHelp": false,
|
|
2188
|
+
"multiple": false,
|
|
2189
|
+
"type": "option"
|
|
1818
2190
|
},
|
|
1819
2191
|
"package": {
|
|
1820
|
-
"name": "package",
|
|
1821
|
-
"type": "option",
|
|
1822
2192
|
"char": "p",
|
|
1823
|
-
"
|
|
2193
|
+
"name": "package",
|
|
1824
2194
|
"required": true,
|
|
2195
|
+
"summary": "ID (starts with 04t) or alias of the package to update a version of.",
|
|
2196
|
+
"hasDynamicHelp": false,
|
|
1825
2197
|
"multiple": false,
|
|
1826
|
-
"
|
|
2198
|
+
"type": "option"
|
|
1827
2199
|
},
|
|
1828
2200
|
"version-name": {
|
|
1829
|
-
"
|
|
1830
|
-
|
|
2201
|
+
"aliases": [
|
|
2202
|
+
"versionname"
|
|
2203
|
+
],
|
|
1831
2204
|
"char": "a",
|
|
2205
|
+
"deprecateAliases": true,
|
|
2206
|
+
"name": "version-name",
|
|
1832
2207
|
"summary": "New package version name.",
|
|
2208
|
+
"hasDynamicHelp": false,
|
|
1833
2209
|
"multiple": false,
|
|
1834
|
-
"
|
|
1835
|
-
"aliases": [
|
|
1836
|
-
"versionname"
|
|
1837
|
-
]
|
|
2210
|
+
"type": "option"
|
|
1838
2211
|
},
|
|
1839
2212
|
"version-description": {
|
|
1840
|
-
"
|
|
1841
|
-
|
|
2213
|
+
"aliases": [
|
|
2214
|
+
"versiondescription"
|
|
2215
|
+
],
|
|
1842
2216
|
"char": "e",
|
|
2217
|
+
"deprecateAliases": true,
|
|
2218
|
+
"name": "version-description",
|
|
1843
2219
|
"summary": "New package version description.",
|
|
2220
|
+
"hasDynamicHelp": false,
|
|
1844
2221
|
"multiple": false,
|
|
1845
|
-
"
|
|
1846
|
-
"aliases": [
|
|
1847
|
-
"versiondescription"
|
|
1848
|
-
]
|
|
2222
|
+
"type": "option"
|
|
1849
2223
|
},
|
|
1850
2224
|
"branch": {
|
|
1851
|
-
"name": "branch",
|
|
1852
|
-
"type": "option",
|
|
1853
2225
|
"char": "b",
|
|
2226
|
+
"name": "branch",
|
|
1854
2227
|
"summary": "New package version branch.",
|
|
2228
|
+
"hasDynamicHelp": false,
|
|
1855
2229
|
"multiple": false,
|
|
1856
|
-
"
|
|
2230
|
+
"type": "option"
|
|
1857
2231
|
},
|
|
1858
2232
|
"tag": {
|
|
1859
|
-
"name": "tag",
|
|
1860
|
-
"type": "option",
|
|
1861
2233
|
"char": "t",
|
|
2234
|
+
"name": "tag",
|
|
1862
2235
|
"summary": "New package version tag.",
|
|
2236
|
+
"hasDynamicHelp": false,
|
|
1863
2237
|
"multiple": false,
|
|
1864
|
-
"
|
|
2238
|
+
"type": "option"
|
|
1865
2239
|
},
|
|
1866
2240
|
"installation-key": {
|
|
1867
|
-
"
|
|
1868
|
-
|
|
2241
|
+
"aliases": [
|
|
2242
|
+
"installationkey"
|
|
2243
|
+
],
|
|
1869
2244
|
"char": "k",
|
|
2245
|
+
"deprecateAliases": true,
|
|
2246
|
+
"name": "installation-key",
|
|
1870
2247
|
"summary": "New installation key for key-protected package (default: null)",
|
|
2248
|
+
"hasDynamicHelp": false,
|
|
1871
2249
|
"multiple": false,
|
|
1872
|
-
"
|
|
1873
|
-
"aliases": [
|
|
1874
|
-
"installationkey"
|
|
1875
|
-
]
|
|
2250
|
+
"type": "option"
|
|
1876
2251
|
}
|
|
1877
2252
|
},
|
|
1878
|
-
"
|
|
2253
|
+
"hasDynamicHelp": true,
|
|
2254
|
+
"hiddenAliases": [],
|
|
2255
|
+
"id": "package:version:update",
|
|
2256
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2257
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2258
|
+
"pluginType": "core",
|
|
2259
|
+
"strict": true,
|
|
2260
|
+
"summary": "Update a package version.",
|
|
2261
|
+
"enableJsonFlag": true,
|
|
2262
|
+
"SF_ENV": "SF_ENV",
|
|
1879
2263
|
"requiresProject": true,
|
|
1880
|
-
"
|
|
2264
|
+
"isESM": false,
|
|
2265
|
+
"relativePath": [
|
|
2266
|
+
"lib",
|
|
2267
|
+
"commands",
|
|
2268
|
+
"package",
|
|
2269
|
+
"version",
|
|
2270
|
+
"update.js"
|
|
2271
|
+
]
|
|
1881
2272
|
},
|
|
1882
2273
|
"package1:version:create": {
|
|
1883
|
-
"id": "package1:version:create",
|
|
1884
|
-
"summary": "Create a first-generation package version in the release org.",
|
|
1885
|
-
"description": "The package version is based on the contents of the specified metadata package. Omit --managed-released if you want to create an unmanaged package version.",
|
|
1886
|
-
"strict": true,
|
|
1887
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1888
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1889
|
-
"pluginType": "core",
|
|
1890
2274
|
"aliases": [
|
|
1891
2275
|
"force:package1:version:create"
|
|
1892
2276
|
],
|
|
2277
|
+
"args": {},
|
|
2278
|
+
"deprecateAliases": true,
|
|
2279
|
+
"description": "The package version is based on the contents of the specified metadata package. Omit --managed-released if you want to create an unmanaged package version.",
|
|
1893
2280
|
"examples": [
|
|
1894
2281
|
"Create a first-generation package version from the package with the specified ID and name the package version \"example\"; use your default org:\n<%= config.bin %> <%= command.id %> --package-id 033... --name example",
|
|
1895
2282
|
"Same as previous example, but provide a description and wait for 30 minutes for the package version to be created; use the specified org:\n<%= config.bin %> <%= command.id %> --package-id 033... --name example --description \"example description\" --wait 30 --target-org myorg@example.com"
|
|
1896
2283
|
],
|
|
1897
|
-
"deprecateAliases": true,
|
|
1898
2284
|
"flags": {
|
|
2285
|
+
"json": {
|
|
2286
|
+
"description": "Format output as json.",
|
|
2287
|
+
"helpGroup": "GLOBAL",
|
|
2288
|
+
"name": "json",
|
|
2289
|
+
"allowNo": false,
|
|
2290
|
+
"type": "boolean"
|
|
2291
|
+
},
|
|
1899
2292
|
"loglevel": {
|
|
1900
|
-
"name": "loglevel",
|
|
1901
|
-
"type": "option",
|
|
1902
|
-
"hidden": true,
|
|
1903
|
-
"multiple": false,
|
|
1904
2293
|
"deprecated": {
|
|
1905
2294
|
"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."
|
|
1906
2295
|
},
|
|
1907
|
-
"
|
|
2296
|
+
"hidden": true,
|
|
2297
|
+
"name": "loglevel",
|
|
2298
|
+
"hasDynamicHelp": false,
|
|
2299
|
+
"multiple": false,
|
|
2300
|
+
"type": "option"
|
|
1908
2301
|
},
|
|
1909
2302
|
"target-org": {
|
|
1910
|
-
"name": "target-org",
|
|
1911
|
-
"type": "option",
|
|
1912
|
-
"char": "o",
|
|
1913
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1914
|
-
"required": true,
|
|
1915
|
-
"multiple": false,
|
|
1916
|
-
"deprecateAliases": true,
|
|
1917
2303
|
"aliases": [
|
|
1918
2304
|
"targetusername",
|
|
1919
2305
|
"u"
|
|
1920
|
-
]
|
|
2306
|
+
],
|
|
2307
|
+
"char": "o",
|
|
2308
|
+
"deprecateAliases": true,
|
|
2309
|
+
"name": "target-org",
|
|
2310
|
+
"noCacheDefault": true,
|
|
2311
|
+
"required": true,
|
|
2312
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2313
|
+
"hasDynamicHelp": true,
|
|
2314
|
+
"multiple": false,
|
|
2315
|
+
"type": "option"
|
|
1921
2316
|
},
|
|
1922
2317
|
"api-version": {
|
|
1923
|
-
"name": "api-version",
|
|
1924
|
-
"type": "option",
|
|
1925
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1926
|
-
"multiple": false,
|
|
1927
|
-
"deprecateAliases": true,
|
|
1928
2318
|
"aliases": [
|
|
1929
2319
|
"apiversion"
|
|
1930
|
-
]
|
|
2320
|
+
],
|
|
2321
|
+
"deprecateAliases": true,
|
|
2322
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2323
|
+
"name": "api-version",
|
|
2324
|
+
"hasDynamicHelp": false,
|
|
2325
|
+
"multiple": false,
|
|
2326
|
+
"type": "option"
|
|
1931
2327
|
},
|
|
1932
2328
|
"package-id": {
|
|
1933
|
-
"
|
|
1934
|
-
|
|
2329
|
+
"aliases": [
|
|
2330
|
+
"packageid"
|
|
2331
|
+
],
|
|
1935
2332
|
"char": "i",
|
|
1936
|
-
"
|
|
2333
|
+
"deprecateAliases": true,
|
|
2334
|
+
"name": "package-id",
|
|
1937
2335
|
"required": true,
|
|
2336
|
+
"summary": "ID of the metadata package (starts with 033) of which you’re creating a new version.",
|
|
2337
|
+
"hasDynamicHelp": false,
|
|
1938
2338
|
"multiple": false,
|
|
1939
|
-
"
|
|
1940
|
-
"aliases": [
|
|
1941
|
-
"packageid"
|
|
1942
|
-
]
|
|
2339
|
+
"type": "option"
|
|
1943
2340
|
},
|
|
1944
2341
|
"name": {
|
|
1945
|
-
"name": "name",
|
|
1946
|
-
"type": "option",
|
|
1947
2342
|
"char": "n",
|
|
1948
|
-
"
|
|
2343
|
+
"name": "name",
|
|
1949
2344
|
"required": true,
|
|
2345
|
+
"summary": "Package version name.",
|
|
2346
|
+
"hasDynamicHelp": false,
|
|
1950
2347
|
"multiple": false,
|
|
1951
|
-
"
|
|
2348
|
+
"type": "option"
|
|
1952
2349
|
},
|
|
1953
2350
|
"description": {
|
|
1954
|
-
"name": "description",
|
|
1955
|
-
"type": "option",
|
|
1956
2351
|
"char": "d",
|
|
2352
|
+
"name": "description",
|
|
1957
2353
|
"summary": "Package version description.",
|
|
2354
|
+
"hasDynamicHelp": false,
|
|
1958
2355
|
"multiple": false,
|
|
1959
|
-
"
|
|
2356
|
+
"type": "option"
|
|
1960
2357
|
},
|
|
1961
2358
|
"version": {
|
|
1962
|
-
"name": "version",
|
|
1963
|
-
"type": "option",
|
|
1964
2359
|
"char": "v",
|
|
2360
|
+
"name": "version",
|
|
1965
2361
|
"summary": "Package version in major.minor format, for example, 3.2.",
|
|
2362
|
+
"hasDynamicHelp": false,
|
|
1966
2363
|
"multiple": false,
|
|
1967
|
-
"
|
|
2364
|
+
"type": "option"
|
|
1968
2365
|
},
|
|
1969
2366
|
"managed-released": {
|
|
1970
|
-
"
|
|
1971
|
-
|
|
2367
|
+
"aliases": [
|
|
2368
|
+
"managedrelease"
|
|
2369
|
+
],
|
|
1972
2370
|
"char": "m",
|
|
1973
|
-
"
|
|
2371
|
+
"deprecateAliases": true,
|
|
1974
2372
|
"description": "To create a beta version, don’t include this parameter.",
|
|
2373
|
+
"name": "managed-released",
|
|
2374
|
+
"summary": "Create a managed package version.",
|
|
1975
2375
|
"allowNo": false,
|
|
1976
|
-
"
|
|
1977
|
-
"aliases": [
|
|
1978
|
-
"managedrelease"
|
|
1979
|
-
]
|
|
2376
|
+
"type": "boolean"
|
|
1980
2377
|
},
|
|
1981
2378
|
"release-notes-url": {
|
|
1982
|
-
"
|
|
1983
|
-
|
|
2379
|
+
"aliases": [
|
|
2380
|
+
"releasenotesurl"
|
|
2381
|
+
],
|
|
1984
2382
|
"char": "r",
|
|
1985
|
-
"
|
|
2383
|
+
"deprecateAliases": true,
|
|
1986
2384
|
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
2385
|
+
"name": "release-notes-url",
|
|
2386
|
+
"summary": "Release notes URL.",
|
|
2387
|
+
"hasDynamicHelp": false,
|
|
1987
2388
|
"multiple": false,
|
|
1988
|
-
"
|
|
1989
|
-
"aliases": [
|
|
1990
|
-
"releasenotesurl"
|
|
1991
|
-
]
|
|
2389
|
+
"type": "option"
|
|
1992
2390
|
},
|
|
1993
2391
|
"post-install-url": {
|
|
1994
|
-
"
|
|
1995
|
-
|
|
2392
|
+
"aliases": [
|
|
2393
|
+
"postinstallurl"
|
|
2394
|
+
],
|
|
1996
2395
|
"char": "p",
|
|
1997
|
-
"
|
|
2396
|
+
"deprecateAliases": true,
|
|
1998
2397
|
"description": "The contents of the post-installation instructions URL are displayed in the UI after installation of the package version.",
|
|
2398
|
+
"name": "post-install-url",
|
|
2399
|
+
"summary": "Post install URL.",
|
|
2400
|
+
"hasDynamicHelp": false,
|
|
1999
2401
|
"multiple": false,
|
|
2000
|
-
"
|
|
2001
|
-
"aliases": [
|
|
2002
|
-
"postinstallurl"
|
|
2003
|
-
]
|
|
2402
|
+
"type": "option"
|
|
2004
2403
|
},
|
|
2005
2404
|
"installation-key": {
|
|
2006
|
-
"
|
|
2007
|
-
|
|
2405
|
+
"aliases": [
|
|
2406
|
+
"installationkey"
|
|
2407
|
+
],
|
|
2008
2408
|
"char": "k",
|
|
2409
|
+
"deprecateAliases": true,
|
|
2410
|
+
"name": "installation-key",
|
|
2009
2411
|
"summary": "Installation key for key-protected package (default: null).",
|
|
2412
|
+
"hasDynamicHelp": false,
|
|
2010
2413
|
"multiple": false,
|
|
2011
|
-
"
|
|
2012
|
-
"aliases": [
|
|
2013
|
-
"installationkey"
|
|
2014
|
-
]
|
|
2414
|
+
"type": "option"
|
|
2015
2415
|
},
|
|
2016
2416
|
"wait": {
|
|
2017
|
-
"name": "wait",
|
|
2018
|
-
"type": "option",
|
|
2019
2417
|
"char": "w",
|
|
2418
|
+
"name": "wait",
|
|
2020
2419
|
"summary": "Minutes to wait for the package version to be created (default: 2 minutes).",
|
|
2420
|
+
"hasDynamicHelp": false,
|
|
2021
2421
|
"multiple": false,
|
|
2022
|
-
"
|
|
2422
|
+
"type": "option"
|
|
2023
2423
|
}
|
|
2024
2424
|
},
|
|
2025
|
-
"
|
|
2425
|
+
"hasDynamicHelp": true,
|
|
2426
|
+
"hiddenAliases": [],
|
|
2427
|
+
"id": "package1:version:create",
|
|
2428
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2429
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2430
|
+
"pluginType": "core",
|
|
2431
|
+
"strict": true,
|
|
2432
|
+
"summary": "Create a first-generation package version in the release org.",
|
|
2433
|
+
"enableJsonFlag": true,
|
|
2434
|
+
"SF_ENV": "SF_ENV",
|
|
2026
2435
|
"requiresProject": true,
|
|
2027
|
-
"
|
|
2436
|
+
"isESM": false,
|
|
2437
|
+
"relativePath": [
|
|
2438
|
+
"lib",
|
|
2439
|
+
"commands",
|
|
2440
|
+
"package1",
|
|
2441
|
+
"version",
|
|
2442
|
+
"create.js"
|
|
2443
|
+
]
|
|
2028
2444
|
},
|
|
2029
2445
|
"package1:version:display": {
|
|
2030
|
-
"id": "package1:version:display",
|
|
2031
|
-
"summary": "Display details about a first-generation package version.",
|
|
2032
|
-
"strict": true,
|
|
2033
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
2034
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2035
|
-
"pluginType": "core",
|
|
2036
2446
|
"aliases": [
|
|
2037
2447
|
"force:package1:version:display"
|
|
2038
2448
|
],
|
|
2449
|
+
"args": {},
|
|
2450
|
+
"deprecateAliases": true,
|
|
2039
2451
|
"examples": [
|
|
2040
2452
|
"Display details about the first-generation package version with the specified ID in your default org:\n<%= config.bin %> <%= command.id %> --package-version-id 04t...",
|
|
2041
2453
|
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --package-version-id 04t... --target-org myorg@example.com"
|
|
2042
2454
|
],
|
|
2043
|
-
"deprecateAliases": true,
|
|
2044
2455
|
"flags": {
|
|
2456
|
+
"json": {
|
|
2457
|
+
"description": "Format output as json.",
|
|
2458
|
+
"helpGroup": "GLOBAL",
|
|
2459
|
+
"name": "json",
|
|
2460
|
+
"allowNo": false,
|
|
2461
|
+
"type": "boolean"
|
|
2462
|
+
},
|
|
2045
2463
|
"loglevel": {
|
|
2046
|
-
"name": "loglevel",
|
|
2047
|
-
"type": "option",
|
|
2048
|
-
"hidden": true,
|
|
2049
|
-
"multiple": false,
|
|
2050
2464
|
"deprecated": {
|
|
2051
2465
|
"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."
|
|
2052
2466
|
},
|
|
2053
|
-
"
|
|
2467
|
+
"hidden": true,
|
|
2468
|
+
"name": "loglevel",
|
|
2469
|
+
"hasDynamicHelp": false,
|
|
2470
|
+
"multiple": false,
|
|
2471
|
+
"type": "option"
|
|
2054
2472
|
},
|
|
2055
2473
|
"target-org": {
|
|
2056
|
-
"name": "target-org",
|
|
2057
|
-
"type": "option",
|
|
2058
|
-
"char": "o",
|
|
2059
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2060
|
-
"required": true,
|
|
2061
|
-
"multiple": false,
|
|
2062
|
-
"deprecateAliases": true,
|
|
2063
2474
|
"aliases": [
|
|
2064
2475
|
"targetusername",
|
|
2065
2476
|
"u"
|
|
2066
|
-
]
|
|
2067
|
-
|
|
2068
|
-
"api-version": {
|
|
2069
|
-
"name": "api-version",
|
|
2070
|
-
"type": "option",
|
|
2071
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2072
|
-
"multiple": false,
|
|
2477
|
+
],
|
|
2478
|
+
"char": "o",
|
|
2073
2479
|
"deprecateAliases": true,
|
|
2480
|
+
"name": "target-org",
|
|
2481
|
+
"noCacheDefault": true,
|
|
2482
|
+
"required": true,
|
|
2483
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2484
|
+
"hasDynamicHelp": true,
|
|
2485
|
+
"multiple": false,
|
|
2486
|
+
"type": "option"
|
|
2487
|
+
},
|
|
2488
|
+
"api-version": {
|
|
2074
2489
|
"aliases": [
|
|
2075
2490
|
"apiversion"
|
|
2076
|
-
]
|
|
2491
|
+
],
|
|
2492
|
+
"deprecateAliases": true,
|
|
2493
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2494
|
+
"name": "api-version",
|
|
2495
|
+
"hasDynamicHelp": false,
|
|
2496
|
+
"multiple": false,
|
|
2497
|
+
"type": "option"
|
|
2077
2498
|
},
|
|
2078
2499
|
"package-version-id": {
|
|
2079
|
-
"
|
|
2080
|
-
|
|
2500
|
+
"aliases": [
|
|
2501
|
+
"packageversionid"
|
|
2502
|
+
],
|
|
2081
2503
|
"char": "i",
|
|
2082
|
-
"
|
|
2504
|
+
"deprecateAliases": true,
|
|
2505
|
+
"name": "package-version-id",
|
|
2083
2506
|
"required": true,
|
|
2507
|
+
"summary": "ID (starts with 04t) of the metadata package version whose details you want to display.",
|
|
2508
|
+
"hasDynamicHelp": false,
|
|
2084
2509
|
"multiple": false,
|
|
2085
|
-
"
|
|
2086
|
-
"aliases": [
|
|
2087
|
-
"packageversionid"
|
|
2088
|
-
]
|
|
2510
|
+
"type": "option"
|
|
2089
2511
|
}
|
|
2090
2512
|
},
|
|
2091
|
-
"
|
|
2092
|
-
"
|
|
2093
|
-
|
|
2094
|
-
"package1:version:list": {
|
|
2095
|
-
"id": "package1:version:list",
|
|
2096
|
-
"summary": "List package versions for the specified first-generation package or for the org.",
|
|
2097
|
-
"strict": true,
|
|
2098
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
2513
|
+
"hasDynamicHelp": true,
|
|
2514
|
+
"hiddenAliases": [],
|
|
2515
|
+
"id": "package1:version:display",
|
|
2099
2516
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2517
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2100
2518
|
"pluginType": "core",
|
|
2519
|
+
"strict": true,
|
|
2520
|
+
"summary": "Display details about a first-generation package version.",
|
|
2521
|
+
"enableJsonFlag": true,
|
|
2522
|
+
"SF_ENV": "SF_ENV",
|
|
2523
|
+
"isESM": false,
|
|
2524
|
+
"relativePath": [
|
|
2525
|
+
"lib",
|
|
2526
|
+
"commands",
|
|
2527
|
+
"package1",
|
|
2528
|
+
"version",
|
|
2529
|
+
"display.js"
|
|
2530
|
+
]
|
|
2531
|
+
},
|
|
2532
|
+
"package1:version:list": {
|
|
2101
2533
|
"aliases": [
|
|
2102
2534
|
"force:package1:version:list"
|
|
2103
2535
|
],
|
|
2536
|
+
"args": {},
|
|
2537
|
+
"deprecateAliases": true,
|
|
2104
2538
|
"examples": [
|
|
2105
2539
|
"List all first-generation package versions in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
2106
2540
|
"List package versions for the specified first-generation package in the specifief org:\n<%= config.bin %> <%= command.id %> --package-id 033... --target-org myorg@example.com"
|
|
2107
2541
|
],
|
|
2108
|
-
"deprecateAliases": true,
|
|
2109
2542
|
"flags": {
|
|
2543
|
+
"json": {
|
|
2544
|
+
"description": "Format output as json.",
|
|
2545
|
+
"helpGroup": "GLOBAL",
|
|
2546
|
+
"name": "json",
|
|
2547
|
+
"allowNo": false,
|
|
2548
|
+
"type": "boolean"
|
|
2549
|
+
},
|
|
2110
2550
|
"loglevel": {
|
|
2111
|
-
"name": "loglevel",
|
|
2112
|
-
"type": "option",
|
|
2113
|
-
"hidden": true,
|
|
2114
|
-
"multiple": false,
|
|
2115
2551
|
"deprecated": {
|
|
2116
2552
|
"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."
|
|
2117
2553
|
},
|
|
2118
|
-
"
|
|
2554
|
+
"hidden": true,
|
|
2555
|
+
"name": "loglevel",
|
|
2556
|
+
"hasDynamicHelp": false,
|
|
2557
|
+
"multiple": false,
|
|
2558
|
+
"type": "option"
|
|
2119
2559
|
},
|
|
2120
2560
|
"target-org": {
|
|
2121
|
-
"name": "target-org",
|
|
2122
|
-
"type": "option",
|
|
2123
|
-
"char": "o",
|
|
2124
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2125
|
-
"required": true,
|
|
2126
|
-
"multiple": false,
|
|
2127
|
-
"deprecateAliases": true,
|
|
2128
2561
|
"aliases": [
|
|
2129
2562
|
"targetusername",
|
|
2130
2563
|
"u"
|
|
2131
|
-
]
|
|
2564
|
+
],
|
|
2565
|
+
"char": "o",
|
|
2566
|
+
"deprecateAliases": true,
|
|
2567
|
+
"name": "target-org",
|
|
2568
|
+
"noCacheDefault": true,
|
|
2569
|
+
"required": true,
|
|
2570
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2571
|
+
"hasDynamicHelp": true,
|
|
2572
|
+
"multiple": false,
|
|
2573
|
+
"type": "option"
|
|
2132
2574
|
},
|
|
2133
2575
|
"api-version": {
|
|
2134
|
-
"name": "api-version",
|
|
2135
|
-
"type": "option",
|
|
2136
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2137
|
-
"multiple": false,
|
|
2138
|
-
"deprecateAliases": true,
|
|
2139
2576
|
"aliases": [
|
|
2140
2577
|
"apiversion"
|
|
2141
|
-
]
|
|
2578
|
+
],
|
|
2579
|
+
"deprecateAliases": true,
|
|
2580
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2581
|
+
"name": "api-version",
|
|
2582
|
+
"hasDynamicHelp": false,
|
|
2583
|
+
"multiple": false,
|
|
2584
|
+
"type": "option"
|
|
2142
2585
|
},
|
|
2143
2586
|
"package-id": {
|
|
2144
|
-
"
|
|
2145
|
-
|
|
2587
|
+
"aliases": [
|
|
2588
|
+
"packageid"
|
|
2589
|
+
],
|
|
2146
2590
|
"char": "i",
|
|
2147
|
-
"
|
|
2591
|
+
"deprecateAliases": true,
|
|
2148
2592
|
"description": "If not specified, shows all versions for all packages (managed and unmanaged) in the org.",
|
|
2593
|
+
"name": "package-id",
|
|
2594
|
+
"summary": "Metadata package ID (starts with 033) whose package versions you want to list.",
|
|
2595
|
+
"hasDynamicHelp": false,
|
|
2149
2596
|
"multiple": false,
|
|
2150
|
-
"
|
|
2151
|
-
"aliases": [
|
|
2152
|
-
"packageid"
|
|
2153
|
-
]
|
|
2597
|
+
"type": "option"
|
|
2154
2598
|
}
|
|
2155
2599
|
},
|
|
2156
|
-
"
|
|
2157
|
-
"
|
|
2158
|
-
|
|
2159
|
-
"package:version:create:list": {
|
|
2160
|
-
"id": "package:version:create:list",
|
|
2161
|
-
"summary": "List package version creation requests.",
|
|
2162
|
-
"description": "Shows the details of each request to create a package version in the Dev Hub org.\n\nAll filter parameters are applied using the AND logical operator (not OR).\n\nTo get information about a specific request, run \"<%= config.bin %> package version create report\" and supply the request ID.",
|
|
2163
|
-
"strict": true,
|
|
2164
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
2600
|
+
"hasDynamicHelp": true,
|
|
2601
|
+
"hiddenAliases": [],
|
|
2602
|
+
"id": "package1:version:list",
|
|
2165
2603
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2604
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2166
2605
|
"pluginType": "core",
|
|
2606
|
+
"strict": true,
|
|
2607
|
+
"summary": "List package versions for the specified first-generation package or for the org.",
|
|
2608
|
+
"enableJsonFlag": true,
|
|
2609
|
+
"SF_ENV": "SF_ENV",
|
|
2610
|
+
"isESM": false,
|
|
2611
|
+
"relativePath": [
|
|
2612
|
+
"lib",
|
|
2613
|
+
"commands",
|
|
2614
|
+
"package1",
|
|
2615
|
+
"version",
|
|
2616
|
+
"list.js"
|
|
2617
|
+
]
|
|
2618
|
+
},
|
|
2619
|
+
"package:version:create:list": {
|
|
2167
2620
|
"aliases": [
|
|
2168
2621
|
"force:package:version:create:list"
|
|
2169
2622
|
],
|
|
2623
|
+
"args": {},
|
|
2624
|
+
"deprecateAliases": true,
|
|
2625
|
+
"description": "Shows the details of each request to create a package version in the Dev Hub org.\n\nAll filter parameters are applied using the AND logical operator (not OR).\n\nTo get information about a specific request, run \"<%= config.bin %> package version create report\" and supply the request ID.",
|
|
2170
2626
|
"examples": [
|
|
2171
2627
|
"List all package version creation requests in your default Dev Hub org:\n<%= config.bin %> <%= command.id %>",
|
|
2172
2628
|
"List package version creation requests from the last 3 days in the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --created-last-days 3 --target-dev-hub",
|
|
@@ -2174,57 +2630,67 @@
|
|
|
2174
2630
|
"List package version creation requests with status InProgress:\n<%= config.bin %> <%= command.id %> --status InProgress",
|
|
2175
2631
|
"List package version creation requests with status Success that were created today:\n<%= config.bin %> <%= command.id %> --created-last-days 0 --status Success"
|
|
2176
2632
|
],
|
|
2177
|
-
"deprecateAliases": true,
|
|
2178
2633
|
"flags": {
|
|
2634
|
+
"json": {
|
|
2635
|
+
"description": "Format output as json.",
|
|
2636
|
+
"helpGroup": "GLOBAL",
|
|
2637
|
+
"name": "json",
|
|
2638
|
+
"allowNo": false,
|
|
2639
|
+
"type": "boolean"
|
|
2640
|
+
},
|
|
2179
2641
|
"loglevel": {
|
|
2180
|
-
"name": "loglevel",
|
|
2181
|
-
"type": "option",
|
|
2182
|
-
"hidden": true,
|
|
2183
|
-
"multiple": false,
|
|
2184
2642
|
"deprecated": {
|
|
2185
2643
|
"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."
|
|
2186
2644
|
},
|
|
2187
|
-
"
|
|
2645
|
+
"hidden": true,
|
|
2646
|
+
"name": "loglevel",
|
|
2647
|
+
"hasDynamicHelp": false,
|
|
2648
|
+
"multiple": false,
|
|
2649
|
+
"type": "option"
|
|
2188
2650
|
},
|
|
2189
2651
|
"target-dev-hub": {
|
|
2190
|
-
"name": "target-dev-hub",
|
|
2191
|
-
"type": "option",
|
|
2192
|
-
"char": "v",
|
|
2193
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2194
|
-
"required": true,
|
|
2195
|
-
"multiple": false,
|
|
2196
|
-
"deprecateAliases": true,
|
|
2197
2652
|
"aliases": [
|
|
2198
2653
|
"targetdevhubusername",
|
|
2199
2654
|
"target-hub-org"
|
|
2200
|
-
]
|
|
2655
|
+
],
|
|
2656
|
+
"char": "v",
|
|
2657
|
+
"deprecateAliases": true,
|
|
2658
|
+
"name": "target-dev-hub",
|
|
2659
|
+
"noCacheDefault": true,
|
|
2660
|
+
"required": true,
|
|
2661
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2662
|
+
"hasDynamicHelp": true,
|
|
2663
|
+
"multiple": false,
|
|
2664
|
+
"type": "option"
|
|
2201
2665
|
},
|
|
2202
2666
|
"api-version": {
|
|
2203
|
-
"name": "api-version",
|
|
2204
|
-
"type": "option",
|
|
2205
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2206
|
-
"multiple": false,
|
|
2207
|
-
"deprecateAliases": true,
|
|
2208
2667
|
"aliases": [
|
|
2209
2668
|
"apiversion"
|
|
2210
|
-
]
|
|
2669
|
+
],
|
|
2670
|
+
"deprecateAliases": true,
|
|
2671
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2672
|
+
"name": "api-version",
|
|
2673
|
+
"hasDynamicHelp": false,
|
|
2674
|
+
"multiple": false,
|
|
2675
|
+
"type": "option"
|
|
2211
2676
|
},
|
|
2212
2677
|
"created-last-days": {
|
|
2213
|
-
"
|
|
2214
|
-
|
|
2678
|
+
"aliases": [
|
|
2679
|
+
"createdlastdays"
|
|
2680
|
+
],
|
|
2215
2681
|
"char": "c",
|
|
2682
|
+
"deprecateAliases": true,
|
|
2683
|
+
"name": "created-last-days",
|
|
2216
2684
|
"summary": "Number of days since the request was created, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
2685
|
+
"hasDynamicHelp": false,
|
|
2217
2686
|
"multiple": false,
|
|
2218
|
-
"
|
|
2219
|
-
"aliases": [
|
|
2220
|
-
"createdlastdays"
|
|
2221
|
-
]
|
|
2687
|
+
"type": "option"
|
|
2222
2688
|
},
|
|
2223
2689
|
"status": {
|
|
2224
|
-
"name": "status",
|
|
2225
|
-
"type": "option",
|
|
2226
2690
|
"char": "s",
|
|
2691
|
+
"name": "status",
|
|
2227
2692
|
"summary": "Status of the version creation request, used to filter the list.",
|
|
2693
|
+
"hasDynamicHelp": false,
|
|
2228
2694
|
"multiple": false,
|
|
2229
2695
|
"options": [
|
|
2230
2696
|
"Queued",
|
|
@@ -2232,156 +2698,218 @@
|
|
|
2232
2698
|
"Success",
|
|
2233
2699
|
"Error"
|
|
2234
2700
|
],
|
|
2235
|
-
"
|
|
2701
|
+
"type": "option"
|
|
2236
2702
|
},
|
|
2237
2703
|
"show-conversions-only": {
|
|
2238
2704
|
"name": "show-conversions-only",
|
|
2239
|
-
"type": "boolean",
|
|
2240
2705
|
"summary": "Filter the list output to display only converted package version.",
|
|
2241
2706
|
"allowNo": false,
|
|
2242
|
-
"
|
|
2707
|
+
"type": "boolean"
|
|
2243
2708
|
},
|
|
2244
2709
|
"verbose": {
|
|
2245
2710
|
"name": "verbose",
|
|
2246
|
-
"type": "boolean",
|
|
2247
2711
|
"summary": "Displays additional information at a slight performance cost, such as the version name and number for each package version create request.",
|
|
2248
2712
|
"allowNo": false,
|
|
2249
|
-
"
|
|
2713
|
+
"type": "boolean"
|
|
2250
2714
|
}
|
|
2251
2715
|
},
|
|
2252
|
-
"
|
|
2253
|
-
"
|
|
2254
|
-
|
|
2255
|
-
"package:version:create:report": {
|
|
2256
|
-
"id": "package:version:create:report",
|
|
2257
|
-
"summary": "Retrieve details about a package version creation request.",
|
|
2258
|
-
"description": "Specify the request ID for which you want to view details. If applicable, the command displays errors related to the request.\n\nTo show all requests in the org, run \"<%= config.bin %> package version create list\".",
|
|
2259
|
-
"strict": true,
|
|
2260
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
2716
|
+
"hasDynamicHelp": true,
|
|
2717
|
+
"hiddenAliases": [],
|
|
2718
|
+
"id": "package:version:create:list",
|
|
2261
2719
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2720
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2262
2721
|
"pluginType": "core",
|
|
2722
|
+
"strict": true,
|
|
2723
|
+
"summary": "List package version creation requests.",
|
|
2724
|
+
"enableJsonFlag": true,
|
|
2725
|
+
"SF_ENV": "SF_ENV",
|
|
2726
|
+
"isESM": false,
|
|
2727
|
+
"relativePath": [
|
|
2728
|
+
"lib",
|
|
2729
|
+
"commands",
|
|
2730
|
+
"package",
|
|
2731
|
+
"version",
|
|
2732
|
+
"create",
|
|
2733
|
+
"list.js"
|
|
2734
|
+
]
|
|
2735
|
+
},
|
|
2736
|
+
"package:version:create:report": {
|
|
2263
2737
|
"aliases": [
|
|
2264
2738
|
"force:package:version:create:report"
|
|
2265
2739
|
],
|
|
2740
|
+
"args": {},
|
|
2741
|
+
"deprecateAliases": true,
|
|
2742
|
+
"description": "Specify the request ID for which you want to view details. If applicable, the command displays errors related to the request.\n\nTo show all requests in the org, run \"<%= config.bin %> package version create list\".",
|
|
2266
2743
|
"examples": [
|
|
2267
2744
|
"Retrieve details about the package version creation request with the specified ID; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package-create-request-id 08c...",
|
|
2268
2745
|
"Retrieve details about the specified package version creation request in the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package-create-request-id 08c... --target-dev-hub devhub@example.com"
|
|
2269
2746
|
],
|
|
2270
|
-
"deprecateAliases": true,
|
|
2271
2747
|
"flags": {
|
|
2748
|
+
"json": {
|
|
2749
|
+
"description": "Format output as json.",
|
|
2750
|
+
"helpGroup": "GLOBAL",
|
|
2751
|
+
"name": "json",
|
|
2752
|
+
"allowNo": false,
|
|
2753
|
+
"type": "boolean"
|
|
2754
|
+
},
|
|
2272
2755
|
"loglevel": {
|
|
2273
|
-
"name": "loglevel",
|
|
2274
|
-
"type": "option",
|
|
2275
|
-
"hidden": true,
|
|
2276
|
-
"multiple": false,
|
|
2277
2756
|
"deprecated": {
|
|
2278
2757
|
"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."
|
|
2279
2758
|
},
|
|
2280
|
-
"
|
|
2759
|
+
"hidden": true,
|
|
2760
|
+
"name": "loglevel",
|
|
2761
|
+
"hasDynamicHelp": false,
|
|
2762
|
+
"multiple": false,
|
|
2763
|
+
"type": "option"
|
|
2281
2764
|
},
|
|
2282
2765
|
"target-dev-hub": {
|
|
2283
|
-
"name": "target-dev-hub",
|
|
2284
|
-
"type": "option",
|
|
2285
|
-
"char": "v",
|
|
2286
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2287
|
-
"required": true,
|
|
2288
|
-
"multiple": false,
|
|
2289
|
-
"deprecateAliases": true,
|
|
2290
2766
|
"aliases": [
|
|
2291
2767
|
"targetdevhubusername",
|
|
2292
2768
|
"target-hub-org"
|
|
2293
|
-
]
|
|
2769
|
+
],
|
|
2770
|
+
"char": "v",
|
|
2771
|
+
"deprecateAliases": true,
|
|
2772
|
+
"name": "target-dev-hub",
|
|
2773
|
+
"noCacheDefault": true,
|
|
2774
|
+
"required": true,
|
|
2775
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2776
|
+
"hasDynamicHelp": true,
|
|
2777
|
+
"multiple": false,
|
|
2778
|
+
"type": "option"
|
|
2294
2779
|
},
|
|
2295
2780
|
"api-version": {
|
|
2296
|
-
"name": "api-version",
|
|
2297
|
-
"type": "option",
|
|
2298
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2299
|
-
"multiple": false,
|
|
2300
|
-
"deprecateAliases": true,
|
|
2301
2781
|
"aliases": [
|
|
2302
2782
|
"apiversion"
|
|
2303
|
-
]
|
|
2783
|
+
],
|
|
2784
|
+
"deprecateAliases": true,
|
|
2785
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2786
|
+
"name": "api-version",
|
|
2787
|
+
"hasDynamicHelp": false,
|
|
2788
|
+
"multiple": false,
|
|
2789
|
+
"type": "option"
|
|
2304
2790
|
},
|
|
2305
2791
|
"package-create-request-id": {
|
|
2306
|
-
"
|
|
2307
|
-
|
|
2792
|
+
"aliases": [
|
|
2793
|
+
"packagecreaterequestid"
|
|
2794
|
+
],
|
|
2308
2795
|
"char": "i",
|
|
2309
|
-
"
|
|
2796
|
+
"deprecateAliases": true,
|
|
2797
|
+
"name": "package-create-request-id",
|
|
2310
2798
|
"required": true,
|
|
2799
|
+
"summary": "ID (starts with 08c) of the package version creation request you want to display.",
|
|
2800
|
+
"hasDynamicHelp": false,
|
|
2311
2801
|
"multiple": false,
|
|
2312
|
-
"
|
|
2313
|
-
"aliases": [
|
|
2314
|
-
"packagecreaterequestid"
|
|
2315
|
-
]
|
|
2802
|
+
"type": "option"
|
|
2316
2803
|
}
|
|
2317
2804
|
},
|
|
2318
|
-
"
|
|
2319
|
-
"
|
|
2320
|
-
|
|
2321
|
-
"package1:version:create:get": {
|
|
2322
|
-
"id": "package1:version:create:get",
|
|
2323
|
-
"summary": "Retrieve the status of a package version creation request.",
|
|
2324
|
-
"strict": true,
|
|
2325
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
2805
|
+
"hasDynamicHelp": true,
|
|
2806
|
+
"hiddenAliases": [],
|
|
2807
|
+
"id": "package:version:create:report",
|
|
2326
2808
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2809
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2327
2810
|
"pluginType": "core",
|
|
2811
|
+
"strict": true,
|
|
2812
|
+
"summary": "Retrieve details about a package version creation request.",
|
|
2813
|
+
"enableJsonFlag": true,
|
|
2814
|
+
"SF_ENV": "SF_ENV",
|
|
2815
|
+
"isESM": false,
|
|
2816
|
+
"relativePath": [
|
|
2817
|
+
"lib",
|
|
2818
|
+
"commands",
|
|
2819
|
+
"package",
|
|
2820
|
+
"version",
|
|
2821
|
+
"create",
|
|
2822
|
+
"report.js"
|
|
2823
|
+
]
|
|
2824
|
+
},
|
|
2825
|
+
"package1:version:create:get": {
|
|
2328
2826
|
"aliases": [
|
|
2329
2827
|
"force:package1:version:create:get"
|
|
2330
2828
|
],
|
|
2829
|
+
"args": {},
|
|
2830
|
+
"deprecateAliases": true,
|
|
2331
2831
|
"examples": [
|
|
2332
2832
|
"Get the status of the creation request for the package version with the specified ID in your default org:\n<%= config.bin %> <%= command.id %> --request-id 0HD...",
|
|
2333
2833
|
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --request-id 0HD... --target-org myorg@example.com"
|
|
2334
2834
|
],
|
|
2335
|
-
"deprecateAliases": true,
|
|
2336
2835
|
"flags": {
|
|
2836
|
+
"json": {
|
|
2837
|
+
"description": "Format output as json.",
|
|
2838
|
+
"helpGroup": "GLOBAL",
|
|
2839
|
+
"name": "json",
|
|
2840
|
+
"allowNo": false,
|
|
2841
|
+
"type": "boolean"
|
|
2842
|
+
},
|
|
2337
2843
|
"loglevel": {
|
|
2338
|
-
"name": "loglevel",
|
|
2339
|
-
"type": "option",
|
|
2340
|
-
"hidden": true,
|
|
2341
|
-
"multiple": false,
|
|
2342
2844
|
"deprecated": {
|
|
2343
2845
|
"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."
|
|
2344
2846
|
},
|
|
2345
|
-
"
|
|
2847
|
+
"hidden": true,
|
|
2848
|
+
"name": "loglevel",
|
|
2849
|
+
"hasDynamicHelp": false,
|
|
2850
|
+
"multiple": false,
|
|
2851
|
+
"type": "option"
|
|
2346
2852
|
},
|
|
2347
2853
|
"target-org": {
|
|
2348
|
-
"name": "target-org",
|
|
2349
|
-
"type": "option",
|
|
2350
|
-
"char": "o",
|
|
2351
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2352
|
-
"required": true,
|
|
2353
|
-
"multiple": false,
|
|
2354
|
-
"deprecateAliases": true,
|
|
2355
2854
|
"aliases": [
|
|
2356
2855
|
"targetusername",
|
|
2357
2856
|
"u"
|
|
2358
|
-
]
|
|
2857
|
+
],
|
|
2858
|
+
"char": "o",
|
|
2859
|
+
"deprecateAliases": true,
|
|
2860
|
+
"name": "target-org",
|
|
2861
|
+
"noCacheDefault": true,
|
|
2862
|
+
"required": true,
|
|
2863
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2864
|
+
"hasDynamicHelp": true,
|
|
2865
|
+
"multiple": false,
|
|
2866
|
+
"type": "option"
|
|
2359
2867
|
},
|
|
2360
2868
|
"api-version": {
|
|
2361
|
-
"name": "api-version",
|
|
2362
|
-
"type": "option",
|
|
2363
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2364
|
-
"multiple": false,
|
|
2365
|
-
"deprecateAliases": true,
|
|
2366
2869
|
"aliases": [
|
|
2367
2870
|
"apiversion"
|
|
2368
|
-
]
|
|
2871
|
+
],
|
|
2872
|
+
"deprecateAliases": true,
|
|
2873
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2874
|
+
"name": "api-version",
|
|
2875
|
+
"hasDynamicHelp": false,
|
|
2876
|
+
"multiple": false,
|
|
2877
|
+
"type": "option"
|
|
2369
2878
|
},
|
|
2370
2879
|
"request-id": {
|
|
2371
|
-
"
|
|
2372
|
-
|
|
2880
|
+
"aliases": [
|
|
2881
|
+
"requestid"
|
|
2882
|
+
],
|
|
2373
2883
|
"char": "i",
|
|
2374
|
-
"
|
|
2884
|
+
"deprecateAliases": true,
|
|
2885
|
+
"name": "request-id",
|
|
2375
2886
|
"required": true,
|
|
2887
|
+
"summary": "ID of the PackageUploadRequest (starts with 0HD).",
|
|
2888
|
+
"hasDynamicHelp": false,
|
|
2376
2889
|
"multiple": false,
|
|
2377
|
-
"
|
|
2378
|
-
"aliases": [
|
|
2379
|
-
"requestid"
|
|
2380
|
-
]
|
|
2890
|
+
"type": "option"
|
|
2381
2891
|
}
|
|
2382
2892
|
},
|
|
2383
|
-
"
|
|
2384
|
-
"
|
|
2893
|
+
"hasDynamicHelp": true,
|
|
2894
|
+
"hiddenAliases": [],
|
|
2895
|
+
"id": "package1:version:create:get",
|
|
2896
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2897
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
2898
|
+
"pluginType": "core",
|
|
2899
|
+
"strict": true,
|
|
2900
|
+
"summary": "Retrieve the status of a package version creation request.",
|
|
2901
|
+
"enableJsonFlag": true,
|
|
2902
|
+
"SF_ENV": "SF_ENV",
|
|
2903
|
+
"isESM": false,
|
|
2904
|
+
"relativePath": [
|
|
2905
|
+
"lib",
|
|
2906
|
+
"commands",
|
|
2907
|
+
"package1",
|
|
2908
|
+
"version",
|
|
2909
|
+
"create",
|
|
2910
|
+
"get.js"
|
|
2911
|
+
]
|
|
2385
2912
|
}
|
|
2386
|
-
}
|
|
2913
|
+
},
|
|
2914
|
+
"version": "1.27.5"
|
|
2387
2915
|
}
|