@karmaniverous/jeeves-watcher 0.9.9 → 0.10.0
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 +91 -116
- package/dist/cli/jeeves-watcher/index.js +3666 -3005
- package/dist/index.d.ts +135 -85
- package/dist/index.js +3738 -3060
- package/package.json +2 -4
package/config.schema.json
CHANGED
|
@@ -121,19 +121,11 @@
|
|
|
121
121
|
}
|
|
122
122
|
]
|
|
123
123
|
},
|
|
124
|
-
"extractors": {
|
|
125
|
-
"description": "Extractor configurations keyed by name.",
|
|
126
|
-
"allOf": [
|
|
127
|
-
{
|
|
128
|
-
"$ref": "#/definitions/__schema48"
|
|
129
|
-
}
|
|
130
|
-
]
|
|
131
|
-
},
|
|
132
124
|
"stateDir": {
|
|
133
125
|
"description": "Directory for persistent state files (issues.json, values.json). Defaults to metadataDir.",
|
|
134
126
|
"allOf": [
|
|
135
127
|
{
|
|
136
|
-
"$ref": "#/definitions/
|
|
128
|
+
"$ref": "#/definitions/__schema48"
|
|
137
129
|
}
|
|
138
130
|
]
|
|
139
131
|
},
|
|
@@ -141,7 +133,7 @@
|
|
|
141
133
|
"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
134
|
"allOf": [
|
|
143
135
|
{
|
|
144
|
-
"$ref": "#/definitions/
|
|
136
|
+
"$ref": "#/definitions/__schema49"
|
|
145
137
|
}
|
|
146
138
|
]
|
|
147
139
|
},
|
|
@@ -149,7 +141,7 @@
|
|
|
149
141
|
"description": "Reusable named JsonMap transformations (inline definition or .json file path resolved relative to config directory).",
|
|
150
142
|
"allOf": [
|
|
151
143
|
{
|
|
152
|
-
"$ref": "#/definitions/
|
|
144
|
+
"$ref": "#/definitions/__schema76"
|
|
153
145
|
}
|
|
154
146
|
]
|
|
155
147
|
},
|
|
@@ -157,7 +149,7 @@
|
|
|
157
149
|
"description": "Named reusable Handlebars templates (inline strings or .hbs/.handlebars file paths).",
|
|
158
150
|
"allOf": [
|
|
159
151
|
{
|
|
160
|
-
"$ref": "#/definitions/
|
|
152
|
+
"$ref": "#/definitions/__schema77"
|
|
161
153
|
}
|
|
162
154
|
]
|
|
163
155
|
},
|
|
@@ -165,7 +157,7 @@
|
|
|
165
157
|
"description": "Custom Handlebars helper registration.",
|
|
166
158
|
"allOf": [
|
|
167
159
|
{
|
|
168
|
-
"$ref": "#/definitions/
|
|
160
|
+
"$ref": "#/definitions/__schema78"
|
|
169
161
|
}
|
|
170
162
|
]
|
|
171
163
|
},
|
|
@@ -173,7 +165,7 @@
|
|
|
173
165
|
"description": "Custom JsonMap lib function registration.",
|
|
174
166
|
"allOf": [
|
|
175
167
|
{
|
|
176
|
-
"$ref": "#/definitions/
|
|
168
|
+
"$ref": "#/definitions/__schema79"
|
|
177
169
|
}
|
|
178
170
|
]
|
|
179
171
|
},
|
|
@@ -181,15 +173,7 @@
|
|
|
181
173
|
"description": "Reindex configuration.",
|
|
182
174
|
"allOf": [
|
|
183
175
|
{
|
|
184
|
-
"$ref": "#/definitions/
|
|
185
|
-
}
|
|
186
|
-
]
|
|
187
|
-
},
|
|
188
|
-
"slots": {
|
|
189
|
-
"description": "Named Qdrant filter patterns for skill-activated behaviors.",
|
|
190
|
-
"allOf": [
|
|
191
|
-
{
|
|
192
|
-
"$ref": "#/definitions/__schema83"
|
|
176
|
+
"$ref": "#/definitions/__schema80"
|
|
193
177
|
}
|
|
194
178
|
]
|
|
195
179
|
},
|
|
@@ -197,7 +181,7 @@
|
|
|
197
181
|
"description": "Search configuration including score thresholds and hybrid search.",
|
|
198
182
|
"allOf": [
|
|
199
183
|
{
|
|
200
|
-
"$ref": "#/definitions/
|
|
184
|
+
"$ref": "#/definitions/__schema82"
|
|
201
185
|
}
|
|
202
186
|
]
|
|
203
187
|
},
|
|
@@ -205,7 +189,7 @@
|
|
|
205
189
|
"description": "Logging configuration.",
|
|
206
190
|
"allOf": [
|
|
207
191
|
{
|
|
208
|
-
"$ref": "#/definitions/
|
|
192
|
+
"$ref": "#/definitions/__schema83"
|
|
209
193
|
}
|
|
210
194
|
]
|
|
211
195
|
},
|
|
@@ -213,7 +197,7 @@
|
|
|
213
197
|
"description": "Timeout in milliseconds for graceful shutdown.",
|
|
214
198
|
"allOf": [
|
|
215
199
|
{
|
|
216
|
-
"$ref": "#/definitions/
|
|
200
|
+
"$ref": "#/definitions/__schema86"
|
|
217
201
|
}
|
|
218
202
|
]
|
|
219
203
|
},
|
|
@@ -221,7 +205,7 @@
|
|
|
221
205
|
"description": "Maximum consecutive system-level failures before triggering fatal error. Default: Infinity.",
|
|
222
206
|
"allOf": [
|
|
223
207
|
{
|
|
224
|
-
"$ref": "#/definitions/
|
|
208
|
+
"$ref": "#/definitions/__schema87"
|
|
225
209
|
}
|
|
226
210
|
]
|
|
227
211
|
},
|
|
@@ -229,7 +213,7 @@
|
|
|
229
213
|
"description": "Maximum backoff delay in milliseconds for system errors. Default: 60000.",
|
|
230
214
|
"allOf": [
|
|
231
215
|
{
|
|
232
|
-
"$ref": "#/definitions/
|
|
216
|
+
"$ref": "#/definitions/__schema88"
|
|
233
217
|
}
|
|
234
218
|
]
|
|
235
219
|
}
|
|
@@ -424,6 +408,11 @@
|
|
|
424
408
|
"type": "string",
|
|
425
409
|
"const": "full",
|
|
426
410
|
"description": "Full reindex of all watched files."
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"type": "string",
|
|
414
|
+
"const": "rules",
|
|
415
|
+
"description": "Re-apply inference rules to existing points without re-embedding."
|
|
427
416
|
}
|
|
428
417
|
]
|
|
429
418
|
},
|
|
@@ -559,7 +548,7 @@
|
|
|
559
548
|
]
|
|
560
549
|
},
|
|
561
550
|
"cacheTtlMs": {
|
|
562
|
-
"description": "TTL in milliseconds for caching read-heavy endpoints (e.g., /status, /config
|
|
551
|
+
"description": "TTL in milliseconds for caching read-heavy endpoints (e.g., /status, /config). Default: 30000.",
|
|
563
552
|
"allOf": [
|
|
564
553
|
{
|
|
565
554
|
"$ref": "#/definitions/__schema47"
|
|
@@ -578,16 +567,9 @@
|
|
|
578
567
|
"type": "number"
|
|
579
568
|
},
|
|
580
569
|
"__schema48": {
|
|
581
|
-
"type": "object",
|
|
582
|
-
"propertyNames": {
|
|
583
|
-
"type": "string"
|
|
584
|
-
},
|
|
585
|
-
"additionalProperties": {}
|
|
586
|
-
},
|
|
587
|
-
"__schema49": {
|
|
588
570
|
"type": "string"
|
|
589
571
|
},
|
|
590
|
-
"
|
|
572
|
+
"__schema49": {
|
|
591
573
|
"type": "array",
|
|
592
574
|
"items": {
|
|
593
575
|
"anyOf": [
|
|
@@ -595,28 +577,28 @@
|
|
|
595
577
|
"type": "object",
|
|
596
578
|
"properties": {
|
|
597
579
|
"name": {
|
|
598
|
-
"$ref": "#/definitions/
|
|
580
|
+
"$ref": "#/definitions/__schema50"
|
|
599
581
|
},
|
|
600
582
|
"description": {
|
|
601
|
-
"$ref": "#/definitions/
|
|
583
|
+
"$ref": "#/definitions/__schema51"
|
|
602
584
|
},
|
|
603
585
|
"match": {
|
|
604
|
-
"$ref": "#/definitions/
|
|
586
|
+
"$ref": "#/definitions/__schema52"
|
|
605
587
|
},
|
|
606
588
|
"schema": {
|
|
607
|
-
"$ref": "#/definitions/
|
|
589
|
+
"$ref": "#/definitions/__schema55"
|
|
608
590
|
},
|
|
609
591
|
"map": {
|
|
610
|
-
"$ref": "#/definitions/
|
|
592
|
+
"$ref": "#/definitions/__schema57"
|
|
611
593
|
},
|
|
612
594
|
"template": {
|
|
613
|
-
"$ref": "#/definitions/
|
|
595
|
+
"$ref": "#/definitions/__schema61"
|
|
614
596
|
},
|
|
615
597
|
"render": {
|
|
616
|
-
"$ref": "#/definitions/
|
|
598
|
+
"$ref": "#/definitions/__schema63"
|
|
617
599
|
},
|
|
618
600
|
"renderAs": {
|
|
619
|
-
"$ref": "#/definitions/
|
|
601
|
+
"$ref": "#/definitions/__schema74"
|
|
620
602
|
}
|
|
621
603
|
},
|
|
622
604
|
"required": [
|
|
@@ -631,39 +613,39 @@
|
|
|
631
613
|
]
|
|
632
614
|
}
|
|
633
615
|
},
|
|
634
|
-
"
|
|
616
|
+
"__schema50": {
|
|
635
617
|
"type": "string",
|
|
636
618
|
"minLength": 1,
|
|
637
619
|
"description": "Unique name identifying this inference rule."
|
|
638
620
|
},
|
|
639
|
-
"
|
|
621
|
+
"__schema51": {
|
|
640
622
|
"type": "string",
|
|
641
623
|
"minLength": 1,
|
|
642
624
|
"description": "Human-readable description of what this rule does."
|
|
643
625
|
},
|
|
644
|
-
"
|
|
626
|
+
"__schema52": {
|
|
645
627
|
"type": "object",
|
|
646
628
|
"propertyNames": {
|
|
647
|
-
"$ref": "#/definitions/
|
|
629
|
+
"$ref": "#/definitions/__schema53"
|
|
648
630
|
},
|
|
649
631
|
"additionalProperties": {
|
|
650
|
-
"$ref": "#/definitions/
|
|
632
|
+
"$ref": "#/definitions/__schema54"
|
|
651
633
|
},
|
|
652
634
|
"description": "JSON Schema object to match against file attributes."
|
|
653
635
|
},
|
|
654
|
-
"
|
|
636
|
+
"__schema53": {
|
|
655
637
|
"type": "string"
|
|
656
638
|
},
|
|
657
|
-
"
|
|
658
|
-
"
|
|
639
|
+
"__schema54": {},
|
|
640
|
+
"__schema55": {
|
|
659
641
|
"description": "Array of schema references (named schema refs or inline objects) merged left-to-right.",
|
|
660
642
|
"allOf": [
|
|
661
643
|
{
|
|
662
|
-
"$ref": "#/definitions/
|
|
644
|
+
"$ref": "#/definitions/__schema56"
|
|
663
645
|
}
|
|
664
646
|
]
|
|
665
647
|
},
|
|
666
|
-
"
|
|
648
|
+
"__schema56": {
|
|
667
649
|
"type": "array",
|
|
668
650
|
"items": {
|
|
669
651
|
"anyOf": [
|
|
@@ -677,25 +659,25 @@
|
|
|
677
659
|
]
|
|
678
660
|
}
|
|
679
661
|
},
|
|
680
|
-
"
|
|
662
|
+
"__schema57": {
|
|
681
663
|
"description": "JsonMap transformation (inline definition, named map reference, or .json file path).",
|
|
682
664
|
"allOf": [
|
|
683
665
|
{
|
|
684
|
-
"$ref": "#/definitions/
|
|
666
|
+
"$ref": "#/definitions/__schema58"
|
|
685
667
|
}
|
|
686
668
|
]
|
|
687
669
|
},
|
|
688
|
-
"
|
|
670
|
+
"__schema58": {
|
|
689
671
|
"anyOf": [
|
|
690
672
|
{
|
|
691
|
-
"$ref": "#/definitions/
|
|
673
|
+
"$ref": "#/definitions/__schema59"
|
|
692
674
|
},
|
|
693
675
|
{
|
|
694
676
|
"type": "string"
|
|
695
677
|
}
|
|
696
678
|
]
|
|
697
679
|
},
|
|
698
|
-
"
|
|
680
|
+
"__schema59": {
|
|
699
681
|
"anyOf": [
|
|
700
682
|
{
|
|
701
683
|
"anyOf": [
|
|
@@ -721,7 +703,7 @@
|
|
|
721
703
|
"additionalProperties": {
|
|
722
704
|
"anyOf": [
|
|
723
705
|
{
|
|
724
|
-
"$ref": "#/definitions/
|
|
706
|
+
"$ref": "#/definitions/__schema59"
|
|
725
707
|
},
|
|
726
708
|
{
|
|
727
709
|
"type": "object",
|
|
@@ -729,12 +711,12 @@
|
|
|
729
711
|
"$": {
|
|
730
712
|
"anyOf": [
|
|
731
713
|
{
|
|
732
|
-
"$ref": "#/definitions/
|
|
714
|
+
"$ref": "#/definitions/__schema60"
|
|
733
715
|
},
|
|
734
716
|
{
|
|
735
717
|
"type": "array",
|
|
736
718
|
"items": {
|
|
737
|
-
"$ref": "#/definitions/
|
|
719
|
+
"$ref": "#/definitions/__schema60"
|
|
738
720
|
}
|
|
739
721
|
}
|
|
740
722
|
]
|
|
@@ -750,12 +732,12 @@
|
|
|
750
732
|
{
|
|
751
733
|
"type": "array",
|
|
752
734
|
"items": {
|
|
753
|
-
"$ref": "#/definitions/
|
|
735
|
+
"$ref": "#/definitions/__schema59"
|
|
754
736
|
}
|
|
755
737
|
}
|
|
756
738
|
]
|
|
757
739
|
},
|
|
758
|
-
"
|
|
740
|
+
"__schema60": {
|
|
759
741
|
"type": "object",
|
|
760
742
|
"properties": {
|
|
761
743
|
"method": {
|
|
@@ -780,39 +762,39 @@
|
|
|
780
762
|
"params"
|
|
781
763
|
]
|
|
782
764
|
},
|
|
783
|
-
"
|
|
765
|
+
"__schema61": {
|
|
784
766
|
"description": "Handlebars content template (inline string, named ref, or .hbs/.handlebars file path).",
|
|
785
767
|
"allOf": [
|
|
786
768
|
{
|
|
787
|
-
"$ref": "#/definitions/
|
|
769
|
+
"$ref": "#/definitions/__schema62"
|
|
788
770
|
}
|
|
789
771
|
]
|
|
790
772
|
},
|
|
791
|
-
"
|
|
773
|
+
"__schema62": {
|
|
792
774
|
"type": "string"
|
|
793
775
|
},
|
|
794
|
-
"
|
|
776
|
+
"__schema63": {
|
|
795
777
|
"description": "Declarative render configuration for frontmatter + structured Markdown output (mutually exclusive with template).",
|
|
796
778
|
"allOf": [
|
|
797
779
|
{
|
|
798
|
-
"$ref": "#/definitions/
|
|
780
|
+
"$ref": "#/definitions/__schema64"
|
|
799
781
|
}
|
|
800
782
|
]
|
|
801
783
|
},
|
|
802
|
-
"
|
|
784
|
+
"__schema64": {
|
|
803
785
|
"type": "object",
|
|
804
786
|
"properties": {
|
|
805
787
|
"frontmatter": {
|
|
806
788
|
"type": "array",
|
|
807
789
|
"items": {
|
|
808
|
-
"$ref": "#/definitions/
|
|
790
|
+
"$ref": "#/definitions/__schema65"
|
|
809
791
|
},
|
|
810
792
|
"description": "Keys or glob patterns to include as YAML frontmatter. Supports picomatch globs (e.g. \"*\") and \"!\"-prefixed exclusion patterns (e.g. \"!_*\"). Explicit names preserve declaration order; glob-matched keys are sorted alphabetically."
|
|
811
793
|
},
|
|
812
794
|
"body": {
|
|
813
795
|
"type": "array",
|
|
814
796
|
"items": {
|
|
815
|
-
"$ref": "#/definitions/
|
|
797
|
+
"$ref": "#/definitions/__schema66"
|
|
816
798
|
},
|
|
817
799
|
"description": "Ordered markdown body sections."
|
|
818
800
|
}
|
|
@@ -822,11 +804,11 @@
|
|
|
822
804
|
"body"
|
|
823
805
|
]
|
|
824
806
|
},
|
|
825
|
-
"
|
|
807
|
+
"__schema65": {
|
|
826
808
|
"type": "string",
|
|
827
809
|
"minLength": 1
|
|
828
810
|
},
|
|
829
|
-
"
|
|
811
|
+
"__schema66": {
|
|
830
812
|
"type": "object",
|
|
831
813
|
"properties": {
|
|
832
814
|
"path": {
|
|
@@ -844,7 +826,7 @@
|
|
|
844
826
|
"description": "Override heading text.",
|
|
845
827
|
"allOf": [
|
|
846
828
|
{
|
|
847
|
-
"$ref": "#/definitions/
|
|
829
|
+
"$ref": "#/definitions/__schema67"
|
|
848
830
|
}
|
|
849
831
|
]
|
|
850
832
|
},
|
|
@@ -852,7 +834,7 @@
|
|
|
852
834
|
"description": "Name of a registered Handlebars helper used as a format handler.",
|
|
853
835
|
"allOf": [
|
|
854
836
|
{
|
|
855
|
-
"$ref": "#/definitions/
|
|
837
|
+
"$ref": "#/definitions/__schema68"
|
|
856
838
|
}
|
|
857
839
|
]
|
|
858
840
|
},
|
|
@@ -860,7 +842,7 @@
|
|
|
860
842
|
"description": "Additional args passed to the format helper.",
|
|
861
843
|
"allOf": [
|
|
862
844
|
{
|
|
863
|
-
"$ref": "#/definitions/
|
|
845
|
+
"$ref": "#/definitions/__schema69"
|
|
864
846
|
}
|
|
865
847
|
]
|
|
866
848
|
},
|
|
@@ -868,7 +850,7 @@
|
|
|
868
850
|
"description": "If true, the value at path is treated as an array and iterated.",
|
|
869
851
|
"allOf": [
|
|
870
852
|
{
|
|
871
|
-
"$ref": "#/definitions/
|
|
853
|
+
"$ref": "#/definitions/__schema70"
|
|
872
854
|
}
|
|
873
855
|
]
|
|
874
856
|
},
|
|
@@ -876,7 +858,7 @@
|
|
|
876
858
|
"description": "Handlebars template string for per-item heading text (used when each=true).",
|
|
877
859
|
"allOf": [
|
|
878
860
|
{
|
|
879
|
-
"$ref": "#/definitions/
|
|
861
|
+
"$ref": "#/definitions/__schema71"
|
|
880
862
|
}
|
|
881
863
|
]
|
|
882
864
|
},
|
|
@@ -884,7 +866,7 @@
|
|
|
884
866
|
"description": "Key path within each item to use as renderable content (used when each=true).",
|
|
885
867
|
"allOf": [
|
|
886
868
|
{
|
|
887
|
-
"$ref": "#/definitions/
|
|
869
|
+
"$ref": "#/definitions/__schema72"
|
|
888
870
|
}
|
|
889
871
|
]
|
|
890
872
|
},
|
|
@@ -892,7 +874,7 @@
|
|
|
892
874
|
"description": "Key path within each item to sort by (used when each=true).",
|
|
893
875
|
"allOf": [
|
|
894
876
|
{
|
|
895
|
-
"$ref": "#/definitions/
|
|
877
|
+
"$ref": "#/definitions/__schema73"
|
|
896
878
|
}
|
|
897
879
|
]
|
|
898
880
|
}
|
|
@@ -902,19 +884,22 @@
|
|
|
902
884
|
"heading"
|
|
903
885
|
]
|
|
904
886
|
},
|
|
905
|
-
"
|
|
887
|
+
"__schema67": {
|
|
906
888
|
"type": "string"
|
|
907
889
|
},
|
|
908
|
-
"
|
|
890
|
+
"__schema68": {
|
|
909
891
|
"type": "string"
|
|
910
892
|
},
|
|
911
|
-
"
|
|
893
|
+
"__schema69": {
|
|
912
894
|
"type": "array",
|
|
913
895
|
"items": {}
|
|
914
896
|
},
|
|
915
|
-
"
|
|
897
|
+
"__schema70": {
|
|
916
898
|
"type": "boolean"
|
|
917
899
|
},
|
|
900
|
+
"__schema71": {
|
|
901
|
+
"type": "string"
|
|
902
|
+
},
|
|
918
903
|
"__schema72": {
|
|
919
904
|
"type": "string"
|
|
920
905
|
},
|
|
@@ -922,21 +907,18 @@
|
|
|
922
907
|
"type": "string"
|
|
923
908
|
},
|
|
924
909
|
"__schema74": {
|
|
925
|
-
"type": "string"
|
|
926
|
-
},
|
|
927
|
-
"__schema75": {
|
|
928
910
|
"description": "Output file extension override (without dot). Requires template or render.",
|
|
929
911
|
"allOf": [
|
|
930
912
|
{
|
|
931
|
-
"$ref": "#/definitions/
|
|
913
|
+
"$ref": "#/definitions/__schema75"
|
|
932
914
|
}
|
|
933
915
|
]
|
|
934
916
|
},
|
|
935
|
-
"
|
|
917
|
+
"__schema75": {
|
|
936
918
|
"type": "string",
|
|
937
919
|
"pattern": "^[a-z0-9]{1,10}$"
|
|
938
920
|
},
|
|
939
|
-
"
|
|
921
|
+
"__schema76": {
|
|
940
922
|
"type": "object",
|
|
941
923
|
"propertyNames": {
|
|
942
924
|
"type": "string"
|
|
@@ -944,7 +926,7 @@
|
|
|
944
926
|
"additionalProperties": {
|
|
945
927
|
"anyOf": [
|
|
946
928
|
{
|
|
947
|
-
"$ref": "#/definitions/
|
|
929
|
+
"$ref": "#/definitions/__schema59"
|
|
948
930
|
},
|
|
949
931
|
{
|
|
950
932
|
"type": "string"
|
|
@@ -955,7 +937,7 @@
|
|
|
955
937
|
"map": {
|
|
956
938
|
"anyOf": [
|
|
957
939
|
{
|
|
958
|
-
"$ref": "#/definitions/
|
|
940
|
+
"$ref": "#/definitions/__schema59"
|
|
959
941
|
},
|
|
960
942
|
{
|
|
961
943
|
"type": "string"
|
|
@@ -973,7 +955,7 @@
|
|
|
973
955
|
]
|
|
974
956
|
}
|
|
975
957
|
},
|
|
976
|
-
"
|
|
958
|
+
"__schema77": {
|
|
977
959
|
"type": "object",
|
|
978
960
|
"propertyNames": {
|
|
979
961
|
"type": "string"
|
|
@@ -1000,7 +982,7 @@
|
|
|
1000
982
|
]
|
|
1001
983
|
}
|
|
1002
984
|
},
|
|
1003
|
-
"
|
|
985
|
+
"__schema78": {
|
|
1004
986
|
"type": "object",
|
|
1005
987
|
"propertyNames": {
|
|
1006
988
|
"type": "string"
|
|
@@ -1020,7 +1002,7 @@
|
|
|
1020
1002
|
]
|
|
1021
1003
|
}
|
|
1022
1004
|
},
|
|
1023
|
-
"
|
|
1005
|
+
"__schema79": {
|
|
1024
1006
|
"type": "object",
|
|
1025
1007
|
"propertyNames": {
|
|
1026
1008
|
"type": "string"
|
|
@@ -1040,7 +1022,7 @@
|
|
|
1040
1022
|
]
|
|
1041
1023
|
}
|
|
1042
1024
|
},
|
|
1043
|
-
"
|
|
1025
|
+
"__schema80": {
|
|
1044
1026
|
"type": "object",
|
|
1045
1027
|
"properties": {
|
|
1046
1028
|
"callbackUrl": {
|
|
@@ -1052,25 +1034,18 @@
|
|
|
1052
1034
|
"description": "Maximum concurrent file operations during reindex (default 50).",
|
|
1053
1035
|
"allOf": [
|
|
1054
1036
|
{
|
|
1055
|
-
"$ref": "#/definitions/
|
|
1037
|
+
"$ref": "#/definitions/__schema81"
|
|
1056
1038
|
}
|
|
1057
1039
|
]
|
|
1058
1040
|
}
|
|
1059
1041
|
}
|
|
1060
1042
|
},
|
|
1061
|
-
"
|
|
1043
|
+
"__schema81": {
|
|
1062
1044
|
"type": "integer",
|
|
1063
1045
|
"minimum": 1,
|
|
1064
1046
|
"maximum": 9007199254740991
|
|
1065
1047
|
},
|
|
1066
|
-
"
|
|
1067
|
-
"type": "object",
|
|
1068
|
-
"propertyNames": {
|
|
1069
|
-
"type": "string"
|
|
1070
|
-
},
|
|
1071
|
-
"additionalProperties": {}
|
|
1072
|
-
},
|
|
1073
|
-
"__schema84": {
|
|
1048
|
+
"__schema82": {
|
|
1074
1049
|
"type": "object",
|
|
1075
1050
|
"properties": {
|
|
1076
1051
|
"scoreThresholds": {
|
|
@@ -1115,14 +1090,14 @@
|
|
|
1115
1090
|
}
|
|
1116
1091
|
}
|
|
1117
1092
|
},
|
|
1118
|
-
"
|
|
1093
|
+
"__schema83": {
|
|
1119
1094
|
"type": "object",
|
|
1120
1095
|
"properties": {
|
|
1121
1096
|
"level": {
|
|
1122
1097
|
"description": "Logging level (trace, debug, info, warn, error, fatal).",
|
|
1123
1098
|
"allOf": [
|
|
1124
1099
|
{
|
|
1125
|
-
"$ref": "#/definitions/
|
|
1100
|
+
"$ref": "#/definitions/__schema84"
|
|
1126
1101
|
}
|
|
1127
1102
|
]
|
|
1128
1103
|
},
|
|
@@ -1130,25 +1105,25 @@
|
|
|
1130
1105
|
"description": "Path to log file (logs to stdout if omitted).",
|
|
1131
1106
|
"allOf": [
|
|
1132
1107
|
{
|
|
1133
|
-
"$ref": "#/definitions/
|
|
1108
|
+
"$ref": "#/definitions/__schema85"
|
|
1134
1109
|
}
|
|
1135
1110
|
]
|
|
1136
1111
|
}
|
|
1137
1112
|
}
|
|
1138
1113
|
},
|
|
1139
|
-
"
|
|
1114
|
+
"__schema84": {
|
|
1140
1115
|
"type": "string"
|
|
1141
1116
|
},
|
|
1142
|
-
"
|
|
1117
|
+
"__schema85": {
|
|
1143
1118
|
"type": "string"
|
|
1144
1119
|
},
|
|
1145
|
-
"
|
|
1120
|
+
"__schema86": {
|
|
1146
1121
|
"type": "number"
|
|
1147
1122
|
},
|
|
1148
|
-
"
|
|
1123
|
+
"__schema87": {
|
|
1149
1124
|
"type": "number"
|
|
1150
1125
|
},
|
|
1151
|
-
"
|
|
1126
|
+
"__schema88": {
|
|
1152
1127
|
"type": "number"
|
|
1153
1128
|
}
|
|
1154
1129
|
}
|