@salesforce/plugin-org 3.0.7 → 3.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -129,7 +129,8 @@ USAGE
129
129
  FLAGS
130
130
  -a, --setalias=<value> Alias for the cloned org.
131
131
  -f, --definitionfile=<value> Path to the sandbox definition file.
132
- -o, --target-org=<value> (required) Username or alias of the target org.
132
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
133
+ configuration variable is already set.
133
134
  -s, --setdefaultusername Set the cloned org as your default.
134
135
  -t, --type=<option> (required) Type of org to create.
135
136
  <options: sandbox>
@@ -162,7 +163,7 @@ FLAG DESCRIPTIONS
162
163
  for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.
163
164
  ```
164
165
 
165
- _See code: [src/commands/force/org/clone.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/force/org/clone.ts)_
166
+ _See code: [src/commands/force/org/clone.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/force/org/clone.ts)_
166
167
 
167
168
  ## `sf force org create`
168
169
 
@@ -184,7 +185,8 @@ FLAGS
184
185
  -s, --setdefaultusername Set the created org as the default username.
185
186
  -t, --type=<option> [default: scratch] Type of org to create.
186
187
  <options: scratch|sandbox>
187
- -v, --target-dev-hub=<value> Username or alias of the Dev Hub org.
188
+ -v, --target-dev-hub=<value> Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration
189
+ variable is already set.
188
190
  -w, --wait=<value> [default: 6 minutes] Streaming client socket timeout (in minutes).
189
191
  --api-version=<value> Override the api version used for api requests made by this command
190
192
 
@@ -210,7 +212,7 @@ EXAMPLES
210
212
  $ sf force org create -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg
211
213
  ```
212
214
 
213
- _See code: [src/commands/force/org/create.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/force/org/create.ts)_
215
+ _See code: [src/commands/force/org/create.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/force/org/create.ts)_
214
216
 
215
217
  ## `sf force org delete`
216
218
 
@@ -242,7 +244,7 @@ EXAMPLES
242
244
  $ sf force org delete -u MyOrgAlias -p
243
245
  ```
244
246
 
245
- _See code: [src/commands/force/org/delete.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/force/org/delete.ts)_
247
+ _See code: [src/commands/force/org/delete.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/force/org/delete.ts)_
246
248
 
247
249
  ## `sf force org status`
248
250
 
@@ -255,7 +257,8 @@ USAGE
255
257
  FLAGS
256
258
  -a, --setalias=<value> Alias for the created or cloned org.
257
259
  -n, --sandboxname=<value> (required) Name of the sandbox org to check status for.
258
- -o, --target-org=<value> (required) Username or alias of the target org.
260
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
261
+ configuration variable is already set.
259
262
  -s, --setdefaultusername Set the created or cloned org as your default.
260
263
  -w, --wait=<value> [default: 6 minutes] Number of minutes to wait while polling for status.
261
264
  --api-version=<value> Override the api version used for api requests made by this command
@@ -280,7 +283,7 @@ EXAMPLES
280
283
  $ sf force org status --sandboxname DevSbx1 --wait 45 --setdefaultusername -u prodOrg
281
284
  ```
282
285
 
283
- _See code: [src/commands/force/org/status.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/force/org/status.ts)_
286
+ _See code: [src/commands/force/org/status.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/force/org/status.ts)_
284
287
 
285
288
  ## `sf org create sandbox`
286
289
 
@@ -385,7 +388,7 @@ FLAG DESCRIPTIONS
385
388
  sandbox.
386
389
  ```
387
390
 
388
- _See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/create/sandbox.ts)_
391
+ _See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/create/sandbox.ts)_
389
392
 
390
393
  ## `sf org create scratch`
391
394
 
@@ -538,7 +541,7 @@ FLAG DESCRIPTIONS
538
541
  Omit this flag to have Salesforce generate a unique username for your org.
539
542
  ```
540
543
 
541
- _See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/create/scratch.ts)_
544
+ _See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/create/scratch.ts)_
542
545
 
543
546
  ## `sf org delete sandbox`
544
547
 
@@ -582,7 +585,7 @@ EXAMPLES
582
585
  $ sf org delete sandbox --target-org my-sandbox --no-prompt
583
586
  ```
584
587
 
585
- _See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/delete/sandbox.ts)_
588
+ _See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/delete/sandbox.ts)_
586
589
 
587
590
  ## `sf org delete scratch`
588
591
 
@@ -624,7 +627,7 @@ EXAMPLES
624
627
  $ sf org delete scratch --target-org my-scratch-org --no-prompt
625
628
  ```
