@salesforce/plugin-org 3.0.6 → 3.0.8

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.6/src/commands/force/org/clone.ts)_
166
+ _See code: [src/commands/force/org/clone.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/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.6/src/commands/force/org/create.ts)_
215
+ _See code: [src/commands/force/org/create.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/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.6/src/commands/force/org/delete.ts)_
247
+ _See code: [src/commands/force/org/delete.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/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.6/src/commands/force/org/status.ts)_
286
+ _See code: [src/commands/force/org/status.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/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.6/src/commands/org/create/sandbox.ts)_
391
+ _See code: [src/commands/org/create/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/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.6/src/commands/org/create/scratch.ts)_
544
+ _See code: [src/commands/org/create/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/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.6/src/commands/org/delete/sandbox.ts)_
588
+ _See code: [src/commands/org/delete/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/delete/sandbox.ts)_
586
589
 
587
590
  ## `sf org delete scratch`
588
591
 
@@ -624,38 +627,45 @@ 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.6/src/commands/org/delete/scratch.ts)_
630
+ _See code: [src/commands/org/delete/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/delete/scratch.ts)_
628
631
 
629
632
  ## `sf org disable tracking`
630
633
 
631
- Disable source tracking in local auth file.
634
+ Prevent Salesforce CLI from tracking changes in your source files between your project and an org.
632
635
 
633
636
  ```
634
637
  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.
642
646
 
643
647
  DESCRIPTION
644
- Disable source tracking in local auth file.
648
+ Prevent Salesforce CLI from tracking changes in your source files between your project and an org.
645
649
 
646
- This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that no source
647
- tracking operations are executed when working with this org.
650
+ Disabling source tracking has no direct effect on the org, it affects only your local environment. Specifically,
651
+ Salesforce CLI stores the setting in the org's local configuration file so that no source tracking operations are
652
+ executed when working with the org.
648
653
 
649
654
  EXAMPLES
650
- Disable tracking on an org using an alias
651
- - sf org disable tracking -o someAlias
652
- Disable tracking on an org using a username
653
- - sf org disable tracking -o you@example.com
654
- Disable tracking on your default org
655
- - sf org disable tracking
655
+ Disable source tracking for an org with alias "myscratch":
656
+
657
+ $ sf org disable tracking --target-org myscratch
658
+
659
+ Disable source tracking for an org using a username:
660
+
661
+ $ sf org disable tracking --target-org you@example.com
662
+
663
+ Disable source tracking for your default org:
664
+
665
+ $ sf org disable tracking
656
666
  ```
657
667
 
658
- _See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/disable/tracking.ts)_
668
+ _See code: [src/commands/org/disable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/disable/tracking.ts)_
659
669
 
660
670
  ## `sf org display`
661
671
 
@@ -666,7 +676,8 @@ USAGE
666
676
  $ sf org display -o <value> [--json] [--api-version <value>] [--verbose]
667
677
 
668
678
  FLAGS
669
- -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.
670
681
  --api-version=<value> Override the api version used for api requests made by this command
671
682
  --verbose Display the sfdxAuthUrl property.
672
683
 
@@ -698,40 +709,48 @@ EXAMPLES
698
709
  $ sf org display --target-org TestOrg1 --verbose
699
710
  ```
700
711
 
701
- _See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/display.ts)_
712
+ _See code: [src/commands/org/display.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/display.ts)_
702
713
 
703
714
  ## `sf org enable tracking`
704
715
 
705
- Enable source tracking in local auth file.
716
+ Allow Salesforce CLI to track changes in your source files between your project and an org.
706
717
 
707
718
  ```
708
719
  USAGE
709
720
  $ sf org enable tracking -o <value> [--json]
710
721
 
711
722
  FLAGS
712
- -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.
713
725
 
714
726
  GLOBAL FLAGS
715
727
  --json Format output as json.
716
728
 
717
729
  DESCRIPTION
718
- Enable source tracking in local auth file.
730
+ Allow Salesforce CLI to track changes in your source files between your project and an org.
719
731
 
