@salesforce/plugin-apex 3.2.0 → 3.2.2

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
@@ -148,7 +148,7 @@ FLAG DESCRIPTIONS
148
148
  directory.
149
149
  ```
150
150
 
151
- _See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/get/log.ts)_
151
+ _See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.2/src/commands/apex/get/log.ts)_
152
152
 
153
153
  ## `sf apex get test`
154
154
 
@@ -199,10 +199,10 @@ EXAMPLES
199
199
  default org):
200
200
 
201
201
  $ sf apex get test --test-run-id <test run id> --code-coverage --output-dir <path to outputdir> --target-org \
202
- me@myorg',
202
+ me@myorg'
203
203
  ```
204
204
 
205
- _See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/get/test.ts)_
205
+ _See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.2/src/commands/apex/get/test.ts)_
206
206
 
207
207
  ## `sf apex list log`
208
208
 
@@ -242,7 +242,7 @@ EXAMPLES
242
242
  $ sf apex list log --target-org me@my.org
243
243
  ```
244
244
 
245
- _See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/list/log.ts)_
245
+ _See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.2/src/commands/apex/list/log.ts)_
246
246
 
247
247
  ## `sf apex run`
248
248
 
@@ -289,7 +289,7 @@ EXAMPLES
289
289
  $ sf apex run
290
290
  ```
291
291
 
292
- _See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/run.ts)_
292
+ _See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.2/src/commands/apex/run.ts)_
293
293
 
294
294
  ## `sf apex run test`
295
295
 
@@ -369,14 +369,45 @@ EXAMPLES
369
369
 
370
370
  $ sf apex run test --test-level RunLocalTests --output-dir <path to outputdir> --target-org me@my.org
371
371
 
372
+ Run all tests in the org asynchronously:
373
+
374
+ $ sf apex run test --target-org myscratch
375
+
376
+ Run all tests synchronously; the command waits to display the test results until all tests finish:
377
+
378
+ $ sf apex run test --synchronous
379
+
380
+ Run specific tests using the --test-level flag:
381
+
382
+ $ sf apex run test --test-level RunLocalTests
383
+
384
+ Run Apex tests on all the methods in the specified class; output results in Test Anything Protocol (TAP) format and
385
+ request code coverage results:
386
+
387
+ $ sf apex run test --class-names TestA --class-names TestB --result-format tap --code-coverage
388
+
389
+ Run Apex tests on methods specified using the standard Class.method notation; if you specify a test class without a
390
+ method, the command runs all methods in the class:
391
+
392
+ $ sf apex run test --tests TestA.excitingMethod --tests TestA.boringMethod --tests TestB
393
+
394
+ Run Apex tests on methods specified using the standard Class.method notation with a namespace:
395
+
396
+ $ sf apex run test --tests ns.TestA.excitingMethod --tests ns.TestA.boringMethod --tests ns.TestB
397
+
372
398
  FLAG DESCRIPTIONS
373
399
  -l, --test-level=RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests Level of tests to run; default is RunLocalTests.
374
400
 
375
401
  Here's what the levels mean:
376
402
 
377
- - RunSpecifiedTests — Only the tests that you specify are run.
378
- - RunLocalTests All tests in your org are run, except the ones that originate from installed managed packages.
379
- - RunAllTestsInOrg All tests are in your org and in installed managed packages are run
403
+ - RunSpecifiedTests — Only the tests that you specify in the runTests option are run. Code coverage requirements
404
+ differ from the default coverage requirements when using this test level. The executed tests must cover each class
405
+ and trigger in the deployment package for a minimum of 75% code coverage. This coverage is computed for each class
406
+ and triggers individually, and is different than the overall coverage percentage.
407
+ - RunLocalTests — All local tests in your org, including tests that originate from no-namespaced unlocked packages,
408
+ are run. The tests that originate from installed managed packages and namespaced unlocked packages aren't run. This
409
+ test level is the default for production deployments that include Apex classes or triggers.
410
+ - RunAllTestsInOrg — All tests are run. The tests include all tests in your org.
380
411
 
381
412
  -n, --class-names=<value>... Apex test class names to run; default is all classes.
382
413
 
@@ -399,7 +430,7 @@ FLAG DESCRIPTIONS
399
430
  --tests Test1 --tests Test2
400
431
  ```
401
432
 
402
- _See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/run/test.ts)_
433
+ _See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.2/src/commands/apex/run/test.ts)_
403
434
 
404
435
  ## `sf apex tail log`
405
436
 
@@ -442,6 +473,6 @@ EXAMPLES
442
473
  $ sf apex tail log --color --skip-trace-flag
443
474
  ```
