@karmaniverous/jeeves-watcher 0.4.1 → 0.4.3
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 +47 -13
- package/dist/cjs/index.js +291 -170
- package/dist/cli/jeeves-watcher/index.js +292 -171
- package/dist/index.d.ts +11 -10
- package/dist/index.iife.js +292 -171
- package/dist/index.iife.min.js +1 -1
- package/dist/mjs/index.js +292 -171
- package/package.json +1 -1
package/config.schema.json
CHANGED
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
]
|
|
123
123
|
},
|
|
124
124
|
"maps": {
|
|
125
|
-
"description": "Reusable named JsonMap transformations.",
|
|
125
|
+
"description": "Reusable named JsonMap transformations (inline definition or .json file path resolved relative to config directory).",
|
|
126
126
|
"allOf": [
|
|
127
127
|
{
|
|
128
128
|
"$ref": "#/definitions/__schema51"
|
|
@@ -145,11 +145,19 @@
|
|
|
145
145
|
}
|
|
146
146
|
]
|
|
147
147
|
},
|
|
148
|
+
"mapHelpers": {
|
|
149
|
+
"description": "Custom JsonMap lib function registration.",
|
|
150
|
+
"allOf": [
|
|
151
|
+
{
|
|
152
|
+
"$ref": "#/definitions/__schema55"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
148
156
|
"logging": {
|
|
149
157
|
"description": "Logging configuration.",
|
|
150
158
|
"allOf": [
|
|
151
159
|
{
|
|
152
|
-
"$ref": "#/definitions/
|
|
160
|
+
"$ref": "#/definitions/__schema57"
|
|
153
161
|
}
|
|
154
162
|
]
|
|
155
163
|
},
|
|
@@ -157,7 +165,7 @@
|
|
|
157
165
|
"description": "Timeout in milliseconds for graceful shutdown.",
|
|
158
166
|
"allOf": [
|
|
159
167
|
{
|
|
160
|
-
"$ref": "#/definitions/
|
|
168
|
+
"$ref": "#/definitions/__schema60"
|
|
161
169
|
}
|
|
162
170
|
]
|
|
163
171
|
},
|
|
@@ -165,7 +173,7 @@
|
|
|
165
173
|
"description": "Maximum consecutive system-level failures before triggering fatal error. Default: Infinity.",
|
|
166
174
|
"allOf": [
|
|
167
175
|
{
|
|
168
|
-
"$ref": "#/definitions/
|
|
176
|
+
"$ref": "#/definitions/__schema61"
|
|
169
177
|
}
|
|
170
178
|
]
|
|
171
179
|
},
|
|
@@ -173,7 +181,7 @@
|
|
|
173
181
|
"description": "Maximum backoff delay in milliseconds for system errors. Default: 60000.",
|
|
174
182
|
"allOf": [
|
|
175
183
|
{
|
|
176
|
-
"$ref": "#/definitions/
|
|
184
|
+
"$ref": "#/definitions/__schema62"
|
|
177
185
|
}
|
|
178
186
|
]
|
|
179
187
|
}
|
|
@@ -597,7 +605,14 @@
|
|
|
597
605
|
"type": "string"
|
|
598
606
|
},
|
|
599
607
|
"additionalProperties": {
|
|
600
|
-
"
|
|
608
|
+
"anyOf": [
|
|
609
|
+
{
|
|
610
|
+
"$ref": "#/definitions/__schema48"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"type": "string"
|
|
614
|
+
}
|
|
615
|
+
]
|
|
601
616
|
}
|
|
602
617
|
},
|
|
603
618
|
"__schema52": {
|
|
@@ -629,13 +644,32 @@
|
|
|
629
644
|
}
|
|
630
645
|
},
|
|
631
646
|
"__schema55": {
|
|
647
|
+
"type": "object",
|
|
648
|
+
"properties": {
|
|
649
|
+
"paths": {
|
|
650
|
+
"description": "File paths to JS modules exporting functions to merge into the JsonMap lib.",
|
|
651
|
+
"allOf": [
|
|
652
|
+
{
|
|
653
|
+
"$ref": "#/definitions/__schema56"
|
|
654
|
+
}
|
|
655
|
+
]
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
},
|
|
659
|
+
"__schema56": {
|
|
660
|
+
"type": "array",
|
|
661
|
+
"items": {
|
|
662
|
+
"type": "string"
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"__schema57": {
|
|
632
666
|
"type": "object",
|
|
633
667
|
"properties": {
|
|
634
668
|
"level": {
|
|
635
669
|
"description": "Logging level (trace, debug, info, warn, error, fatal).",
|
|
636
670
|
"allOf": [
|
|
637
671
|
{
|
|
638
|
-
"$ref": "#/definitions/
|
|
672
|
+
"$ref": "#/definitions/__schema58"
|
|
639
673
|
}
|
|
640
674
|
]
|
|
641
675
|
},
|
|
@@ -643,25 +677,25 @@
|
|
|
643
677
|
"description": "Path to log file (logs to stdout if omitted).",
|
|
644
678
|
"allOf": [
|
|
645
679
|
{
|
|
646
|
-
"$ref": "#/definitions/
|
|
680
|
+
"$ref": "#/definitions/__schema59"
|
|
647
681
|
}
|
|
648
682
|
]
|
|
649
683
|
}
|
|
650
684
|
}
|
|
651
685
|
},
|
|
652
|
-
"
|
|
686
|
+
"__schema58": {
|
|
653
687
|
"type": "string"
|
|
654
688
|
},
|
|
655
|
-
"
|
|
689
|
+
"__schema59": {
|
|
656
690
|
"type": "string"
|
|
657
691
|
},
|
|
658
|
-
"
|
|
692
|
+
"__schema60": {
|
|
659
693
|
"type": "number"
|
|
660
694
|
},
|
|
661
|
-
"
|
|
695
|
+
"__schema61": {
|
|
662
696
|
"type": "number"
|
|
663
697
|
},
|
|
664
|
-
"
|
|
698
|
+
"__schema62": {
|
|
665
699
|
"type": "number"
|
|
666
700
|
}
|
|
667
701
|
}
|