wattpm 3.57.0 → 3.59.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/package.json +6 -6
- package/schema.json +107 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.59.0",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"pino-pretty": "^13.0.0",
|
|
31
31
|
"split2": "^4.2.0",
|
|
32
32
|
"table": "^6.8.2",
|
|
33
|
-
"@platformatic/control": "3.
|
|
34
|
-
"@platformatic/globals": "3.
|
|
35
|
-
"@platformatic/runtime": "3.
|
|
36
|
-
"@platformatic/foundation": "3.
|
|
33
|
+
"@platformatic/control": "3.59.0",
|
|
34
|
+
"@platformatic/globals": "3.59.0",
|
|
35
|
+
"@platformatic/runtime": "3.59.0",
|
|
36
|
+
"@platformatic/foundation": "3.59.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"cleaner-spec-reporter": "^0.5.0",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"neostandard": "^0.12.0",
|
|
46
46
|
"typescript": "^5.5.4",
|
|
47
47
|
"undici": "^7.27.2",
|
|
48
|
-
"@platformatic/node": "3.
|
|
48
|
+
"@platformatic/node": "3.59.0"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
51
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/wattpm/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/wattpm/3.59.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Runtime Config",
|
|
5
5
|
"type": "object",
|
|
@@ -58,6 +58,23 @@
|
|
|
58
58
|
"id": {
|
|
59
59
|
"type": "string"
|
|
60
60
|
},
|
|
61
|
+
"enabled": {
|
|
62
|
+
"anyOf": [
|
|
63
|
+
{
|
|
64
|
+
"type": "boolean"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"type": "object",
|
|
71
|
+
"additionalProperties": {
|
|
72
|
+
"type": "boolean"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"default": true
|
|
77
|
+
},
|
|
61
78
|
"config": {
|
|
62
79
|
"type": "string"
|
|
63
80
|
},
|
|
@@ -427,6 +444,23 @@
|
|
|
427
444
|
"id": {
|
|
428
445
|
"type": "string"
|
|
429
446
|
},
|
|
447
|
+
"enabled": {
|
|
448
|
+
"anyOf": [
|
|
449
|
+
{
|
|
450
|
+
"type": "boolean"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"type": "string"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"type": "object",
|
|
457
|
+
"additionalProperties": {
|
|
458
|
+
"type": "boolean"
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
],
|
|
462
|
+
"default": true
|
|
463
|
+
},
|
|
430
464
|
"path": {
|
|
431
465
|
"type": "string",
|
|
432
466
|
"allowEmptyPaths": true,
|
|
@@ -806,6 +840,23 @@
|
|
|
806
840
|
"id": {
|
|
807
841
|
"type": "string"
|
|
808
842
|
},
|
|
843
|
+
"enabled": {
|
|
844
|
+
"anyOf": [
|
|
845
|
+
{
|
|
846
|
+
"type": "boolean"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"type": "string"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"type": "object",
|
|
853
|
+
"additionalProperties": {
|
|
854
|
+
"type": "boolean"
|
|
855
|
+
}
|
|
856
|
+
}
|
|
857
|
+
],
|
|
858
|
+
"default": true
|
|
859
|
+
},
|
|
809
860
|
"path": {
|
|
810
861
|
"type": "string",
|
|
811
862
|
"allowEmptyPaths": true,
|
|
@@ -1185,6 +1236,23 @@
|
|
|
1185
1236
|
"id": {
|
|
1186
1237
|
"type": "string"
|
|
1187
1238
|
},
|
|
1239
|
+
"enabled": {
|
|
1240
|
+
"anyOf": [
|
|
1241
|
+
{
|
|
1242
|
+
"type": "boolean"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"type": "string"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"type": "object",
|
|
1249
|
+
"additionalProperties": {
|
|
1250
|
+
"type": "boolean"
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
],
|
|
1254
|
+
"default": true
|
|
1255
|
+
},
|
|
1188
1256
|
"path": {
|
|
1189
1257
|
"type": "string",
|
|
1190
1258
|
"allowEmptyPaths": true,
|
|
@@ -1781,6 +1849,25 @@
|
|
|
1781
1849
|
"captureStdio": {
|
|
1782
1850
|
"type": "boolean",
|
|
1783
1851
|
"default": true
|
|
1852
|
+
},
|
|
1853
|
+
"pino": {
|
|
1854
|
+
"type": "object",
|
|
1855
|
+
"default": {},
|
|
1856
|
+
"properties": {
|
|
1857
|
+
"level": {
|
|
1858
|
+
"type": "string",
|
|
1859
|
+
"default": "level"
|
|
1860
|
+
},
|
|
1861
|
+
"time": {
|
|
1862
|
+
"type": "string",
|
|
1863
|
+
"default": "time"
|
|
1864
|
+
},
|
|
1865
|
+
"message": {
|
|
1866
|
+
"type": "string",
|
|
1867
|
+
"default": "msg"
|
|
1868
|
+
}
|
|
1869
|
+
},
|
|
1870
|
+
"additionalProperties": false
|
|
1784
1871
|
}
|
|
1785
1872
|
},
|
|
1786
1873
|
"default": {},
|
|
@@ -1928,7 +2015,14 @@
|
|
|
1928
2015
|
},
|
|
1929
2016
|
"exitOnUnhandledErrors": {
|
|
1930
2017
|
"default": true,
|
|
1931
|
-
"
|
|
2018
|
+
"anyOf": [
|
|
2019
|
+
{
|
|
2020
|
+
"type": "boolean"
|
|
2021
|
+
},
|
|
2022
|
+
{
|
|
2023
|
+
"type": "number"
|
|
2024
|
+
}
|
|
2025
|
+
]
|
|
1932
2026
|
},
|
|
1933
2027
|
"gracefulShutdown": {
|
|
1934
2028
|
"type": "object",
|
|
@@ -2110,6 +2204,17 @@
|
|
|
2110
2204
|
},
|
|
2111
2205
|
"additionalProperties": false
|
|
2112
2206
|
},
|
|
2207
|
+
"healthProbes": {
|
|
2208
|
+
"anyOf": [
|
|
2209
|
+
{
|
|
2210
|
+
"type": "boolean"
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
"type": "string"
|
|
2214
|
+
}
|
|
2215
|
+
],
|
|
2216
|
+
"default": true
|
|
2217
|
+
},
|
|
2113
2218
|
"undici": {
|
|
2114
2219
|
"type": "object",
|
|
2115
2220
|
"properties": {
|