444
475
 
445
- _See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/tail/log.ts)_
476
+ _See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.2/src/commands/apex/tail/log.ts)_
446
477
 
447
478
  <!-- commandsstop -->
@@ -22,7 +22,8 @@ Provide a test run ID to display test results for an enqueued or completed async
22
22
 
23
23
  - Specify a directory in which to save the test results from the org with the specified username (rather than your default org):
24
24
 
25
- <%= config.bin %> <%= command.id %> --test-run-id <test run id> --code-coverage --output-dir <path to outputdir> --target-org me@myorg',
25
+ <%= config.bin %> <%= command.id %> --test-run-id <test run id> --code-coverage --output-dir <path to outputdir> --target-org me@myorg'
26
+
26
27
 
27
28
  # flags.test-run-id.summary
28
29
 
@@ -34,6 +34,31 @@ NOTE: The testRunCoverage value (JSON and JUnit result formats) is a percentage
34
34
 
35
35
  <%= config.bin %> <%= command.id %> --test-level RunLocalTests --output-dir <path to outputdir> --target-org me@my.org
36
36
 
37
+ - Run all tests in the org asynchronously:
38
+
39
+ <%= config.bin %> <%= command.id %> --target-org myscratch
40
+
41
+ - Run all tests synchronously; the command waits to display the test results until all tests finish:
42
+
43
+ <%= config.bin %> <%= command.id %> --synchronous
44
+
45
+ - Run specific tests using the --test-level flag:
46
+
47
+ <%= config.bin %> <%= command.id %> --test-level RunLocalTests
48
+
49
+ - Run Apex tests on all the methods in the specified class; output results in Test Anything Protocol (TAP) format and request code coverage results:
50
+
51
+ <%= config.bin %> <%= command.id %> --class-names TestA --class-names TestB --result-format tap --code-coverage
52
+
53
+ - Run Apex tests on methods specified using the standard Class.method notation; if you specify a test class without a method, the command runs all methods in the class:
54
+
55
+ <%= config.bin %> <%= command.id %> --tests TestA.excitingMethod --tests TestA.boringMethod --tests TestB
56
+
57
+ - Run Apex tests on methods specified using the standard Class.method notation with a namespace:
58
+
59
+ <%= config.bin %> <%= command.id %> --tests ns.TestA.excitingMethod --tests ns.TestA.boringMethod --tests ns.TestB
60
+
61
+
37
62
  # flags.class-names.summary
38
63
 
39
64
  Apex test class names to run; default is all classes.
@@ -80,9 +105,9 @@ Level of tests to run; default is RunLocalTests.
80
105
 
81
106
  Here's what the levels mean:
82
107
 
83
- - RunSpecifiedTests — Only the tests that you specify are run.
84
- - RunLocalTests — All tests in your org are run, except the ones that originate from installed managed packages.
85
- - RunAllTestsInOrg — All tests are in your org and in installed managed packages are run
108
+ - RunSpecifiedTests — Only the tests that you specify in the runTests option are run. Code coverage requirements differ from the default coverage requirements when using this test level. The executed tests must cover each class and trigger in the deployment package for a minimum of 75% code coverage. This coverage is computed for each class and triggers individually, and is different than the overall coverage percentage.
109
+ - RunLocalTests — All local tests in your org, including tests that originate from no-namespaced unlocked packages, are run. The tests that originate from installed managed packages and namespaced unlocked packages aren't run. This test level is the default for production deployments that include Apex classes or triggers.
110
+ - RunAllTestsInOrg — All tests are run. The tests include all tests in your org.
86
111
 
87
112
  # flags.wait.summary
88
113
 
@@ -269,7 +269,7 @@
269
269
  "Display test results for your default org using a test run ID:\n<%= config.bin %> <%= command.id %> --test-run-id <test run id>",
270
270
  "Similar to previous example, but output the result in JUnit format:\n<%= config.bin %> <%= command.id %> --test-run-id <test run id> --result-format junit",
271
271
  "Also retrieve code coverage results and output in JSON format:\n<%= config.bin %> <%= command.id %> --test-run-id <test run id> --code-coverage --json",
272
- "Specify a directory in which to save the test results from the org with the specified username (rather than your default org):\n<%= config.bin %> <%= command.id %> --test-run-id <test run id> --code-coverage --output-dir <path to outputdir> --target-org me@myorg',"
272
+ "Specify a directory in which to save the test results from the org with the specified username (rather than your default org):\n<%= config.bin %> <%= command.id %> --test-run-id <test run id> --code-coverage --output-dir <path to outputdir> --target-org me@myorg'"
273
273
  ],
