@salesforce/plugin-deploy-retrieve 3.22.13 → 3.22.15
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 +17 -17
- package/lib/formatters/testResultsFormatter.js +2 -4
- package/lib/formatters/testResultsFormatter.js.map +1 -1
- package/oclif.manifest.json +573 -573
- package/package.json +8 -8
package/oclif.manifest.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"commands": {
|
|
3
|
-
"project:
|
|
3
|
+
"project:delete:source": {
|
|
4
4
|
"aliases": [
|
|
5
|
-
"force:
|
|
5
|
+
"force:source:delete"
|
|
6
6
|
],
|
|
7
7
|
"args": {},
|
|
8
8
|
"deprecateAliases": true,
|
|
9
|
-
"description": "
|
|
9
|
+
"description": "Use this command to delete components from orgs that don’t have source tracking. To remove deleted items from orgs that have source tracking enabled, \"<%= config.bin %> project deploy start\".\n\nWhen you run this command, both the local source file and the metadata component in the org are deleted.\n\nTo delete multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --source-dir.",
|
|
10
10
|
"examples": [
|
|
11
|
-
"
|
|
12
|
-
"
|
|
11
|
+
"Delete all local Apex source files and all Apex classes from the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --metadata ApexClass --target-org my-scratch",
|
|
12
|
+
"Delete a specific Apex class and a Profile that has a space in it from your default org; don't prompt for confirmation:\n<%= config.bin %> <%= command.id %> --metadata ApexClass:MyFabulousApexClass --metadata \"Profile: My Profile\" --no-prompt",
|
|
13
|
+
"Run the tests that aren’t in any managed packages as part of the deletion; if the delete succeeds, and the org has source-tracking enabled, update the source tracking information:\n<%= config.bin %> <%= command.id %> --metadata ApexClass --test-level RunLocalTests --track-source",
|
|
14
|
+
"Delete the Apex source files in a directory and the corresponding components from your default org:\n<%= config.bin %> <%= command.id %> --source-dir force-app/main/default/classes"
|
|
13
15
|
],
|
|
14
16
|
"flags": {
|
|
15
17
|
"json": {
|
|
@@ -48,80 +50,149 @@
|
|
|
48
50
|
"multiple": false,
|
|
49
51
|
"type": "option"
|
|
50
52
|
},
|
|
51
|
-
"
|
|
53
|
+
"target-org": {
|
|
52
54
|
"aliases": [
|
|
53
|
-
"
|
|
55
|
+
"targetusername",
|
|
56
|
+
"u"
|
|
54
57
|
],
|
|
55
|
-
"char": "
|
|
58
|
+
"char": "o",
|
|
56
59
|
"deprecateAliases": true,
|
|
57
|
-
"name": "
|
|
60
|
+
"name": "target-org",
|
|
61
|
+
"noCacheDefault": true,
|
|
58
62
|
"required": true,
|
|
59
|
-
"summary": "
|
|
60
|
-
"hasDynamicHelp":
|
|
63
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
64
|
+
"hasDynamicHelp": true,
|
|
61
65
|
"multiple": false,
|
|
62
66
|
"type": "option"
|
|
63
67
|
},
|
|
64
|
-
"
|
|
68
|
+
"check-only": {
|
|
65
69
|
"aliases": [
|
|
66
|
-
"
|
|
70
|
+
"checkonly"
|
|
67
71
|
],
|
|
68
|
-
"char": "
|
|
72
|
+
"char": "c",
|
|
69
73
|
"deprecateAliases": true,
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
74
|
+
"description": "IMPORTANT: Where possible, we changed noninclusive terms to align with our company value of Equality. We maintained certain terms to avoid any effect on customer implementations.\n\nValidates the deleted metadata and runs all Apex tests, but prevents the deletion from being saved to the org.\n\nIf you change a field type from Master-Detail to Lookup or vice versa, that change isn’t supported when using the --check-only flag to test a deletion (validation). This kind of change isn’t supported for test deletions to avoid the risk of data loss or corruption. If a change that isn’t supported for test deletions is included in a deletion package, the test deletion fails and issues an error.\n\nIf your deletion package changes a field type from Master-Detail to Lookup or vice versa, you can still validate the changes prior to deploying to Production by performing a full deletion to another test Sandbox. A full deletion includes a validation of the changes as part of the deletion process.\n\nNote: A Metadata API deletion that includes Master-Detail relationships deletes all detail records in the Recycle Bin in the following cases.\n\n 1. For a deletion with a new Master-Detail field, soft delete (send to the Recycle Bin) all detail records before proceeding to delete the Master-Detail field, or the deletion fails. During the deletion, detail records are permanently deleted from the Recycle Bin and cannot be recovered.\n\n 2. For a deletion that converts a Lookup field relationship to a Master-Detail relationship, detail records must reference a master record or be soft-deleted (sent to the Recycle Bin) for the deletion to succeed. However, a successful deletion permanently deletes any detail records in the Recycle Bin.",
|
|
75
|
+
"name": "check-only",
|
|
76
|
+
"summary": "Validate delete command but don't delete anything from the org or the local project.",
|
|
77
|
+
"allowNo": false,
|
|
78
|
+
"type": "boolean"
|
|
79
|
+
},
|
|
80
|
+
"wait": {
|
|
81
|
+
"char": "w",
|
|
82
|
+
"description": "If the command continues to run after the wait period, the CLI returns control of the terminal window to you.",
|
|
83
|
+
"name": "wait",
|
|
84
|
+
"summary": "Number of minutes to wait for the command to finish.",
|
|
85
|
+
"hasDynamicHelp": true,
|
|
73
86
|
"multiple": false,
|
|
74
87
|
"type": "option"
|
|
75
88
|
},
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"name": "
|
|
80
|
-
"summary": "
|
|
89
|
+
"tests": {
|
|
90
|
+
"description": "If a test name contains a space, enclose it in double quotes.\nFor multiple test names, use one of the following formats:\n\n- Repeat the flag for multiple test names: --tests Test1 --tests Test2 --tests \"Test With Space\"\n- Separate the test names with spaces: --tests Test1 Test2 \"Test With Space\"",
|
|
91
|
+
"helpGroup": "Test",
|
|
92
|
+
"name": "tests",
|
|
93
|
+
"summary": "Apex tests to run when --test-level is RunSpecifiedTests.",
|
|
81
94
|
"hasDynamicHelp": false,
|
|
82
|
-
"multiple":
|
|
95
|
+
"multiple": true,
|
|
83
96
|
"type": "option"
|
|
84
97
|
},
|
|
85
|
-
"
|
|
98
|
+
"test-level": {
|
|
86
99
|
"aliases": [
|
|
87
|
-
"
|
|
100
|
+
"testlevel"
|
|
88
101
|
],
|
|
89
|
-
"char": "
|
|
102
|
+
"char": "l",
|
|
90
103
|
"deprecateAliases": true,
|
|
91
|
-
"description": "
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
104
|
+
"description": "Valid values are:\n\n- NoTestRun — No tests are run. This test level applies only to deployments to development environments, such as sandbox, Developer Edition, or trial orgs. This test level is the default for development environments.\n\n- RunSpecifiedTests — Runs only the tests that you specify with the --tests flag. Code coverage requirements differ from the default coverage requirements when using this test level. Executed tests must comprise a minimum of 75% code coverage for each class and trigger in the deployment package. This coverage is computed for each class and trigger individually and is different than the overall coverage percentage.\n\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed and unlocked packages. This test level is the default for production deployments that include Apex classes or triggers.\n\n- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.\n\nIf you don’t specify a test level, the default behavior depends on the contents of your deployment package and target org. For more information, see “Running Tests in a Deployment” in the Metadata API Developer Guide.",
|
|
105
|
+
"helpGroup": "Test",
|
|
106
|
+
"name": "test-level",
|
|
107
|
+
"summary": "Deployment Apex testing level.",
|
|
108
|
+
"hasDynamicHelp": false,
|
|
109
|
+
"multiple": false,
|
|
110
|
+
"options": [
|
|
111
|
+
"NoTestRun",
|
|
112
|
+
"RunSpecifiedTests",
|
|
113
|
+
"RunLocalTests",
|
|
114
|
+
"RunAllTestsInOrg"
|
|
95
115
|
],
|
|
96
|
-
"
|
|
97
|
-
|
|
116
|
+
"type": "option"
|
|
117
|
+
},
|
|
118
|
+
"no-prompt": {
|
|
119
|
+
"aliases": [
|
|
120
|
+
"noprompt"
|
|
121
|
+
],
|
|
122
|
+
"char": "r",
|
|
123
|
+
"deprecateAliases": true,
|
|
124
|
+
"name": "no-prompt",
|
|
125
|
+
"summary": "Don't prompt for delete confirmation.",
|
|
126
|
+
"allowNo": false,
|
|
127
|
+
"type": "boolean"
|
|
128
|
+
},
|
|
129
|
+
"metadata": {
|
|
130
|
+
"char": "m",
|
|
131
|
+
"description": "If you specify this flag, don’t specify --source-dir.",
|
|
132
|
+
"name": "metadata",
|
|
133
|
+
"summary": "Metadata components to delete.",
|
|
98
134
|
"delimiter": ",",
|
|
99
135
|
"hasDynamicHelp": false,
|
|
100
136
|
"multiple": true,
|
|
101
137
|
"type": "option"
|
|
102
138
|
},
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
"manifest",
|
|
107
|
-
"metadatapath"
|
|
139
|
+
"source-dir": {
|
|
140
|
+
"aliases": [
|
|
141
|
+
"sourcepath"
|
|
108
142
|
],
|
|
109
|
-
"
|
|
110
|
-
"
|
|
143
|
+
"char": "p",
|
|
144
|
+
"deprecateAliases": true,
|
|
145
|
+
"description": "The supplied paths can be a single file (in which case the operation is applied to only one file) or a folder (in which case the operation is applied to all metadata types in the directory and its sub-directories).\n\nIf you specify this flag, don’t specify --metadata.",
|
|
146
|
+
"name": "source-dir",
|
|
147
|
+
"summary": "Source file paths to delete.",
|
|
111
148
|
"delimiter": ",",
|
|
112
149
|
"hasDynamicHelp": false,
|
|
113
150
|
"multiple": true,
|
|
114
151
|
"type": "option"
|
|
152
|
+
},
|
|
153
|
+
"track-source": {
|
|
154
|
+
"aliases": [
|
|
155
|
+
"tracksource"
|
|
156
|
+
],
|
|
157
|
+
"char": "t",
|
|
158
|
+
"deprecateAliases": true,
|
|
159
|
+
"exclusive": [
|
|
160
|
+
"check-only"
|
|
161
|
+
],
|
|
162
|
+
"name": "track-source",
|
|
163
|
+
"summary": "If the delete succeeds, update the source tracking information.",
|
|
164
|
+
"allowNo": false,
|
|
165
|
+
"type": "boolean"
|
|
166
|
+
},
|
|
167
|
+
"force-overwrite": {
|
|
168
|
+
"aliases": [
|
|
169
|
+
"forceoverwrite"
|
|
170
|
+
],
|
|
171
|
+
"char": "f",
|
|
172
|
+
"dependsOn": [
|
|
173
|
+
"track-source"
|
|
174
|
+
],
|
|
175
|
+
"deprecateAliases": true,
|
|
176
|
+
"name": "force-overwrite",
|
|
177
|
+
"summary": "Ignore conflict warnings and overwrite changes to the org.",
|
|
178
|
+
"allowNo": false,
|
|
179
|
+
"type": "boolean"
|
|
180
|
+
},
|
|
181
|
+
"verbose": {
|
|
182
|
+
"name": "verbose",
|
|
183
|
+
"summary": "Verbose output of the delete result.",
|
|
184
|
+
"allowNo": false,
|
|
185
|
+
"type": "boolean"
|
|
115
186
|
}
|
|
116
187
|
},
|
|
117
|
-
"hasDynamicHelp":
|
|
188
|
+
"hasDynamicHelp": true,
|
|
118
189
|
"hiddenAliases": [],
|
|
119
|
-
"id": "project:
|
|
190
|
+
"id": "project:delete:source",
|
|
120
191
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
121
192
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
122
193
|
"pluginType": "core",
|
|
123
194
|
"strict": true,
|
|
124
|
-
"summary": "
|
|
195
|
+
"summary": "Delete source from your project and from a non-source-tracked org.",
|
|
125
196
|
"enableJsonFlag": true,
|
|
126
197
|
"requiresProject": true,
|
|
127
198
|
"isESM": true,
|
|
@@ -129,34 +200,35 @@
|
|
|
129
200
|
"lib",
|
|
130
201
|
"commands",
|
|
131
202
|
"project",
|
|
132
|
-
"
|
|
133
|
-
"
|
|
203
|
+
"delete",
|
|
204
|
+
"source.js"
|
|
134
205
|
],
|
|
135
206
|
"aliasPermutations": [
|
|
136
|
-
"force:
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"force:
|
|
140
|
-
"
|
|
141
|
-
"
|
|
207
|
+
"force:source:delete",
|
|
208
|
+
"source:force:delete",
|
|
209
|
+
"source:delete:force",
|
|
210
|
+
"force:delete:source",
|
|
211
|
+
"delete:force:source",
|
|
212
|
+
"delete:source:force"
|
|
142
213
|
],
|
|
143
214
|
"permutations": [
|
|
144
|
-
"project:
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"project:
|
|
148
|
-
"
|
|
149
|
-
"
|
|
215
|
+
"project:delete:source",
|
|
216
|
+
"delete:project:source",
|
|
217
|
+
"delete:source:project",
|
|
218
|
+
"project:source:delete",
|
|
219
|
+
"source:project:delete",
|
|
220
|
+
"source:delete:project"
|
|
150
221
|
]
|
|
151
222
|
},
|
|
152
|
-
"project:
|
|
153
|
-
"aliases": [
|
|
223
|
+
"project:delete:tracking": {
|
|
224
|
+
"aliases": [
|
|
225
|
+
"force:source:tracking:clear"
|
|
226
|
+
],
|
|
154
227
|
"args": {},
|
|
155
|
-
"
|
|
228
|
+
"deprecateAliases": true,
|
|
229
|
+
"description": "WARNING: This command deletes or overwrites all existing source tracking files. Use with extreme caution.\n\nDeletes all local source tracking information. When you next run 'project deploy preview', Salesforce CLI displays all local and remote files as changed, and any files with the same name are listed as conflicts.",
|
|
156
230
|
"examples": [
|
|
157
|
-
"
|
|
158
|
-
"Display what the command would do, but don't change any existing files:\n<%= config.bin %> <%= command.id %> --behavior decomposePermissionSetBeta --dry-run",
|
|
159
|
-
"Keep the temporary directory that contains the interim metadata API formatted files:\n<%= config.bin %> <%= command.id %> --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir"
|
|
231
|
+
"Delete local source tracking for the org with alias \"my-scratch\":\n$ <%= config.bin %> <%= command.id %> --target-org my-scratch"
|
|
160
232
|
],
|
|
161
233
|
"flags": {
|
|
162
234
|
"json": {
|
|
@@ -174,55 +246,62 @@
|
|
|
174
246
|
"multiple": false,
|
|
175
247
|
"type": "option"
|
|
176
248
|
},
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
"
|
|
249
|
+
"api-version": {
|
|
250
|
+
"aliases": [
|
|
251
|
+
"apiversion"
|
|
252
|
+
],
|
|
253
|
+
"deprecateAliases": true,
|
|
254
|
+
"description": "Override the api version used for api requests made by this command",
|
|
255
|
+
"name": "api-version",
|
|
182
256
|
"hasDynamicHelp": false,
|
|
183
257
|
"multiple": false,
|
|
184
|
-
"options": [
|
|
185
|
-
"decomposeCustomLabelsBeta2",
|
|
186
|
-
"decomposeCustomLabelsBeta",
|
|
187
|
-
"decomposePermissionSetBeta",
|
|
188
|
-
"decomposePermissionSetBeta2",
|
|
189
|
-
"decomposeSharingRulesBeta",
|
|
190
|
-
"decomposeWorkflowBeta",
|
|
191
|
-
"decomposeExternalServiceRegistrationBeta"
|
|
192
|
-
],
|
|
193
258
|
"type": "option"
|
|
194
259
|
},
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
"
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"allowNo": false,
|
|
205
|
-
"type": "boolean"
|
|
260
|
+
"loglevel": {
|
|
261
|
+
"deprecated": {
|
|
262
|
+
"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."
|
|
263
|
+
},
|
|
264
|
+
"hidden": true,
|
|
265
|
+
"name": "loglevel",
|
|
266
|
+
"hasDynamicHelp": false,
|
|
267
|
+
"multiple": false,
|
|
268
|
+
"type": "option"
|
|
206
269
|
},
|
|
207
270
|
"target-org": {
|
|
271
|
+
"aliases": [
|
|
272
|
+
"targetusername",
|
|
273
|
+
"u"
|
|
274
|
+
],
|
|
208
275
|
"char": "o",
|
|
276
|
+
"deprecateAliases": true,
|
|
209
277
|
"name": "target-org",
|
|
210
278
|
"noCacheDefault": true,
|
|
211
|
-
"
|
|
279
|
+
"required": true,
|
|
280
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
212
281
|
"hasDynamicHelp": true,
|
|
213
282
|
"multiple": false,
|
|
214
283
|
"type": "option"
|
|
284
|
+
},
|
|
285
|
+
"no-prompt": {
|
|
286
|
+
"aliases": [
|
|
287
|
+
"noprompt"
|
|
288
|
+
],
|
|
289
|
+
"char": "p",
|
|
290
|
+
"deprecateAliases": true,
|
|
291
|
+
"name": "no-prompt",
|
|
292
|
+
"summary": "Don't prompt for source tracking override confirmation.",
|
|
293
|
+
"allowNo": false,
|
|
294
|
+
"type": "boolean"
|
|
215
295
|
}
|
|
216
296
|
},
|
|
217
297
|
"hasDynamicHelp": true,
|
|
218
298
|
"hiddenAliases": [],
|
|
219
|
-
"id": "project:
|
|
299
|
+
"id": "project:delete:tracking",
|
|
220
300
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
221
301
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
222
302
|
"pluginType": "core",
|
|
223
|
-
"state": "beta",
|
|
224
303
|
"strict": true,
|
|
225
|
-
"summary": "
|
|
304
|
+
"summary": "Delete all local source tracking information.",
|
|
226
305
|
"enableJsonFlag": true,
|
|
227
306
|
"requiresProject": true,
|
|
228
307
|
"isESM": true,
|
|
@@ -230,29 +309,58 @@
|
|
|
230
309
|
"lib",
|
|
231
310
|
"commands",
|
|
232
311
|
"project",
|
|
233
|
-
"
|
|
234
|
-
"
|
|
312
|
+
"delete",
|
|
313
|
+
"tracking.js"
|
|
314
|
+
],
|
|
315
|
+
"aliasPermutations": [
|
|
316
|
+
"force:source:tracking:clear",
|
|
317
|
+
"source:force:tracking:clear",
|
|
318
|
+
"source:tracking:force:clear",
|
|
319
|
+
"source:tracking:clear:force",
|
|
320
|
+
"force:tracking:source:clear",
|
|
321
|
+
"tracking:force:source:clear",
|
|
322
|
+
"tracking:source:force:clear",
|
|
323
|
+
"tracking:source:clear:force",
|
|
324
|
+
"force:tracking:clear:source",
|
|
325
|
+
"tracking:force:clear:source",
|
|
326
|
+
"tracking:clear:force:source",
|
|
327
|
+
"tracking:clear:source:force",
|
|
328
|
+
"force:source:clear:tracking",
|
|
329
|
+
"source:force:clear:tracking",
|
|
330
|
+
"source:clear:force:tracking",
|
|
331
|
+
"source:clear:tracking:force",
|
|
332
|
+
"force:clear:source:tracking",
|
|
333
|
+
"clear:force:source:tracking",
|
|
334
|
+
"clear:source:force:tracking",
|
|
335
|
+
"clear:source:tracking:force",
|
|
336
|
+
"force:clear:tracking:source",
|
|
337
|
+
"clear:force:tracking:source",
|
|
338
|
+
"clear:tracking:force:source",
|
|
339
|
+
"clear:tracking:source:force"
|
|
235
340
|
],
|
|
236
|
-
"aliasPermutations": [],
|
|
237
341
|
"permutations": [
|
|
238
|
-
"project:
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"project:
|
|
242
|
-
"
|
|
243
|
-
"
|
|
342
|
+
"project:delete:tracking",
|
|
343
|
+
"delete:project:tracking",
|
|
344
|
+
"delete:tracking:project",
|
|
345
|
+
"project:tracking:delete",
|
|
346
|
+
"tracking:project:delete",
|
|
347
|
+
"tracking:delete:project"
|
|
244
348
|
]
|
|
245
349
|
},
|
|
246
|
-
"project:
|
|
350
|
+
"project:generate:manifest": {
|
|
247
351
|
"aliases": [
|
|
248
|
-
"force:source:
|
|
352
|
+
"force:source:manifest:create"
|
|
249
353
|
],
|
|
250
354
|
"args": {},
|
|
251
355
|
"deprecateAliases": true,
|
|
252
|
-
"description": "
|
|
356
|
+
"description": "Create a manifest from a list of metadata components (--metadata) or from one or more local directories that contain source files (--source-dir). You can specify either of these flags, not both.\n\nUse --type to specify the type of manifest you want to create. The resulting manifest files have specific names, such as the standard package.xml or destructiveChanges.xml to delete metadata. Valid values for this flag, and their respective file names, are:\n\n * package : package.xml (default)\n * pre : destructiveChangesPre.xml\n * post : destructiveChangesPost.xml\n * destroy : destructiveChanges.xml\n\nSee https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_deleting_files.htm for information about these destructive manifest files.\n\nUse --name to specify a custom name for the generated manifest if the pre-defined ones don’t suit your needs. You can specify either --type or --name, but not both.\n\nTo include multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --include-packages and --source-dir.\n\nTo build a manifest from the metadata in an org, use the --from-org flag. You can combine --from-org with the --metadata flag to include only certain metadata types, or with the --excluded-metadata flag to exclude certain metadata types. When building a manifest from an org, the command makes many concurrent API calls to discover the metadata that exists in the org. To limit the number of concurrent requests, use the SF_LIST_METADATA_BATCH_SIZE environment variable and set it to a size that works best for your org and environment. If you experience timeouts or inconsistent manifest contents, then setting this environment variable can improve accuracy. However, the command takes longer to run because it sends fewer requests at a time.",
|
|
253
357
|
"examples": [
|
|
254
|
-
"
|
|
255
|
-
"
|
|
358
|
+
"Create a manifest for deploying or retrieving all Apex classes and custom objects:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass --metadata CustomObject",
|
|
359
|
+
"Create a manifest for deleting the specified Apex class:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass --type destroy",
|
|
360
|
+
"Create a manifest for deploying or retrieving all the metadata components in the specified local directory; name the file myNewManifest.xml:\n$ <%= config.bin %> <%= command.id %> --source-dir force-app --name myNewManifest",
|
|
361
|
+
"Create a manifest from the metadata components in the specified org and include metadata in any unlocked packages:\n$ <%= config.bin %> <%= command.id %> --from-org test@myorg.com --include-packages unlocked",
|
|
362
|
+
"Create a manifest from specific metadata types in an org:\n$ <%= config.bin %> <%= command.id %> --from-org test@myorg.com --metadata ApexClass,CustomObject,CustomLabels",
|
|
363
|
+
"Create a manifest from all metadata components in an org excluding specific metadata types:\n$ <%= config.bin %> <%= command.id %> --from-org test@myorg.com --excluded-metadata StandardValueSet"
|
|
256
364
|
],
|
|
257
365
|
"flags": {
|
|
258
366
|
"json": {
|
|
@@ -277,7 +385,6 @@
|
|
|
277
385
|
"deprecateAliases": true,
|
|
278
386
|
"description": "Override the api version used for api requests made by this command",
|
|
279
387
|
"name": "api-version",
|
|
280
|
-
"summary": "API Version to use in the generated project's manifest. By default, will use the version from sfdx-project.json",
|
|
281
388
|
"hasDynamicHelp": false,
|
|
282
389
|
"multiple": false,
|
|
283
390
|
"type": "option"
|
|
@@ -292,92 +399,137 @@
|
|
|
292
399
|
"multiple": false,
|
|
293
400
|
"type": "option"
|
|
294
401
|
},
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
"
|
|
300
|
-
"deprecateAliases": true,
|
|
301
|
-
"name": "root-dir",
|
|
302
|
-
"summary": "Source directory other than the default package to convert.",
|
|
402
|
+
"metadata": {
|
|
403
|
+
"char": "m",
|
|
404
|
+
"name": "metadata",
|
|
405
|
+
"summary": "Names of metadata components to include in the manifest.",
|
|
406
|
+
"delimiter": ",",
|
|
303
407
|
"hasDynamicHelp": false,
|
|
304
|
-
"multiple":
|
|
408
|
+
"multiple": true,
|
|
305
409
|
"type": "option"
|
|
306
410
|
},
|
|
307
|
-
"
|
|
411
|
+
"source-dir": {
|
|
308
412
|
"aliases": [
|
|
309
|
-
"
|
|
413
|
+
"sourcepath"
|
|
310
414
|
],
|
|
311
|
-
"char": "
|
|
415
|
+
"char": "p",
|
|
312
416
|
"deprecateAliases": true,
|
|
313
|
-
"name": "
|
|
314
|
-
"summary": "
|
|
315
|
-
"
|
|
316
|
-
"hasDynamicHelp":
|
|
317
|
-
"multiple":
|
|
417
|
+
"name": "source-dir",
|
|
418
|
+
"summary": "Paths to the local source files to include in the manifest.",
|
|
419
|
+
"delimiter": ",",
|
|
420
|
+
"hasDynamicHelp": false,
|
|
421
|
+
"multiple": true,
|
|
318
422
|
"type": "option"
|
|
319
423
|
},
|
|
320
|
-
"
|
|
424
|
+
"name": {
|
|
321
425
|
"aliases": [
|
|
322
|
-
"
|
|
426
|
+
"manifestname"
|
|
323
427
|
],
|
|
324
428
|
"char": "n",
|
|
325
429
|
"deprecateAliases": true,
|
|
326
|
-
"
|
|
327
|
-
|
|
430
|
+
"exclusive": [
|
|
431
|
+
"type"
|
|
432
|
+
],
|
|
433
|
+
"name": "name",
|
|
434
|
+
"summary": "Name of a custom manifest file to create.",
|
|
328
435
|
"hasDynamicHelp": false,
|
|
329
436
|
"multiple": false,
|
|
330
437
|
"type": "option"
|
|
331
438
|
},
|
|
332
|
-
"
|
|
333
|
-
"
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
"
|
|
439
|
+
"type": {
|
|
440
|
+
"aliases": [
|
|
441
|
+
"manifesttype"
|
|
442
|
+
],
|
|
443
|
+
"char": "t",
|
|
444
|
+
"deprecateAliases": true,
|
|
445
|
+
"exclusive": [
|
|
446
|
+
"name"
|
|
447
|
+
],
|
|
448
|
+
"name": "type",
|
|
449
|
+
"summary": "Type of manifest to create; the type determines the name of the created file.",
|
|
337
450
|
"hasDynamicHelp": false,
|
|
338
451
|
"multiple": false,
|
|
452
|
+
"options": [
|
|
453
|
+
"pre",
|
|
454
|
+
"post",
|
|
455
|
+
"destroy",
|
|
456
|
+
"package"
|
|
457
|
+
],
|
|
339
458
|
"type": "option"
|
|
340
459
|
},
|
|
341
|
-
"
|
|
460
|
+
"include-packages": {
|
|
342
461
|
"aliases": [
|
|
343
|
-
"
|
|
462
|
+
"includepackages"
|
|
344
463
|
],
|
|
345
|
-
"char": "
|
|
346
|
-
"
|
|
347
|
-
|
|
348
|
-
"exclusive": [
|
|
349
|
-
"manifest",
|
|
350
|
-
"metadata"
|
|
464
|
+
"char": "c",
|
|
465
|
+
"dependsOn": [
|
|
466
|
+
"from-org"
|
|
351
467
|
],
|
|
352
|
-
"
|
|
353
|
-
"
|
|
468
|
+
"deprecateAliases": true,
|
|
469
|
+
"name": "include-packages",
|
|
470
|
+
"summary": "Package types (managed, unlocked) whose metadata is included in the manifest; by default, metadata in managed and unlocked packages is excluded. Metadata in unmanaged packages is always included.",
|
|
354
471
|
"delimiter": ",",
|
|
355
472
|
"hasDynamicHelp": false,
|
|
356
473
|
"multiple": true,
|
|
474
|
+
"options": [
|
|
475
|
+
"managed",
|
|
476
|
+
"unlocked"
|
|
477
|
+
],
|
|
357
478
|
"type": "option"
|
|
358
479
|
},
|
|
359
|
-
"metadata": {
|
|
360
|
-
"
|
|
361
|
-
"
|
|
362
|
-
|
|
363
|
-
|
|
480
|
+
"excluded-metadata": {
|
|
481
|
+
"name": "excluded-metadata",
|
|
482
|
+
"relationships": [
|
|
483
|
+
{
|
|
484
|
+
"type": "some",
|
|
485
|
+
"flags": [
|
|
486
|
+
"from-org",
|
|
487
|
+
"source-dir"
|
|
488
|
+
]
|
|
489
|
+
}
|
|
364
490
|
],
|
|
365
|
-
"
|
|
366
|
-
"summary": "Metadata component names to convert.",
|
|
491
|
+
"summary": "Metadata types to exclude when building a manifest from an org. Specify the name of the type, not the name of a specific component.",
|
|
367
492
|
"delimiter": ",",
|
|
368
493
|
"hasDynamicHelp": false,
|
|
369
494
|
"multiple": true,
|
|
370
495
|
"type": "option"
|
|
496
|
+
},
|
|
497
|
+
"from-org": {
|
|
498
|
+
"aliases": [
|
|
499
|
+
"fromorg"
|
|
500
|
+
],
|
|
501
|
+
"deprecateAliases": true,
|
|
502
|
+
"exclusive": [
|
|
503
|
+
"source-dir"
|
|
504
|
+
],
|
|
505
|
+
"name": "from-org",
|
|
506
|
+
"summary": "Username or alias of the org that contains the metadata components from which to build a manifest.",
|
|
507
|
+
"hasDynamicHelp": false,
|
|
508
|
+
"multiple": false,
|
|
509
|
+
"type": "option"
|
|
510
|
+
},
|
|
511
|
+
"output-dir": {
|
|
512
|
+
"aliases": [
|
|
513
|
+
"outputdir",
|
|
514
|
+
"o"
|
|
515
|
+
],
|
|
516
|
+
"char": "d",
|
|
517
|
+
"deprecateAliases": true,
|
|
518
|
+
"name": "output-dir",
|
|
519
|
+
"summary": "Directory to save the created manifest.",
|
|
520
|
+
"hasDynamicHelp": false,
|
|
521
|
+
"multiple": false,
|
|
522
|
+
"type": "option"
|
|
371
523
|
}
|
|
372
524
|
},
|
|
373
|
-
"hasDynamicHelp":
|
|
525
|
+
"hasDynamicHelp": false,
|
|
374
526
|
"hiddenAliases": [],
|
|
375
|
-
"id": "project:
|
|
527
|
+
"id": "project:generate:manifest",
|
|
376
528
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
377
529
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
378
530
|
"pluginType": "core",
|
|
379
531
|
"strict": true,
|
|
380
|
-
"summary": "
|
|
532
|
+
"summary": "Create a project manifest that lists the metadata components you want to deploy or retrieve.",
|
|
381
533
|
"enableJsonFlag": true,
|
|
382
534
|
"requiresProject": true,
|
|
383
535
|
"isESM": true,
|
|
@@ -385,38 +537,54 @@
|
|
|
385
537
|
"lib",
|
|
386
538
|
"commands",
|
|
387
539
|
"project",
|
|
388
|
-
"
|
|
389
|
-
"
|
|
540
|
+
"generate",
|
|
541
|
+
"manifest.js"
|
|
390
542
|
],
|
|
391
543
|
"aliasPermutations": [
|
|
392
|
-
"force:source:
|
|
393
|
-
"source:force:
|
|
394
|
-
"source:
|
|
395
|
-
"
|
|
396
|
-
"
|
|
397
|
-
"
|
|
544
|
+
"force:source:manifest:create",
|
|
545
|
+
"source:force:manifest:create",
|
|
546
|
+
"source:manifest:force:create",
|
|
547
|
+
"source:manifest:create:force",
|
|
548
|
+
"force:manifest:source:create",
|
|
549
|
+
"manifest:force:source:create",
|
|
550
|
+
"manifest:source:force:create",
|
|
551
|
+
"manifest:source:create:force",
|
|
552
|
+
"force:manifest:create:source",
|
|
553
|
+
"manifest:force:create:source",
|
|
554
|
+
"manifest:create:force:source",
|
|
555
|
+
"manifest:create:source:force",
|
|
556
|
+
"force:source:create:manifest",
|
|
557
|
+
"source:force:create:manifest",
|
|
558
|
+
"source:create:force:manifest",
|
|
559
|
+
"source:create:manifest:force",
|
|
560
|
+
"force:create:source:manifest",
|
|
561
|
+
"create:force:source:manifest",
|
|
562
|
+
"create:source:force:manifest",
|
|
563
|
+
"create:source:manifest:force",
|
|
564
|
+
"force:create:manifest:source",
|
|
565
|
+
"create:force:manifest:source",
|
|
566
|
+
"create:manifest:force:source",
|
|
567
|
+
"create:manifest:source:force"
|
|
398
568
|
],
|
|
399
569
|
"permutations": [
|
|
400
|
-
"project:
|
|
401
|
-
"
|
|
402
|
-
"
|
|
403
|
-
"project:
|
|
404
|
-
"
|
|
405
|
-
"
|
|
570
|
+
"project:generate:manifest",
|
|
571
|
+
"generate:project:manifest",
|
|
572
|
+
"generate:manifest:project",
|
|
573
|
+
"project:manifest:generate",
|
|
574
|
+
"manifest:project:generate",
|
|
575
|
+
"manifest:generate:project"
|
|
406
576
|
]
|
|
407
577
|
},
|
|
408
|
-
"project:
|
|
578
|
+
"project:convert:mdapi": {
|
|
409
579
|
"aliases": [
|
|
410
|
-
"force:
|
|
580
|
+
"force:mdapi:convert"
|
|
411
581
|
],
|
|
412
582
|
"args": {},
|
|
413
583
|
"deprecateAliases": true,
|
|
414
|
-
"description": "
|
|
584
|
+
"description": "To use Salesforce CLI to work with components that you retrieved via Metadata API, first convert your files from the metadata format to the source format using this command.\n\nTo convert files from the source format back to the metadata format, run \"sf project convert source\".\n\nTo convert multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --source-dir.",
|
|
415
585
|
"examples": [
|
|
416
|
-
"
|
|
417
|
-
"
|
|
418
|
-
"Run the tests that aren’t in any managed packages as part of the deletion; if the delete succeeds, and the org has source-tracking enabled, update the source tracking information:\n<%= config.bin %> <%= command.id %> --metadata ApexClass --test-level RunLocalTests --track-source",
|
|
419
|
-
"Delete the Apex source files in a directory and the corresponding components from your default org:\n<%= config.bin %> <%= command.id %> --source-dir force-app/main/default/classes"
|
|
586
|
+
"Convert metadata formatted files in the specified directory into source formatted files; writes converted files to your default package directory:\n$ <%= config.bin %> <%= command.id %> --root-dir path/to/metadata",
|
|
587
|
+
"Similar to previous example, but writes converted files to the specified output directory:\n$ <%= config.bin %> <%= command.id %> --root-dir path/to/metadata --output-dir path/to/outputdir"
|
|
420
588
|
],
|
|
421
589
|
"flags": {
|
|
422
590
|
"json": {
|
|
@@ -455,149 +623,181 @@
|
|
|
455
623
|
"multiple": false,
|
|
456
624
|
"type": "option"
|
|
457
625
|
},
|
|
458
|
-
"
|
|
626
|
+
"root-dir": {
|
|
459
627
|
"aliases": [
|
|
460
|
-
"
|
|
461
|
-
"u"
|
|
628
|
+
"rootdir"
|
|
462
629
|
],
|
|
463
|
-
"char": "
|
|
630
|
+
"char": "r",
|
|
464
631
|
"deprecateAliases": true,
|
|
465
|
-
"name": "
|
|
466
|
-
"noCacheDefault": true,
|
|
632
|
+
"name": "root-dir",
|
|
467
633
|
"required": true,
|
|
468
|
-
"summary": "
|
|
469
|
-
"hasDynamicHelp":
|
|
634
|
+
"summary": "Root directory that contains the Metadata API–formatted metadata.",
|
|
635
|
+
"hasDynamicHelp": false,
|
|
470
636
|
"multiple": false,
|
|
471
637
|
"type": "option"
|
|
472
638
|
},
|
|
473
|
-
"
|
|
639
|
+
"output-dir": {
|
|
474
640
|
"aliases": [
|
|
475
|
-
"
|
|
641
|
+
"outputdir"
|
|
476
642
|
],
|
|
477
|
-
"char": "
|
|
643
|
+
"char": "d",
|
|
478
644
|
"deprecateAliases": true,
|
|
479
|
-
"
|
|
480
|
-
"
|
|
481
|
-
"
|
|
482
|
-
"allowNo": false,
|
|
483
|
-
"type": "boolean"
|
|
484
|
-
},
|
|
485
|
-
"wait": {
|
|
486
|
-
"char": "w",
|
|
487
|
-
"description": "If the command continues to run after the wait period, the CLI returns control of the terminal window to you.",
|
|
488
|
-
"name": "wait",
|
|
489
|
-
"summary": "Number of minutes to wait for the command to finish.",
|
|
490
|
-
"hasDynamicHelp": true,
|
|
645
|
+
"name": "output-dir",
|
|
646
|
+
"summary": "Directory to store your files in after they’re converted to source format; can be an absolute or relative path.",
|
|
647
|
+
"hasDynamicHelp": false,
|
|
491
648
|
"multiple": false,
|
|
492
649
|
"type": "option"
|
|
493
650
|
},
|
|
494
|
-
"
|
|
495
|
-
"
|
|
496
|
-
"
|
|
497
|
-
"name": "
|
|
498
|
-
"summary": "
|
|
651
|
+
"manifest": {
|
|
652
|
+
"char": "x",
|
|
653
|
+
"description": "If you specify this flag, don’t specify --metadata or --source-dir.",
|
|
654
|
+
"name": "manifest",
|
|
655
|
+
"summary": "File path to manifest (package.xml) of metadata types to convert.",
|
|
499
656
|
"hasDynamicHelp": false,
|
|
500
|
-
"multiple":
|
|
657
|
+
"multiple": false,
|
|
501
658
|
"type": "option"
|
|
502
659
|
},
|
|
503
|
-
"
|
|
660
|
+
"metadata-dir": {
|
|
504
661
|
"aliases": [
|
|
505
|
-
"
|
|
662
|
+
"metadatapath"
|
|
506
663
|
],
|
|
507
|
-
"char": "
|
|
664
|
+
"char": "p",
|
|
508
665
|
"deprecateAliases": true,
|
|
509
|
-
"description": "
|
|
510
|
-
"
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
"hasDynamicHelp": false,
|
|
514
|
-
"multiple": false,
|
|
515
|
-
"options": [
|
|
516
|
-
"NoTestRun",
|
|
517
|
-
"RunSpecifiedTests",
|
|
518
|
-
"RunLocalTests",
|
|
519
|
-
"RunAllTestsInOrg"
|
|
666
|
+
"description": "The supplied paths can be to a single file (in which case the operation is applied to only one file) or to a folder (in which case the operation is applied to all metadata types in the directory and its sub-directories).\n\nIf you specify this flag, don’t specify --manifest or --metadata. If the comma-separated list you’re supplying contains spaces, enclose the entire comma-separated list in one set of double quotes.",
|
|
667
|
+
"exclusive": [
|
|
668
|
+
"manifest",
|
|
669
|
+
"metadata"
|
|
520
670
|
],
|
|
671
|
+
"name": "metadata-dir",
|
|
672
|
+
"summary": "Root of directory or zip file of metadata formatted files to convert.",
|
|
673
|
+
"delimiter": ",",
|
|
674
|
+
"hasDynamicHelp": false,
|
|
675
|
+
"multiple": true,
|
|
521
676
|
"type": "option"
|
|
522
677
|
},
|
|
523
|
-
"no-prompt": {
|
|
524
|
-
"aliases": [
|
|
525
|
-
"noprompt"
|
|
526
|
-
],
|
|
527
|
-
"char": "r",
|
|
528
|
-
"deprecateAliases": true,
|
|
529
|
-
"name": "no-prompt",
|
|
530
|
-
"summary": "Don't prompt for delete confirmation.",
|
|
531
|
-
"allowNo": false,
|
|
532
|
-
"type": "boolean"
|
|
533
|
-
},
|
|
534
678
|
"metadata": {
|
|
535
679
|
"char": "m",
|
|
536
|
-
"
|
|
680
|
+
"exclusive": [
|
|
681
|
+
"manifest",
|
|
682
|
+
"metadatapath"
|
|
683
|
+
],
|
|
537
684
|
"name": "metadata",
|
|
538
|
-
"summary": "Metadata
|
|
685
|
+
"summary": "Metadata component names to convert.",
|
|
539
686
|
"delimiter": ",",
|
|
540
687
|
"hasDynamicHelp": false,
|
|
541
688
|
"multiple": true,
|
|
542
689
|
"type": "option"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
"hasDynamicHelp": false,
|
|
693
|
+
"hiddenAliases": [],
|
|
694
|
+
"id": "project:convert:mdapi",
|
|
695
|
+
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
696
|
+
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
697
|
+
"pluginType": "core",
|
|
698
|
+
"strict": true,
|
|
699
|
+
"summary": "Convert metadata retrieved via Metadata API into the source format used in Salesforce DX projects.",
|
|
700
|
+
"enableJsonFlag": true,
|
|
701
|
+
"requiresProject": true,
|
|
702
|
+
"isESM": true,
|
|
703
|
+
"relativePath": [
|
|
704
|
+
"lib",
|
|
705
|
+
"commands",
|
|
706
|
+
"project",
|
|
707
|
+
"convert",
|
|
708
|
+
"mdapi.js"
|
|
709
|
+
],
|
|
710
|
+
"aliasPermutations": [
|
|
711
|
+
"force:mdapi:convert",
|
|
712
|
+
"mdapi:force:convert",
|
|
713
|
+
"mdapi:convert:force",
|
|
714
|
+
"force:convert:mdapi",
|
|
715
|
+
"convert:force:mdapi",
|
|
716
|
+
"convert:mdapi:force"
|
|
717
|
+
],
|
|
718
|
+
"permutations": [
|
|
719
|
+
"project:convert:mdapi",
|
|
720
|
+
"convert:project:mdapi",
|
|
721
|
+
"convert:mdapi:project",
|
|
722
|
+
"project:mdapi:convert",
|
|
723
|
+
"mdapi:project:convert",
|
|
724
|
+
"mdapi:convert:project"
|
|
725
|
+
]
|
|
726
|
+
},
|
|
727
|
+
"project:convert:source-behavior": {
|
|
728
|
+
"aliases": [],
|
|
729
|
+
"args": {},
|
|
730
|
+
"description": "Specifically, this command updates the \"sourceBehaviorOption\" option in the \"sfdx-project.json\" file and then converts the associated local source files in your project as needed.\n\nFor example, run this command with the \"--behavior decomposePermissionSetBeta\" flag to start decomposing permission sets when you deploy or retrieve them. Decomposing means breaking up the monolithic metadata API format XML file that corresponds to a metadata component into smaller XML files and directories based on its subtypes. Permission sets are not decomposed by default; you must opt-in to start decomposing them by using this command. When the command finishes, your \"sfdx-project.json\" file is updated to always decompose permission sets, and the existing permission set files in your local package directories are converted into the new decomposed format. You run this command only once for a given behavior change.\n\nFor more information about the possible values for the --behavior flag, see the \"sourceBehaviorOptions\" section in the https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_ws_config.htm topic.",
|
|
731
|
+
"examples": [
|
|
732
|
+
"Update your Salesforce DX project to decompose custom permission sets:\n<%= config.bin %> <%= command.id %> --behavior decomposePermissionSetBeta",
|
|
733
|
+
"Display what the command would do, but don't change any existing files:\n<%= config.bin %> <%= command.id %> --behavior decomposePermissionSetBeta --dry-run",
|
|
734
|
+
"Keep the temporary directory that contains the interim metadata API formatted files:\n<%= config.bin %> <%= command.id %> --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir"
|
|
735
|
+
],
|
|
736
|
+
"flags": {
|
|
737
|
+
"json": {
|
|
738
|
+
"description": "Format output as json.",
|
|
739
|
+
"helpGroup": "GLOBAL",
|
|
740
|
+
"name": "json",
|
|
741
|
+
"allowNo": false,
|
|
742
|
+
"type": "boolean"
|
|
543
743
|
},
|
|
544
|
-
"
|
|
545
|
-
"
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
"char": "p",
|
|
549
|
-
"deprecateAliases": true,
|
|
550
|
-
"description": "The supplied paths can be a single file (in which case the operation is applied to only one file) or a folder (in which case the operation is applied to all metadata types in the directory and its sub-directories).\n\nIf you specify this flag, don’t specify --metadata.",
|
|
551
|
-
"name": "source-dir",
|
|
552
|
-
"summary": "Source file paths to delete.",
|
|
553
|
-
"delimiter": ",",
|
|
744
|
+
"flags-dir": {
|
|
745
|
+
"helpGroup": "GLOBAL",
|
|
746
|
+
"name": "flags-dir",
|
|
747
|
+
"summary": "Import flag values from a directory.",
|
|
554
748
|
"hasDynamicHelp": false,
|
|
555
|
-
"multiple":
|
|
749
|
+
"multiple": false,
|
|
556
750
|
"type": "option"
|
|
557
751
|
},
|
|
558
|
-
"
|
|
559
|
-
"
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
"
|
|
563
|
-
"
|
|
564
|
-
"
|
|
565
|
-
|
|
752
|
+
"behavior": {
|
|
753
|
+
"char": "b",
|
|
754
|
+
"name": "behavior",
|
|
755
|
+
"required": true,
|
|
756
|
+
"summary": "Behavior to enable; the values correspond to the possible values of the \"sourceBehaviorOption\" option in the \"sfdx-project.json\" file.",
|
|
757
|
+
"hasDynamicHelp": false,
|
|
758
|
+
"multiple": false,
|
|
759
|
+
"options": [
|
|
760
|
+
"decomposeCustomLabelsBeta2",
|
|
761
|
+
"decomposeCustomLabelsBeta",
|
|
762
|
+
"decomposePermissionSetBeta",
|
|
763
|
+
"decomposePermissionSetBeta2",
|
|
764
|
+
"decomposeSharingRulesBeta",
|
|
765
|
+
"decomposeWorkflowBeta",
|
|
766
|
+
"decomposeExternalServiceRegistrationBeta"
|
|
566
767
|
],
|
|
567
|
-
"
|
|
568
|
-
"summary": "If the delete succeeds, update the source tracking information.",
|
|
569
|
-
"allowNo": false,
|
|
570
|
-
"type": "boolean"
|
|
768
|
+
"type": "option"
|
|
571
769
|
},
|
|
572
|
-
"
|
|
573
|
-
"
|
|
574
|
-
|
|
575
|
-
],
|
|
576
|
-
"char": "f",
|
|
577
|
-
"dependsOn": [
|
|
578
|
-
"track-source"
|
|
579
|
-
],
|
|
580
|
-
"deprecateAliases": true,
|
|
581
|
-
"name": "force-overwrite",
|
|
582
|
-
"summary": "Ignore conflict warnings and overwrite changes to the org.",
|
|
770
|
+
"dry-run": {
|
|
771
|
+
"name": "dry-run",
|
|
772
|
+
"summary": "Display what the command would do, but don't make any actual changes.",
|
|
583
773
|
"allowNo": false,
|
|
584
774
|
"type": "boolean"
|
|
585
775
|
},
|
|
586
|
-
"
|
|
587
|
-
"name": "
|
|
588
|
-
"summary": "
|
|
776
|
+
"preserve-temp-dir": {
|
|
777
|
+
"name": "preserve-temp-dir",
|
|
778
|
+
"summary": "Don't delete the metadata API format temporary directory that this command creates. Useful for debugging.",
|
|
589
779
|
"allowNo": false,
|
|
590
780
|
"type": "boolean"
|
|
781
|
+
},
|
|
782
|
+
"target-org": {
|
|
783
|
+
"char": "o",
|
|
784
|
+
"name": "target-org",
|
|
785
|
+
"noCacheDefault": true,
|
|
786
|
+
"summary": "Username or alias of the target org.",
|
|
787
|
+
"hasDynamicHelp": true,
|
|
788
|
+
"multiple": false,
|
|
789
|
+
"type": "option"
|
|
591
790
|
}
|
|
592
791
|
},
|
|
593
792
|
"hasDynamicHelp": true,
|
|
594
793
|
"hiddenAliases": [],
|
|
595
|
-
"id": "project:
|
|
794
|
+
"id": "project:convert:source-behavior",
|
|
596
795
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
597
796
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
598
797
|
"pluginType": "core",
|
|
798
|
+
"state": "beta",
|
|
599
799
|
"strict": true,
|
|
600
|
-
"summary": "
|
|
800
|
+
"summary": "Enable a behavior of your project source files, and then update your Salesforce DX project to implement the behavior.",
|
|
601
801
|
"enableJsonFlag": true,
|
|
602
802
|
"requiresProject": true,
|
|
603
803
|
"isESM": true,
|
|
@@ -605,35 +805,29 @@
|
|
|
605
805
|
"lib",
|
|
606
806
|
"commands",
|
|
607
807
|
"project",
|
|
608
|
-
"
|
|
609
|
-
"source.js"
|
|
610
|
-
],
|
|
611
|
-
"aliasPermutations": [
|
|
612
|
-
"force:source:delete",
|
|
613
|
-
"source:force:delete",
|
|
614
|
-
"source:delete:force",
|
|
615
|
-
"force:delete:source",
|
|
616
|
-
"delete:force:source",
|
|
617
|
-
"delete:source:force"
|
|
808
|
+
"convert",
|
|
809
|
+
"source-behavior.js"
|
|
618
810
|
],
|
|
811
|
+
"aliasPermutations": [],
|
|
619
812
|
"permutations": [
|
|
620
|
-
"project:
|
|
621
|
-
"
|
|
622
|
-
"
|
|
623
|
-
"project:source:
|
|
624
|
-
"source:project:
|
|
625
|
-
"source:
|
|
813
|
+
"project:convert:source-behavior",
|
|
814
|
+
"convert:project:source-behavior",
|
|
815
|
+
"convert:source-behavior:project",
|
|
816
|
+
"project:source-behavior:convert",
|
|
817
|
+
"source-behavior:project:convert",
|
|
818
|
+
"source-behavior:convert:project"
|
|
626
819
|
]
|
|
627
820
|
},
|
|
628
|
-
"project:
|
|
821
|
+
"project:convert:source": {
|
|
629
822
|
"aliases": [
|
|
630
|
-
"force:source:
|
|
823
|
+
"force:source:convert"
|
|
631
824
|
],
|
|
632
825
|
"args": {},
|
|
633
826
|
"deprecateAliases": true,
|
|
634
|
-
"description": "
|
|
827
|
+
"description": "To convert source-formatted files into the metadata format, so that you can deploy them using Metadata API, run this command. Then deploy the metadata using \"<%= config.bin %> project deploy\".\n\nTo convert Metadata API–formatted files into the source format, run \"<%= config.bin %> project convert mdapi\".\n\nTo specify a package name that includes spaces, enclose the name in single quotes.\n\nTo convert multiple components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --source-dir.",
|
|
635
828
|
"examples": [
|
|
636
|
-
"
|
|
829
|
+
"Convert source-formatted files in the specified directory into metadata-formatted files; writes converted files into a new directory:\n$ <%= config.bin %> <%= command.id %> --root-dir path/to/source",
|
|
830
|
+
"Similar to previous example, but writes converted files to the specified output directory and associates the files with the specified package:\n$ <%= config.bin %> <%= command.id %> --root-dir path/to/source --output-dir path/to/outputdir --package-name 'My Package'"
|
|
637
831
|
],
|
|
638
832
|
"flags": {
|
|
639
833
|
"json": {
|
|
@@ -658,6 +852,7 @@
|
|
|
658
852
|
"deprecateAliases": true,
|
|
659
853
|
"description": "Override the api version used for api requests made by this command",
|
|
660
854
|
"name": "api-version",
|
|
855
|
+
"summary": "API Version to use in the generated project's manifest. By default, will use the version from sfdx-project.json",
|
|
661
856
|
"hasDynamicHelp": false,
|
|
662
857
|
"multiple": false,
|
|
663
858
|
"type": "option"
|
|
@@ -672,84 +867,117 @@
|
|
|
672
867
|
"multiple": false,
|
|
673
868
|
"type": "option"
|
|
674
869
|
},
|
|
675
|
-
"
|
|
870
|
+
"root-dir": {
|
|
676
871
|
"aliases": [
|
|
677
|
-
"
|
|
678
|
-
"u"
|
|
872
|
+
"rootdir"
|
|
679
873
|
],
|
|
680
|
-
"char": "
|
|
874
|
+
"char": "r",
|
|
681
875
|
"deprecateAliases": true,
|
|
682
|
-
"name": "
|
|
683
|
-
"
|
|
684
|
-
"
|
|
685
|
-
"
|
|
876
|
+
"name": "root-dir",
|
|
877
|
+
"summary": "Source directory other than the default package to convert.",
|
|
878
|
+
"hasDynamicHelp": false,
|
|
879
|
+
"multiple": false,
|
|
880
|
+
"type": "option"
|
|
881
|
+
},
|
|
882
|
+
"output-dir": {
|
|
883
|
+
"aliases": [
|
|
884
|
+
"outputdir"
|
|
885
|
+
],
|
|
886
|
+
"char": "d",
|
|
887
|
+
"deprecateAliases": true,
|
|
888
|
+
"name": "output-dir",
|
|
889
|
+
"summary": "Output directory to store the Metadata API–formatted files in.",
|
|
890
|
+
"default": "metadataPackage_>timestamp<",
|
|
686
891
|
"hasDynamicHelp": true,
|
|
687
892
|
"multiple": false,
|
|
688
893
|
"type": "option"
|
|
689
894
|
},
|
|
690
|
-
"
|
|
895
|
+
"package-name": {
|
|
691
896
|
"aliases": [
|
|
692
|
-
"
|
|
897
|
+
"packagename"
|
|
898
|
+
],
|
|
899
|
+
"char": "n",
|
|
900
|
+
"deprecateAliases": true,
|
|
901
|
+
"name": "package-name",
|
|
902
|
+
"summary": "Name of the package to associate with the metadata-formatted files.",
|
|
903
|
+
"hasDynamicHelp": false,
|
|
904
|
+
"multiple": false,
|
|
905
|
+
"type": "option"
|
|
906
|
+
},
|
|
907
|
+
"manifest": {
|
|
908
|
+
"char": "x",
|
|
909
|
+
"description": "If you specify this flag, don’t specify --metadata or --source-dir.",
|
|
910
|
+
"name": "manifest",
|
|
911
|
+
"summary": "Path to the manifest (package.xml) file that specifies the metadata types to convert.",
|
|
912
|
+
"hasDynamicHelp": false,
|
|
913
|
+
"multiple": false,
|
|
914
|
+
"type": "option"
|
|
915
|
+
},
|
|
916
|
+
"source-dir": {
|
|
917
|
+
"aliases": [
|
|
918
|
+
"sourcepath"
|
|
693
919
|
],
|
|
694
920
|
"char": "p",
|
|
695
921
|
"deprecateAliases": true,
|
|
696
|
-
"
|
|
697
|
-
"
|
|
698
|
-
|
|
699
|
-
|
|
922
|
+
"description": "The supplied paths can be to a single file (in which case the operation is applied to only one file) or to a folder (in which case the operation is applied to all metadata types in the directory and its sub-directories).\n\nIf you specify this flag, don’t specify --manifest or --metadata.",
|
|
923
|
+
"exclusive": [
|
|
924
|
+
"manifest",
|
|
925
|
+
"metadata"
|
|
926
|
+
],
|
|
927
|
+
"name": "source-dir",
|
|
928
|
+
"summary": "Paths to the local source files to convert.",
|
|
929
|
+
"delimiter": ",",
|
|
930
|
+
"hasDynamicHelp": false,
|
|
931
|
+
"multiple": true,
|
|
932
|
+
"type": "option"
|
|
933
|
+
},
|
|
934
|
+
"metadata": {
|
|
935
|
+
"char": "m",
|
|
936
|
+
"exclusive": [
|
|
937
|
+
"manifest",
|
|
938
|
+
"sourcepath"
|
|
939
|
+
],
|
|
940
|
+
"name": "metadata",
|
|
941
|
+
"summary": "Metadata component names to convert.",
|
|
942
|
+
"delimiter": ",",
|
|
943
|
+
"hasDynamicHelp": false,
|
|
944
|
+
"multiple": true,
|
|
945
|
+
"type": "option"
|
|
700
946
|
}
|
|
701
947
|
},
|
|
702
948
|
"hasDynamicHelp": true,
|
|
703
949
|
"hiddenAliases": [],
|
|
704
|
-
"id": "project:
|
|
950
|
+
"id": "project:convert:source",
|
|
705
951
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
706
952
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
707
953
|
"pluginType": "core",
|
|
708
954
|
"strict": true,
|
|
709
|
-
"summary": "
|
|
955
|
+
"summary": "Convert source-formatted files into metadata that you can deploy using Metadata API.",
|
|
710
956
|
"enableJsonFlag": true,
|
|
711
|
-
"requiresProject": true,
|
|
712
|
-
"isESM": true,
|
|
713
|
-
"relativePath": [
|
|
714
|
-
"lib",
|
|
715
|
-
"commands",
|
|
716
|
-
"project",
|
|
717
|
-
"
|
|
718
|
-
"
|
|
719
|
-
],
|
|
720
|
-
"aliasPermutations": [
|
|
721
|
-
"force:source:
|
|
722
|
-
"source:force:
|
|
723
|
-
"source:
|
|
724
|
-
"
|
|
725
|
-
"force:
|
|
726
|
-
"
|
|
727
|
-
"tracking:source:force:clear",
|
|
728
|
-
"tracking:source:clear:force",
|
|
729
|
-
"force:tracking:clear:source",
|
|
730
|
-
"tracking:force:clear:source",
|
|
731
|
-
"tracking:clear:force:source",
|
|
732
|
-
"tracking:clear:source:force",
|
|
733
|
-
"force:source:clear:tracking",
|
|
734
|
-
"source:force:clear:tracking",
|
|
735
|
-
"source:clear:force:tracking",
|
|
736
|
-
"source:clear:tracking:force",
|
|
737
|
-
"force:clear:source:tracking",
|
|
738
|
-
"clear:force:source:tracking",
|
|
739
|
-
"clear:source:force:tracking",
|
|
740
|
-
"clear:source:tracking:force",
|
|
741
|
-
"force:clear:tracking:source",
|
|
742
|
-
"clear:force:tracking:source",
|
|
743
|
-
"clear:tracking:force:source",
|
|
744
|
-
"clear:tracking:source:force"
|
|
957
|
+
"requiresProject": true,
|
|
958
|
+
"isESM": true,
|
|
959
|
+
"relativePath": [
|
|
960
|
+
"lib",
|
|
961
|
+
"commands",
|
|
962
|
+
"project",
|
|
963
|
+
"convert",
|
|
964
|
+
"source.js"
|
|
965
|
+
],
|
|
966
|
+
"aliasPermutations": [
|
|
967
|
+
"force:source:convert",
|
|
968
|
+
"source:force:convert",
|
|
969
|
+
"source:convert:force",
|
|
970
|
+
"force:convert:source",
|
|
971
|
+
"convert:force:source",
|
|
972
|
+
"convert:source:force"
|
|
745
973
|
],
|
|
746
974
|
"permutations": [
|
|
747
|
-
"project:
|
|
748
|
-
"
|
|
749
|
-
"
|
|
750
|
-
"project:
|
|
751
|
-
"
|
|
752
|
-
"
|
|
975
|
+
"project:convert:source",
|
|
976
|
+
"convert:project:source",
|
|
977
|
+
"convert:source:project",
|
|
978
|
+
"project:source:convert",
|
|
979
|
+
"source:project:convert",
|
|
980
|
+
"source:convert:project"
|
|
753
981
|
]
|
|
754
982
|
},
|
|
755
983
|
"project:deploy:cancel": {
|
|
@@ -2247,234 +2475,6 @@
|
|
|
2247
2475
|
"validate:deploy:project"
|
|
2248
2476
|
]
|
|
2249
2477
|
},
|
|
2250
|
-
"project:generate:manifest": {
|
|
2251
|
-
"aliases": [
|
|
2252
|
-
"force:source:manifest:create"
|
|
2253
|
-
],
|
|
2254
|
-
"args": {},
|
|
2255
|
-
"deprecateAliases": true,
|
|
2256
|
-
"description": "Create a manifest from a list of metadata components (--metadata) or from one or more local directories that contain source files (--source-dir). You can specify either of these flags, not both.\n\nUse --type to specify the type of manifest you want to create. The resulting manifest files have specific names, such as the standard package.xml or destructiveChanges.xml to delete metadata. Valid values for this flag, and their respective file names, are:\n\n * package : package.xml (default)\n * pre : destructiveChangesPre.xml\n * post : destructiveChangesPost.xml\n * destroy : destructiveChanges.xml\n\nSee https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_deleting_files.htm for information about these destructive manifest files.\n\nUse --name to specify a custom name for the generated manifest if the pre-defined ones don’t suit your needs. You can specify either --type or --name, but not both.\n\nTo include multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --include-packages and --source-dir.\n\nTo build a manifest from the metadata in an org, use the --from-org flag. You can combine --from-org with the --metadata flag to include only certain metadata types, or with the --excluded-metadata flag to exclude certain metadata types. When building a manifest from an org, the command makes many concurrent API calls to discover the metadata that exists in the org. To limit the number of concurrent requests, use the SF_LIST_METADATA_BATCH_SIZE environment variable and set it to a size that works best for your org and environment. If you experience timeouts or inconsistent manifest contents, then setting this environment variable can improve accuracy. However, the command takes longer to run because it sends fewer requests at a time.",
|
|
2257
|
-
"examples": [
|
|
2258
|
-
"Create a manifest for deploying or retrieving all Apex classes and custom objects:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass --metadata CustomObject",
|
|
2259
|
-
"Create a manifest for deleting the specified Apex class:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass --type destroy",
|
|
2260
|
-
"Create a manifest for deploying or retrieving all the metadata components in the specified local directory; name the file myNewManifest.xml:\n$ <%= config.bin %> <%= command.id %> --source-dir force-app --name myNewManifest",
|
|
2261
|
-
"Create a manifest from the metadata components in the specified org and include metadata in any unlocked packages:\n$ <%= config.bin %> <%= command.id %> --from-org test@myorg.com --include-packages unlocked",
|
|
2262
|
-
"Create a manifest from specific metadata types in an org:\n$ <%= config.bin %> <%= command.id %> --from-org test@myorg.com --metadata ApexClass,CustomObject,CustomLabels",
|
|
2263
|
-
"Create a manifest from all metadata components in an org excluding specific metadata types:\n$ <%= config.bin %> <%= command.id %> --from-org test@myorg.com --excluded-metadata StandardValueSet"
|
|
2264
|
-
],
|
|
2265
|
-
"flags": {
|
|
2266
|
-
"json": {
|
|
2267
|
-
"description": "Format output as json.",
|
|
2268
|
-
"helpGroup": "GLOBAL",
|
|
2269
|
-
"name": "json",
|
|
2270
|
-
"allowNo": false,
|
|
2271
|
-
"type": "boolean"
|
|
2272
|
-
},
|
|
2273
|
-
"flags-dir": {
|
|
2274
|
-
"helpGroup": "GLOBAL",
|
|
2275
|
-
"name": "flags-dir",
|
|
2276
|
-
"summary": "Import flag values from a directory.",
|
|
2277
|
-
"hasDynamicHelp": false,
|
|
2278
|
-
"multiple": false,
|
|
2279
|
-
"type": "option"
|
|
2280
|
-
},
|
|
2281
|
-
"api-version": {
|
|
2282
|
-
"aliases": [
|
|
2283
|
-
"apiversion"
|
|
2284
|
-
],
|
|
2285
|
-
"deprecateAliases": true,
|
|
2286
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2287
|
-
"name": "api-version",
|
|
2288
|
-
"hasDynamicHelp": false,
|
|
2289
|
-
"multiple": false,
|
|
2290
|
-
"type": "option"
|
|
2291
|
-
},
|
|
2292
|
-
"loglevel": {
|
|
2293
|
-
"deprecated": {
|
|
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."
|
|
2295
|
-
},
|
|
2296
|
-
"hidden": true,
|
|
2297
|
-
"name": "loglevel",
|
|
2298
|
-
"hasDynamicHelp": false,
|
|
2299
|
-
"multiple": false,
|
|
2300
|
-
"type": "option"
|
|
2301
|
-
},
|
|
2302
|
-
"metadata": {
|
|
2303
|
-
"char": "m",
|
|
2304
|
-
"name": "metadata",
|
|
2305
|
-
"summary": "Names of metadata components to include in the manifest.",
|
|
2306
|
-
"delimiter": ",",
|
|
2307
|
-
"hasDynamicHelp": false,
|
|
2308
|
-
"multiple": true,
|
|
2309
|
-
"type": "option"
|
|
2310
|
-
},
|
|
2311
|
-
"source-dir": {
|
|
2312
|
-
"aliases": [
|
|
2313
|
-
"sourcepath"
|
|
2314
|
-
],
|
|
2315
|
-
"char": "p",
|
|
2316
|
-
"deprecateAliases": true,
|
|
2317
|
-
"name": "source-dir",
|
|
2318
|
-
"summary": "Paths to the local source files to include in the manifest.",
|
|
2319
|
-
"delimiter": ",",
|
|
2320
|
-
"hasDynamicHelp": false,
|
|
2321
|
-
"multiple": true,
|
|
2322
|
-
"type": "option"
|
|
2323
|
-
},
|
|
2324
|
-
"name": {
|
|
2325
|
-
"aliases": [
|
|
2326
|
-
"manifestname"
|
|
2327
|
-
],
|
|
2328
|
-
"char": "n",
|
|
2329
|
-
"deprecateAliases": true,
|
|
2330
|
-
"exclusive": [
|
|
2331
|
-
"type"
|
|
2332
|
-
],
|
|
2333
|
-
"name": "name",
|
|
2334
|
-
"summary": "Name of a custom manifest file to create.",
|
|
2335
|
-
"hasDynamicHelp": false,
|
|
2336
|
-
"multiple": false,
|
|
2337
|
-
"type": "option"
|
|
2338
|
-
},
|
|
2339
|
-
"type": {
|
|
2340
|
-
"aliases": [
|
|
2341
|
-
"manifesttype"
|
|
2342
|
-
],
|
|
2343
|
-
"char": "t",
|
|
2344
|
-
"deprecateAliases": true,
|
|
2345
|
-
"exclusive": [
|
|
2346
|
-
"name"
|
|
2347
|
-
],
|
|
2348
|
-
"name": "type",
|
|
2349
|
-
"summary": "Type of manifest to create; the type determines the name of the created file.",
|
|
2350
|
-
"hasDynamicHelp": false,
|
|
2351
|
-
"multiple": false,
|
|
2352
|
-
"options": [
|
|
2353
|
-
"pre",
|
|
2354
|
-
"post",
|
|
2355
|
-
"destroy",
|
|
2356
|
-
"package"
|
|
2357
|
-
],
|
|
2358
|
-
"type": "option"
|
|
2359
|
-
},
|
|
2360
|
-
"include-packages": {
|
|
2361
|
-
"aliases": [
|
|
2362
|
-
"includepackages"
|
|
2363
|
-
],
|
|
2364
|
-
"char": "c",
|
|
2365
|
-
"dependsOn": [
|
|
2366
|
-
"from-org"
|
|
2367
|
-
],
|
|
2368
|
-
"deprecateAliases": true,
|
|
2369
|
-
"name": "include-packages",
|
|
2370
|
-
"summary": "Package types (managed, unlocked) whose metadata is included in the manifest; by default, metadata in managed and unlocked packages is excluded. Metadata in unmanaged packages is always included.",
|
|
2371
|
-
"delimiter": ",",
|
|
2372
|
-
"hasDynamicHelp": false,
|
|
2373
|
-
"multiple": true,
|
|
2374
|
-
"options": [
|
|
2375
|
-
"managed",
|
|
2376
|
-
"unlocked"
|
|
2377
|
-
],
|
|
2378
|
-
"type": "option"
|
|
2379
|
-
},
|
|
2380
|
-
"excluded-metadata": {
|
|
2381
|
-
"name": "excluded-metadata",
|
|
2382
|
-
"relationships": [
|
|
2383
|
-
{
|
|
2384
|
-
"type": "some",
|
|
2385
|
-
"flags": [
|
|
2386
|
-
"from-org",
|
|
2387
|
-
"source-dir"
|
|
2388
|
-
]
|
|
2389
|
-
}
|
|
2390
|
-
],
|
|
2391
|
-
"summary": "Metadata types to exclude when building a manifest from an org. Specify the name of the type, not the name of a specific component.",
|
|
2392
|
-
"delimiter": ",",
|
|
2393
|
-
"hasDynamicHelp": false,
|
|
2394
|
-
"multiple": true,
|
|
2395
|
-
"type": "option"
|
|
2396
|
-
},
|
|
2397
|
-
"from-org": {
|
|
2398
|
-
"aliases": [
|
|
2399
|
-
"fromorg"
|
|
2400
|
-
],
|
|
2401
|
-
"deprecateAliases": true,
|
|
2402
|
-
"exclusive": [
|
|
2403
|
-
"source-dir"
|
|
2404
|
-
],
|
|
2405
|
-
"name": "from-org",
|
|
2406
|
-
"summary": "Username or alias of the org that contains the metadata components from which to build a manifest.",
|
|
2407
|
-
"hasDynamicHelp": false,
|
|
2408
|
-
"multiple": false,
|
|
2409
|
-
"type": "option"
|
|
2410
|
-
},
|
|
2411
|
-
"output-dir": {
|
|
2412
|
-
"aliases": [
|
|
2413
|
-
"outputdir",
|
|
2414
|
-
"o"
|
|
2415
|
-
],
|
|
2416
|
-
"char": "d",
|
|
2417
|
-
"deprecateAliases": true,
|
|
2418
|
-
"name": "output-dir",
|
|
2419
|
-
"summary": "Directory to save the created manifest.",
|
|
2420
|
-
"hasDynamicHelp": false,
|
|
2421
|
-
"multiple": false,
|
|
2422
|
-
"type": "option"
|
|
2423
|
-
}
|
|
2424
|
-
},
|
|
2425
|
-
"hasDynamicHelp": false,
|
|
2426
|
-
"hiddenAliases": [],
|
|
2427
|
-
"id": "project:generate:manifest",
|
|
2428
|
-
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
2429
|
-
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
2430
|
-
"pluginType": "core",
|
|
2431
|
-
"strict": true,
|
|
2432
|
-
"summary": "Create a project manifest that lists the metadata components you want to deploy or retrieve.",
|
|
2433
|
-
"enableJsonFlag": true,
|
|
2434
|
-
"requiresProject": true,
|
|
2435
|
-
"isESM": true,
|
|
2436
|
-
"relativePath": [
|
|
2437
|
-
"lib",
|
|
2438
|
-
"commands",
|
|
2439
|
-
"project",
|
|
2440
|
-
"generate",
|
|
2441
|
-
"manifest.js"
|
|
2442
|
-
],
|
|
2443
|
-
"aliasPermutations": [
|
|
2444
|
-
"force:source:manifest:create",
|
|
2445
|
-
"source:force:manifest:create",
|
|
2446
|
-
"source:manifest:force:create",
|
|
2447
|
-
"source:manifest:create:force",
|
|
2448
|
-
"force:manifest:source:create",
|
|
2449
|
-
"manifest:force:source:create",
|
|
2450
|
-
"manifest:source:force:create",
|
|
2451
|
-
"manifest:source:create:force",
|
|
2452
|
-
"force:manifest:create:source",
|
|
2453
|
-
"manifest:force:create:source",
|
|
2454
|
-
"manifest:create:force:source",
|
|
2455
|
-
"manifest:create:source:force",
|
|
2456
|
-
"force:source:create:manifest",
|
|
2457
|
-
"source:force:create:manifest",
|
|
2458
|
-
"source:create:force:manifest",
|
|
2459
|
-
"source:create:manifest:force",
|
|
2460
|
-
"force:create:source:manifest",
|
|
2461
|
-
"create:force:source:manifest",
|
|
2462
|
-
"create:source:force:manifest",
|
|
2463
|
-
"create:source:manifest:force",
|
|
2464
|
-
"force:create:manifest:source",
|
|
2465
|
-
"create:force:manifest:source",
|
|
2466
|
-
"create:manifest:force:source",
|
|
2467
|
-
"create:manifest:source:force"
|
|
2468
|
-
],
|
|
2469
|
-
"permutations": [
|
|
2470
|
-
"project:generate:manifest",
|
|
2471
|
-
"generate:project:manifest",
|
|
2472
|
-
"generate:manifest:project",
|
|
2473
|
-
"project:manifest:generate",
|
|
2474
|
-
"manifest:project:generate",
|
|
2475
|
-
"manifest:generate:project"
|
|
2476
|
-
]
|
|
2477
|
-
},
|
|
2478
2478
|
"project:list:ignored": {
|
|
2479
2479
|
"aliases": [
|
|
2480
2480
|
"force:source:ignored:list"
|
|
@@ -3051,5 +3051,5 @@
|
|
|
3051
3051
|
]
|
|
3052
3052
|
}
|
|
3053
3053
|
},
|
|
3054
|
-
"version": "3.22.
|
|
3054
|
+
"version": "3.22.15"
|
|
3055
3055
|
}
|