@salesforce/plugin-apex 3.4.0 → 3.4.1
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.4.
|
|
151
|
+
_See code: [src/commands/apex/get/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.1/src/commands/apex/get/log.ts)_
|
|
152
152
|
|
|
153
153
|
## `sf apex get test`
|
|
154
154
|
|
|
@@ -203,7 +203,7 @@ EXAMPLES
|
|
|
203
203
|
me@myorg'
|
|
204
204
|
```
|
|
205
205
|
|
|
206
|
-
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.
|
|
206
|
+
_See code: [src/commands/apex/get/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.1/src/commands/apex/get/test.ts)_
|
|
207
207
|
|
|
208
208
|
## `sf apex list log`
|
|
209
209
|
|
|
@@ -243,7 +243,7 @@ EXAMPLES
|
|
|
243
243
|
$ sf apex list log --target-org me@my.org
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
-
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.
|
|
246
|
+
_See code: [src/commands/apex/list/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.1/src/commands/apex/list/log.ts)_
|
|
247
247
|
|
|
248
248
|
## `sf apex run`
|
|
249
249
|
|
|
@@ -290,7 +290,7 @@ EXAMPLES
|
|
|
290
290
|
$ sf apex run
|
|
291
291
|
```
|
|
292
292
|
|
|
293
|
-
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.
|
|
293
|
+
_See code: [src/commands/apex/run.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.1/src/commands/apex/run.ts)_
|
|
294
294
|
|
|
295
295
|
## `sf apex run test`
|
|
296
296
|
|
|
@@ -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.4.
|
|
433
|
+
_See code: [src/commands/apex/run/test.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.1/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.4.
|
|
476
|
+
_See code: [src/commands/apex/tail/log.ts](https://github.com/salesforcecli/plugin-apex/blob/3.4.1/src/commands/apex/tail/log.ts)_
|
|
477
477
|
|
|
478
478
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
|
@@ -438,6 +438,122 @@
|
|
|
438
438
|
"test:get:apex"
|
|
439
439
|
]
|
|
440
440
|
},
|
|
441
|
+
"apex:list:log": {
|
|
442
|
+
"aliases": [
|
|
443
|
+
"force:apex:log:list"
|
|
444
|
+
],
|
|
445
|
+
"args": {},
|
|
446
|
+
"deprecateAliases": true,
|
|
447
|
+
"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.",
|
|
448
|
+
"examples": [
|
|
449
|
+
"List the IDs and information about the debug logs in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
450
|
+
"Similar to previous example, but use the org with the specified username:\n<%= config.bin %> <%= command.id %> --target-org me@my.org"
|
|
451
|
+
],
|
|
452
|
+
"flags": {
|
|
453
|
+
"json": {
|
|
454
|
+
"description": "Format output as json.",
|
|
455
|
+
"helpGroup": "GLOBAL",
|
|
456
|
+
"name": "json",
|
|
457
|
+
"allowNo": false,
|
|
458
|
+
"type": "boolean"
|
|
459
|
+
},
|
|
460
|
+
"flags-dir": {
|
|
461
|
+
"helpGroup": "GLOBAL",
|
|
462
|
+
"name": "flags-dir",
|
|
463
|
+
"summary": "Import flag values from a directory.",
|
|
464
|
+
"hasDynamicHelp": false,
|
|
465
|
+
"multiple": false,
|
|
466
|
+
"type": "option"
|
|
467
|
+
},
|
|
468
|
+
"target-org": {
|
|
469
|
+
"aliases": [
|
|
470
|
+
"targetusername",
|
|
471
|
+
"u"
|
|
472
|
+
],
|
|
473
|
+
"char": "o",
|
|
474
|
+
"deprecateAliases": true,
|
|
475
|
+
"name": "target-org",
|
|
476
|
+
"noCacheDefault": true,
|
|
477
|
+
"required": true,
|
|
478
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
479
|
+
"hasDynamicHelp": true,
|
|
480
|
+
"multiple": false,
|
|
481
|
+
"type": "option"
|
|
482
|
+
},
|
|
483
|
+
"api-version": {
|
|
484
|
+
"aliases": [
|
|
485
|
+
"apiversion"
|
|
486
|
+
],
|
|
487
|
+
"deprecateAliases": true,
|
|
488
|
+
"description": "Override the api version used for api requests made by this command",
|
|
489
|
+
"name": "api-version",
|
|
490
|
+
"hasDynamicHelp": false,
|
|
491
|
+
"multiple": false,
|
|
492
|
+
"type": "option"
|
|
493
|
+
},
|
|
494
|
+
"loglevel": {
|
|
495
|
+
"deprecated": {
|
|
496
|
+
"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."
|
|
497
|
+
},
|
|
498
|
+
"hidden": true,
|
|
499
|
+
"name": "loglevel",
|
|
500
|
+
"hasDynamicHelp": false,
|
|
501
|
+
"multiple": false,
|
|
502
|
+
"type": "option"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"hasDynamicHelp": true,
|
|
506
|
+
"hiddenAliases": [],
|
|
507
|
+
"id": "apex:list:log",
|
|
508
|
+
"pluginAlias": "@salesforce/plugin-apex",
|
|
509
|
+
"pluginName": "@salesforce/plugin-apex",
|
|
510
|
+
"pluginType": "core",
|
|
511
|
+
"strict": true,
|
|
512
|
+
"summary": "Display a list of IDs and general information about debug logs.",
|
|
513
|
+
"enableJsonFlag": true,
|
|
514
|
+
"isESM": true,
|
|
515
|
+
"relativePath": [
|
|
516
|
+
"lib",
|
|
517
|
+
"commands",
|
|
518
|
+
"apex",
|
|
519
|
+
"list",
|
|
520
|
+
"log.js"
|
|
521
|
+
],
|
|
522
|
+
"aliasPermutations": [
|
|
523
|
+
"force:apex:log:list",
|
|
524
|
+
"apex:force:log:list",
|
|
525
|
+
"apex:log:force:list",
|
|
526
|
+
"apex:log:list:force",
|
|
527
|
+
"force:log:apex:list",
|
|
528
|
+
"log:force:apex:list",
|
|
529
|
+
"log:apex:force:list",
|
|
530
|
+
"log:apex:list:force",
|
|
531
|
+
"force:log:list:apex",
|
|
532
|
+
"log:force:list:apex",
|
|
533
|
+
"log:list:force:apex",
|
|
534
|
+
"log:list:apex:force",
|
|
535
|
+
"force:apex:list:log",
|
|
536
|
+
"apex:force:list:log",
|
|
537
|
+
"apex:list:force:log",
|
|
538
|
+
"apex:list:log:force",
|
|
539
|
+
"force:list:apex:log",
|
|
540
|
+
"list:force:apex:log",
|
|
541
|
+
"list:apex:force:log",
|
|
542
|
+
"list:apex:log:force",
|
|
543
|
+
"force:list:log:apex",
|
|
544
|
+
"list:force:log:apex",
|
|
545
|
+
"list:log:force:apex",
|
|
546
|
+
"list:log:apex:force"
|
|
547
|
+
],
|
|
548
|
+
"permutations": [
|
|
549
|
+
"apex:list:log",
|
|
550
|
+
"list:apex:log",
|
|
551
|
+
"list:log:apex",
|
|
552
|
+
"apex:log:list",
|
|
553
|
+
"log:apex:list",
|
|
554
|
+
"log:list:apex"
|
|
555
|
+
]
|
|
556
|
+
},
|
|
441
557
|
"apex:run:test": {
|
|
442
558
|
"aliases": [
|
|
443
559
|
"force:apex:test:run"
|
|
@@ -709,122 +825,6 @@
|
|
|
709
825
|
"test:run:apex"
|
|
710
826
|
]
|
|
711
827
|
},
|
|
712
|
-
"apex:list:log": {
|
|
713
|
-
"aliases": [
|
|
714
|
-
"force:apex:log:list"
|
|
715
|
-
],
|
|
716
|
-
"args": {},
|
|
717
|
-
"deprecateAliases": true,
|
|
718
|
-
"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.",
|
|
719
|
-
"examples": [
|
|
720
|
-
"List the IDs and information about the debug logs in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
721
|
-
"Similar to previous example, but use the org with the specified username:\n<%= config.bin %> <%= command.id %> --target-org me@my.org"
|
|
722
|
-
],
|
|
723
|
-
"flags": {
|
|
724
|
-
"json": {
|
|
725
|
-
"description": "Format output as json.",
|
|
726
|
-
"helpGroup": "GLOBAL",
|
|
727
|
-
"name": "json",
|
|
728
|
-
"allowNo": false,
|
|
729
|
-
"type": "boolean"
|
|
730
|
-
},
|
|
731
|
-
"flags-dir": {
|
|
732
|
-
"helpGroup": "GLOBAL",
|
|
733
|
-
"name": "flags-dir",
|
|
734
|
-
"summary": "Import flag values from a directory.",
|
|
735
|
-
"hasDynamicHelp": false,
|
|
736
|
-
"multiple": false,
|
|
737
|
-
"type": "option"
|
|
738
|
-
},
|
|
739
|
-
"target-org": {
|
|
740
|
-
"aliases": [
|
|
741
|
-
"targetusername",
|
|
742
|
-
"u"
|
|
743
|
-
],
|
|
744
|
-
"char": "o",
|
|
745
|
-
"deprecateAliases": true,
|
|
746
|
-
"name": "target-org",
|
|
747
|
-
"noCacheDefault": true,
|
|
748
|
-
"required": true,
|
|
749
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
750
|
-
"hasDynamicHelp": true,
|
|
751
|
-
"multiple": false,
|
|
752
|
-
"type": "option"
|
|
753
|
-
},
|
|
754
|
-
"api-version": {
|
|
755
|
-
"aliases": [
|
|
756
|
-
"apiversion"
|
|
757
|
-
],
|
|
758
|
-
"deprecateAliases": true,
|
|
759
|
-
"description": "Override the api version used for api requests made by this command",
|
|
760
|
-
"name": "api-version",
|
|
761
|
-
"hasDynamicHelp": false,
|
|
762
|
-
"multiple": false,
|
|
763
|
-
"type": "option"
|
|
764
|
-
},
|
|
765
|
-
"loglevel": {
|
|
766
|
-
"deprecated": {
|
|
767
|
-
"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."
|
|
768
|
-
},
|
|
769
|
-
"hidden": true,
|
|
770
|
-
"name": "loglevel",
|
|
771
|
-
"hasDynamicHelp": false,
|
|
772
|
-
"multiple": false,
|
|
773
|
-
"type": "option"
|
|
774
|
-
}
|
|
775
|
-
},
|
|
776
|
-
"hasDynamicHelp": true,
|
|
777
|
-
"hiddenAliases": [],
|
|
778
|
-
"id": "apex:list:log",
|
|
779
|
-
"pluginAlias": "@salesforce/plugin-apex",
|
|
780
|
-
"pluginName": "@salesforce/plugin-apex",
|
|
781
|
-
"pluginType": "core",
|
|
782
|
-
"strict": true,
|
|
783
|
-
"summary": "Display a list of IDs and general information about debug logs.",
|
|
784
|
-
"enableJsonFlag": true,
|
|
785
|
-
"isESM": true,
|
|
786
|
-
"relativePath": [
|
|
787
|
-
"lib",
|
|
788
|
-
"commands",
|
|
789
|
-
"apex",
|
|
790
|
-
"list",
|
|
791
|
-
"log.js"
|
|
792
|
-
],
|
|
793
|
-
"aliasPermutations": [
|
|
794
|
-
"force:apex:log:list",
|
|
795
|
-
"apex:force:log:list",
|
|
796
|
-
"apex:log:force:list",
|
|
797
|
-
"apex:log:list:force",
|
|
798
|
-
"force:log:apex:list",
|
|
799
|
-
"log:force:apex:list",
|
|
800
|
-
"log:apex:force:list",
|
|
801
|
-
"log:apex:list:force",
|
|
802
|
-
"force:log:list:apex",
|
|
803
|
-
"log:force:list:apex",
|
|
804
|
-
"log:list:force:apex",
|
|
805
|
-
"log:list:apex:force",
|
|
806
|
-
"force:apex:list:log",
|
|
807
|
-
"apex:force:list:log",
|
|
808
|
-
"apex:list:force:log",
|
|
809
|
-
"apex:list:log:force",
|
|
810
|
-
"force:list:apex:log",
|
|
811
|
-
"list:force:apex:log",
|
|
812
|
-
"list:apex:force:log",
|
|
813
|
-
"list:apex:log:force",
|
|
814
|
-
"force:list:log:apex",
|
|
815
|
-
"list:force:log:apex",
|
|
816
|
-
"list:log:force:apex",
|
|
817
|
-
"list:log:apex:force"
|
|
818
|
-
],
|
|
819
|
-
"permutations": [
|
|
820
|
-
"apex:list:log",
|
|
821
|
-
"list:apex:log",
|
|
822
|
-
"list:log:apex",
|
|
823
|
-
"apex:log:list",
|
|
824
|
-
"log:apex:list",
|
|
825
|
-
"log:list:apex"
|
|
826
|
-
]
|
|
827
|
-
},
|
|
828
828
|
"apex:tail:log": {
|
|
829
829
|
"aliases": [
|
|
830
830
|
"force:apex:log:tail"
|
|
@@ -969,5 +969,5 @@
|
|
|
969
969
|
]
|
|
970
970
|
}
|
|
971
971
|
},
|
|
972
|
-
"version": "3.4.
|
|
972
|
+
"version": "3.4.1"
|
|
973
973
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-apex",
|
|
3
3
|
"description": "Apex commands",
|
|
4
|
-
"version": "3.4.
|
|
4
|
+
"version": "3.4.1",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@salesforce/apex-node": "^8.1.
|
|
8
|
+
"@salesforce/apex-node": "^8.1.3",
|
|
9
9
|
"@salesforce/core": "^8.2.7",
|
|
10
10
|
"@salesforce/kit": "^3.2.0",
|
|
11
11
|
"@salesforce/sf-plugins-core": "^11.2.4",
|
|
@@ -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.4.
|
|
221
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.4.
|
|
220
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.4.1.crt",
|
|
221
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-apex/3.4.1.sig"
|
|
222
222
|
}
|
|
223
223
|
}
|