274
274
  "flags": {
275
275
  "json": {
@@ -432,6 +432,122 @@
432
432
  "test:get:apex"
433
433
  ]
434
434
  },
435
+ "apex:list:log": {
436
+ "aliases": [
437
+ "force:apex:log:list"
438
+ ],
439
+ "args": {},
440
+ "deprecateAliases": true,
441
+ "description": "Run this command in a project to list the IDs and general information for all debug logs in your default org.\n\nTo fetch a specific log from your org, obtain the ID from this command's output, then run the “<%= config.bin %> apex log get” command.",
442
+ "examples": [
443
+ "List the IDs and information about the debug logs in your default org:\n<%= config.bin %> <%= command.id %>",
444
+ "Similar to previous example, but use the org with the specified username:\n<%= config.bin %> <%= command.id %> --target-org me@my.org"
445
+ ],
446
+ "flags": {
447
+ "json": {
448
+ "description": "Format output as json.",
449
+ "helpGroup": "GLOBAL",
450
+ "name": "json",
451
+ "allowNo": false,
452
+ "type": "boolean"
453
+ },
454
+ "flags-dir": {
455
+ "helpGroup": "GLOBAL",
456
+ "name": "flags-dir",
457
+ "summary": "Import flag values from a directory.",
458
+ "hasDynamicHelp": false,
459
+ "multiple": false,
460
+ "type": "option"
461
+ },
462
+ "target-org": {
463
+ "aliases": [
464
+ "targetusername",
465
+ "u"
466
+ ],
467
+ "char": "o",
468
+ "deprecateAliases": true,
469
+ "name": "target-org",
470
+ "noCacheDefault": true,
471
+ "required": true,
472
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
473
+ "hasDynamicHelp": true,
474
+ "multiple": false,
475
+ "type": "option"
476
+ },
477
+ "api-version": {
478
+ "aliases": [
479
+ "apiversion"
480
+ ],
481
+ "deprecateAliases": true,
482
+ "description": "Override the api version used for api requests made by this command",
483
+ "name": "api-version",
484
+ "hasDynamicHelp": false,
485
+ "multiple": false,
486
+ "type": "option"
487
+ },
488
+ "loglevel": {
489
+ "deprecated": {
490
+ "message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
491
+ },
492
+ "hidden": true,
493
+ "name": "loglevel",
494
+ "hasDynamicHelp": false,
495
+ "multiple": false,
496
+ "type": "option"
497
+ }
498
+ },
499
+ "hasDynamicHelp": true,
500
+ "hiddenAliases": [],
501
+ "id": "apex:list:log",
502
+ "pluginAlias": "@salesforce/plugin-apex",
503
+ "pluginName": "@salesforce/plugin-apex",
504
+ "pluginType": "core",
505
+ "strict": true,
506
+ "summary": "Display a list of IDs and general information about debug logs.",
507
+ "enableJsonFlag": true,
508
+ "isESM": true,
509
+ "relativePath": [
510
+ "lib",
511
+ "commands",
512
+ "apex",
513
+ "list",
514
+ "log.js"
515
+ ],
516
+ "aliasPermutations": [
517
+ "force:apex:log:list",
518
+ "apex:force:log:list",
519
+ "apex:log:force:list",
520
+ "apex:log:list:force",
521
+ "force:log:apex:list",
522
+ "log:force:apex:list",
523
+ "log:apex:force:list",
524
+ "log:apex:list:force",
525
+ "force:log:list:apex",
526
+ "log:force:list:apex",
527
+ "log:list:force:apex",
528
+ "log:list:apex:force",
529
+ "force:apex:list:log",
530
+ "apex:force:list:log",
531
+ "apex:list:force:log",
532
+ "apex:list:log:force",
533
+ "force:list:apex:log",
534
+ "list:force:apex:log",
535
+ "list:apex:force:log",
536
+ "list:apex:log:force",
537
+ "force:list:log:apex",
538
+ "list:force:log:apex",
539
+ "list:log:force:apex",
540
+ "list:log:apex:force"
541
+ ],
542
+ "permutations": [
543
+ "apex:list:log",
544
+ "list:apex:log",
545
+ "list:log:apex",
546
+ "apex:log:list",
547
+ "log:apex:list",
548
+ "log:list:apex"
549
+ ]
550
+ },
435
551
  "apex:run:test": {
436
552
  "aliases": [
437
553
  "force:apex:test:run"
@@ -444,7 +560,13 @@
444
560
  "Run the specified Apex test classes in your default org and display results in human-readable form:\n<%= config.bin %> <%= command.id %> --class-names MyClassTest --class-names MyOtherClassTest --result-format human",
445
561
  "Run the specified Apex test suites in your default org and include code coverage results and additional details:\n<%= config.bin %> <%= command.id %> --suite-names MySuite --suite-names MyOtherSuite --code-coverage --detailed-coverage",
446
562
  "Run the specified Apex tests in your default org and display results in human-readable output:\n<%= config.bin %> <%= command.id %> --tests MyClassTest.testCoolFeature --tests MyClassTest.testAwesomeFeature --tests AnotherClassTest --tests namespace.TheirClassTest.testThis --result-format human",
447
- "Run all tests in the org with the specified username with the specified test level; save the output to the specified directory:\n<%= config.bin %> <%= command.id %> --test-level RunLocalTests --output-dir <path to outputdir> --target-org me@my.org"
563
+ "Run all tests in the org with the specified username with the specified test level; save the output to the specified directory:\n<%= config.bin %> <%= command.id %> --test-level RunLocalTests --output-dir <path to outputdir> --target-org me@my.org",
564
+ "Run all tests in the org asynchronously:\n<%= config.bin %> <%= command.id %> --target-org myscratch",
565
+ "Run all tests synchronously; the command waits to display the test results until all tests finish:\n<%= config.bin %> <%= command.id %> --synchronous",
566
+ "Run specific tests using the --test-level flag:\n<%= config.bin %> <%= command.id %> --test-level RunLocalTests",
567
+ "Run Apex tests on all the methods in the specified class; output results in Test Anything Protocol (TAP) format and request code coverage results:\n<%= config.bin %> <%= command.id %> --class-names TestA --class-names TestB --result-format tap --code-coverage",
568
+ "Run Apex tests on methods specified using the standard Class.method notation; if you specify a test class without a method, the command runs all methods in the class:\n<%= config.bin %> <%= command.id %> --tests TestA.excitingMethod --tests TestA.boringMethod --tests TestB",
569
+ "Run Apex tests on methods specified using the standard Class.method notation with a namespace:\n<%= config.bin %> <%= command.id %> --tests ns.TestA.excitingMethod --tests ns.TestA.boringMethod --tests ns.TestB"
448
570
  ],
449
571
  "flags": {
450
572
  "json": {
@@ -528,7 +650,7 @@
528
650
  ],
529
651
  "char": "l",
530
652
  "deprecateAliases": true,
531
- "description": "Here's what the levels mean:\n\n- RunSpecifiedTests — Only the tests that you specify are run.\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed packages.\n- RunAllTestsInOrg — All tests are in your org and in installed managed packages are run",
653
+ "description": "Here's what the levels mean:\n\n- RunSpecifiedTests — Only the tests that you specify in the runTests option are run. Code coverage requirements differ from the default coverage requirements when using this test level. The executed tests must cover each class and trigger in the deployment package for a minimum of 75% code coverage. This coverage is computed for each class and triggers individually, and is different than the overall coverage percentage.\n- RunLocalTests — All local tests in your org, including tests that originate from no-namespaced unlocked packages, are run. The tests that originate from installed managed packages and namespaced unlocked packages aren't run. This test level is the default for production deployments that include Apex classes or triggers.\n- RunAllTestsInOrg — All tests are run. The tests include all tests in your org.",
532
654
  "name": "test-level",
533
655
  "summary": "Level of tests to run; default is RunLocalTests.",
534
656
  "hasDynamicHelp": false,
@@ -691,122 +813,6 @@
691
813
  "test:run:apex"
692
814
  ]
693
815
  },
