@salesforce/plugin-apex 3.2.3 → 3.2.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 +6 -6
- package/oclif.manifest.json +117 -117
- package/package.json +4 -4
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.
|
|
151
|
+
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.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.2.
|
|
205
|
+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.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.2.
|
|
245
|
+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.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.2.
|
|
292
|
+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.4/src/commands/apex/run.ts)_
|
|
293
293
|
|
|
294
294
|
## `sf apex run test`
|
|
295
295
|
|
|
@@ -430,7 +430,7 @@ FLAG DESCRIPTIONS
|
|
|
430
430
|
--tests Test1 --tests Test2
|
|
431
431
|
```
|
|
432
432
|
|
|
433
|
-
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.
|
|
433
|
+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.4/src/commands/apex/run/test.ts)_
|
|
434
434
|
|
|
435
435
|
## `sf apex tail log`
|
|
436
436
|
|
|
@@ -473,6 +473,6 @@ EXAMPLES
|
|
|
473
473
|
$ sf apex tail log --color --skip-trace-flag
|
|
474
474
|
```
|
|
475
475
|
|
|
476
|
-
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.
|
|
476
|
+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.2.4/src/commands/apex/tail/log.ts)_
|
|
477
477
|
|
|
478
478
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
|
@@ -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"
|
|
@@ -697,122 +813,6 @@
|
|
|
697
813
|
"test:run:apex"
|
|
698
814
|
]
|
|
699
815
|
},
|
|
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.2.
|
|
960
|
+
"version": "3.2.4"
|
|
961
961
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-apex",
|
|
3
3
|
"description": "Apex commands",
|
|
4
|
-
"version": "3.2.
|
|
4
|
+
"version": "3.2.4",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@salesforce/apex-node": "^7.0.
|
|
8
|
+
"@salesforce/apex-node": "^7.0.4",
|
|
9
9
|
"@salesforce/core": "^8.1.0",
|
|
10
10
|
"@salesforce/kit": "^3.1.6",
|
|
11
11
|
"@salesforce/sf-plugins-core": "^11.1.2",
|
|
@@ -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.
|
|
221
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.2.
|
|
220
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.2.4.crt",
|
|
221
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.2.4.sig"
|
|
222
222
|
}
|
|
223
223
|
}
|