@salesforce/plugin-deploy-retrieve 3.19.0 → 3.19.2
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/oclif.manifest.json
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"commands": {
|
|
3
|
-
"project:
|
|
3
|
+
"project:convert:mdapi": {
|
|
4
4
|
"aliases": [
|
|
5
|
-
"force:
|
|
5
|
+
"force:mdapi:convert"
|
|
6
6
|
],
|
|
7
7
|
"args": {},
|
|
8
8
|
"deprecateAliases": true,
|
|
9
|
-
"description": "
|
|
9
|
+
"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.",
|
|
10
10
|
"examples": [
|
|
11
|
-
"
|
|
12
|
-
"
|
|
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"
|
|
11
|
+
"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",
|
|
12
|
+
"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"
|
|
15
13
|
],
|
|
16
14
|
"flags": {
|
|
17
15
|
"json": {
|
|
@@ -50,149 +48,80 @@
|
|
|
50
48
|
"multiple": false,
|
|
51
49
|
"type": "option"
|
|
52
50
|
},
|
|
53
|
-
"
|
|
51
|
+
"root-dir": {
|
|
54
52
|
"aliases": [
|
|
55
|
-
"
|
|
56
|
-
"u"
|
|
53
|
+
"rootdir"
|
|
57
54
|
],
|
|
58
|
-
"char": "
|
|
55
|
+
"char": "r",
|
|
59
56
|
"deprecateAliases": true,
|
|
60
|
-
"name": "
|
|
61
|
-
"noCacheDefault": true,
|
|
57
|
+
"name": "root-dir",
|
|
62
58
|
"required": true,
|
|
63
|
-
"summary": "
|
|
64
|
-
"hasDynamicHelp":
|
|
59
|
+
"summary": "Root directory that contains the Metadata API–formatted metadata.",
|
|
60
|
+
"hasDynamicHelp": false,
|
|
65
61
|
"multiple": false,
|
|
66
62
|
"type": "option"
|
|
67
63
|
},
|
|
68
|
-
"
|
|
64
|
+
"output-dir": {
|
|
69
65
|
"aliases": [
|
|
70
|
-
"
|
|
66
|
+
"outputdir"
|
|
71
67
|
],
|
|
72
|
-
"char": "
|
|
68
|
+
"char": "d",
|
|
73
69
|
"deprecateAliases": true,
|
|
74
|
-
"
|
|
75
|
-
"
|
|
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,
|
|
86
|
-
"multiple": false,
|
|
87
|
-
"type": "option"
|
|
88
|
-
},
|
|
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.",
|
|
70
|
+
"name": "output-dir",
|
|
71
|
+
"summary": "Directory to store your files in after they’re converted to source format; can be an absolute or relative path.",
|
|
94
72
|
"hasDynamicHelp": false,
|
|
95
|
-
"multiple":
|
|
73
|
+
"multiple": false,
|
|
96
74
|
"type": "option"
|
|
97
75
|
},
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
"
|
|
103
|
-
"deprecateAliases": true,
|
|
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.",
|
|
76
|
+
"manifest": {
|
|
77
|
+
"char": "x",
|
|
78
|
+
"description": "If you specify this flag, don’t specify --metadata or --source-dir.",
|
|
79
|
+
"name": "manifest",
|
|
80
|
+
"summary": "File path to manifest (package.xml) of metadata types to convert.",
|
|
108
81
|
"hasDynamicHelp": false,
|
|
109
82
|
"multiple": false,
|
|
110
|
-
"options": [
|
|
111
|
-
"NoTestRun",
|
|
112
|
-
"RunSpecifiedTests",
|
|
113
|
-
"RunLocalTests",
|
|
114
|
-
"RunAllTestsInOrg"
|
|
115
|
-
],
|
|
116
83
|
"type": "option"
|
|
117
84
|
},
|
|
118
|
-
"
|
|
85
|
+
"metadata-dir": {
|
|
119
86
|
"aliases": [
|
|
120
|
-
"
|
|
87
|
+
"metadatapath"
|
|
121
88
|
],
|
|
122
|
-
"char": "
|
|
89
|
+
"char": "p",
|
|
123
90
|
"deprecateAliases": true,
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
"
|
|
131
|
-
"description": "If you specify this flag, don’t specify --source-dir.",
|
|
132
|
-
"name": "metadata",
|
|
133
|
-
"summary": "Metadata components to delete.",
|
|
91
|
+
"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.",
|
|
92
|
+
"exclusive": [
|
|
93
|
+
"manifest",
|
|
94
|
+
"metadata"
|
|
95
|
+
],
|
|
96
|
+
"name": "metadata-dir",
|
|
97
|
+
"summary": "Root of directory or zip file of metadata formatted files to convert.",
|
|
134
98
|
"delimiter": ",",
|
|
135
99
|
"hasDynamicHelp": false,
|
|
136
100
|
"multiple": true,
|
|
137
101
|
"type": "option"
|
|
138
102
|
},
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
|
|
103
|
+
"metadata": {
|
|
104
|
+
"char": "m",
|
|
105
|
+
"exclusive": [
|
|
106
|
+
"manifest",
|
|
107
|
+
"metadatapath"
|
|
142
108
|
],
|
|
143
|
-
"
|
|
144
|
-
"
|
|
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.",
|
|
109
|
+
"name": "metadata",
|
|
110
|
+
"summary": "Metadata component names to convert.",
|
|
148
111
|
"delimiter": ",",
|
|
149
112
|
"hasDynamicHelp": false,
|
|
150
113
|
"multiple": true,
|
|
151
114
|
"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"
|
|
186
115
|
}
|
|
187
116
|
},
|
|
188
|
-
"hasDynamicHelp":
|
|
117
|
+
"hasDynamicHelp": false,
|
|
189
118
|
"hiddenAliases": [],
|
|
190
|
-
"id": "project:
|
|
119
|
+
"id": "project:convert:mdapi",
|
|
191
120
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
192
121
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
193
122
|
"pluginType": "core",
|
|
194
123
|
"strict": true,
|
|
195
|
-
"summary": "
|
|
124
|
+
"summary": "Convert metadata retrieved via Metadata API into the source format used in Salesforce DX projects.",
|
|
196
125
|
"enableJsonFlag": true,
|
|
197
126
|
"requiresProject": true,
|
|
198
127
|
"isESM": true,
|
|
@@ -200,35 +129,34 @@
|
|
|
200
129
|
"lib",
|
|
201
130
|
"commands",
|
|
202
131
|
"project",
|
|
203
|
-
"
|
|
204
|
-
"
|
|
132
|
+
"convert",
|
|
133
|
+
"mdapi.js"
|
|
205
134
|
],
|
|
206
135
|
"aliasPermutations": [
|
|
207
|
-
"force:
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
"force:
|
|
211
|
-
"
|
|
212
|
-
"
|
|
136
|
+
"force:mdapi:convert",
|
|
137
|
+
"mdapi:force:convert",
|
|
138
|
+
"mdapi:convert:force",
|
|
139
|
+
"force:convert:mdapi",
|
|
140
|
+
"convert:force:mdapi",
|
|
141
|
+
"convert:mdapi:force"
|
|
213
142
|
],
|
|
214
143
|
"permutations": [
|
|
215
|
-
"project:
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"project:
|
|
219
|
-
"
|
|
220
|
-
"
|
|
144
|
+
"project:convert:mdapi",
|
|
145
|
+
"convert:project:mdapi",
|
|
146
|
+
"convert:mdapi:project",
|
|
147
|
+
"project:mdapi:convert",
|
|
148
|
+
"mdapi:project:convert",
|
|
149
|
+
"mdapi:convert:project"
|
|
221
150
|
]
|
|
222
151
|
},
|
|
223
|
-
"project:
|
|
224
|
-
"aliases": [
|
|
225
|
-
"force:source:tracking:clear"
|
|
226
|
-
],
|
|
152
|
+
"project:convert:source-behavior": {
|
|
153
|
+
"aliases": [],
|
|
227
154
|
"args": {},
|
|
228
|
-
"
|
|
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.",
|
|
155
|
+
"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.",
|
|
230
156
|
"examples": [
|
|
231
|
-
"
|
|
157
|
+
"Update your Salesforce DX project to decompose custom permission sets:\n<%= config.bin %> <%= command.id %> --behavior decomposePermissionSetBeta",
|
|
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"
|
|
232
160
|
],
|
|
233
161
|
"flags": {
|
|
234
162
|
"json": {
|
|
@@ -246,62 +174,55 @@
|
|
|
246
174
|
"multiple": false,
|
|
247
175
|
"type": "option"
|
|
248
176
|
},
|
|
249
|
-
"
|
|
250
|
-
"
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
"
|
|
254
|
-
"description": "Override the api version used for api requests made by this command",
|
|
255
|
-
"name": "api-version",
|
|
177
|
+
"behavior": {
|
|
178
|
+
"char": "b",
|
|
179
|
+
"name": "behavior",
|
|
180
|
+
"required": true,
|
|
181
|
+
"summary": "Behavior to enable; the values correspond to the possible values of the \"sourceBehaviorOption\" option in the \"sfdx-project.json\" file.",
|
|
256
182
|
"hasDynamicHelp": false,
|
|
257
183
|
"multiple": false,
|
|
184
|
+
"options": [
|
|
185
|
+
"decomposeCustomLabelsBeta2",
|
|
186
|
+
"decomposeCustomLabelsBeta",
|
|
187
|
+
"decomposePermissionSetBeta",
|
|
188
|
+
"decomposePermissionSetBeta2",
|
|
189
|
+
"decomposeSharingRulesBeta",
|
|
190
|
+
"decomposeWorkflowBeta",
|
|
191
|
+
"decomposeExternalServiceRegistrationBeta"
|
|
192
|
+
],
|
|
258
193
|
"type": "option"
|
|
259
194
|
},
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
"
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
"
|
|
268
|
-
"
|
|
195
|
+
"dry-run": {
|
|
196
|
+
"name": "dry-run",
|
|
197
|
+
"summary": "Display what the command would do, but don't make any actual changes.",
|
|
198
|
+
"allowNo": false,
|
|
199
|
+
"type": "boolean"
|
|
200
|
+
},
|
|
201
|
+
"preserve-temp-dir": {
|
|
202
|
+
"name": "preserve-temp-dir",
|
|
203
|
+
"summary": "Don't delete the metadata API format temporary directory that this command creates. Useful for debugging.",
|
|
204
|
+
"allowNo": false,
|
|
205
|
+
"type": "boolean"
|
|
269
206
|
},
|
|
270
207
|
"target-org": {
|
|
271
|
-
"aliases": [
|
|
272
|
-
"targetusername",
|
|
273
|
-
"u"
|
|
274
|
-
],
|
|
275
208
|
"char": "o",
|
|
276
|
-
"deprecateAliases": true,
|
|
277
209
|
"name": "target-org",
|
|
278
210
|
"noCacheDefault": true,
|
|
279
|
-
"
|
|
280
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
211
|
+
"summary": "Username or alias of the target org.",
|
|
281
212
|
"hasDynamicHelp": true,
|
|
282
213
|
"multiple": false,
|
|
283
214
|
"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"
|
|
295
215
|
}
|
|
296
216
|
},
|
|
297
217
|
"hasDynamicHelp": true,
|
|
298
218
|
"hiddenAliases": [],
|
|
299
|
-
"id": "project:
|
|
219
|
+
"id": "project:convert:source-behavior",
|
|
300
220
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
301
221
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
302
222
|
"pluginType": "core",
|
|
223
|
+
"state": "beta",
|
|
303
224
|
"strict": true,
|
|
304
|
-
"summary": "
|
|
225
|
+
"summary": "Enable a behavior of your project source files, and then update your Salesforce DX project to implement the behavior.",
|
|
305
226
|
"enableJsonFlag": true,
|
|
306
227
|
"requiresProject": true,
|
|
307
228
|
"isESM": true,
|
|
@@ -309,54 +230,29 @@
|
|
|
309
230
|
"lib",
|
|
310
231
|
"commands",
|
|
311
232
|
"project",
|
|
312
|
-
"
|
|
313
|
-
"
|
|
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"
|
|
233
|
+
"convert",
|
|
234
|
+
"source-behavior.js"
|
|
340
235
|
],
|
|
236
|
+
"aliasPermutations": [],
|
|
341
237
|
"permutations": [
|
|
342
|
-
"project:
|
|
343
|
-
"
|
|
344
|
-
"
|
|
345
|
-
"project:
|
|
346
|
-
"
|
|
347
|
-
"
|
|
238
|
+
"project:convert:source-behavior",
|
|
239
|
+
"convert:project:source-behavior",
|
|
240
|
+
"convert:source-behavior:project",
|
|
241
|
+
"project:source-behavior:convert",
|
|
242
|
+
"source-behavior:project:convert",
|
|
243
|
+
"source-behavior:convert:project"
|
|
348
244
|
]
|
|
349
245
|
},
|
|
350
|
-
"project:convert:
|
|
246
|
+
"project:convert:source": {
|
|
351
247
|
"aliases": [
|
|
352
|
-
"force:
|
|
248
|
+
"force:source:convert"
|
|
353
249
|
],
|
|
354
250
|
"args": {},
|
|
355
251
|
"deprecateAliases": true,
|
|
356
|
-
"description": "To
|
|
252
|
+
"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.",
|
|
357
253
|
"examples": [
|
|
358
|
-
"Convert
|
|
359
|
-
"Similar to previous example, but writes converted files to the specified output directory:\n$ <%= config.bin %> <%= command.id %> --root-dir path/to/
|
|
254
|
+
"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",
|
|
255
|
+
"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'"
|
|
360
256
|
],
|
|
361
257
|
"flags": {
|
|
362
258
|
"json": {
|
|
@@ -381,6 +277,7 @@
|
|
|
381
277
|
"deprecateAliases": true,
|
|
382
278
|
"description": "Override the api version used for api requests made by this command",
|
|
383
279
|
"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",
|
|
384
281
|
"hasDynamicHelp": false,
|
|
385
282
|
"multiple": false,
|
|
386
283
|
"type": "option"
|
|
@@ -402,8 +299,7 @@
|
|
|
402
299
|
"char": "r",
|
|
403
300
|
"deprecateAliases": true,
|
|
404
301
|
"name": "root-dir",
|
|
405
|
-
"
|
|
406
|
-
"summary": "Root directory that contains the Metadata API–formatted metadata.",
|
|
302
|
+
"summary": "Source directory other than the default package to convert.",
|
|
407
303
|
"hasDynamicHelp": false,
|
|
408
304
|
"multiple": false,
|
|
409
305
|
"type": "option"
|
|
@@ -415,7 +311,20 @@
|
|
|
415
311
|
"char": "d",
|
|
416
312
|
"deprecateAliases": true,
|
|
417
313
|
"name": "output-dir",
|
|
418
|
-
"summary": "
|
|
314
|
+
"summary": "Output directory to store the Metadata API–formatted files in.",
|
|
315
|
+
"default": "metadataPackage_>timestamp<",
|
|
316
|
+
"hasDynamicHelp": true,
|
|
317
|
+
"multiple": false,
|
|
318
|
+
"type": "option"
|
|
319
|
+
},
|
|
320
|
+
"package-name": {
|
|
321
|
+
"aliases": [
|
|
322
|
+
"packagename"
|
|
323
|
+
],
|
|
324
|
+
"char": "n",
|
|
325
|
+
"deprecateAliases": true,
|
|
326
|
+
"name": "package-name",
|
|
327
|
+
"summary": "Name of the package to associate with the metadata-formatted files.",
|
|
419
328
|
"hasDynamicHelp": false,
|
|
420
329
|
"multiple": false,
|
|
421
330
|
"type": "option"
|
|
@@ -424,24 +333,24 @@
|
|
|
424
333
|
"char": "x",
|
|
425
334
|
"description": "If you specify this flag, don’t specify --metadata or --source-dir.",
|
|
426
335
|
"name": "manifest",
|
|
427
|
-
"summary": "
|
|
336
|
+
"summary": "Path to the manifest (package.xml) file that specifies the metadata types to convert.",
|
|
428
337
|
"hasDynamicHelp": false,
|
|
429
338
|
"multiple": false,
|
|
430
339
|
"type": "option"
|
|
431
340
|
},
|
|
432
|
-
"
|
|
341
|
+
"source-dir": {
|
|
433
342
|
"aliases": [
|
|
434
|
-
"
|
|
343
|
+
"sourcepath"
|
|
435
344
|
],
|
|
436
345
|
"char": "p",
|
|
437
346
|
"deprecateAliases": true,
|
|
438
|
-
"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.
|
|
347
|
+
"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.",
|
|
439
348
|
"exclusive": [
|
|
440
349
|
"manifest",
|
|
441
350
|
"metadata"
|
|
442
351
|
],
|
|
443
|
-
"name": "
|
|
444
|
-
"summary": "
|
|
352
|
+
"name": "source-dir",
|
|
353
|
+
"summary": "Paths to the local source files to convert.",
|
|
445
354
|
"delimiter": ",",
|
|
446
355
|
"hasDynamicHelp": false,
|
|
447
356
|
"multiple": true,
|
|
@@ -451,7 +360,7 @@
|
|
|
451
360
|
"char": "m",
|
|
452
361
|
"exclusive": [
|
|
453
362
|
"manifest",
|
|
454
|
-
"
|
|
363
|
+
"sourcepath"
|
|
455
364
|
],
|
|
456
365
|
"name": "metadata",
|
|
457
366
|
"summary": "Metadata component names to convert.",
|
|
@@ -461,14 +370,14 @@
|
|
|
461
370
|
"type": "option"
|
|
462
371
|
}
|
|
463
372
|
},
|
|
464
|
-
"hasDynamicHelp":
|
|
373
|
+
"hasDynamicHelp": true,
|
|
465
374
|
"hiddenAliases": [],
|
|
466
|
-
"id": "project:convert:
|
|
375
|
+
"id": "project:convert:source",
|
|
467
376
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
468
377
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
469
378
|
"pluginType": "core",
|
|
470
379
|
"strict": true,
|
|
471
|
-
"summary": "Convert
|
|
380
|
+
"summary": "Convert source-formatted files into metadata that you can deploy using Metadata API.",
|
|
472
381
|
"enableJsonFlag": true,
|
|
473
382
|
"requiresProject": true,
|
|
474
383
|
"isESM": true,
|
|
@@ -477,129 +386,37 @@
|
|
|
477
386
|
"commands",
|
|
478
387
|
"project",
|
|
479
388
|
"convert",
|
|
480
|
-
"
|
|
389
|
+
"source.js"
|
|
481
390
|
],
|
|
482
391
|
"aliasPermutations": [
|
|
483
|
-
"force:
|
|
484
|
-
"
|
|
485
|
-
"
|
|
486
|
-
"force:convert:
|
|
487
|
-
"convert:force:
|
|
488
|
-
"convert:
|
|
489
|
-
],
|
|
490
|
-
"permutations": [
|
|
491
|
-
"project:convert:mdapi",
|
|
492
|
-
"convert:project:mdapi",
|
|
493
|
-
"convert:mdapi:project",
|
|
494
|
-
"project:mdapi:convert",
|
|
495
|
-
"mdapi:project:convert",
|
|
496
|
-
"mdapi:convert:project"
|
|
497
|
-
]
|
|
498
|
-
},
|
|
499
|
-
"project:convert:source-behavior": {
|
|
500
|
-
"aliases": [],
|
|
501
|
-
"args": {},
|
|
502
|
-
"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.",
|
|
503
|
-
"examples": [
|
|
504
|
-
"Update your Salesforce DX project to decompose custom permission sets:\n<%= config.bin %> <%= command.id %> --behavior decomposePermissionSetBeta",
|
|
505
|
-
"Display what the command would do, but don't change any existing files:\n<%= config.bin %> <%= command.id %> --behavior decomposePermissionSetBeta --dry-run",
|
|
506
|
-
"Keep the temporary directory that contains the interim metadata API formatted files:\n<%= config.bin %> <%= command.id %> --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir"
|
|
507
|
-
],
|
|
508
|
-
"flags": {
|
|
509
|
-
"json": {
|
|
510
|
-
"description": "Format output as json.",
|
|
511
|
-
"helpGroup": "GLOBAL",
|
|
512
|
-
"name": "json",
|
|
513
|
-
"allowNo": false,
|
|
514
|
-
"type": "boolean"
|
|
515
|
-
},
|
|
516
|
-
"flags-dir": {
|
|
517
|
-
"helpGroup": "GLOBAL",
|
|
518
|
-
"name": "flags-dir",
|
|
519
|
-
"summary": "Import flag values from a directory.",
|
|
520
|
-
"hasDynamicHelp": false,
|
|
521
|
-
"multiple": false,
|
|
522
|
-
"type": "option"
|
|
523
|
-
},
|
|
524
|
-
"behavior": {
|
|
525
|
-
"char": "b",
|
|
526
|
-
"name": "behavior",
|
|
527
|
-
"required": true,
|
|
528
|
-
"summary": "Behavior to enable; the values correspond to the possible values of the \"sourceBehaviorOption\" option in the \"sfdx-project.json\" file.",
|
|
529
|
-
"hasDynamicHelp": false,
|
|
530
|
-
"multiple": false,
|
|
531
|
-
"options": [
|
|
532
|
-
"decomposeCustomLabelsBeta2",
|
|
533
|
-
"decomposeCustomLabelsBeta",
|
|
534
|
-
"decomposePermissionSetBeta",
|
|
535
|
-
"decomposePermissionSetBeta2",
|
|
536
|
-
"decomposeSharingRulesBeta",
|
|
537
|
-
"decomposeWorkflowBeta",
|
|
538
|
-
"decomposeExternalServiceRegistrationBeta"
|
|
539
|
-
],
|
|
540
|
-
"type": "option"
|
|
541
|
-
},
|
|
542
|
-
"dry-run": {
|
|
543
|
-
"name": "dry-run",
|
|
544
|
-
"summary": "Display what the command would do, but don't make any actual changes.",
|
|
545
|
-
"allowNo": false,
|
|
546
|
-
"type": "boolean"
|
|
547
|
-
},
|
|
548
|
-
"preserve-temp-dir": {
|
|
549
|
-
"name": "preserve-temp-dir",
|
|
550
|
-
"summary": "Don't delete the metadata API format temporary directory that this command creates. Useful for debugging.",
|
|
551
|
-
"allowNo": false,
|
|
552
|
-
"type": "boolean"
|
|
553
|
-
},
|
|
554
|
-
"target-org": {
|
|
555
|
-
"char": "o",
|
|
556
|
-
"name": "target-org",
|
|
557
|
-
"noCacheDefault": true,
|
|
558
|
-
"summary": "Username or alias of the target org.",
|
|
559
|
-
"hasDynamicHelp": true,
|
|
560
|
-
"multiple": false,
|
|
561
|
-
"type": "option"
|
|
562
|
-
}
|
|
563
|
-
},
|
|
564
|
-
"hasDynamicHelp": true,
|
|
565
|
-
"hiddenAliases": [],
|
|
566
|
-
"id": "project:convert:source-behavior",
|
|
567
|
-
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
568
|
-
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
569
|
-
"pluginType": "core",
|
|
570
|
-
"state": "beta",
|
|
571
|
-
"strict": true,
|
|
572
|
-
"summary": "Enable a behavior of your project source files, and then update your Salesforce DX project to implement the behavior.",
|
|
573
|
-
"enableJsonFlag": true,
|
|
574
|
-
"requiresProject": true,
|
|
575
|
-
"isESM": true,
|
|
576
|
-
"relativePath": [
|
|
577
|
-
"lib",
|
|
578
|
-
"commands",
|
|
579
|
-
"project",
|
|
580
|
-
"convert",
|
|
581
|
-
"source-behavior.js"
|
|
392
|
+
"force:source:convert",
|
|
393
|
+
"source:force:convert",
|
|
394
|
+
"source:convert:force",
|
|
395
|
+
"force:convert:source",
|
|
396
|
+
"convert:force:source",
|
|
397
|
+
"convert:source:force"
|
|
582
398
|
],
|
|
583
|
-
"aliasPermutations": [],
|
|
584
399
|
"permutations": [
|
|
585
|
-
"project:convert:source
|
|
586
|
-
"convert:project:source
|
|
587
|
-
"convert:source
|
|
588
|
-
"project:source
|
|
589
|
-
"source
|
|
590
|
-
"source
|
|
400
|
+
"project:convert:source",
|
|
401
|
+
"convert:project:source",
|
|
402
|
+
"convert:source:project",
|
|
403
|
+
"project:source:convert",
|
|
404
|
+
"source:project:convert",
|
|
405
|
+
"source:convert:project"
|
|
591
406
|
]
|
|
592
407
|
},
|
|
593
|
-
"project:
|
|
408
|
+
"project:delete:source": {
|
|
594
409
|
"aliases": [
|
|
595
|
-
"force:source:
|
|
410
|
+
"force:source:delete"
|
|
596
411
|
],
|
|
597
412
|
"args": {},
|
|
598
413
|
"deprecateAliases": true,
|
|
599
|
-
"description": "
|
|
414
|
+
"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.",
|
|
600
415
|
"examples": [
|
|
601
|
-
"
|
|
602
|
-
"
|
|
416
|
+
"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",
|
|
417
|
+
"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",
|
|
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"
|
|
603
420
|
],
|
|
604
421
|
"flags": {
|
|
605
422
|
"json": {
|
|
@@ -624,7 +441,6 @@
|
|
|
624
441
|
"deprecateAliases": true,
|
|
625
442
|
"description": "Override the api version used for api requests made by this command",
|
|
626
443
|
"name": "api-version",
|
|
627
|
-
"summary": "API Version to use in the generated project's manifest. By default, will use the version from sfdx-project.json",
|
|
628
444
|
"hasDynamicHelp": false,
|
|
629
445
|
"multiple": false,
|
|
630
446
|
"type": "option"
|
|
@@ -639,50 +455,90 @@
|
|
|
639
455
|
"multiple": false,
|
|
640
456
|
"type": "option"
|
|
641
457
|
},
|
|
642
|
-
"
|
|
458
|
+
"target-org": {
|
|
643
459
|
"aliases": [
|
|
644
|
-
"
|
|
460
|
+
"targetusername",
|
|
461
|
+
"u"
|
|
645
462
|
],
|
|
646
|
-
"char": "
|
|
463
|
+
"char": "o",
|
|
647
464
|
"deprecateAliases": true,
|
|
648
|
-
"name": "
|
|
649
|
-
"
|
|
650
|
-
"
|
|
465
|
+
"name": "target-org",
|
|
466
|
+
"noCacheDefault": true,
|
|
467
|
+
"required": true,
|
|
468
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
469
|
+
"hasDynamicHelp": true,
|
|
651
470
|
"multiple": false,
|
|
652
471
|
"type": "option"
|
|
653
472
|
},
|
|
654
|
-
"
|
|
473
|
+
"check-only": {
|
|
655
474
|
"aliases": [
|
|
656
|
-
"
|
|
475
|
+
"checkonly"
|
|
657
476
|
],
|
|
658
|
-
"char": "
|
|
477
|
+
"char": "c",
|
|
659
478
|
"deprecateAliases": true,
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
479
|
+
"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.",
|
|
480
|
+
"name": "check-only",
|
|
481
|
+
"summary": "Validate delete command but don't delete anything from the org or the local project.",
|
|
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,
|
|
491
|
+
"multiple": false,
|
|
665
492
|
"type": "option"
|
|
666
493
|
},
|
|
667
|
-
"
|
|
494
|
+
"tests": {
|
|
495
|
+
"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\"",
|
|
496
|
+
"helpGroup": "Test",
|
|
497
|
+
"name": "tests",
|
|
498
|
+
"summary": "Apex tests to run when --test-level is RunSpecifiedTests.",
|
|
499
|
+
"hasDynamicHelp": false,
|
|
500
|
+
"multiple": true,
|
|
501
|
+
"type": "option"
|
|
502
|
+
},
|
|
503
|
+
"test-level": {
|
|
668
504
|
"aliases": [
|
|
669
|
-
"
|
|
505
|
+
"testlevel"
|
|
670
506
|
],
|
|
671
|
-
"char": "
|
|
507
|
+
"char": "l",
|
|
672
508
|
"deprecateAliases": true,
|
|
673
|
-
"
|
|
674
|
-
"
|
|
509
|
+
"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.",
|
|
510
|
+
"helpGroup": "Test",
|
|
511
|
+
"name": "test-level",
|
|
512
|
+
"summary": "Deployment Apex testing level.",
|
|
675
513
|
"hasDynamicHelp": false,
|
|
676
514
|
"multiple": false,
|
|
515
|
+
"options": [
|
|
516
|
+
"NoTestRun",
|
|
517
|
+
"RunSpecifiedTests",
|
|
518
|
+
"RunLocalTests",
|
|
519
|
+
"RunAllTestsInOrg"
|
|
520
|
+
],
|
|
677
521
|
"type": "option"
|
|
678
522
|
},
|
|
679
|
-
"
|
|
680
|
-
"
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
"
|
|
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
|
+
"metadata": {
|
|
535
|
+
"char": "m",
|
|
536
|
+
"description": "If you specify this flag, don’t specify --source-dir.",
|
|
537
|
+
"name": "metadata",
|
|
538
|
+
"summary": "Metadata components to delete.",
|
|
539
|
+
"delimiter": ",",
|
|
684
540
|
"hasDynamicHelp": false,
|
|
685
|
-
"multiple":
|
|
541
|
+
"multiple": true,
|
|
686
542
|
"type": "option"
|
|
687
543
|
},
|
|
688
544
|
"source-dir": {
|
|
@@ -691,40 +547,57 @@
|
|
|
691
547
|
],
|
|
692
548
|
"char": "p",
|
|
693
549
|
"deprecateAliases": true,
|
|
694
|
-
"description": "The supplied paths can be
|
|
695
|
-
"exclusive": [
|
|
696
|
-
"manifest",
|
|
697
|
-
"metadata"
|
|
698
|
-
],
|
|
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.",
|
|
699
551
|
"name": "source-dir",
|
|
700
|
-
"summary": "
|
|
552
|
+
"summary": "Source file paths to delete.",
|
|
701
553
|
"delimiter": ",",
|
|
702
554
|
"hasDynamicHelp": false,
|
|
703
555
|
"multiple": true,
|
|
704
556
|
"type": "option"
|
|
705
557
|
},
|
|
706
|
-
"
|
|
707
|
-
"
|
|
558
|
+
"track-source": {
|
|
559
|
+
"aliases": [
|
|
560
|
+
"tracksource"
|
|
561
|
+
],
|
|
562
|
+
"char": "t",
|
|
563
|
+
"deprecateAliases": true,
|
|
708
564
|
"exclusive": [
|
|
709
|
-
"
|
|
710
|
-
"sourcepath"
|
|
565
|
+
"check-only"
|
|
711
566
|
],
|
|
712
|
-
"name": "
|
|
713
|
-
"summary": "
|
|
714
|
-
"
|
|
715
|
-
"
|
|
716
|
-
|
|
717
|
-
|
|
567
|
+
"name": "track-source",
|
|
568
|
+
"summary": "If the delete succeeds, update the source tracking information.",
|
|
569
|
+
"allowNo": false,
|
|
570
|
+
"type": "boolean"
|
|
571
|
+
},
|
|
572
|
+
"force-overwrite": {
|
|
573
|
+
"aliases": [
|
|
574
|
+
"forceoverwrite"
|
|
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.",
|
|
583
|
+
"allowNo": false,
|
|
584
|
+
"type": "boolean"
|
|
585
|
+
},
|
|
586
|
+
"verbose": {
|
|
587
|
+
"name": "verbose",
|
|
588
|
+
"summary": "Verbose output of the delete result.",
|
|
589
|
+
"allowNo": false,
|
|
590
|
+
"type": "boolean"
|
|
718
591
|
}
|
|
719
592
|
},
|
|
720
593
|
"hasDynamicHelp": true,
|
|
721
594
|
"hiddenAliases": [],
|
|
722
|
-
"id": "project:
|
|
595
|
+
"id": "project:delete:source",
|
|
723
596
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
724
597
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
725
598
|
"pluginType": "core",
|
|
726
599
|
"strict": true,
|
|
727
|
-
"summary": "
|
|
600
|
+
"summary": "Delete source from your project and from a non-source-tracked org.",
|
|
728
601
|
"enableJsonFlag": true,
|
|
729
602
|
"requiresProject": true,
|
|
730
603
|
"isESM": true,
|
|
@@ -732,40 +605,35 @@
|
|
|
732
605
|
"lib",
|
|
733
606
|
"commands",
|
|
734
607
|
"project",
|
|
735
|
-
"
|
|
608
|
+
"delete",
|
|
736
609
|
"source.js"
|
|
737
610
|
],
|
|
738
611
|
"aliasPermutations": [
|
|
739
|
-
"force:source:
|
|
740
|
-
"source:force:
|
|
741
|
-
"source:
|
|
742
|
-
"force:
|
|
743
|
-
"
|
|
744
|
-
"
|
|
612
|
+
"force:source:delete",
|
|
613
|
+
"source:force:delete",
|
|
614
|
+
"source:delete:force",
|
|
615
|
+
"force:delete:source",
|
|
616
|
+
"delete:force:source",
|
|
617
|
+
"delete:source:force"
|
|
745
618
|
],
|
|
746
619
|
"permutations": [
|
|
747
|
-
"project:
|
|
748
|
-
"
|
|
749
|
-
"
|
|
750
|
-
"project:source:
|
|
751
|
-
"source:project:
|
|
752
|
-
"source:
|
|
620
|
+
"project:delete:source",
|
|
621
|
+
"delete:project:source",
|
|
622
|
+
"delete:source:project",
|
|
623
|
+
"project:source:delete",
|
|
624
|
+
"source:project:delete",
|
|
625
|
+
"source:delete:project"
|
|
753
626
|
]
|
|
754
627
|
},
|
|
755
|
-
"project:
|
|
628
|
+
"project:delete:tracking": {
|
|
756
629
|
"aliases": [
|
|
757
|
-
"force:source:
|
|
630
|
+
"force:source:tracking:clear"
|
|
758
631
|
],
|
|
759
632
|
"args": {},
|
|
760
633
|
"deprecateAliases": true,
|
|
761
|
-
"description": "
|
|
634
|
+
"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.",
|
|
762
635
|
"examples": [
|
|
763
|
-
"
|
|
764
|
-
"Create a manifest for deleting the specified Apex class:\n$ <%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass --type destroy",
|
|
765
|
-
"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",
|
|
766
|
-
"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",
|
|
767
|
-
"Create a manifest from specific metadata types in an org:\n$ <%= config.bin %> <%= command.id %> --from-org test@myorg.com --metadata ApexClass,CustomObject,CustomLabels",
|
|
768
|
-
"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"
|
|
636
|
+
"Delete local source tracking for the org with alias \"my-scratch\":\n$ <%= config.bin %> <%= command.id %> --target-org my-scratch"
|
|
769
637
|
],
|
|
770
638
|
"flags": {
|
|
771
639
|
"json": {
|
|
@@ -804,137 +672,41 @@
|
|
|
804
672
|
"multiple": false,
|
|
805
673
|
"type": "option"
|
|
806
674
|
},
|
|
807
|
-
"
|
|
808
|
-
"char": "m",
|
|
809
|
-
"name": "metadata",
|
|
810
|
-
"summary": "Names of metadata components to include in the manifest.",
|
|
811
|
-
"delimiter": ",",
|
|
812
|
-
"hasDynamicHelp": false,
|
|
813
|
-
"multiple": true,
|
|
814
|
-
"type": "option"
|
|
815
|
-
},
|
|
816
|
-
"source-dir": {
|
|
817
|
-
"aliases": [
|
|
818
|
-
"sourcepath"
|
|
819
|
-
],
|
|
820
|
-
"char": "p",
|
|
821
|
-
"deprecateAliases": true,
|
|
822
|
-
"name": "source-dir",
|
|
823
|
-
"summary": "Paths to the local source files to include in the manifest.",
|
|
824
|
-
"delimiter": ",",
|
|
825
|
-
"hasDynamicHelp": false,
|
|
826
|
-
"multiple": true,
|
|
827
|
-
"type": "option"
|
|
828
|
-
},
|
|
829
|
-
"name": {
|
|
830
|
-
"aliases": [
|
|
831
|
-
"manifestname"
|
|
832
|
-
],
|
|
833
|
-
"char": "n",
|
|
834
|
-
"deprecateAliases": true,
|
|
835
|
-
"exclusive": [
|
|
836
|
-
"type"
|
|
837
|
-
],
|
|
838
|
-
"name": "name",
|
|
839
|
-
"summary": "Name of a custom manifest file to create.",
|
|
840
|
-
"hasDynamicHelp": false,
|
|
841
|
-
"multiple": false,
|
|
842
|
-
"type": "option"
|
|
843
|
-
},
|
|
844
|
-
"type": {
|
|
845
|
-
"aliases": [
|
|
846
|
-
"manifesttype"
|
|
847
|
-
],
|
|
848
|
-
"char": "t",
|
|
849
|
-
"deprecateAliases": true,
|
|
850
|
-
"exclusive": [
|
|
851
|
-
"name"
|
|
852
|
-
],
|
|
853
|
-
"name": "type",
|
|
854
|
-
"summary": "Type of manifest to create; the type determines the name of the created file.",
|
|
855
|
-
"hasDynamicHelp": false,
|
|
856
|
-
"multiple": false,
|
|
857
|
-
"options": [
|
|
858
|
-
"pre",
|
|
859
|
-
"post",
|
|
860
|
-
"destroy",
|
|
861
|
-
"package"
|
|
862
|
-
],
|
|
863
|
-
"type": "option"
|
|
864
|
-
},
|
|
865
|
-
"include-packages": {
|
|
866
|
-
"aliases": [
|
|
867
|
-
"includepackages"
|
|
868
|
-
],
|
|
869
|
-
"char": "c",
|
|
870
|
-
"dependsOn": [
|
|
871
|
-
"from-org"
|
|
872
|
-
],
|
|
873
|
-
"deprecateAliases": true,
|
|
874
|
-
"name": "include-packages",
|
|
875
|
-
"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.",
|
|
876
|
-
"delimiter": ",",
|
|
877
|
-
"hasDynamicHelp": false,
|
|
878
|
-
"multiple": true,
|
|
879
|
-
"options": [
|
|
880
|
-
"managed",
|
|
881
|
-
"unlocked"
|
|
882
|
-
],
|
|
883
|
-
"type": "option"
|
|
884
|
-
},
|
|
885
|
-
"excluded-metadata": {
|
|
886
|
-
"name": "excluded-metadata",
|
|
887
|
-
"relationships": [
|
|
888
|
-
{
|
|
889
|
-
"type": "some",
|
|
890
|
-
"flags": [
|
|
891
|
-
"from-org",
|
|
892
|
-
"source-dir"
|
|
893
|
-
]
|
|
894
|
-
}
|
|
895
|
-
],
|
|
896
|
-
"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.",
|
|
897
|
-
"delimiter": ",",
|
|
898
|
-
"hasDynamicHelp": false,
|
|
899
|
-
"multiple": true,
|
|
900
|
-
"type": "option"
|
|
901
|
-
},
|
|
902
|
-
"from-org": {
|
|
675
|
+
"target-org": {
|
|
903
676
|
"aliases": [
|
|
904
|
-
"
|
|
677
|
+
"targetusername",
|
|
678
|
+
"u"
|
|
905
679
|
],
|
|
680
|
+
"char": "o",
|
|
906
681
|
"deprecateAliases": true,
|
|
907
|
-
"
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
"
|
|
911
|
-
"
|
|
912
|
-
"hasDynamicHelp": false,
|
|
682
|
+
"name": "target-org",
|
|
683
|
+
"noCacheDefault": true,
|
|
684
|
+
"required": true,
|
|
685
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
686
|
+
"hasDynamicHelp": true,
|
|
913
687
|
"multiple": false,
|
|
914
688
|
"type": "option"
|
|
915
689
|
},
|
|
916
|
-
"
|
|
690
|
+
"no-prompt": {
|
|
917
691
|
"aliases": [
|
|
918
|
-
"
|
|
919
|
-
"o"
|
|
692
|
+
"noprompt"
|
|
920
693
|
],
|
|
921
|
-
"char": "
|
|
694
|
+
"char": "p",
|
|
922
695
|
"deprecateAliases": true,
|
|
923
|
-
"name": "
|
|
924
|
-
"summary": "
|
|
925
|
-
"
|
|
926
|
-
"
|
|
927
|
-
"type": "option"
|
|
696
|
+
"name": "no-prompt",
|
|
697
|
+
"summary": "Don't prompt for source tracking override confirmation.",
|
|
698
|
+
"allowNo": false,
|
|
699
|
+
"type": "boolean"
|
|
928
700
|
}
|
|
929
701
|
},
|
|
930
|
-
"hasDynamicHelp":
|
|
702
|
+
"hasDynamicHelp": true,
|
|
931
703
|
"hiddenAliases": [],
|
|
932
|
-
"id": "project:
|
|
704
|
+
"id": "project:delete:tracking",
|
|
933
705
|
"pluginAlias": "@salesforce/plugin-deploy-retrieve",
|
|
934
706
|
"pluginName": "@salesforce/plugin-deploy-retrieve",
|
|
935
707
|
"pluginType": "core",
|
|
936
708
|
"strict": true,
|
|
937
|
-
"summary": "
|
|
709
|
+
"summary": "Delete all local source tracking information.",
|
|
938
710
|
"enableJsonFlag": true,
|
|
939
711
|
"requiresProject": true,
|
|
940
712
|
"isESM": true,
|
|
@@ -942,42 +714,42 @@
|
|
|
942
714
|
"lib",
|
|
943
715
|
"commands",
|
|
944
716
|
"project",
|
|
945
|
-
"
|
|
946
|
-
"
|
|
717
|
+
"delete",
|
|
718
|
+
"tracking.js"
|
|
947
719
|
],
|
|
948
720
|
"aliasPermutations": [
|
|
949
|
-
"force:source:
|
|
950
|
-
"source:force:
|
|
951
|
-
"source:
|
|
952
|
-
"source:
|
|
953
|
-
"force:
|
|
954
|
-
"
|
|
955
|
-
"
|
|
956
|
-
"
|
|
957
|
-
"force:
|
|
958
|
-
"
|
|
959
|
-
"
|
|
960
|
-
"
|
|
961
|
-
"force:source:
|
|
962
|
-
"source:force:
|
|
963
|
-
"source:
|
|
964
|
-
"source:
|
|
965
|
-
"force:
|
|
966
|
-
"
|
|
967
|
-
"
|
|
968
|
-
"
|
|
969
|
-
"force:
|
|
970
|
-
"
|
|
971
|
-
"
|
|
972
|
-
"
|
|
721
|
+
"force:source:tracking:clear",
|
|
722
|
+
"source:force:tracking:clear",
|
|
723
|
+
"source:tracking:force:clear",
|
|
724
|
+
"source:tracking:clear:force",
|
|
725
|
+
"force:tracking:source:clear",
|
|
726
|
+
"tracking:force:source:clear",
|
|
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"
|
|
973
745
|
],
|
|
974
746
|
"permutations": [
|
|
975
|
-
"project:
|
|
976
|
-
"
|
|
977
|
-
"
|
|
978
|
-
"project:
|
|
979
|
-
"
|
|
980
|
-
"
|
|
747
|
+
"project:delete:tracking",
|
|
748
|
+
"delete:project:tracking",
|
|
749
|
+
"delete:tracking:project",
|
|
750
|
+
"project:tracking:delete",
|
|
751
|
+
"tracking:project:delete",
|
|
752
|
+
"tracking:delete:project"
|
|
981
753
|
]
|
|
982
754
|
},
|
|
983
755
|
"project:deploy:cancel": {
|
|
@@ -2475,6 +2247,234 @@
|
|
|
2475
2247
|
"validate:deploy:project"
|
|
2476
2248
|
]
|
|
2477
2249
|
},
|
|
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"
|
|
@@ -3050,5 +3050,5 @@
|
|
|
3050
3050
|
]
|
|
3051
3051
|
}
|
|
3052
3052
|
},
|
|
3053
|
-
"version": "3.19.
|
|
3053
|
+
"version": "3.19.2"
|
|
3054
3054
|
}
|