694
- "apex:list:log": {
695
- "aliases": [
696
- "force:apex:log:list"
697
- ],
698
- "args": {},
699
- "deprecateAliases": true,
700
- "description": "Run this command in a project to list the IDs and general information for all debug logs in your default org.\n\nTo fetch a specific log from your org, obtain the ID from this command's output, then run the “<%= config.bin %> apex log get” command.",
701
- "examples": [
702
- "List the IDs and information about the debug logs in your default org:\n<%= config.bin %> <%= command.id %>",
703
- "Similar to previous example, but use the org with the specified username:\n<%= config.bin %> <%= command.id %> --target-org me@my.org"
704
- ],
705
- "flags": {
706
- "json": {
707
- "description": "Format output as json.",
708
- "helpGroup": "GLOBAL",
709
- "name": "json",
710
- "allowNo": false,
711
- "type": "boolean"
712
- },
713
- "flags-dir": {
714
- "helpGroup": "GLOBAL",
715
- "name": "flags-dir",
716
- "summary": "Import flag values from a directory.",
717
- "hasDynamicHelp": false,
718
- "multiple": false,
719
- "type": "option"
720
- },
721
- "target-org": {
722
- "aliases": [
723
- "targetusername",
724
- "u"
725
- ],
726
- "char": "o",
727
- "deprecateAliases": true,
728
- "name": "target-org",
729
- "noCacheDefault": true,
730
- "required": true,
731
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
732
- "hasDynamicHelp": true,
733
- "multiple": false,
734
- "type": "option"
735
- },
736
- "api-version": {
737
- "aliases": [
738
- "apiversion"
739
- ],
740
- "deprecateAliases": true,
741
- "description": "Override the api version used for api requests made by this command",
742
- "name": "api-version",
743
- "hasDynamicHelp": false,
744
- "multiple": false,
745
- "type": "option"
746
- },
747
- "loglevel": {
748
- "deprecated": {
749
- "message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
750
- },
751
- "hidden": true,
752
- "name": "loglevel",
753
- "hasDynamicHelp": false,
754
- "multiple": false,
755
- "type": "option"
756
- }
757
- },
758
- "hasDynamicHelp": true,
759
- "hiddenAliases": [],
760
- "id": "apex:list:log",
761
- "pluginAlias": "@salesforce/plugin-apex",
762
- "pluginName": "@salesforce/plugin-apex",
763
- "pluginType": "core",
764
- "strict": true,
765
- "summary": "Display a list of IDs and general information about debug logs.",
766
- "enableJsonFlag": true,
767
- "isESM": true,
768
- "relativePath": [
769
- "lib",
770
- "commands",
771
- "apex",
772
- "list",
773
- "log.js"
774
- ],
775
- "aliasPermutations": [
776
- "force:apex:log:list",
777
- "apex:force:log:list",
778
- "apex:log:force:list",
779
- "apex:log:list:force",
780
- "force:log:apex:list",
781
- "log:force:apex:list",
782
- "log:apex:force:list",
783
- "log:apex:list:force",
784
- "force:log:list:apex",
785
- "log:force:list:apex",
786
- "log:list:force:apex",
787
- "log:list:apex:force",
788
- "force:apex:list:log",
789
- "apex:force:list:log",
790
- "apex:list:force:log",
791
- "apex:list:log:force",
792
- "force:list:apex:log",
793
- "list:force:apex:log",
794
- "list:apex:force:log",
795
- "list:apex:log:force",
796
- "force:list:log:apex",
797
- "list:force:log:apex",
798
- "list:log:force:apex",
799
- "list:log:apex:force"
800
- ],
801
- "permutations": [
802
- "apex:list:log",
803
- "list:apex:log",
804
- "list:log:apex",
805
- "apex:log:list",
806
- "log:apex:list",
807
- "log:list:apex"
808
- ]
809
- },
810
816
  "apex:tail:log": {
811
817
  "aliases": [
812
818
  "force:apex:log:tail"
@@ -951,5 +957,5 @@
951
957
  ]
952
958
  }
