wattpm 2.8.0-alpha.1 → 2.8.0-alpha.2
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 +63 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "2.8.0-alpha.
|
|
3
|
+
"version": "2.8.0-alpha.2",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"pino-pretty": "^11.2.2",
|
|
35
35
|
"split2": "^4.2.0",
|
|
36
36
|
"table": "^6.8.2",
|
|
37
|
-
"@platformatic/basic": "2.8.0-alpha.
|
|
38
|
-
"@platformatic/config": "2.8.0-alpha.
|
|
39
|
-
"@platformatic/
|
|
40
|
-
"@platformatic/
|
|
41
|
-
"@platformatic/
|
|
37
|
+
"@platformatic/basic": "2.8.0-alpha.2",
|
|
38
|
+
"@platformatic/config": "2.8.0-alpha.2",
|
|
39
|
+
"@platformatic/runtime": "2.8.0-alpha.2",
|
|
40
|
+
"@platformatic/utils": "2.8.0-alpha.2",
|
|
41
|
+
"@platformatic/control": "2.8.0-alpha.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"borp": "^0.18.0",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/wattpm/2.8.0-alpha.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/wattpm/2.8.0-alpha.2.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"properties": {
|
|
@@ -93,15 +93,29 @@
|
|
|
93
93
|
"type": "boolean"
|
|
94
94
|
},
|
|
95
95
|
"workers": {
|
|
96
|
-
"
|
|
97
|
-
|
|
96
|
+
"anyOf": [
|
|
97
|
+
{
|
|
98
|
+
"type": "number",
|
|
99
|
+
"minimum": 1
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"type": "string"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
98
105
|
}
|
|
99
106
|
}
|
|
100
107
|
}
|
|
101
108
|
},
|
|
102
109
|
"workers": {
|
|
103
|
-
"
|
|
104
|
-
|
|
110
|
+
"anyOf": [
|
|
111
|
+
{
|
|
112
|
+
"type": "number",
|
|
113
|
+
"minimum": 1
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": "string"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
105
119
|
"default": 1
|
|
106
120
|
},
|
|
107
121
|
"web": {
|
|
@@ -140,8 +154,15 @@
|
|
|
140
154
|
"type": "boolean"
|
|
141
155
|
},
|
|
142
156
|
"workers": {
|
|
143
|
-
"
|
|
144
|
-
|
|
157
|
+
"anyOf": [
|
|
158
|
+
{
|
|
159
|
+
"type": "number",
|
|
160
|
+
"minimum": 1
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"type": "string"
|
|
164
|
+
}
|
|
165
|
+
]
|
|
145
166
|
}
|
|
146
167
|
}
|
|
147
168
|
}
|
|
@@ -353,6 +374,41 @@
|
|
|
353
374
|
}
|
|
354
375
|
]
|
|
355
376
|
},
|
|
377
|
+
"gracefulShutdown": {
|
|
378
|
+
"type": "object",
|
|
379
|
+
"properties": {
|
|
380
|
+
"runtime": {
|
|
381
|
+
"anyOf": [
|
|
382
|
+
{
|
|
383
|
+
"type": "number",
|
|
384
|
+
"minimum": 1
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"type": "string"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"default": 10000
|
|
391
|
+
},
|
|
392
|
+
"service": {
|
|
393
|
+
"anyOf": [
|
|
394
|
+
{
|
|
395
|
+
"type": "number",
|
|
396
|
+
"minimum": 1
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"type": "string"
|
|
400
|
+
}
|
|
401
|
+
],
|
|
402
|
+
"default": 10000
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"default": {},
|
|
406
|
+
"required": [
|
|
407
|
+
"runtime",
|
|
408
|
+
"service"
|
|
409
|
+
],
|
|
410
|
+
"additionalProperties": false
|
|
411
|
+
},
|
|
356
412
|
"undici": {
|
|
357
413
|
"type": "object",
|
|
358
414
|
"properties": {
|