720
- This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that source
721
- tracking operations are executed when working with this org.
732
+ Enabling source tracking has no direct effect on the org, it affects only your local environment. Specifically,
733
+ Salesforce CLI stores the setting in the org's local configuration file so that source tracking operations are
734
+ executed when working with the org.
722
735
 
723
- This command will throw an error if the org does not support tracking.
736
+ This command throws an error if the org doesn't support tracking. Examples of orgs that don't support source tracking
737
+ include Developer Edition orgs, production orgs, Partial Copy sandboxes, and Full sandboxes.
724
738
 
725
739
  EXAMPLES
726
- Enable tracking on an org using an alias
727
- - sf org enable tracking -o someAlias
728
- Enable tracking on an org using a username
729
- - sf org enable tracking -o you@example.com
730
- Enable tracking on your default org
731
- - sf org enable tracking
740
+ Enable source tracking for an org with alias "myscratch":
741
+
742
+ $ sf org enable tracking --target-org myscratch
743
+
744
+ Enable source tracking for an org using a username:
745
+
746
+ $ sf org enable tracking --target-org you@example.com
747
+
748
+ Enable source tracking for your default org:
749
+
750
+ $ sf org enable tracking
732
751
  ```
733
752
 
734
- _See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/enable/tracking.ts)_
753
+ _See code: [src/commands/org/enable/tracking.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/enable/tracking.ts)_
735
754
 
736
755
  ## `sf org list`
737
756
 
@@ -769,7 +788,7 @@ EXAMPLES
769
788
  $ sf org list --clean
770
789
  ```
771
790
 
772
- _See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/list.ts)_
791
+ _See code: [src/commands/org/list.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/list.ts)_
773
792
 
774
793
  ## `sf org list metadata`
775
794
 
@@ -783,7 +802,8 @@ FLAGS
783
802
  -f, --output-file=<value> Pathname of the file in which to write the results.
784
803
  -m, --metadata-type=<value> (required) Metadata type to be retrieved, such as CustomObject; metadata type names are
785
804
  case-sensitive.
786
- -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.
787
807
  --api-version=<value> API version to use; default is the most recent API version.
788
808
  --folder=<value> Folder associated with the component; required for components that use folders; folder
789
809
  names are case-sensitive.
@@ -833,7 +853,7 @@ FLAG DESCRIPTIONS
833
853
  Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
834
854
  ```
835
855
 
836
- _See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/list/metadata.ts)_
856
+ _See code: [src/commands/org/list/metadata.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/list/metadata.ts)_
837
857
 
838
858
  ## `sf org list metadata-types`
839
859
 
@@ -845,7 +865,8 @@ USAGE
845
865
 
846
866
  FLAGS
847
867
  -f, --output-file=<value> Pathname of the file in which to write the results.
848
- -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.
849
870
  --api-version=<value> API version to use; default is the most recent API version.
850
871
 
851
872
  GLOBAL FLAGS
@@ -886,7 +907,7 @@ FLAG DESCRIPTIONS
886
907
  Override the api version used for api requests made by this command
887
908
  ```
888
909
 
889
- _See code: [src/commands/org/list/metadata-types.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/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.8/src/commands/org/list/metadata-types.ts)_
890
911
 
891
912
  ## `sf org open`
892
913
 
@@ -901,7 +922,8 @@ FLAGS
901
922
  -b, --browser=<option> Browser where the org opens.
902
923
  <options: chrome|edge|firefox>
903
924
  -f, --source-file=<value> Path to an ApexPage or FlexiPage to open in Lightning App Builder.
904
- -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.
905
927
  -p, --path=<value> Navigation URL path to open a specific page.
906
928
  -r, --url-only Display navigation URL, but don’t launch browser.
907
929
  --api-version=<value> Override the api version used for api requests made by this command
@@ -951,7 +973,7 @@ EXAMPLES
951
973
  $ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
952
974
  ```
953
975
 
954
- _See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/open.ts)_
976
+ _See code: [src/commands/org/open.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/open.ts)_
955
977
 
956
978
  ## `sf org resume sandbox`
957
979
 
@@ -1013,7 +1035,7 @@ FLAG DESCRIPTIONS
1013
1035
  returns the job ID. To resume checking the sandbox creation, rerun this command.
1014
1036
  ```
