@@ -75,7 +75,7 @@ $ npm install -g @salesforce/plugin-source
7575$ sfdx COMMAND
7676running command...
7777$ sfdx (--version)
78- @salesforce/plugin-source/2.11.3 linux-x64 node-v18.18.2
78+ @salesforce/plugin-source/2.11.4 linux-x64 node-v18.18.2
7979$ sfdx --help [COMMAND]
8080USAGE
8181 $ sfdx COMMAND
@@ -107,8 +107,8 @@ Deploy metadata to an org using Metadata API.
107107
108108```
109109USAGE
110- $ sfdx force:mdapi:deploy -u <value> [--json] [-- api-version <value>] [-d <value>] [-w <value>] [-o] [-g] [-q <value>
111- | -l NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg | -r <value> | -c] [--verbose] [-f <value>] [-s]
110+ $ sfdx force:mdapi:deploy -u <value> [--api-version <value>] [-d <value>] [-w <value>] [-o] [-g] [-q <value> | -l
111+ NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg | -r <value> | -c] [--verbose] [-f <value>] [-s]
112112 [--soapdeploy] [--purgeondelete] [--concise] [--resultsdir <value>] [--coverageformatters
113113 clover|cobertura|html-spa|html|json|json-summary|lcovonly|none|teamcity|text|text-summary] [--junit]
114114
@@ -172,9 +172,6 @@ FLAGS
172172 --verbose
173173 Display verbose output of the deploy results.
174174
175- GLOBAL FLAGS
176- --json Format output as json.
177-
178175EXAMPLES
179176 Return a job ID you can use to check the deploy status:
180177
@@ -299,15 +296,15 @@ FLAG DESCRIPTIONS
299296 Indicates that you want verbose output from the deploy operation.
300297```
301298
302- _ See code: [ src/commands/force/mdapi/deploy.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/mdapi/deploy.ts ) _
299+ _ See code: [ src/commands/force/mdapi/deploy.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/mdapi/deploy.ts ) _
303300
304301## ` sfdx force:mdapi:deploy:cancel `
305302
306303Cancel a metadata deployment.
307304
308305```
309306USAGE
310- $ sfdx force:mdapi:deploy:cancel -o <value> [--json] [-- api-version <value>] [-w <value>] [-i <value>]
307+ $ sfdx force:mdapi:deploy:cancel -o <value> [--api-version <value>] [-w <value>] [-i <value>]
311308
312309FLAGS
313310 -i, --jobid=<value> Job ID of the deployment you want to cancel; defaults to your most recent CLI deployment.
@@ -316,9 +313,6 @@ FLAGS
316313 the terminal window.
317314 --api-version=<value> Override the api version used for api requests made by this command
318315
319- GLOBAL FLAGS
320- --json Format output as json.
321-
322316DESCRIPTION
323317 Cancel a metadata deployment.
324318
@@ -342,16 +336,16 @@ FLAG DESCRIPTIONS
342336 If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
343337```
344338
345- _ See code: [ src/commands/force/mdapi/deploy/cancel.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/mdapi/deploy/cancel.ts ) _
339+ _ See code: [ src/commands/force/mdapi/deploy/cancel.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/mdapi/deploy/cancel.ts ) _
346340
347341## ` sfdx force:mdapi:deploy:report `
348342
349343Check the status of a metadata deployment.
350344
351345```
352346USAGE
353- $ sfdx force:mdapi:deploy:report -o <value> [--json] [-- api-version <value>] [-w <value>] [-i <value>] [--verbose]
354- [--concise] [-- resultsdir <value>] [--coverageformatters
347+ $ sfdx force:mdapi:deploy:report -o <value> [--api-version <value>] [-w <value>] [-i <value>] [--verbose] [--concise ]
348+ [--resultsdir <value>] [--coverageformatters
355349 clover|cobertura|html-spa|html|json|json-summary|lcovonly|none|teamcity|text|text-summary] [--junit]
356350
357351FLAGS
@@ -383,9 +377,6 @@ FLAGS
383377 --verbose
384378 Verbose output of deploy results.
385379
386- GLOBAL FLAGS
387- --json Format output as json.
388-
389380DESCRIPTION
390381 Check the status of a metadata deployment.
391382
@@ -413,16 +404,16 @@ FLAG DESCRIPTIONS
413404 use the ID of the most recent metadata deployment.
414405```
415406
416- _ See code: [ src/commands/force/mdapi/deploy/report.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/mdapi/deploy/report.ts ) _
407+ _ See code: [ src/commands/force/mdapi/deploy/report.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/mdapi/deploy/report.ts ) _
417408
418409## ` sfdx force:mdapi:retrieve `
419410
420411Retrieve metadata from an org using Metadata API.
421412
422413```
423414USAGE
424- $ sfdx force:mdapi:retrieve -o <value> -r <value> [--json] [- k <value> | -d <value> | -p <value>] [-s] [-n <value>] [-z]
425- [-w <value>] [-a <value>] [--verbose]
415+ $ sfdx force:mdapi:retrieve -o <value> -r <value> [-k <value> | -d <value> | -p <value>] [-s] [-n <value>] [-z] [-w
416+ <value>] [-a <value>] [--verbose]
426417
427418FLAGS
428419 -a, --apiversion=<value> Target API version for the retrieve.
@@ -439,9 +430,6 @@ FLAGS
439430 -z, --unzip Extract all files from the retrieved zip file.
440431 --verbose Display verbose output of retrieve result.
441432
442- GLOBAL FLAGS
443- --json Format output as json.
444-
445433DESCRIPTION
446434 Retrieve metadata from an org using Metadata API.
447435
@@ -477,16 +465,16 @@ FLAG DESCRIPTIONS
477465 By default, the CLI assumes the directory is structured for a set of packages.
478466```
479467
480- _ See code: [ src/commands/force/mdapi/retrieve.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/mdapi/retrieve.ts ) _
468+ _ See code: [ src/commands/force/mdapi/retrieve.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/mdapi/retrieve.ts ) _
481469
482470## ` sfdx force:mdapi:retrieve:report `
483471
484472Check the status of a metadata retrieval.
485473
486474```
487475USAGE
488- $ sfdx force:mdapi:retrieve:report -o <value> [--json] [-- api-version <value>] [-r <value>] [-i <value>] [-n <value>] [-z] [-w
489- <value>] [--verbose]
476+ $ sfdx force:mdapi:retrieve:report -o <value> [--api-version <value>] [-r <value>] [-i <value>] [-n <value>] [-z] [-w <value>]
477+ [--verbose]
490478
491479FLAGS
492480 -i, --jobid=<value> Job ID of the retrieve you want to check; defaults to your most recent CLI retrieval.
@@ -499,9 +487,6 @@ FLAGS
499487 --api-version=<value> Override the api version used for api requests made by this command
500488 --verbose Display verbose output of retrieve result.
501489
502- GLOBAL FLAGS
503- --json Format output as json.
504-
505490DESCRIPTION
506491 Check the status of a metadata retrieval.
507492
@@ -531,18 +516,18 @@ FLAG DESCRIPTIONS
531516 You must specify a --retrievetargetdir. Use with --wait to resume waiting.
532517```
533518
534- _ See code: [ src/commands/force/mdapi/retrieve/report.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/mdapi/retrieve/report.ts ) _
519+ _ See code: [ src/commands/force/mdapi/retrieve/report.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/mdapi/retrieve/report.ts ) _
535520
536521## ` sfdx force:source:deploy `
537522
538523Deploy source to an org.
539524
540525```
541526USAGE
542- $ sfdx force:source:deploy -u <value> [--json] [-- api-version <value>] [--soapdeploy] [-w <value>] [-o] [-g]
543- [--purgeondelete -x <value>] [-q <value> | -c | -l NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg | -r
544- <value> | -t] [--verbose] [-m <value>] [-p <value>] [--predestructivechanges <value> ] [--postdestructivechanges
545- <value> ] [-f ] [--resultsdir <value>] [--coverageformatters
527+ $ sfdx force:source:deploy -u <value> [--api-version <value>] [--soapdeploy] [-w <value>] [-o] [-g] [--purgeondelete -x
528+ <value>] [-q <value> | -c | -l NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg | -r <value> | -t]
529+ [--verbose] [-m <value>] [-p <value>] [--predestructivechanges <value> ] [--postdestructivechanges <value> ] [-f ]
530+ [--resultsdir <value>] [--coverageformatters
546531 clover|cobertura|html-spa|html|json|json-summary|lcovonly|none|teamcity|text|text-summary] [--junit]
547532
548533FLAGS
@@ -614,9 +599,6 @@ FLAGS
614599 --verbose
615600 Specify verbose output about the deploy result.
616601
617- GLOBAL FLAGS
618- --json Format output as json.
619-
620602DESCRIPTION
621603 Deploy source to an org.
622604
@@ -797,15 +779,15 @@ FLAG DESCRIPTIONS
797779 If you specify this parameter, don’t specify --metadata or --sourcepath.
798780```
799781
800- _ See code: [ src/commands/force/source/deploy.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/source/deploy.ts ) _
782+ _ See code: [ src/commands/force/source/deploy.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/source/deploy.ts ) _
801783
802784## ` sfdx force:source:deploy:cancel `
803785
804786Cancel a source deployment.
805787
806788```
807789USAGE
808- $ sfdx force:source:deploy:cancel -o <value> [--json] [-- api-version <value>] [-w <value>] [-i <value>]
790+ $ sfdx force:source:deploy:cancel -o <value> [--api-version <value>] [-w <value>] [-i <value>]
809791
810792FLAGS
811793 -i, --jobid=<value> Job ID of the deployment you want to cancel; defaults to your most recent CLI deployment if
@@ -815,9 +797,6 @@ FLAGS
815797 results.
816798 --api-version=<value> Override the api version used for api requests made by this command
817799
818- GLOBAL FLAGS
819- --json Format output as json.
820-
821800DESCRIPTION
822801 Cancel a source deployment.
823802
@@ -842,16 +821,16 @@ FLAG DESCRIPTIONS
842821 If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
843822```
844823
845- _ See code: [ src/commands/force/source/deploy/cancel.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/source/deploy/cancel.ts ) _
824+ _ See code: [ src/commands/force/source/deploy/cancel.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/source/deploy/cancel.ts ) _
846825
847826## ` sfdx force:source:deploy:report `
848827
849828Check the status of a metadata deployment.
850829
851830```
852831USAGE
853- $ sfdx force:source:deploy:report -o <value> [--json] [-- api-version <value>] [-w <value>] [-i <value>] [--verbose]
854- [--resultsdir <value>] [--coverageformatters
832+ $ sfdx force:source:deploy:report -o <value> [--api-version <value>] [-w <value>] [-i <value>] [--verbose] [--resultsdir
833+ <value>] [--coverageformatters
855834 clover|cobertura|html-spa|html|json|json-summary|lcovonly|none|teamcity|text|text-summary] [--junit]
856835
857836FLAGS
@@ -880,9 +859,6 @@ FLAGS
880859 --verbose
881860 Verbose output of deploy result.
882861
883- GLOBAL FLAGS
884- --json Format output as json.
885-
886862DESCRIPTION
887863 Check the status of a metadata deployment.
888864
@@ -905,15 +881,15 @@ FLAG DESCRIPTIONS
905881 If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
906882```
907883
908- _ See code: [ src/commands/force/source/deploy/report.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/source/deploy/report.ts ) _
884+ _ See code: [ src/commands/force/source/deploy/report.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/source/deploy/report.ts ) _
909885
910886## ` sfdx force:source:pull `
911887
912888Pull changed source from the org to your project to keep them in sync.
913889
914890```
915891USAGE
916- $ sfdx force:source:pull -o <value> [--json] [-- verbose] [--api-version <value>] [-f] [-w <value>]
892+ $ sfdx force:source:pull -o <value> [--verbose] [--api-version <value>] [-f] [-w <value>]
917893
918894FLAGS
919895 -f, --forceoverwrite Ignore conflict warnings; changes in the org overwrite changes in the project.
@@ -923,9 +899,6 @@ FLAGS
923899 --api-version=<value> Override the api version used for api requests made by this command
924900 --verbose Display additional details about the command results.
925901
926- GLOBAL FLAGS
927- --json Format output as json.
928-
929902DESCRIPTION
930903 Pull changed source from the org to your project to keep them in sync.
931904
@@ -948,15 +921,15 @@ FLAG DESCRIPTIONS
948921 If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
949922```
950923
951- _ See code: [ src/commands/force/source/pull.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/source/pull.ts ) _
924+ _ See code: [ src/commands/force/source/pull.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/source/pull.ts ) _
952925
953926## ` sfdx force:source:push `
954927
955928Push changed source from your project to an org to keep them in sync.
956929
957930```
958931USAGE
959- $ sfdx force:source:push -o <value> [--json] [-- api-version <value>] [-f] [-w <value>] [-g] [--quiet]
932+ $ sfdx force:source:push -o <value> [--api-version <value>] [-f] [-w <value>] [-g] [--quiet]
960933
961934FLAGS
962935 -f, --forceoverwrite Ignore conflict warnings and push source anyway; changes in the project overwrite changes in
@@ -968,9 +941,6 @@ FLAGS
968941 --api-version=<value> Override the api version used for api requests made by this command
969942 --quiet Minimize JSON and sdtout output on success.
970943
971- GLOBAL FLAGS
972- --json Format output as json.
973-
974944DESCRIPTION
975945 Push changed source from your project to an org to keep them in sync.
976946
@@ -993,16 +963,16 @@ FLAG DESCRIPTIONS
993963 If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
994964```
995965
996- _ See code: [ src/commands/force/source/push.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/source/push.ts ) _
966+ _ See code: [ src/commands/force/source/push.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/source/push.ts ) _
997967
998968## ` sfdx force:source:retrieve `
999969
1000970Retrieve source from an org.
1001971
1002972```
1003973USAGE
1004- $ sfdx force:source:retrieve -o <value> [--json] [- a <value>] [-r <value> | -n <value> | -p <value>] [-w <value>] [-x
1005- <value> | -m <value> | ] [-f -t] [--verbose]
974+ $ sfdx force:source:retrieve -o <value> [-a <value>] [-r <value> | -n <value> | -p <value>] [-w <value>] [-x <value> | -m
975+ <value> | ] [-f -t] [--verbose]
1006976
1007977FLAGS
1008978 -a, --api-version=<value> Override the api version used for api requests made by this command
@@ -1020,9 +990,6 @@ FLAGS
1020990 retrieve.
1021991 --verbose Verbose output of retrieve result.
1022992
1023- GLOBAL FLAGS
1024- --json Format output as json.
1025-
1026993DESCRIPTION
1027994 Retrieve source from an org.
1028995
@@ -1118,15 +1085,15 @@ FLAG DESCRIPTIONS
11181085 If you specify this parameter, don’t specify --metadata or --sourcepath.
11191086```
11201087
1121- _ See code: [ src/commands/force/source/retrieve.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/source/retrieve.ts ) _
1088+ _ See code: [ src/commands/force/source/retrieve.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/source/retrieve.ts ) _
11221089
11231090## ` sfdx force:source:status `
11241091
11251092List changes that have been made locally, in an org, or both.
11261093
11271094```
11281095USAGE
1129- $ sfdx force:source:status -o <value> [--json] [-- api-version <value>] [-l | -r] [--concise]
1096+ $ sfdx force:source:status -o <value> [--api-version <value>] [-l | -r] [--concise]
11301097
11311098FLAGS
11321099 -l, --local List the changes that have been made locally.
@@ -1135,9 +1102,6 @@ FLAGS
11351102 --api-version=<value> Override the api version used for api requests made by this command
11361103 --concise Show only the changes that will be pushed or pulled; omits files that are forceignored.
11371104
1138- GLOBAL FLAGS
1139- --json Format output as json.
1140-
11411105EXAMPLES
11421106 List changes that have been made locally but not in the org with alias "myscratch":
11431107
@@ -1148,6 +1112,6 @@ EXAMPLES
11481112 $ sfdx force:source:status --remote
11491113```
11501114
1151- _ See code: [ src/commands/force/source/status.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.3 /src/commands/force/source/status.ts ) _
1115+ _ See code: [ src/commands/force/source/status.ts] ( https://github.com/salesforcecli/plugin-source/blob/2.11.4 /src/commands/force/source/status.ts ) _
11521116
11531117<!-- commandsstop -->
0 commit comments