@karmaniverous/jeeves-watcher 0.6.9 → 0.7.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/config.schema.json +243 -78
- package/dist/cli/jeeves-watcher/index.js +370 -96
- package/dist/index.d.ts +30 -0
- package/dist/index.js +371 -100
- package/package.json +1 -1
package/config.schema.json
CHANGED
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"description": "Extractor configurations keyed by name.",
|
|
126
126
|
"allOf": [
|
|
127
127
|
{
|
|
128
|
-
"$ref": "#/definitions/
|
|
128
|
+
"$ref": "#/definitions/__schema48"
|
|
129
129
|
}
|
|
130
130
|
]
|
|
131
131
|
},
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"description": "Directory for persistent state files (issues.json, values.json). Defaults to metadataDir.",
|
|
134
134
|
"allOf": [
|
|
135
135
|
{
|
|
136
|
-
"$ref": "#/definitions/
|
|
136
|
+
"$ref": "#/definitions/__schema49"
|
|
137
137
|
}
|
|
138
138
|
]
|
|
139
139
|
},
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"description": "Rules for inferring metadata from file attributes. Each entry may be an inline rule object or a file path to a JSON rule file (resolved relative to config directory).",
|
|
142
142
|
"allOf": [
|
|
143
143
|
{
|
|
144
|
-
"$ref": "#/definitions/
|
|
144
|
+
"$ref": "#/definitions/__schema50"
|
|
145
145
|
}
|
|
146
146
|
]
|
|
147
147
|
},
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
"description": "Reusable named JsonMap transformations (inline definition or .json file path resolved relative to config directory).",
|
|
150
150
|
"allOf": [
|
|
151
151
|
{
|
|
152
|
-
"$ref": "#/definitions/
|
|
152
|
+
"$ref": "#/definitions/__schema75"
|
|
153
153
|
}
|
|
154
154
|
]
|
|
155
155
|
},
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"description": "Named reusable Handlebars templates (inline strings or .hbs/.handlebars file paths).",
|
|
158
158
|
"allOf": [
|
|
159
159
|
{
|
|
160
|
-
"$ref": "#/definitions/
|
|
160
|
+
"$ref": "#/definitions/__schema76"
|
|
161
161
|
}
|
|
162
162
|
]
|
|
163
163
|
},
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"description": "Custom Handlebars helper registration.",
|
|
166
166
|
"allOf": [
|
|
167
167
|
{
|
|
168
|
-
"$ref": "#/definitions/
|
|
168
|
+
"$ref": "#/definitions/__schema77"
|
|
169
169
|
}
|
|
170
170
|
]
|
|
171
171
|
},
|
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
"description": "Custom JsonMap lib function registration.",
|
|
174
174
|
"allOf": [
|
|
175
175
|
{
|
|
176
|
-
"$ref": "#/definitions/
|
|
176
|
+
"$ref": "#/definitions/__schema78"
|
|
177
177
|
}
|
|
178
178
|
]
|
|
179
179
|
},
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
"description": "Reindex configuration.",
|
|
182
182
|
"allOf": [
|
|
183
183
|
{
|
|
184
|
-
"$ref": "#/definitions/
|
|
184
|
+
"$ref": "#/definitions/__schema79"
|
|
185
185
|
}
|
|
186
186
|
]
|
|
187
187
|
},
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
"description": "Named Qdrant filter patterns for skill-activated behaviors.",
|
|
190
190
|
"allOf": [
|
|
191
191
|
{
|
|
192
|
-
"$ref": "#/definitions/
|
|
192
|
+
"$ref": "#/definitions/__schema80"
|
|
193
193
|
}
|
|
194
194
|
]
|
|
195
195
|
},
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
"description": "Search configuration including score thresholds and hybrid search.",
|
|
198
198
|
"allOf": [
|
|
199
199
|
{
|
|
200
|
-
"$ref": "#/definitions/
|
|
200
|
+
"$ref": "#/definitions/__schema81"
|
|
201
201
|
}
|
|
202
202
|
]
|
|
203
203
|
},
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
"description": "Logging configuration.",
|
|
206
206
|
"allOf": [
|
|
207
207
|
{
|
|
208
|
-
"$ref": "#/definitions/
|
|
208
|
+
"$ref": "#/definitions/__schema82"
|
|
209
209
|
}
|
|
210
210
|
]
|
|
211
211
|
},
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
"description": "Timeout in milliseconds for graceful shutdown.",
|
|
214
214
|
"allOf": [
|
|
215
215
|
{
|
|
216
|
-
"$ref": "#/definitions/
|
|
216
|
+
"$ref": "#/definitions/__schema85"
|
|
217
217
|
}
|
|
218
218
|
]
|
|
219
219
|
},
|
|
@@ -221,7 +221,7 @@
|
|
|
221
221
|
"description": "Maximum consecutive system-level failures before triggering fatal error. Default: Infinity.",
|
|
222
222
|
"allOf": [
|
|
223
223
|
{
|
|
224
|
-
"$ref": "#/definitions/
|
|
224
|
+
"$ref": "#/definitions/__schema86"
|
|
225
225
|
}
|
|
226
226
|
]
|
|
227
227
|
},
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"description": "Maximum backoff delay in milliseconds for system errors. Default: 60000.",
|
|
230
230
|
"allOf": [
|
|
231
231
|
{
|
|
232
|
-
"$ref": "#/definitions/
|
|
232
|
+
"$ref": "#/definitions/__schema87"
|
|
233
233
|
}
|
|
234
234
|
]
|
|
235
235
|
}
|
|
@@ -551,12 +551,20 @@
|
|
|
551
551
|
]
|
|
552
552
|
},
|
|
553
553
|
"port": {
|
|
554
|
-
"description": "Port for API server (e.g.,
|
|
554
|
+
"description": "Port for API server (e.g., 1936).",
|
|
555
555
|
"allOf": [
|
|
556
556
|
{
|
|
557
557
|
"$ref": "#/definitions/__schema46"
|
|
558
558
|
}
|
|
559
559
|
]
|
|
560
|
+
},
|
|
561
|
+
"cacheTtlMs": {
|
|
562
|
+
"description": "TTL in milliseconds for caching read-heavy endpoints (e.g., /status, /config/query). Default: 30000.",
|
|
563
|
+
"allOf": [
|
|
564
|
+
{
|
|
565
|
+
"$ref": "#/definitions/__schema47"
|
|
566
|
+
}
|
|
567
|
+
]
|
|
560
568
|
}
|
|
561
569
|
}
|
|
562
570
|
},
|
|
@@ -567,16 +575,19 @@
|
|
|
567
575
|
"type": "number"
|
|
568
576
|
},
|
|
569
577
|
"__schema47": {
|
|
578
|
+
"type": "number"
|
|
579
|
+
},
|
|
580
|
+
"__schema48": {
|
|
570
581
|
"type": "object",
|
|
571
582
|
"propertyNames": {
|
|
572
583
|
"type": "string"
|
|
573
584
|
},
|
|
574
585
|
"additionalProperties": {}
|
|
575
586
|
},
|
|
576
|
-
"
|
|
587
|
+
"__schema49": {
|
|
577
588
|
"type": "string"
|
|
578
589
|
},
|
|
579
|
-
"
|
|
590
|
+
"__schema50": {
|
|
580
591
|
"type": "array",
|
|
581
592
|
"items": {
|
|
582
593
|
"anyOf": [
|
|
@@ -584,48 +595,25 @@
|
|
|
584
595
|
"type": "object",
|
|
585
596
|
"properties": {
|
|
586
597
|
"name": {
|
|
587
|
-
"
|
|
588
|
-
"minLength": 1,
|
|
589
|
-
"description": "Unique name identifying this inference rule."
|
|
598
|
+
"$ref": "#/definitions/__schema51"
|
|
590
599
|
},
|
|
591
600
|
"description": {
|
|
592
|
-
"
|
|
593
|
-
"minLength": 1,
|
|
594
|
-
"description": "Human-readable description of what this rule does."
|
|
601
|
+
"$ref": "#/definitions/__schema52"
|
|
595
602
|
},
|
|
596
603
|
"match": {
|
|
597
|
-
"
|
|
598
|
-
"propertyNames": {
|
|
599
|
-
"$ref": "#/definitions/__schema50"
|
|
600
|
-
},
|
|
601
|
-
"additionalProperties": {
|
|
602
|
-
"$ref": "#/definitions/__schema51"
|
|
603
|
-
},
|
|
604
|
-
"description": "JSON Schema object to match against file attributes."
|
|
604
|
+
"$ref": "#/definitions/__schema53"
|
|
605
605
|
},
|
|
606
606
|
"schema": {
|
|
607
|
-
"
|
|
608
|
-
"allOf": [
|
|
609
|
-
{
|
|
610
|
-
"$ref": "#/definitions/__schema52"
|
|
611
|
-
}
|
|
612
|
-
]
|
|
607
|
+
"$ref": "#/definitions/__schema56"
|
|
613
608
|
},
|
|
614
609
|
"map": {
|
|
615
|
-
"
|
|
616
|
-
"allOf": [
|
|
617
|
-
{
|
|
618
|
-
"$ref": "#/definitions/__schema53"
|
|
619
|
-
}
|
|
620
|
-
]
|
|
610
|
+
"$ref": "#/definitions/__schema58"
|
|
621
611
|
},
|
|
622
612
|
"template": {
|
|
623
|
-
"
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
}
|
|
628
|
-
]
|
|
613
|
+
"$ref": "#/definitions/__schema62"
|
|
614
|
+
},
|
|
615
|
+
"render": {
|
|
616
|
+
"$ref": "#/definitions/__schema64"
|
|
629
617
|
}
|
|
630
618
|
},
|
|
631
619
|
"required": [
|
|
@@ -640,11 +628,39 @@
|
|
|
640
628
|
]
|
|
641
629
|
}
|
|
642
630
|
},
|
|
643
|
-
"
|
|
644
|
-
"type": "string"
|
|
631
|
+
"__schema51": {
|
|
632
|
+
"type": "string",
|
|
633
|
+
"minLength": 1,
|
|
634
|
+
"description": "Unique name identifying this inference rule."
|
|
645
635
|
},
|
|
646
|
-
"__schema51": {},
|
|
647
636
|
"__schema52": {
|
|
637
|
+
"type": "string",
|
|
638
|
+
"minLength": 1,
|
|
639
|
+
"description": "Human-readable description of what this rule does."
|
|
640
|
+
},
|
|
641
|
+
"__schema53": {
|
|
642
|
+
"type": "object",
|
|
643
|
+
"propertyNames": {
|
|
644
|
+
"$ref": "#/definitions/__schema54"
|
|
645
|
+
},
|
|
646
|
+
"additionalProperties": {
|
|
647
|
+
"$ref": "#/definitions/__schema55"
|
|
648
|
+
},
|
|
649
|
+
"description": "JSON Schema object to match against file attributes."
|
|
650
|
+
},
|
|
651
|
+
"__schema54": {
|
|
652
|
+
"type": "string"
|
|
653
|
+
},
|
|
654
|
+
"__schema55": {},
|
|
655
|
+
"__schema56": {
|
|
656
|
+
"description": "Array of schema references (named schema refs or inline objects) merged left-to-right.",
|
|
657
|
+
"allOf": [
|
|
658
|
+
{
|
|
659
|
+
"$ref": "#/definitions/__schema57"
|
|
660
|
+
}
|
|
661
|
+
]
|
|
662
|
+
},
|
|
663
|
+
"__schema57": {
|
|
648
664
|
"type": "array",
|
|
649
665
|
"items": {
|
|
650
666
|
"anyOf": [
|
|
@@ -658,17 +674,25 @@
|
|
|
658
674
|
]
|
|
659
675
|
}
|
|
660
676
|
},
|
|
661
|
-
"
|
|
677
|
+
"__schema58": {
|
|
678
|
+
"description": "JsonMap transformation (inline definition, named map reference, or .json file path).",
|
|
679
|
+
"allOf": [
|
|
680
|
+
{
|
|
681
|
+
"$ref": "#/definitions/__schema59"
|
|
682
|
+
}
|
|
683
|
+
]
|
|
684
|
+
},
|
|
685
|
+
"__schema59": {
|
|
662
686
|
"anyOf": [
|
|
663
687
|
{
|
|
664
|
-
"$ref": "#/definitions/
|
|
688
|
+
"$ref": "#/definitions/__schema60"
|
|
665
689
|
},
|
|
666
690
|
{
|
|
667
691
|
"type": "string"
|
|
668
692
|
}
|
|
669
693
|
]
|
|
670
694
|
},
|
|
671
|
-
"
|
|
695
|
+
"__schema60": {
|
|
672
696
|
"anyOf": [
|
|
673
697
|
{
|
|
674
698
|
"anyOf": [
|
|
@@ -694,7 +718,7 @@
|
|
|
694
718
|
"additionalProperties": {
|
|
695
719
|
"anyOf": [
|
|
696
720
|
{
|
|
697
|
-
"$ref": "#/definitions/
|
|
721
|
+
"$ref": "#/definitions/__schema60"
|
|
698
722
|
},
|
|
699
723
|
{
|
|
700
724
|
"type": "object",
|
|
@@ -702,12 +726,12 @@
|
|
|
702
726
|
"$": {
|
|
703
727
|
"anyOf": [
|
|
704
728
|
{
|
|
705
|
-
"$ref": "#/definitions/
|
|
729
|
+
"$ref": "#/definitions/__schema61"
|
|
706
730
|
},
|
|
707
731
|
{
|
|
708
732
|
"type": "array",
|
|
709
733
|
"items": {
|
|
710
|
-
"$ref": "#/definitions/
|
|
734
|
+
"$ref": "#/definitions/__schema61"
|
|
711
735
|
}
|
|
712
736
|
}
|
|
713
737
|
]
|
|
@@ -723,12 +747,12 @@
|
|
|
723
747
|
{
|
|
724
748
|
"type": "array",
|
|
725
749
|
"items": {
|
|
726
|
-
"$ref": "#/definitions/
|
|
750
|
+
"$ref": "#/definitions/__schema60"
|
|
727
751
|
}
|
|
728
752
|
}
|
|
729
753
|
]
|
|
730
754
|
},
|
|
731
|
-
"
|
|
755
|
+
"__schema61": {
|
|
732
756
|
"type": "object",
|
|
733
757
|
"properties": {
|
|
734
758
|
"method": {
|
|
@@ -753,10 +777,151 @@
|
|
|
753
777
|
"params"
|
|
754
778
|
]
|
|
755
779
|
},
|
|
756
|
-
"
|
|
780
|
+
"__schema62": {
|
|
781
|
+
"description": "Handlebars content template (inline string, named ref, or .hbs/.handlebars file path).",
|
|
782
|
+
"allOf": [
|
|
783
|
+
{
|
|
784
|
+
"$ref": "#/definitions/__schema63"
|
|
785
|
+
}
|
|
786
|
+
]
|
|
787
|
+
},
|
|
788
|
+
"__schema63": {
|
|
757
789
|
"type": "string"
|
|
758
790
|
},
|
|
759
|
-
"
|
|
791
|
+
"__schema64": {
|
|
792
|
+
"description": "Declarative render configuration for frontmatter + structured Markdown output (mutually exclusive with template).",
|
|
793
|
+
"allOf": [
|
|
794
|
+
{
|
|
795
|
+
"$ref": "#/definitions/__schema65"
|
|
796
|
+
}
|
|
797
|
+
]
|
|
798
|
+
},
|
|
799
|
+
"__schema65": {
|
|
800
|
+
"type": "object",
|
|
801
|
+
"properties": {
|
|
802
|
+
"frontmatter": {
|
|
803
|
+
"type": "array",
|
|
804
|
+
"items": {
|
|
805
|
+
"$ref": "#/definitions/__schema66"
|
|
806
|
+
},
|
|
807
|
+
"description": "Keys to extract from context and include as YAML frontmatter."
|
|
808
|
+
},
|
|
809
|
+
"body": {
|
|
810
|
+
"type": "array",
|
|
811
|
+
"items": {
|
|
812
|
+
"$ref": "#/definitions/__schema67"
|
|
813
|
+
},
|
|
814
|
+
"description": "Ordered markdown body sections."
|
|
815
|
+
}
|
|
816
|
+
},
|
|
817
|
+
"required": [
|
|
818
|
+
"frontmatter",
|
|
819
|
+
"body"
|
|
820
|
+
]
|
|
821
|
+
},
|
|
822
|
+
"__schema66": {
|
|
823
|
+
"type": "string",
|
|
824
|
+
"minLength": 1
|
|
825
|
+
},
|
|
826
|
+
"__schema67": {
|
|
827
|
+
"type": "object",
|
|
828
|
+
"properties": {
|
|
829
|
+
"path": {
|
|
830
|
+
"type": "string",
|
|
831
|
+
"minLength": 1,
|
|
832
|
+
"description": "Key path in template context to render."
|
|
833
|
+
},
|
|
834
|
+
"heading": {
|
|
835
|
+
"type": "number",
|
|
836
|
+
"minimum": 1,
|
|
837
|
+
"maximum": 6,
|
|
838
|
+
"description": "Markdown heading level (1-6)."
|
|
839
|
+
},
|
|
840
|
+
"label": {
|
|
841
|
+
"description": "Override heading text.",
|
|
842
|
+
"allOf": [
|
|
843
|
+
{
|
|
844
|
+
"$ref": "#/definitions/__schema68"
|
|
845
|
+
}
|
|
846
|
+
]
|
|
847
|
+
},
|
|
848
|
+
"format": {
|
|
849
|
+
"description": "Name of a registered Handlebars helper used as a format handler.",
|
|
850
|
+
"allOf": [
|
|
851
|
+
{
|
|
852
|
+
"$ref": "#/definitions/__schema69"
|
|
853
|
+
}
|
|
854
|
+
]
|
|
855
|
+
},
|
|
856
|
+
"formatArgs": {
|
|
857
|
+
"description": "Additional args passed to the format helper.",
|
|
858
|
+
"allOf": [
|
|
859
|
+
{
|
|
860
|
+
"$ref": "#/definitions/__schema70"
|
|
861
|
+
}
|
|
862
|
+
]
|
|
863
|
+
},
|
|
864
|
+
"each": {
|
|
865
|
+
"description": "If true, the value at path is treated as an array and iterated.",
|
|
866
|
+
"allOf": [
|
|
867
|
+
{
|
|
868
|
+
"$ref": "#/definitions/__schema71"
|
|
869
|
+
}
|
|
870
|
+
]
|
|
871
|
+
},
|
|
872
|
+
"headingTemplate": {
|
|
873
|
+
"description": "Handlebars template string for per-item heading text (used when each=true).",
|
|
874
|
+
"allOf": [
|
|
875
|
+
{
|
|
876
|
+
"$ref": "#/definitions/__schema72"
|
|
877
|
+
}
|
|
878
|
+
]
|
|
879
|
+
},
|
|
880
|
+
"contentPath": {
|
|
881
|
+
"description": "Key path within each item to use as renderable content (used when each=true).",
|
|
882
|
+
"allOf": [
|
|
883
|
+
{
|
|
884
|
+
"$ref": "#/definitions/__schema73"
|
|
885
|
+
}
|
|
886
|
+
]
|
|
887
|
+
},
|
|
888
|
+
"sort": {
|
|
889
|
+
"description": "Key path within each item to sort by (used when each=true).",
|
|
890
|
+
"allOf": [
|
|
891
|
+
{
|
|
892
|
+
"$ref": "#/definitions/__schema74"
|
|
893
|
+
}
|
|
894
|
+
]
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
"required": [
|
|
898
|
+
"path",
|
|
899
|
+
"heading"
|
|
900
|
+
]
|
|
901
|
+
},
|
|
902
|
+
"__schema68": {
|
|
903
|
+
"type": "string"
|
|
904
|
+
},
|
|
905
|
+
"__schema69": {
|
|
906
|
+
"type": "string"
|
|
907
|
+
},
|
|
908
|
+
"__schema70": {
|
|
909
|
+
"type": "array",
|
|
910
|
+
"items": {}
|
|
911
|
+
},
|
|
912
|
+
"__schema71": {
|
|
913
|
+
"type": "boolean"
|
|
914
|
+
},
|
|
915
|
+
"__schema72": {
|
|
916
|
+
"type": "string"
|
|
917
|
+
},
|
|
918
|
+
"__schema73": {
|
|
919
|
+
"type": "string"
|
|
920
|
+
},
|
|
921
|
+
"__schema74": {
|
|
922
|
+
"type": "string"
|
|
923
|
+
},
|
|
924
|
+
"__schema75": {
|
|
760
925
|
"type": "object",
|
|
761
926
|
"propertyNames": {
|
|
762
927
|
"type": "string"
|
|
@@ -764,7 +929,7 @@
|
|
|
764
929
|
"additionalProperties": {
|
|
765
930
|
"anyOf": [
|
|
766
931
|
{
|
|
767
|
-
"$ref": "#/definitions/
|
|
932
|
+
"$ref": "#/definitions/__schema60"
|
|
768
933
|
},
|
|
769
934
|
{
|
|
770
935
|
"type": "string"
|
|
@@ -775,7 +940,7 @@
|
|
|
775
940
|
"map": {
|
|
776
941
|
"anyOf": [
|
|
777
942
|
{
|
|
778
|
-
"$ref": "#/definitions/
|
|
943
|
+
"$ref": "#/definitions/__schema60"
|
|
779
944
|
},
|
|
780
945
|
{
|
|
781
946
|
"type": "string"
|
|
@@ -793,7 +958,7 @@
|
|
|
793
958
|
]
|
|
794
959
|
}
|
|
795
960
|
},
|
|
796
|
-
"
|
|
961
|
+
"__schema76": {
|
|
797
962
|
"type": "object",
|
|
798
963
|
"propertyNames": {
|
|
799
964
|
"type": "string"
|
|
@@ -820,7 +985,7 @@
|
|
|
820
985
|
]
|
|
821
986
|
}
|
|
822
987
|
},
|
|
823
|
-
"
|
|
988
|
+
"__schema77": {
|
|
824
989
|
"type": "object",
|
|
825
990
|
"propertyNames": {
|
|
826
991
|
"type": "string"
|
|
@@ -840,7 +1005,7 @@
|
|
|
840
1005
|
]
|
|
841
1006
|
}
|
|
842
1007
|
},
|
|
843
|
-
"
|
|
1008
|
+
"__schema78": {
|
|
844
1009
|
"type": "object",
|
|
845
1010
|
"propertyNames": {
|
|
846
1011
|
"type": "string"
|
|
@@ -860,7 +1025,7 @@
|
|
|
860
1025
|
]
|
|
861
1026
|
}
|
|
862
1027
|
},
|
|
863
|
-
"
|
|
1028
|
+
"__schema79": {
|
|
864
1029
|
"type": "object",
|
|
865
1030
|
"properties": {
|
|
866
1031
|
"callbackUrl": {
|
|
@@ -869,14 +1034,14 @@
|
|
|
869
1034
|
}
|
|
870
1035
|
}
|
|
871
1036
|
},
|
|
872
|
-
"
|
|
1037
|
+
"__schema80": {
|
|
873
1038
|
"type": "object",
|
|
874
1039
|
"propertyNames": {
|
|
875
1040
|
"type": "string"
|
|
876
1041
|
},
|
|
877
1042
|
"additionalProperties": {}
|
|
878
1043
|
},
|
|
879
|
-
"
|
|
1044
|
+
"__schema81": {
|
|
880
1045
|
"type": "object",
|
|
881
1046
|
"properties": {
|
|
882
1047
|
"scoreThresholds": {
|
|
@@ -921,14 +1086,14 @@
|
|
|
921
1086
|
}
|
|
922
1087
|
}
|
|
923
1088
|
},
|
|
924
|
-
"
|
|
1089
|
+
"__schema82": {
|
|
925
1090
|
"type": "object",
|
|
926
1091
|
"properties": {
|
|
927
1092
|
"level": {
|
|
928
1093
|
"description": "Logging level (trace, debug, info, warn, error, fatal).",
|
|
929
1094
|
"allOf": [
|
|
930
1095
|
{
|
|
931
|
-
"$ref": "#/definitions/
|
|
1096
|
+
"$ref": "#/definitions/__schema83"
|
|
932
1097
|
}
|
|
933
1098
|
]
|
|
934
1099
|
},
|
|
@@ -936,25 +1101,25 @@
|
|
|
936
1101
|
"description": "Path to log file (logs to stdout if omitted).",
|
|
937
1102
|
"allOf": [
|
|
938
1103
|
{
|
|
939
|
-
"$ref": "#/definitions/
|
|
1104
|
+
"$ref": "#/definitions/__schema84"
|
|
940
1105
|
}
|
|
941
1106
|
]
|
|
942
1107
|
}
|
|
943
1108
|
}
|
|
944
1109
|
},
|
|
945
|
-
"
|
|
1110
|
+
"__schema83": {
|
|
946
1111
|
"type": "string"
|
|
947
1112
|
},
|
|
948
|
-
"
|
|
1113
|
+
"__schema84": {
|
|
949
1114
|
"type": "string"
|
|
950
1115
|
},
|
|
951
|
-
"
|
|
1116
|
+
"__schema85": {
|
|
952
1117
|
"type": "number"
|
|
953
1118
|
},
|
|
954
|
-
"
|
|
1119
|
+
"__schema86": {
|
|
955
1120
|
"type": "number"
|
|
956
1121
|
},
|
|
957
|
-
"
|
|
1122
|
+
"__schema87": {
|
|
958
1123
|
"type": "number"
|
|
959
1124
|
}
|
|
960
1125
|
}
|