@platformatic/service 3.18.0 → 3.20.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 +40 -4
package/config.d.ts
CHANGED
|
@@ -427,6 +427,7 @@ export interface PlatformaticServiceConfig {
|
|
|
427
427
|
maxHeapUsed?: number | string;
|
|
428
428
|
maxHeapTotal?: number | string;
|
|
429
429
|
maxYoungGeneration?: number | string;
|
|
430
|
+
codeRangeSize?: number | string;
|
|
430
431
|
};
|
|
431
432
|
undici?: {
|
|
432
433
|
agentOptions?: {
|
|
@@ -533,6 +534,7 @@ export interface PlatformaticServiceConfig {
|
|
|
533
534
|
body?: string;
|
|
534
535
|
};
|
|
535
536
|
};
|
|
537
|
+
healthChecksTimeouts?: number | string;
|
|
536
538
|
plugins?: string[];
|
|
537
539
|
timeout?: number | string;
|
|
538
540
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/service",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.20.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/generators": "3.
|
|
73
|
-
"@platformatic/
|
|
74
|
-
"@platformatic/
|
|
75
|
-
"@platformatic/
|
|
70
|
+
"@platformatic/basic": "3.20.0",
|
|
71
|
+
"@platformatic/foundation": "3.20.0",
|
|
72
|
+
"@platformatic/generators": "3.20.0",
|
|
73
|
+
"@platformatic/metrics": "3.20.0",
|
|
74
|
+
"@platformatic/scalar-theme": "3.20.0",
|
|
75
|
+
"@platformatic/telemetry": "3.20.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.20.0.json",
|
|
3
|
+
"version": "3.20.0",
|
|
4
4
|
"title": "Platformatic Service Config",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
@@ -1177,6 +1177,17 @@
|
|
|
1177
1177
|
"type": "string"
|
|
1178
1178
|
}
|
|
1179
1179
|
]
|
|
1180
|
+
},
|
|
1181
|
+
"codeRangeSize": {
|
|
1182
|
+
"anyOf": [
|
|
1183
|
+
{
|
|
1184
|
+
"type": "number",
|
|
1185
|
+
"minimum": 0
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"type": "string"
|
|
1189
|
+
}
|
|
1190
|
+
]
|
|
1180
1191
|
}
|
|
1181
1192
|
},
|
|
1182
1193
|
"additionalProperties": false
|
|
@@ -1770,7 +1781,8 @@
|
|
|
1770
1781
|
{
|
|
1771
1782
|
"type": "string"
|
|
1772
1783
|
}
|
|
1773
|
-
]
|
|
1784
|
+
],
|
|
1785
|
+
"default": 4294967296
|
|
1774
1786
|
},
|
|
1775
1787
|
"maxYoungGeneration": {
|
|
1776
1788
|
"anyOf": [
|
|
@@ -1781,7 +1793,20 @@
|
|
|
1781
1793
|
{
|
|
1782
1794
|
"type": "string"
|
|
1783
1795
|
}
|
|
1784
|
-
]
|
|
1796
|
+
],
|
|
1797
|
+
"default": 134217728
|
|
1798
|
+
},
|
|
1799
|
+
"codeRangeSize": {
|
|
1800
|
+
"anyOf": [
|
|
1801
|
+
{
|
|
1802
|
+
"type": "number",
|
|
1803
|
+
"minimum": 0
|
|
1804
|
+
},
|
|
1805
|
+
{
|
|
1806
|
+
"type": "string"
|
|
1807
|
+
}
|
|
1808
|
+
],
|
|
1809
|
+
"default": 268435456
|
|
1785
1810
|
}
|
|
1786
1811
|
},
|
|
1787
1812
|
"additionalProperties": false
|
|
@@ -2097,6 +2122,17 @@
|
|
|
2097
2122
|
}
|
|
2098
2123
|
]
|
|
2099
2124
|
},
|
|
2125
|
+
"healthChecksTimeouts": {
|
|
2126
|
+
"anyOf": [
|
|
2127
|
+
{
|
|
2128
|
+
"type": "integer"
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"type": "string"
|
|
2132
|
+
}
|
|
2133
|
+
],
|
|
2134
|
+
"default": 5000
|
|
2135
|
+
},
|
|
2100
2136
|
"plugins": {
|
|
2101
2137
|
"type": "array",
|
|
2102
2138
|
"items": {
|