626
629
 
627
- _See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/delete/scratch.ts)_
630
+ _See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/delete/scratch.ts)_
628
631
 
629
632
  ## `sf org disable tracking`
630
633
 
@@ -635,7 +638,8 @@ USAGE
635
638
  $ sf org disable tracking -o <value> [--json]
636
639
 
637
640
  FLAGS
638
- -o, --target-org=<value> (required) Username or alias of the target org.
641
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
642
+ configuration variable is already set.
639
643
 
640
644
  GLOBAL FLAGS
641
645
  --json Format output as json.
@@ -661,7 +665,7 @@ EXAMPLES
661
665
  $ sf org disable tracking
662
666
  ```
663
667
 
664
- _See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/disable/tracking.ts)_
668
+ _See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/disable/tracking.ts)_
665
669
 
666
670
  ## `sf org display`
667
671
 
@@ -672,7 +676,8 @@ USAGE
672
676
  $ sf org display -o <value> [--json] [--api-version <value>] [--verbose]
673
677
 
674
678
  FLAGS
675
- -o, --target-org=<value> (required) Username or alias of the target org.
679
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
680
+ configuration variable is already set.
676
681
  --api-version=<value> Override the api version used for api requests made by this command
677
682
  --verbose Display the sfdxAuthUrl property.
678
683
 
@@ -704,7 +709,7 @@ EXAMPLES
704
709
  $ sf org display --target-org TestOrg1 --verbose
705
710
  ```
706
711
 
707
- _See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/display.ts)_
712
+ _See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/display.ts)_
708
713
 
709
714
  ## `sf org enable tracking`
710
715
 
@@ -715,7 +720,8 @@ USAGE
715
720
  $ sf org enable tracking -o <value> [--json]
716
721
 
717
722
  FLAGS
718
- -o, --target-org=<value> (required) Username or alias of the target org.
723
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
724
+ configuration variable is already set.
719
725
 
720
726
  GLOBAL FLAGS
721
727
  --json Format output as json.
@@ -744,7 +750,7 @@ EXAMPLES
744
750
  $ sf org enable tracking
745
751
  ```
746
752
 
747
- _See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/enable/tracking.ts)_
753
+ _See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/enable/tracking.ts)_
748
754
 
749
755
  ## `sf org list`
750
756
 
@@ -782,7 +788,7 @@ EXAMPLES
782
788
  $ sf org list --clean
783
789
  ```
784
790
 
785
- _See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/list.ts)_
791
+ _See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/list.ts)_
786
792
 
787
793
  ## `sf org list metadata`
788
794
 
@@ -796,7 +802,8 @@ FLAGS
796
802
  -f, --output-file=<value> Pathname of the file in which to write the results.
797
803
  -m, --metadata-type=<value> (required) Metadata type to be retrieved, such as CustomObject; metadata type names are
798
804
  case-sensitive.
799
- -o, --target-org=<value> (required) Username or alias of the target org.
805
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
806
+ configuration variable is already set.
800
807
  --api-version=<value> API version to use; default is the most recent API version.
801
808
  --folder=<value> Folder associated with the component; required for components that use folders; folder
802
809
  names are case-sensitive.
@@ -846,7 +853,7 @@ FLAG DESCRIPTIONS
846
853
  Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
847
854
  ```
848
855
 
849
- _See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/list/metadata.ts)_
856
+ _See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/list/metadata.ts)_
850
857
 
851
858
  ## `sf org list metadata-types`
852
859
 
@@ -858,7 +865,8 @@ USAGE
858
865
 
859
866
  FLAGS
860
867
  -f, --output-file=<value> Pathname of the file in which to write the results.
861
- -o, --target-org=<value> (required) Username or alias of the target org.
868
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
869
+ configuration variable is already set.
862
870
  --api-version=<value> API version to use; default is the most recent API version.
863
871
 
864
872
  GLOBAL FLAGS
@@ -899,7 +907,7 @@ FLAG DESCRIPTIONS
899
907
  Override the api version used for api requests made by this command
900
908
  ```
901
909
 
902
- _See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/list/metadata-types.ts)_
910
+ _See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/list/metadata-types.ts)_
903
911
 
904
912
  ## `sf org open`
905
913
 
@@ -914,7 +922,8 @@ FLAGS
914
922
  -b, --browser=<option> Browser where the org opens.