953
959
  },
954
- "version": "3.2.0"
960
+ "version": "3.2.2"
955
961
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-apex",
3
3
  "description": "Apex commands",
4
- "version": "3.2.0",
4
+ "version": "3.2.2",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
@@ -13,14 +13,14 @@
13
13
  "ansis": "^3.2.0"
14
14
  },
15
15
  "devDependencies": {
16
- "@oclif/plugin-command-snapshot": "^5.2.2",
17
- "@salesforce/cli-plugins-testkit": "^5.3.14",
18
- "@salesforce/dev-scripts": "^10.1.1",
16
+ "@oclif/plugin-command-snapshot": "^5.2.3",
17
+ "@salesforce/cli-plugins-testkit": "^5.3.17",
18
+ "@salesforce/dev-scripts": "^10.2.0",
19
19
  "@salesforce/plugin-command-reference": "^3.1.2",
20
- "eslint-plugin-sf-plugin": "^1.18.5",
21
- "oclif": "^4.12.1",
20
+ "eslint-plugin-sf-plugin": "^1.18.9",
21
+ "oclif": "^4.13.10",
22
22
  "ts-node": "^10.9.2",
23
- "typescript": "^5.4.5"
23
+ "typescript": "^5.5.2"
24
24
  },
25
25
  "engines": {
26
26
  "node": ">=18.0.0"
@@ -217,7 +217,7 @@
217
217
  "exports": "./lib/index.js",
218
218
  "type": "module",
219
219
  "sfdx": {
220
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.2.0.crt",
221
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.2.0.sig"
220
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.2.2.crt",
221
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.2.2.sig"
222
222
  }
223
223
  }