@platformatic/gateway 3.30.0 → 3.32.0-alpha.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 +2 -0
- package/package.json +7 -7
- package/schema.json +32 -1
package/config.d.ts
CHANGED
|
@@ -512,6 +512,7 @@ export interface PlatformaticGatewayConfig {
|
|
|
512
512
|
maxHeapTotal?: number | string;
|
|
513
513
|
maxYoungGeneration?: number | string;
|
|
514
514
|
codeRangeSize?: number | string;
|
|
515
|
+
noHeapCheck?: boolean | string;
|
|
515
516
|
};
|
|
516
517
|
undici?: {
|
|
517
518
|
agentOptions?: {
|
|
@@ -815,6 +816,7 @@ export interface PlatformaticGatewayConfig {
|
|
|
815
816
|
maxHeapTotal?: number | string;
|
|
816
817
|
maxYoungGeneration?: number | string;
|
|
817
818
|
codeRangeSize?: number | string;
|
|
819
|
+
noHeapCheck?: boolean | string;
|
|
818
820
|
};
|
|
819
821
|
arguments?: string[];
|
|
820
822
|
env?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/gateway",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0-alpha.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.32.0-alpha.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/service": "3.
|
|
70
|
-
"@platformatic/
|
|
71
|
-
"@platformatic/
|
|
67
|
+
"@platformatic/basic": "3.32.0-alpha.0",
|
|
68
|
+
"@platformatic/telemetry": "3.32.0-alpha.0",
|
|
69
|
+
"@platformatic/service": "3.32.0-alpha.0",
|
|
70
|
+
"@platformatic/foundation": "^3.32.0-alpha.0",
|
|
71
|
+
"@platformatic/scalar-theme": "3.32.0-alpha.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.32.0-alpha.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Gateway Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1472,6 +1472,16 @@
|
|
|
1472
1472
|
"type": "string"
|
|
1473
1473
|
}
|
|
1474
1474
|
]
|
|
1475
|
+
},
|
|
1476
|
+
"noHeapCheck": {
|
|
1477
|
+
"anyOf": [
|
|
1478
|
+
{
|
|
1479
|
+
"type": "boolean"
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
"type": "string"
|
|
1483
|
+
}
|
|
1484
|
+
]
|
|
1475
1485
|
}
|
|
1476
1486
|
},
|
|
1477
1487
|
"additionalProperties": false
|
|
@@ -2116,6 +2126,17 @@
|
|
|
2116
2126
|
}
|
|
2117
2127
|
],
|
|
2118
2128
|
"default": 268435456
|
|
2129
|
+
},
|
|
2130
|
+
"noHeapCheck": {
|
|
2131
|
+
"anyOf": [
|
|
2132
|
+
{
|
|
2133
|
+
"type": "boolean"
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
"type": "string"
|
|
2137
|
+
}
|
|
2138
|
+
],
|
|
2139
|
+
"default": false
|
|
2119
2140
|
}
|
|
2120
2141
|
},
|
|
2121
2142
|
"additionalProperties": false
|
|
@@ -3009,6 +3030,16 @@
|
|
|
3009
3030
|
"type": "string"
|
|
3010
3031
|
}
|
|
3011
3032
|
]
|
|
3033
|
+
},
|
|
3034
|
+
"noHeapCheck": {
|
|
3035
|
+
"anyOf": [
|
|
3036
|
+
{
|
|
3037
|
+
"type": "boolean"
|
|
3038
|
+
},
|
|
3039
|
+
{
|
|
3040
|
+
"type": "string"
|
|
3041
|
+
}
|
|
3042
|
+
]
|
|
3012
3043
|
}
|
|
3013
3044
|
},
|
|
3014
3045
|
"additionalProperties": false
|