@salesforce/cli 2.22.5 → 2.22.7-qa.0

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
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
24
24
  $ sf COMMAND
25
25
  running command...
26
26
  $ sf (--version|-v)
27
- @salesforce/cli/2.22.5 linux-x64 node-v20.10.0
27
+ @salesforce/cli/2.22.7-qa.0 linux-x64 node-v20.10.0
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -480,7 +480,8 @@ FLAGS
480
480
  -d, --output-dir=<value> Directory for saving the log files.
481
481
  -i, --log-id=<value> ID of the specific log to display.
482
482
  -n, --number=<value> Number of the most recent logs to display.
483
- -o, --target-org=<value> (required) Username or alias of the target org.
483
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
484
+ configuration variable is already set.
484
485
  --api-version=<value> Override the api version used for api requests made by this command
485
486
 
486
487
  GLOBAL FLAGS
@@ -519,7 +520,7 @@ FLAG DESCRIPTIONS
519
520
  directory.
520
521
  ```
521
522
 
522
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/get/log.ts)_
523
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/get/log.ts)_
523
524
 
524
525
  ## `sf apex get test`
525
526
 
@@ -534,7 +535,8 @@ FLAGS
534
535
  -c, --code-coverage Retrieve code coverage results.
535
536
  -d, --output-dir=<value> Directory in which to store test result files.
536
537
  -i, --test-run-id=<value> (required) ID of the test run.
537
- -o, --target-org=<value> (required) Username or alias of the target org.
538
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
539
+ configuration variable is already set.
538
540
  -r, --result-format=<option> [default: human] Format of the results.
539
541
  <options: human|tap|junit|json>
540
542
  --api-version=<value> Override the api version used for api requests made by this command
@@ -571,7 +573,7 @@ EXAMPLES
571
573
  me@myorg',
572
574
  ```
573
575
 
574
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/get/test.ts)_
576
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/get/test.ts)_
575
577
 
576
578
  ## `sf apex list log`
577
579
 
@@ -582,7 +584,8 @@ USAGE
582
584
  $ sf apex list log -o <value> [--json] [--api-version <value>]
583
585
 
584
586
  FLAGS
585
- -o, --target-org=<value> (required) Username or alias of the target org.
587
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
588
+ configuration variable is already set.
586
589
  --api-version=<value> Override the api version used for api requests made by this command
587
590
 
588
591
  GLOBAL FLAGS
@@ -609,7 +612,7 @@ EXAMPLES
609
612
  $ sf apex list log --target-org me@my.org
610
613
  ```
611
614
 
612
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/list/log.ts)_
615
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/list/log.ts)_
613
616
 
614
617
  ## `sf apex run`
615
618
 
@@ -621,7 +624,8 @@ USAGE
621
624
 
622
625
  FLAGS
623
626
  -f, --file=<value> Path to a local file that contains Apex code.
624
- -o, --target-org=<value> (required) Username or alias of the target org.
627
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
628
+ configuration variable is already set.
625
629
  --api-version=<value> Override the api version used for api requests made by this command
626
630
 
627
631
  GLOBAL FLAGS
@@ -654,7 +658,7 @@ EXAMPLES
654
658
  $ sf apex run
655
659
  ```
656
660
 
657
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/run.ts)_
661
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/run.ts)_
658
662
 
659
663
  ## `sf apex run test`
660
664
 
@@ -672,7 +676,8 @@ FLAGS
672
676
  -l, --test-level=<option> Level of tests to run; default is RunLocalTests.
673
677
  <options: RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests>
674
678
  -n, --class-names=<value>... Apex test class names to run; default is all classes.
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
  -r, --result-format=<option> [default: human] Format of the test results.
677
682
  <options: human|tap|junit|json>
678
683
  -s, --suite-names=<value>... Apex test suite names to run.
@@ -760,7 +765,7 @@ FLAG DESCRIPTIONS
760
765
  --tests Test1 --tests Test2
