@@ -80,7 +80,7 @@ $ npm install -g @salesforce/plugin-source
8080$ sfdx COMMAND
8181running command...
8282$ sfdx (-v| --version| version)
83- @salesforce/plugin-source/1.3.0 linux-x64 node-v12.22.7
83+ @salesforce/plugin-source/1.3.1 linux-x64 node-v12.22.7
8484$ sfdx --help [COMMAND]
8585USAGE
8686 $ sfdx COMMAND
9191# Commands
9292
9393<!-- commands -->
94+ * [ ` sfdx force:mdapi:describemetadata [-f <filepath>] [-u <string>] [-a <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forcemdapidescribemetadata--f-filepath--u-string--a-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
95+ * [ ` sfdx force:mdapi:listmetadata -m <string> [-f <filepath>] [--folder <string>] [-u <string>] [-a <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forcemdapilistmetadata--m-string--f-filepath---folder-string--u-string--a-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
9496* [ ` sfdx force:source:beta:pull [-f] [-w <minutes>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forcesourcebetapull--f--w-minutes--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
9597* [ ` sfdx force:source:beta:push [-f] [-w <minutes>] [-g] [-u <string>] [--apiversion <string>] [--quiet] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forcesourcebetapush--f--w-minutes--g--u-string---apiversion-string---quiet---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
9698* [ ` sfdx force:source:beta:status [-l | -r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forcesourcebetastatus--l---r--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
@@ -105,6 +107,89 @@ USAGE
105107* [ ` sfdx force:source:open -f <filepath> [-r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forcesourceopen--f-filepath--r--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
106108* [ ` sfdx force:source:retrieve [-p <array> | -x <filepath> | -m <array>] [-w <minutes>] [-n <array>] [-u <string>] [-a <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] ` ] ( #sfdx-forcesourceretrieve--p-array---x-filepath---m-array--w-minutes--n-array--u-string--a-string---verbose---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal )
107109
110+ ## ` sfdx force:mdapi:describemetadata [-f <filepath>] [-u <string>] [-a <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
111+
112+ display the metadata types enabled for your org
113+
114+ ```
115+ display the metadata types enabled for your org
116+
117+ USAGE
118+ $ sfdx force:mdapi:describemetadata [-f <filepath>] [-u <string>] [-a <string>] [--json] [--loglevel
119+ trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
120+
121+ OPTIONS
122+ -a, --apiversion=apiversion API version to use
123+
124+ -f, --resultfile=resultfile path to the file where results are
125+ stored
126+
127+ -u, --targetusername=targetusername username or alias for the target
128+ org; overrides default target org
129+
130+ --json format output as json
131+
132+ --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
133+ this command invocation
134+
135+ EXAMPLES
136+ $ sfdx force:mdapi:describemetadata -a 43.0
137+ $ sfdx force:mdapi:describemetadata -u [email protected] 138+ $ sfdx force:mdapi:describemetadata -f /path/to/outputfilename.txt
139+ $ sfdx force:mdapi:describemetadata -u [email protected] -f /path/to/outputfilename.txt 140+ ```
141+
142+ _ See code: [ src/commands/force/mdapi/describemetadata.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1/src/commands/force/mdapi/describemetadata.ts ) _
143+
144+ ## ` sfdx force:mdapi:listmetadata -m <string> [-f <filepath>] [--folder <string>] [-u <string>] [-a <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
145+
146+ display properties of metadata components of a specified type
147+
148+ ```
149+ display properties of metadata components of a specified type
150+
151+ USAGE
152+ $ sfdx force:mdapi:listmetadata -m <string> [-f <filepath>] [--folder <string>] [-u <string>] [-a <string>] [--json]
153+ [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
154+
155+ OPTIONS
156+ -a, --apiversion=apiversion API version to use
157+
158+ -f, --resultfile=resultfile path to the file where results are
159+ stored
160+
161+ -m, --metadatatype=metadatatype (required) metadata type to be
162+ retrieved, such as CustomObject;
163+ metadata type value is
164+ case-sensitive
165+
166+ -u, --targetusername=targetusername username or alias for the target
167+ org; overrides default target org
168+
169+ --folder=folder folder associated with the
170+ component; required for components
171+ that use folders; folder names are
172+ case-sensitive
173+
174+ --json format output as json
175+
176+ --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
177+ this command invocation
178+
179+ EXAMPLES
180+ $ sfdx force:mdapi:listmetadata -m CustomObject
181+ $ sfdx force:mdapi:listmetadata -m CustomObject -a 43.0
182+ $ sfdx force:mdapi:listmetadata -m CustomObject -u [email protected] 183+ $ sfdx force:mdapi:listmetadata -m CustomObject -f /path/to/outputfilename.txt
184+ $ sfdx force:mdapi:listmetadata -m Dashboard --folder foldername
185+ $ sfdx force:mdapi:listmetadata -m Dashboard --folder foldername -a 43.0
186+ $ sfdx force:mdapi:listmetadata -m Dashboard --folder foldername -u [email protected] 187+ $ sfdx force:mdapi:listmetadata -m Dashboard --folder foldername -f /path/to/outputfilename.txt
188+ $ sfdx force:mdapi:listmetadata -m CustomObject -u [email protected] -f /path/to/outputfilename.txt 189+ ```
190+
191+ _ See code: [ src/commands/force/mdapi/listmetadata.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1/src/commands/force/mdapi/listmetadata.ts ) _
192+
108193## ` sfdx force:source:beta:pull [-f] [-w <minutes>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
109194
110195pull source from the scratch org to the project
@@ -138,7 +223,7 @@ OPTIONS
138223 [default: warn] logging level for this command invocation
139224```
140225
141- _ See code: [ src/commands/force/source/beta/pull.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/beta/pull.ts ) _
226+ _ See code: [ src/commands/force/source/beta/pull.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/beta/pull.ts ) _
142227
143228## ` sfdx force:source:beta:push [-f] [-w <minutes>] [-g] [-u <string>] [--apiversion <string>] [--quiet] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
144229
@@ -179,7 +264,7 @@ OPTIONS
179264 minimize json and sdtout output on success
180265```
181266
182- _ See code: [ src/commands/force/source/beta/push.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/beta/push.ts ) _
267+ _ See code: [ src/commands/force/source/beta/push.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/beta/push.ts ) _
183268
184269## ` sfdx force:source:beta:status [-l | -r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
185270
@@ -217,7 +302,7 @@ EXAMPLES
217302 sfdx force:source:status -a -u [email protected] --json 218303```
219304
220- _ See code: [ src/commands/force/source/beta/status.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/beta/status.ts ) _
305+ _ See code: [ src/commands/force/source/beta/status.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/beta/status.ts ) _
221306
222307## ` sfdx force:source:beta:tracking:clear [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
223308
@@ -256,7 +341,7 @@ DESCRIPTION
256341 and remote files as changed, and any files with the same name are listed as conflicts.
257342```
258343
259- _ See code: [ src/commands/force/source/beta/tracking/clear.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/beta/tracking/clear.ts ) _
344+ _ See code: [ src/commands/force/source/beta/tracking/clear.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/beta/tracking/clear.ts ) _
260345
261346## ` sfdx force:source:beta:tracking:reset [-r <integer>] [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
262347
@@ -306,7 +391,7 @@ DESCRIPTION
306391 $ sfdx force:data:soql:query -q "SELECT MemberName, MemberType, RevisionCounter FROM SourceMember" -t
307392```
308393
309- _ See code: [ src/commands/force/source/beta/tracking/reset.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/beta/tracking/reset.ts ) _
394+ _ See code: [ src/commands/force/source/beta/tracking/reset.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/beta/tracking/reset.ts ) _
310395
311396## ` sfdx force:source:convert [-r <directory>] [-d <directory>] [-n <string>] [-p <array> | -x <string> | -m <array>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
312397
@@ -328,7 +413,7 @@ USAGE
328413
329414OPTIONS
330415 -d, --outputdir=outputdir [default:
331- metadataPackage_1635451490517 ]
416+ metadataPackage_1636499010974 ]
332417 output directory to store the
333418 Metadata API–formatted files in
334419
@@ -366,7 +451,7 @@ EXAMPLES
366451 $ sfdx force:source:convert -r path/to/source -d path/to/outputdir -n 'My Package'
367452```
368453
369- _ See code: [ src/commands/force/source/convert.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/convert.ts ) _
454+ _ See code: [ src/commands/force/source/convert.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/convert.ts ) _
370455
371456## ` sfdx `
372457
@@ -422,7 +507,7 @@ EXAMPLES
422507 $ sfdx force:source:delete -p path/to/source
423508```
424509
425- _ See code: [ src/commands/force/source/delete.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/delete.ts ) _
510+ _ See code: [ src/commands/force/source/delete.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/delete.ts ) _
426511
427512## ` sfdx force:source:deploy [--soapdeploy] [-w <minutes>] [-q <id> | -x <filepath> | -m <array> | -p <array> | -c | -l NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg | -r <array> | -o | -g] [--predestructivechanges <filepath> ] [--postdestructivechanges <filepath> ] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
428513
@@ -551,7 +636,7 @@ EXAMPLES
551636 $ sfdx force:source:deploy --manifest package.xml --postdestructivechanges destructiveChangesPost.xml
552637```
553638
554- _ See code: [ src/commands/force/source/deploy.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/deploy.ts ) _
639+ _ See code: [ src/commands/force/source/deploy.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/deploy.ts ) _
555640
556641## ` sfdx force:source:deploy:cancel [-w <minutes>] [-i <id>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
557642
@@ -606,7 +691,7 @@ EXAMPLES
606691 $ sfdx force:source:deploy:report
607692```
608693
609- _ See code: [ src/commands/force/source/deploy/cancel.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/deploy/cancel.ts ) _
694+ _ See code: [ src/commands/force/source/deploy/cancel.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/deploy/cancel.ts ) _
610695
611696## ` sfdx force:source:deploy:report [-w <minutes>] [-i <id>] [-u <string>] [--apiversion <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
612697
@@ -656,7 +741,7 @@ EXAMPLES
656741 $ sfdx force:source:deploy:report
657742```
658743
659- _ See code: [ src/commands/force/source/deploy/report.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/deploy/report.ts ) _
744+ _ See code: [ src/commands/force/source/deploy/report.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/deploy/report.ts ) _
660745
661746## ` sfdx force:source:manifest:create [-m <array> | -p <array>] [-n <string> | -t pre|post|destroy|package] [-o <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
662747
@@ -735,7 +820,7 @@ EXAMPLES
735820 $ sfdx force:source:manifest:create --sourcepath force-app --manifestname myNewManifest
736821```
737822
738- _ See code: [ src/commands/force/source/manifest/create.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/manifest/create.ts ) _
823+ _ See code: [ src/commands/force/source/manifest/create.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/manifest/create.ts ) _
739824
740825## ` sfdx force:source:open -f <filepath> [-r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
741826
@@ -785,7 +870,7 @@ EXAMPLES
785870 $ sfdx force:source:open -f path/to/source -u [email protected] 786871```
787872
788- _ See code: [ src/commands/force/source/open.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/open.ts ) _
873+ _ See code: [ src/commands/force/source/open.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/open.ts ) _
789874
790875## ` sfdx force:source:retrieve [-p <array> | -x <filepath> | -m <array>] [-w <minutes>] [-n <array>] [-u <string>] [-a <string>] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL] `
791876
@@ -873,5 +958,5 @@ EXAMPLES
873958 $ sfdx force:source:retrieve -n MyPackageName -x path/to/package.xml
874959```
875960
876- _ See code: [ src/commands/force/source/retrieve.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.0 /src/commands/force/source/retrieve.ts ) _
961+ _ See code: [ src/commands/force/source/retrieve.ts] ( https://github.com/salesforcecli/plugin-source/blob/v1.3.1 /src/commands/force/source/retrieve.ts ) _
877962<!-- commandsstop -->
0 commit comments