@salesforce/plugin-apex 3.3.2 → 3.3.4

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.3.2/src/commands/apex/get/log.ts)_
151
+ _See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/src/commands/apex/get/log.ts)_
152
152
 
153
153
  ## `sf apex get test`
154
154
 
@@ -202,7 +202,7 @@ EXAMPLES
202
202
  me@myorg'
203
203
  ```
204
204
 
205
- _See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.2/src/commands/apex/get/test.ts)_
205
+ _See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/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.3.2/src/commands/apex/list/log.ts)_
245
+ _See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/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.3.2/src/commands/apex/run.ts)_
292
+ _See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/src/commands/apex/run.ts)_
293
293
 
294
294
  ## `sf apex run test`
295
295
 
@@ -428,7 +428,7 @@ FLAG DESCRIPTIONS
428
428
  --tests Test1 --tests Test2
429
429
  ```
430
430
 
431
- _See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.2/src/commands/apex/run/test.ts)_
431
+ _See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/src/commands/apex/run/test.ts)_
432
432
 
433
433
  ## `sf apex tail log`
434
434
 
@@ -471,6 +471,6 @@ EXAMPLES
471
471
  $ sf apex tail log --color --skip-trace-flag
472
472
  ```
473
473
 
474
- _See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.2/src/commands/apex/tail/log.ts)_
474
+ _See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.3.4/src/commands/apex/tail/log.ts)_
475
475
 
476
476
  <!-- commandsstop -->
@@ -17,10 +17,10 @@ export default class Test extends SfCommand<RunCommandResult> {
17
17
  'code-coverage': import("@oclif/core/interfaces").BooleanFlag<boolean>;
18
18
  'output-dir': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
19
19
  'test-level': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
20
- 'class-names': import("@oclif/core/interfaces").OptionFlag<string[], import("@oclif/core/interfaces").CustomOptions>;
20
+ 'class-names': import("@oclif/core/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/interfaces").CustomOptions>;
21
21
  'result-format': import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
22
- 'suite-names': import("@oclif/core/interfaces").OptionFlag<string[], import("@oclif/core/interfaces").CustomOptions>;
23
- tests: import("@oclif/core/interfaces").OptionFlag<string[], import("@oclif/core/interfaces").CustomOptions>;
22
+ 'suite-names': import("@oclif/core/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/interfaces").CustomOptions>;
23
+ tests: import("@oclif/core/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/interfaces").CustomOptions>;
24
24
  wait: import("@oclif/core/interfaces").OptionFlag<Duration, import("@oclif/core/interfaces").CustomOptions>;
25
25
  synchronous: import("@oclif/core/interfaces").BooleanFlag<boolean>;
26
26
  'detailed-coverage': import("@oclif/core/interfaces").BooleanFlag<boolean>;
@@ -432,122 +432,6 @@
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
- },
551
435
  "apex:run:test": {
552
436
  "aliases": [
553
437
  "force:apex:test:run"
@@ -813,6 +697,122 @@
813
697
  "test:run:apex"
814
698
  ]
815
699
  },
700
+ "apex:list:log": {
701
+ "aliases": [
702
+ "force:apex:log:list"
703
+ ],
704
+ "args": {},
705
+ "deprecateAliases": true,
706
+ "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.",
707
+ "examples": [
708
+ "List the IDs and information about the debug logs in your default org:\n<%= config.bin %> <%= command.id %>",
709
+ "Similar to previous example, but use the org with the specified username:\n<%= config.bin %> <%= command.id %> --target-org me@my.org"
710
+ ],
711
+ "flags": {
712
+ "json": {
713
+ "description": "Format output as json.",
714
+ "helpGroup": "GLOBAL",
715
+ "name": "json",
716
+ "allowNo": false,
717
+ "type": "boolean"
718
+ },
719
+ "flags-dir": {
720
+ "helpGroup": "GLOBAL",
721
+ "name": "flags-dir",
722
+ "summary": "Import flag values from a directory.",
723
+ "hasDynamicHelp": false,
724
+ "multiple": false,
725
+ "type": "option"
726
+ },
727
+ "target-org": {
728
+ "aliases": [
729
+ "targetusername",
730
+ "u"
731
+ ],
732
+ "char": "o",
733
+ "deprecateAliases": true,
734
+ "name": "target-org",
735
+ "noCacheDefault": true,
736
+ "required": true,
737
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
738
+ "hasDynamicHelp": true,
739
+ "multiple": false,
740
+ "type": "option"
741
+ },
742
+ "api-version": {
743
+ "aliases": [
744
+ "apiversion"
745
+ ],
746
+ "deprecateAliases": true,
747
+ "description": "Override the api version used for api requests made by this command",
748
+ "name": "api-version",
749
+ "hasDynamicHelp": false,
750
+ "multiple": false,
751
+ "type": "option"
752
+ },
753
+ "loglevel": {
754
+ "deprecated": {
755
+ "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."
756
+ },
757
+ "hidden": true,
758
+ "name": "loglevel",
759
+ "hasDynamicHelp": false,
760
+ "multiple": false,
761
+ "type": "option"
762
+ }
763
+ },
764
+ "hasDynamicHelp": true,
765
+ "hiddenAliases": [],
766
+ "id": "apex:list:log",
767
+ "pluginAlias": "@salesforce/plugin-apex",
768
+ "pluginName": "@salesforce/plugin-apex",
769
+ "pluginType": "core",
770
+ "strict": true,
771
+ "summary": "Display a list of IDs and general information about debug logs.",
772
+ "enableJsonFlag": true,
773
+ "isESM": true,
774
+ "relativePath": [
775
+ "lib",
776
+ "commands",
777
+ "apex",
778
+ "list",
779
+ "log.js"
780
+ ],
781
+ "aliasPermutations": [
782
+ "force:apex:log:list",
783
+ "apex:force:log:list",
784
+ "apex:log:force:list",
785
+ "apex:log:list:force",
786
+ "force:log:apex:list",
787
+ "log:force:apex:list",
788
+ "log:apex:force:list",
789
+ "log:apex:list:force",
790
+ "force:log:list:apex",
791
+ "log:force:list:apex",
792
+ "log:list:force:apex",
793
+ "log:list:apex:force",
794
+ "force:apex:list:log",
795
+ "apex:force:list:log",
796
+ "apex:list:force:log",
797
+ "apex:list:log:force",
798
+ "force:list:apex:log",
799
+ "list:force:apex:log",
800
+ "list:apex:force:log",
801
+ "list:apex:log:force",
802
+ "force:list:log:apex",
803
+ "list:force:log:apex",
804
+ "list:log:force:apex",
805
+ "list:log:apex:force"
806
+ ],
807
+ "permutations": [
808
+ "apex:list:log",
809
+ "list:apex:log",
810
+ "list:log:apex",
811
+ "apex:log:list",
812
+ "log:apex:list",
813
+ "log:list:apex"
814
+ ]
815
+ },
816
816
  "apex:tail:log": {
817
817
  "aliases": [
818
818
  "force:apex:log:tail"
@@ -957,5 +957,5 @@
957
957
  ]
958
958
  }
959
959
  },
960
- "version": "3.3.2"
960
+ "version": "3.3.4"
961
961
  }
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-apex",
3
3
  "description": "Apex commands",
4
- "version": "3.3.2",
4
+ "version": "3.3.4",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
- "@salesforce/apex-node": "^8.1.0",
9
- "@salesforce/core": "^8.2.1",
10
- "@salesforce/kit": "^3.1.6",
11
- "@salesforce/sf-plugins-core": "^11.1.6",
8
+ "@salesforce/apex-node": "^8.1.1",
9
+ "@salesforce/core": "^8.2.7",
10
+ "@salesforce/kit": "^3.2.0",
11
+ "@salesforce/sf-plugins-core": "^11.2.4",
12
12
  "ansis": "^3.3.1"
13
13
  },
14
14
  "devDependencies": {
15
- "@oclif/core": "^4.0.12",
16
- "@oclif/plugin-command-snapshot": "^5.2.7",
17
- "@salesforce/cli-plugins-testkit": "^5.3.19",
18
- "@salesforce/dev-scripts": "^10.2.2",
15
+ "@oclif/core": "^4.0.16",
16
+ "@oclif/plugin-command-snapshot": "^5.2.10",
17
+ "@salesforce/cli-plugins-testkit": "^5.3.20",
18
+ "@salesforce/dev-scripts": "^10.2.9",
19
19
  "@salesforce/plugin-command-reference": "^3.1.11",
20
- "eslint-plugin-sf-plugin": "^1.18.11",
21
- "oclif": "^4.14.0",
20
+ "eslint-plugin-sf-plugin": "^1.20.2",
21
+ "oclif": "^4.14.12",
22
22
  "ts-node": "^10.9.2",
23
- "typescript": "^5.5.2"
23
+ "typescript": "^5.5.4"
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.3.2.crt",
221
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.3.2.sig"
220
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.3.4.crt",
221
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.3.4.sig"
222
222
  }
223
223
  }