915
923
  <options: chrome|edge|firefox>
916
924
  -f, --source-file=<value> Path to an ApexPage or FlexiPage to open in Lightning App Builder.
917
- -o, --target-org=<value> (required) Username or alias of the target org.
925
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
926
+ configuration variable is already set.
918
927
  -p, --path=<value> Navigation URL path to open a specific page.
919
928
  -r, --url-only Display navigation URL, but don’t launch browser.
920
929
  --api-version=<value> Override the api version used for api requests made by this command
@@ -964,7 +973,7 @@ EXAMPLES
964
973
  $ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
965
974
  ```
966
975
 
967
- _See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/open.ts)_
976
+ _See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/open.ts)_
968
977
 
969
978
  ## `sf org resume sandbox`
970
979
 
@@ -1026,7 +1035,7 @@ FLAG DESCRIPTIONS
1026
1035
  returns the job ID. To resume checking the sandbox creation, rerun this command.
1027
1036
  ```
1028
1037
 
1029
- _See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/resume/sandbox.ts)_
1038
+ _See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/resume/sandbox.ts)_
1030
1039
 
1031
1040
  ## `sf org resume scratch`
1032
1041
 
@@ -1072,6 +1081,6 @@ FLAG DESCRIPTIONS
1072
1081
  The job ID is valid for 24 hours after you start the scratch org creation.