761
766
  ```
762
767
 
763
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/run/test.ts)_
768
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/run/test.ts)_
764
769
 
765
770
  ## `sf apex tail log`
766
771
 
@@ -773,7 +778,8 @@ USAGE
773
778
  FLAGS
774
779
  -c, --color Apply default colors to noteworthy log lines.
775
780
  -d, --debug-level=<value> Debug level to set on the DEVELOPER_LOG trace flag for your user.
776
- -o, --target-org=<value> (required) Username or alias of the target org.
781
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
782
+ configuration variable is already set.
777
783
  -s, --skip-trace-flag Skip trace flag setup. Assumes that a trace flag and debug level are fully set up.
778
784
  --api-version=<value> Override the api version used for api requests made by this command
779
785
 
@@ -799,7 +805,7 @@ EXAMPLES
799
805
  $ sf apex tail log --color --skip-trace-flag
800
806
  ```
801
807
 
802
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.8/src/commands/apex/tail/log.ts)_
808
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/tail/log.ts)_
803
809
 
804
810
  ## `sf autocomplete [SHELL]`
805
811
 
@@ -6360,7 +6366,7 @@ EXAMPLES
6360
6366
  $ sf plugins
6361
6367
  ```
6362
6368
 
6363
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.10/src/commands/plugins/index.ts)_
6369
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.11-qa.0/src/commands/plugins/index.ts)_
6364
6370
 
6365
6371
  ## `sf plugins discover`
6366
6372
 
@@ -6404,7 +6410,7 @@ EXAMPLES
6404
6410
  $ sf plugins inspect myplugin
6405
6411
  ```
6406
6412
 
6407
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.10/src/commands/plugins/inspect.ts)_
6413
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.11-qa.0/src/commands/plugins/inspect.ts)_
6408
6414
 
6409
6415
  ## `sf plugins:install PLUGIN...`
6410
6416
 
@@ -6448,7 +6454,7 @@ EXAMPLES
6448
6454
  $ sf plugins install someuser/someplugin
6449
6455
  ```
6450
6456
 
6451
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.10/src/commands/plugins/install.ts)_
6457
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.11-qa.0/src/commands/plugins/install.ts)_
6452
6458
 
6453
6459
  ## `sf plugins:link PLUGIN`
6454
6460
 
@@ -6478,7 +6484,7 @@ EXAMPLES
6478
6484
  $ sf plugins link myplugin
6479
6485
  ```
6480
6486
 
6481
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.10/src/commands/plugins/link.ts)_
6487
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.11-qa.0/src/commands/plugins/link.ts)_
6482
6488
 
6483
6489
  ## `sf plugins reset`
6484
6490
 
@@ -6489,7 +6495,7 @@ USAGE
6489
6495
  $ sf plugins reset
6490
6496
  ```
6491
6497
 
6492
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.10/src/commands/plugins/reset.ts)_
6498
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.11-qa.0/src/commands/plugins/reset.ts)_
6493
6499
 
6494
6500
  ## `sf plugins trust verify`
6495
6501
 
@@ -6512,12 +6518,12 @@ DESCRIPTION
6512
6518
  Verifies the digital signature on an npm package matches the signature and key stored at the expected URLs.
6513
6519
 
6514
6520
  EXAMPLES
6515
- $ sf plugins trust verify --npm @scope/npmName --registry http://my.repo.org:4874
6521
+ $ sf plugins trust verify --npm @scope/npmName --registry https://npm.pkg.github.com
6516
6522
 
6517
6523
  $ sf plugins trust verify --npm @scope/npmName
6518
6524
  ```
6519
6525
 
6520
- _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.2.0/src/commands/plugins/trust/verify.ts)_
6526
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.2.1-qa.0/src/commands/plugins/trust/verify.ts)_
6521
6527
 
6522
6528
  ## `sf plugins:uninstall PLUGIN...`
6523
6529
 
@@ -6545,7 +6551,7 @@ EXAMPLES
6545
6551
  $ sf plugins uninstall myplugin
6546
6552
  ```
6547
6553
 
6548
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.10/src/commands/plugins/uninstall.ts)_
6554
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.11-qa.0/src/commands/plugins/uninstall.ts)_
6549
6555
 
6550
6556
  ## `sf plugins update`
6551
6557
 
@@ -6563,7 +6569,7 @@ DESCRIPTION
6563
6569
  Update installed plugins.
6564
6570
  ```
6565
6571
 
6566
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.10/src/commands/plugins/update.ts)_
6572
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.11-qa.0/src/commands/plugins/update.ts)_
6567
6573
 
6568
6574
  ## `sf project convert mdapi`
6569
6575