1015
1037
 
1016
- _See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/resume/sandbox.ts)_
1038
+ _See code: [src/commands/org/resume/sandbox.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/resume/sandbox.ts)_
1017
1039
 
1018
1040
  ## `sf org resume scratch`
1019
1041
 
@@ -1059,6 +1081,6 @@ FLAG DESCRIPTIONS
1059
1081
  The job ID is valid for 24 hours after you start the scratch org creation.
1060
1082
  ```
1061
1083
 
1062
- _See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/resume/scratch.ts)_
1084
+ _See code: [src/commands/org/resume/scratch.ts](https://github.com/salesforcecli/plugin-org/blob/3.0.8/src/commands/org/resume/scratch.ts)_
1063
1085
 
1064
1086
  <!-- commandsstop -->
@@ -1,24 +1,24 @@
1
1
  # summary
2
2
 
3
- Disable source tracking in local auth file.
3
+ Prevent Salesforce CLI from tracking changes in your source files between your project and an org.
4
4
 
5
5
  # description
6
6
 
7
- This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that no source tracking operations are executed when working with this org.
7
+ Disabling source tracking has no direct effect on the org, it affects only your local environment. Specifically, Salesforce CLI stores the setting in the org's local configuration file so that no source tracking operations are executed when working with the org.
8
8
 
9
9
  # examples
10
10
 
11
- Disable tracking on an org using an alias
11
+ - Disable source tracking for an org with alias "myscratch":
12
12
 
13
- - <%= config.bin %> <%= command.id %> -o someAlias
13
+ <%= config.bin %> <%= command.id %> --target-org myscratch
14
14
 
15
- Disable tracking on an org using a username
15
+ - Disable source tracking for an org using a username:
16
16
 
17
- - <%= config.bin %> <%= command.id %> -o you@example.com
17
+ <%= config.bin %> <%= command.id %> --target-org you@example.com
18
18
 
19
- Disable tracking on your default org
19
+ - Disable source tracking for your default org:
20
20
 
21
- - <%= config.bin %> <%= command.id %>
21
+ <%= config.bin %> <%= command.id %>
22
22
 
23
23
  # success
24
24
 
@@ -1,26 +1,26 @@
1
1
  # summary
2
2
 
3
- Enable source tracking in local auth file.
3
+ Allow Salesforce CLI to track changes in your source files between your project and an org.
4
4
 
5
5
  # description
6
6
 
7
- This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that source tracking operations are executed when working with this org.
7
+ Enabling source tracking has no direct effect on the org, it affects only your local environment. Specifically, Salesforce CLI stores the setting in the org's local configuration file so that source tracking operations are executed when working with the org.
8
8
 
9
- This command will throw an error if the org does not support tracking.
9
+ This command throws an error if the org doesn't support tracking. Examples of orgs that don't support source tracking include Developer Edition orgs, production orgs, Partial Copy sandboxes, and Full sandboxes.
10
10
 
11
11
  # examples
12
12
 
13
- Enable tracking on an org using an alias
13
+ - Enable source tracking for an org with alias "myscratch":
14
14
 
15
- - <%= config.bin %> <%= command.id %> -o someAlias
15
+ <%= config.bin %> <%= command.id %> --target-org myscratch
16
16
 
17
- Enable tracking on an org using a username
17
+ - Enable source tracking for an org using a username:
18
18
 
19
- - <%= config.bin %> <%= command.id %> -o you@example.com
19
+ <%= config.bin %> <%= command.id %> --target-org you@example.com
20
20
 
21
- Enable tracking on your default org
21
+ - Enable source tracking for your default org:
22
22
 
23
- - <%= config.bin %> <%= command.id %>
23
+ <%= config.bin %> <%= command.id %>
24
24
 
25
25
  # success
26
26
 
@@ -28,12 +28,12 @@ Enabled source tracking for %s.
28
28
 
29
29
  # error.TrackingNotAvailable
30
30
 
31
- This org cannot enable source tracking because the SourceMember object is not available, or you do not have access to it.
31
+ You can't enable source tracking on this org because the SourceMember Tooling API object isn't available, or you don't have access to it.
32
32
 
33
33
  # error.TrackingNotAvailable.actions
34
34
 
35
- - If the org is a sandbox, make sure that your production org has Source Tracking enabled in sandboxes. See https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_setup_enable_source_tracking_sandboxes.htm.
35
+ - If the org is a Developer or Developer Pro sandbox, make sure that the associated production org has enabled source tracking in sandboxes. See https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_setup_enable_source_tracking_sandboxes.htm.
36
36
 
37
- - Make sure that your user can access the SourceMembers table via the tooling API.
37
+ - Make sure that your user can access the SourceMember Tooling API object.
38
38
 
39
- - If the Org is a production org, source tracking cannot be enabled.
39
+ - You can't enable source tracking on Developer Edition orgs, production orgs, Partial Copy sandboxes, or Full sandboxes.
package/oclif.lock CHANGED
@@ -961,7 +961,7 @@
961
961
  resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
962
962
  integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
963
963
 
964
- "@salesforce/cli-plugins-testkit@^5.0.4":
964
+ "@salesforce/cli-plugins-testkit@^5.0.3":
965
965
  version "5.0.4"
966
966
  resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.0.4.tgz#523c459f43822d7b24bff5117aeda7f77ed5e26c"
967
967
  integrity sha512-8pquViVBCd5sF6nBXgLgwymEBE6pSAS376R9qq7rxuV+PSFCC5bnzQaKm2ugY+s5vXKNcV6WcmBHNCQnGv+M7Q==
@@ -1104,13 +1104,13 @@
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"
@@ -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"
@@ -1485,9 +1485,11 @@
1485
1485
  "org:disable:tracking": {
1486
1486
  "aliases": [],
1487
1487
  "args": {},
1488
- "description": "This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that no source tracking operations are executed when working with this org.",
1488
+ "description": "Disabling source tracking has no direct effect on the org, it affects only your local environment. Specifically, Salesforce CLI stores the setting in the org's local configuration file so that no source tracking operations are executed when working with the org.",
1489
1489
  "examples": [
1490
- "Disable tracking on an org using an alias\n\n- <%= config.bin %> <%= command.id %> -o someAlias\n\nDisable tracking on an org using a username\n\n- <%= config.bin %> <%= command.id %> -o you@example.com\n\nDisable tracking on your default org\n\n- <%= config.bin %> <%= command.id %>"
1490
+ "Disable source tracking for an org with alias \"myscratch\":\n<%= config.bin %> <%= command.id %> --target-org myscratch",
1491
+ "Disable source tracking for an org using a username:\n<%= config.bin %> <%= command.id %> --target-org you@example.com",
1492
+ "Disable source tracking for your default org:\n<%= config.bin %> <%= command.id %>"
1491
1493
  ],
1492
1494
  "flags": {
1493
1495
  "json": {
@@ -1502,7 +1504,7 @@
1502
1504
  "name": "target-org",
1503
1505
  "noCacheDefault": true,
1504
1506
  "required": true,
1505
- "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.",
1506
1508
  "hasDynamicHelp": true,
1507
1509
  "multiple": false,
1508
1510
  "type": "option"
@@ -1515,7 +1517,7 @@
1515
1517
  "pluginName": "@salesforce/plugin-org",
1516
1518
  "pluginType": "core",
1517
1519
  "strict": true,
1518
- "summary": "Disable source tracking in local auth file.",
1520
+ "summary": "Prevent Salesforce CLI from tracking changes in your source files between your project and an org.",
1519
1521
  "enableJsonFlag": true,
1520
1522
  "SF_ENV": "SF_ENV",
1521
1523
  "isESM": true,
@@ -1539,9 +1541,11 @@
1539
1541
  "org:enable:tracking": {
1540
1542
  "aliases": [],
1541
1543
  "args": {},
1542
- "description": "This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that source tracking operations are executed when working with this org.\n\nThis command will throw an error if the org does not support tracking.",
1544
+ "description": "Enabling source tracking has no direct effect on the org, it affects only your local environment. Specifically, Salesforce CLI stores the setting in the org's local configuration file so that source tracking operations are executed when working with the org.\n\nThis command throws an error if the org doesn't support tracking. Examples of orgs that don't support source tracking include Developer Edition orgs, production orgs, Partial Copy sandboxes, and Full sandboxes.",
1543
1545
  "examples": [
1544
- "Enable tracking on an org using an alias\n\n- <%= config.bin %> <%= command.id %> -o someAlias\n\nEnable tracking on an org using a username\n\n- <%= config.bin %> <%= command.id %> -o you@example.com\n\nEnable tracking on your default org\n\n- <%= config.bin %> <%= command.id %>"
1546
+ "Enable source tracking for an org with alias \"myscratch\":\n<%= config.bin %> <%= command.id %> --target-org myscratch",
1547
+ "Enable source tracking for an org using a username:\n<%= config.bin %> <%= command.id %> --target-org you@example.com",
1548
+ "Enable source tracking for your default org:\n<%= config.bin %> <%= command.id %>"
1545
1549
  ],
1546
1550
  "flags": {
1547
1551
  "json": {
@@ -1556,7 +1560,7 @@
1556
1560
  "name": "target-org",
1557
1561
  "noCacheDefault": true,
1558
1562
  "required": true,
1559
- "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.",
1560
1564
  "hasDynamicHelp": true,
1561
1565
  "multiple": false,
1562
1566
  "type": "option"
@@ -1569,7 +1573,7 @@
1569
1573
  "pluginName": "@salesforce/plugin-org",
1570
1574
  "pluginType": "core",
1571
1575
  "strict": true,
1572
- "summary": "Enable source tracking in local auth file.",
1576
+ "summary": "Allow Salesforce CLI to track changes in your source files between your project and an org.",
1573
1577
  "enableJsonFlag": true,
1574
1578
  "SF_ENV": "SF_ENV",
1575
1579
  "isESM": true,
@@ -1642,7 +1646,7 @@
1642
1646
  "name": "target-org",
1643
1647
  "noCacheDefault": true,
1644
1648
  "required": true,
1645
- "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.",
1646
1650
  "hasDynamicHelp": true,
1647
1651
  "multiple": false,
1648
1652
  "type": "option"
@@ -1761,7 +1765,7 @@
1761
1765
  "name": "target-org",
1762
1766
  "noCacheDefault": true,
1763
1767
  "required": true,
1764
- "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.",
1765
1769
  "hasDynamicHelp": true,
1766
1770
  "multiple": false,
1767
1771
  "type": "option"
@@ -2011,5 +2015,5 @@
2011
2015
  ]
2012
2016
  }
2013
2017
  },
2014
- "version": "3.0.6"
2018
+ "version": "3.0.8"
2015
2019
  }
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-org",
3
3
  "description": "Commands to interact with Salesforce orgs",
4
- "version": "3.0.6",
4
+ "version": "3.0.8",
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",
11
+ "@salesforce/sf-plugins-core": "^5.0.3",
12
12
  "@salesforce/source-deploy-retrieve": "^10.0.0",
13
13
  "open": "^9.1.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@oclif/plugin-command-snapshot": "^5.0.2",
17
- "@salesforce/cli-plugins-testkit": "^5.0.4",
17
+ "@salesforce/cli-plugins-testkit": "^5.0.3",
18
18
  "@salesforce/dev-scripts": "^7.1.1",
19
19
  "@salesforce/plugin-command-reference": "^3.0.46",
20
20
  "@salesforce/ts-sinon": "1.4.19",
@@ -72,10 +72,10 @@
72
72
  "description": "Delete scratch orgs, sandboxes, org shapes, and org snapshots."
73
73
  },
74
74
  "enable": {
75
- "description": "Enable tracking on an org."
75
+ "description": "Enable source tracking in an org."
76
76
  },
77
77
  "disable": {
78
- "description": "Disable tracking on an org"
78
+ "description": "Disable source tracking in an org."
79
79
  }
80
80
  },
81
81
  "external": true
@@ -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.6.crt",
228
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.6.sig"
227
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.8.crt",
228
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/3.0.8.sig"
229
229
  }
230
230
  }