@platformatic/gateway 3.19.0 → 3.21.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.d.ts +1 -0
- package/package.json +7 -7
- package/schema.json +29 -5
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/gateway",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.21.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"typescript": "^5.5.4",
|
|
34
34
|
"why-is-node-running": "2",
|
|
35
35
|
"ws": "^8.16.0",
|
|
36
|
-
"@platformatic/db": "3.
|
|
36
|
+
"@platformatic/db": "3.21.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@fastify/error": "^4.0.0",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
"rfdc": "^1.3.1",
|
|
65
65
|
"semgrator": "^0.3.0",
|
|
66
66
|
"undici": "^7.0.0",
|
|
67
|
-
"@platformatic/basic": "3.
|
|
68
|
-
"@platformatic/
|
|
69
|
-
"@platformatic/
|
|
70
|
-
"@platformatic/telemetry": "3.
|
|
71
|
-
"@platformatic/
|
|
67
|
+
"@platformatic/basic": "3.21.0",
|
|
68
|
+
"@platformatic/scalar-theme": "3.21.0",
|
|
69
|
+
"@platformatic/service": "3.21.0",
|
|
70
|
+
"@platformatic/telemetry": "3.21.0",
|
|
71
|
+
"@platformatic/foundation": "^3.21.0"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.21.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Gateway Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1439,6 +1439,17 @@
|
|
|
1439
1439
|
"type": "string"
|
|
1440
1440
|
}
|
|
1441
1441
|
]
|
|
1442
|
+
},
|
|
1443
|
+
"codeRangeSize": {
|
|
1444
|
+
"anyOf": [
|
|
1445
|
+
{
|
|
1446
|
+
"type": "number",
|
|
1447
|
+
"minimum": 0
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"type": "string"
|
|
1451
|
+
}
|
|
1452
|
+
]
|
|
1442
1453
|
}
|
|
1443
1454
|
},
|
|
1444
1455
|
"additionalProperties": false
|
|
@@ -1466,8 +1477,7 @@
|
|
|
1466
1477
|
"type": "string"
|
|
1467
1478
|
},
|
|
1468
1479
|
"sourceMaps": {
|
|
1469
|
-
"type": "boolean"
|
|
1470
|
-
"default": false
|
|
1480
|
+
"type": "boolean"
|
|
1471
1481
|
},
|
|
1472
1482
|
"packageManager": {
|
|
1473
1483
|
"type": "string",
|
|
@@ -2032,7 +2042,8 @@
|
|
|
2032
2042
|
{
|
|
2033
2043
|
"type": "string"
|
|
2034
2044
|
}
|
|
2035
|
-
]
|
|
2045
|
+
],
|
|
2046
|
+
"default": 4294967296
|
|
2036
2047
|
},
|
|
2037
2048
|
"maxYoungGeneration": {
|
|
2038
2049
|
"anyOf": [
|
|
@@ -2043,7 +2054,20 @@
|
|
|
2043
2054
|
{
|
|
2044
2055
|
"type": "string"
|
|
2045
2056
|
}
|
|
2046
|
-
]
|
|
2057
|
+
],
|
|
2058
|
+
"default": 134217728
|
|
2059
|
+
},
|
|
2060
|
+
"codeRangeSize": {
|
|
2061
|
+
"anyOf": [
|
|
2062
|
+
{
|
|
2063
|
+
"type": "number",
|
|
2064
|
+
"minimum": 0
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
"type": "string"
|
|
2068
|
+
}
|
|
2069
|
+
],
|
|
2070
|
+
"default": 268435456
|
|
2047
2071
|
}
|
|
2048
2072
|
},
|
|
2049
2073
|
"additionalProperties": false
|