@platformatic/service 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 +33 -2
package/config.d.ts
CHANGED
|
@@ -434,6 +434,7 @@ export interface PlatformaticServiceConfig {
|
|
|
434
434
|
maxHeapTotal?: number | string;
|
|
435
435
|
maxYoungGeneration?: number | string;
|
|
436
436
|
codeRangeSize?: number | string;
|
|
437
|
+
noHeapCheck?: boolean | string;
|
|
437
438
|
};
|
|
438
439
|
undici?: {
|
|
439
440
|
agentOptions?: {
|
|
@@ -737,6 +738,7 @@ export interface PlatformaticServiceConfig {
|
|
|
737
738
|
maxHeapTotal?: number | string;
|
|
738
739
|
maxYoungGeneration?: number | string;
|
|
739
740
|
codeRangeSize?: number | string;
|
|
741
|
+
noHeapCheck?: boolean | string;
|
|
740
742
|
};
|
|
741
743
|
arguments?: string[];
|
|
742
744
|
env?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/service",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0-alpha.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
"rfdc": "^1.3.1",
|
|
68
68
|
"semgrator": "^0.3.0",
|
|
69
69
|
"undici": "^7.0.0",
|
|
70
|
-
"@platformatic/basic": "3.
|
|
71
|
-
"@platformatic/
|
|
72
|
-
"@platformatic/
|
|
73
|
-
"@platformatic/
|
|
74
|
-
"@platformatic/
|
|
75
|
-
"@platformatic/telemetry": "3.
|
|
70
|
+
"@platformatic/basic": "3.32.0-alpha.0",
|
|
71
|
+
"@platformatic/foundation": "3.32.0-alpha.0",
|
|
72
|
+
"@platformatic/generators": "3.32.0-alpha.0",
|
|
73
|
+
"@platformatic/metrics": "3.32.0-alpha.0",
|
|
74
|
+
"@platformatic/scalar-theme": "3.32.0-alpha.0",
|
|
75
|
+
"@platformatic/telemetry": "3.32.0-alpha.0"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
78
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/service/3.
|
|
3
|
-
"version": "3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/service/3.32.0-alpha.0.json",
|
|
3
|
+
"version": "3.32.0-alpha.0",
|
|
4
4
|
"title": "Platformatic Service Config",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
@@ -1198,6 +1198,16 @@
|
|
|
1198
1198
|
"type": "string"
|
|
1199
1199
|
}
|
|
1200
1200
|
]
|
|
1201
|
+
},
|
|
1202
|
+
"noHeapCheck": {
|
|
1203
|
+
"anyOf": [
|
|
1204
|
+
{
|
|
1205
|
+
"type": "boolean"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"type": "string"
|
|
1209
|
+
}
|
|
1210
|
+
]
|
|
1201
1211
|
}
|
|
1202
1212
|
},
|
|
1203
1213
|
"additionalProperties": false
|
|
@@ -1842,6 +1852,17 @@
|
|
|
1842
1852
|
}
|
|
1843
1853
|
],
|
|
1844
1854
|
"default": 268435456
|
|
1855
|
+
},
|
|
1856
|
+
"noHeapCheck": {
|
|
1857
|
+
"anyOf": [
|
|
1858
|
+
{
|
|
1859
|
+
"type": "boolean"
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
"type": "string"
|
|
1863
|
+
}
|
|
1864
|
+
],
|
|
1865
|
+
"default": false
|
|
1845
1866
|
}
|
|
1846
1867
|
},
|
|
1847
1868
|
"additionalProperties": false
|
|
@@ -2735,6 +2756,16 @@
|
|
|
2735
2756
|
"type": "string"
|
|
2736
2757
|
}
|
|
2737
2758
|
]
|
|
2759
|
+
},
|
|
2760
|
+
"noHeapCheck": {
|
|
2761
|
+
"anyOf": [
|
|
2762
|
+
{
|
|
2763
|
+
"type": "boolean"
|
|
2764
|
+
},
|
|
2765
|
+
{
|
|
2766
|
+
"type": "string"
|
|
2767
|
+
}
|
|
2768
|
+
]
|
|
2738
2769
|
}
|
|
2739
2770
|
},
|
|
2740
2771
|
"additionalProperties": false
|