wattpm 3.10.0 → 3.12.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 +5 -5
- package/schema.json +36 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"pino-pretty": "^13.0.0",
|
|
30
30
|
"split2": "^4.2.0",
|
|
31
31
|
"table": "^6.8.2",
|
|
32
|
-
"@platformatic/
|
|
33
|
-
"@platformatic/
|
|
34
|
-
"@platformatic/runtime": "3.
|
|
32
|
+
"@platformatic/foundation": "3.12.0",
|
|
33
|
+
"@platformatic/control": "3.12.0",
|
|
34
|
+
"@platformatic/runtime": "3.12.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"cleaner-spec-reporter": "^0.5.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"neostandard": "^0.12.0",
|
|
43
43
|
"typescript": "^5.5.4",
|
|
44
44
|
"undici": "^7.0.0",
|
|
45
|
-
"@platformatic/node": "3.
|
|
45
|
+
"@platformatic/node": "3.12.0"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"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.12.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Runtime Config",
|
|
5
5
|
"type": "object",
|
|
@@ -2001,6 +2001,10 @@
|
|
|
2001
2001
|
"type": "number",
|
|
2002
2002
|
"minimum": 1
|
|
2003
2003
|
},
|
|
2004
|
+
"maxTotalMemory": {
|
|
2005
|
+
"type": "number",
|
|
2006
|
+
"minimum": 0
|
|
2007
|
+
},
|
|
2004
2008
|
"minWorkers": {
|
|
2005
2009
|
"type": "number",
|
|
2006
2010
|
"minimum": 1
|
|
@@ -2019,12 +2023,11 @@
|
|
|
2019
2023
|
"minimum": 0,
|
|
2020
2024
|
"maximum": 1
|
|
2021
2025
|
},
|
|
2022
|
-
"
|
|
2026
|
+
"timeWindowSec": {
|
|
2023
2027
|
"type": "number",
|
|
2024
|
-
"minimum": 0
|
|
2025
|
-
"maximum": 1
|
|
2028
|
+
"minimum": 0
|
|
2026
2029
|
},
|
|
2027
|
-
"
|
|
2030
|
+
"scaleDownTimeWindowSec": {
|
|
2028
2031
|
"type": "number",
|
|
2029
2032
|
"minimum": 0
|
|
2030
2033
|
},
|
|
@@ -2180,6 +2183,34 @@
|
|
|
2180
2183
|
"callbackUrl"
|
|
2181
2184
|
]
|
|
2182
2185
|
}
|
|
2186
|
+
},
|
|
2187
|
+
"policies": {
|
|
2188
|
+
"type": "object",
|
|
2189
|
+
"properties": {
|
|
2190
|
+
"deny": {
|
|
2191
|
+
"type": "object",
|
|
2192
|
+
"patternProperties": {
|
|
2193
|
+
"^.*$": {
|
|
2194
|
+
"oneOf": [
|
|
2195
|
+
{
|
|
2196
|
+
"type": "string"
|
|
2197
|
+
},
|
|
2198
|
+
{
|
|
2199
|
+
"type": "array",
|
|
2200
|
+
"items": {
|
|
2201
|
+
"type": "string"
|
|
2202
|
+
},
|
|
2203
|
+
"minItems": 1
|
|
2204
|
+
}
|
|
2205
|
+
]
|
|
2206
|
+
}
|
|
2207
|
+
}
|
|
2208
|
+
}
|
|
2209
|
+
},
|
|
2210
|
+
"required": [
|
|
2211
|
+
"deny"
|
|
2212
|
+
],
|
|
2213
|
+
"additionalProperties": false
|
|
2183
2214
|
}
|
|
2184
2215
|
},
|
|
2185
2216
|
"anyOf": [
|