1073
1082
  ```
1074
1083
 
1075
- _See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.7/src/commands/org/resume/scratch.ts)_
1084
+ _See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.9/src/commands/org/resume/scratch.ts)_
1076
1085
 
1077
1086
  <!-- commandsstop -->
package/oclif.lock CHANGED
@@ -1000,15 +1000,15 @@
1000
1000
  semver "^7.5.4"
1001
1001
  ts-retry-promise "^0.7.1"
1002
1002
 
1003
- "@salesforce/core@^6.1.0", "@salesforce/core@^6.1.3":
1004
- version "6.1.3"
1005
- resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.1.3.tgz#32e71846cad033e0d2b369ecf0fafb4f76d63ad7"
1006
- integrity sha512-M7EQ4+LSXU4ZqD4R5ttY4RqSaYNaNBGDG0KC51IdDfpGtL4kJXeQHdr5HfMfgyCyYNM9LqqfBS7zQTBY1rf+Yg==
1003
+ "@salesforce/core@^6.1.3", "@salesforce/core@^6.2.0":
1004
+ version "6.2.1"
1005
+ resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.2.1.tgz#a0b639ae154263292184dcde3f2f88845d5aadaa"
1006
+ integrity sha512-oXwM1C/CoEGtS8mzmVzk5LV85c5Co5miu0NLBOUGDf8GGlF121SR3bkXoAG05vQA2Ifelb9xXp4FU1BXsCKr3w==
1007
1007
  dependencies:
1008
1008
  "@salesforce/kit" "^3.0.15"
1009
1009
  "@salesforce/schemas" "^1.6.1"
1010
1010
  "@salesforce/ts-types" "^2.0.9"
1011
- "@types/semver" "^7.5.4"
1011
+ "@types/semver" "^7.5.6"
1012
1012
  ajv "^8.12.0"
1013
1013
  change-case "^4.1.2"
1014
1014
  faye "^1.4.0"
@@ -1017,7 +1017,7 @@
1017
1017
  jsforce "^2.0.0-beta.28"
1018
1018
  jsonwebtoken "9.0.2"
1019
1019
  jszip "3.10.1"
1020
- pino "^8.16.1"
1020
+ pino "^8.16.2"
1021
1021
  pino-abstract-transport "^1.1.0"
1022
1022
  pino-pretty "^10.2.3"
1023
1023
  proper-lockfile "^4.1.2"
@@ -1104,32 +1104,32 @@
1104
1104
  chalk "^4"
1105
1105
  inquirer "^8.2.5"
1106
1106
 
1107
- "@salesforce/sf-plugins-core@^5.0.1":
1108
- version "5.0.1"
1109
- resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.1.tgz#16b085eda99e28f2607957954d6ac957a8d0a0eb"
1110
- integrity sha512-gKUhAP9DDUlB4bjr0a6bsWiM16hn/n1cW8BglhYHAow8UJ0OQBxx+dfvAO0ftXmfzg82IZdMViiDmQXt0Z+e6A==
1107
+ "@salesforce/sf-plugins-core@^5.0.3":
1108
+ version "5.0.3"
1109
+ resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.3.tgz#a771dc887c0a13ac23a5b1c16a6965791914f3aa"
1110
+ integrity sha512-D+RCUzrYIWpJakNfxtHXJd6LZr6bK4gA4e7jLPR1G1FmDFss13PT7hOdFRxmAqTPbcp1jf65vwYZzu5nbqzmvQ==
1111
1111
  dependencies:
1112
1112
  "@oclif/core" "^3.11.0"
1113
- "@salesforce/core" "^6.1.0"
1113
+ "@salesforce/core" "^6.1.3"
1114
1114
  "@salesforce/kit" "^3.0.15"
1115
1115
  "@salesforce/ts-types" "^2.0.9"
1116
1116
  "@types/inquirer" "^8.2.3"
1117
1117
  chalk "^4"
1118
1118
  inquirer "^8.2.5"
1119
1119
 
1120
- "@salesforce/source-deploy-retrieve@^10.0.0":
1121
- version "10.0.0"
1122
- resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-10.0.0.tgz#572642bb3bfb1d7421afb201d7dc7de0a43271d9"
1123
- integrity sha512-6d9F1jTkD4fXYd5i+xowTey//Vns3ZlOhNNNqkQv7UlfZA8ttoxY5aYQAsAv8A/q/IcMx3UoeIKJZxUE2zNgPQ==
1120
+ "@salesforce/source-deploy-retrieve@^10.0.3":
1121
+ version "10.0.3"
1122
+ resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-10.0.3.tgz#bd95e15a78ef08e4ade5f96b2846c0137cccf8bb"
1123
+ integrity sha512-7YgGd2CpOTYXdbtoB31eJEylYl1gbZvMqzbw8VjK1OVcywzuFUA43xznxzrSyFsBZZO6QAUAKyxoxxYR9goTyg==
1124
1124
  dependencies:
1125
- "@salesforce/core" "^6.1.0"
1125
+ "@salesforce/core" "^6.2.0"
1126
1126
  "@salesforce/kit" "^3.0.15"
1127
1127
  "@salesforce/ts-types" "^2.0.9"
1128
1128
  fast-levenshtein "^3.0.0"
1129
1129
  fast-xml-parser "^4.3.2"
1130
1130
  got "^11.8.6"
1131
1131
  graceful-fs "^4.2.11"
1132
- ignore "^5.2.4"
1132
+ ignore "^5.3.0"
1133
1133
  jszip "^3.10.1"
1134
1134
  mime "2.6.0"
1135
1135
  minimatch "^5.1.6"
@@ -1418,6 +1418,11 @@
1418
1418
  resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.4.tgz#0a41252ad431c473158b22f9bfb9a63df7541cff"
1419
1419
  integrity sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==
1420
1420
 
1421
+ "@types/semver@^7.5.6":
1422
+ version "7.5.6"
1423
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.6.tgz#c65b2bfce1bec346582c07724e3f8c1017a20339"
1424
+ integrity sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==
1425
+
1421
1426
  "@types/shelljs@^0.8.14", "@types/shelljs@^0.8.15":
1422
1427
  version "0.8.15"
1423
1428
  resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.8.15.tgz#22c6ab9dfe05cec57d8e6cb1a95ea173aee9fcac"
@@ -4225,10 +4230,10 @@ ignore-walk@^6.0.0:
4225
4230
  dependencies:
4226
4231
  minimatch "^9.0.0"
4227
4232
 
4228
- ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.4:
4229
- version "5.2.4"
4230
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
4231
- integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
4233
+ ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.0:
4234
+ version "5.3.0"
4235
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.0.tgz#67418ae40d34d6999c95ff56016759c718c82f78"
4236
+ integrity sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==
4232
4237
 
4233
4238
  immediate@~3.0.5:
4234
4239
  version "3.0.6"
@@ -6486,7 +6491,7 @@ pino-std-serializers@^6.0.0:
6486
6491
  resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz#d9a9b5f2b9a402486a5fc4db0a737570a860aab3"
6487
6492
  integrity sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==
6488
6493
 
6489
- pino@^8.16.0, pino@^8.16.1:
6494
+ pino@^8.16.0, pino@^8.16.2:
6490
6495
  version "8.16.2"
6491
6496
  resolved "https://registry.yarnpkg.com/pino/-/pino-8.16.2.tgz#7a906f2d9a8c5b4c57412c9ca95d6820bd2090cd"
6492
6497
  integrity sha512-2advCDGVEvkKu9TTVSa/kWW7Z3htI/sBKEZpqiHk6ive0i/7f5b1rsU8jn0aimxqfnSz5bj/nOYkwhBUn5xxvg==
@@ -29,7 +29,7 @@
29
29
  "name": "target-org",
30
30
  "noCacheDefault": true,
31
31
  "required": true,
32
- "summary": "Username or alias of the target org.",
32
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
33
33
  "hasDynamicHelp": true,
34
34
  "multiple": false,
35
35
  "type": "option"
@@ -227,7 +227,7 @@
227
227
  "name": "target-org",
228
228
  "noCacheDefault": true,
229
229
  "required": true,
230
- "summary": "Username or alias of the target org.",
230
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
231
231
  "hasDynamicHelp": true,
232
232
  "multiple": false,
233
233
  "type": "option"
@@ -374,7 +374,7 @@
374
374
  "name": "target-org",
375
375
  "noCacheDefault": true,
376
376
  "required": true,
377
- "summary": "Username or alias of the target org.",
377
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
378
378
  "hasDynamicHelp": true,
379
379
  "multiple": false,
380
380
  "type": "option"
@@ -523,7 +523,7 @@
523
523
  "name": "target-dev-hub",
524
524
  "noCacheDefault": true,
525
525
  "required": false,
526
- "summary": "Username or alias of the Dev Hub org.",
526
+ "summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
527
527
  "hasDynamicHelp": true,
528
528
  "multiple": false,
529
529
  "type": "option"
@@ -805,7 +805,7 @@
805
805
  "name": "target-org",
806
806
  "noCacheDefault": true,
807
807
  "required": true,
808
- "summary": "Username or alias of the target org.",
808
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
809
809
  "hasDynamicHelp": true,
810
810
  "multiple": false,
811
811
  "type": "option"
@@ -1504,7 +1504,7 @@
1504
1504
  "name": "target-org",
1505
1505
  "noCacheDefault": true,
1506
1506
  "required": true,
1507
- "summary": "Username or alias of the target org.",
1507
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
1508
1508
  "hasDynamicHelp": true,
1509
1509
  "multiple": false,
1510
1510
  "type": "option"
@@ -1560,7 +1560,7 @@
1560
1560
  "name": "target-org",
1561
1561
  "noCacheDefault": true,
1562
1562
  "required": true,
1563
- "summary": "Username or alias of the target org.",
1563
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
1564
1564
  "hasDynamicHelp": true,
1565
1565
  "multiple": false,
1566
1566
  "type": "option"
@@ -1646,7 +1646,7 @@
1646
1646
  "name": "target-org",
1647
1647
  "noCacheDefault": true,
1648
1648
  "required": true,
1649
- "summary": "Username or alias of the target org.",
1649
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
1650
1650
  "hasDynamicHelp": true,
1651
1651
  "multiple": false,
1652
1652
  "type": "option"
@@ -1765,7 +1765,7 @@
1765
1765
  "name": "target-org",
1766
1766
  "noCacheDefault": true,
1767
1767
  "required": true,
1768
- "summary": "Username or alias of the target org.",
1768
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
1769
1769
  "hasDynamicHelp": true,
1770
1770
  "multiple": false,
1771
1771
  "type": "option"
@@ -2015,5 +2015,5 @@
2015
2015
  ]
2016
2016
  }
2017
2017
  },
2018
- "version": "3.0.7"
2018
+ "version": "3.0.9"
2019
2019
  }
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-org",
3
3
  "description": "Commands to interact with Salesforce orgs",
4
- "version": "3.0.7",
4
+ "version": "3.0.9",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
8
  "@oclif/core": "^3.10.8",
9
9
  "@salesforce/core": "^6.1.3",
10
10
  "@salesforce/kit": "^3.0.15",
11
- "@salesforce/sf-plugins-core": "^5.0.1",
12
- "@salesforce/source-deploy-retrieve": "^10.0.0",
11
+ "@salesforce/sf-plugins-core": "^5.0.3",
12
+ "@salesforce/source-deploy-retrieve": "^10.0.3",
13
13
  "open": "^9.1.0"
14
14
  },
15
15
  "devDependencies": {
@@ -224,7 +224,7 @@
224
224
  "exports": "./lib/index.js",
225
225
  "type": "module",
226
226
  "sfdx": {
227
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.7.crt",
228
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.7.sig"
227
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.9.crt",
228
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.9.sig"
229
229
  }
230
230
  }