@platformatic/db 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 +12 -12
- package/schema.json +32 -1
package/config.d.ts
CHANGED
|
@@ -604,6 +604,7 @@ export interface PlatformaticDatabaseConfig {
|
|
|
604
604
|
maxHeapTotal?: number | string;
|
|
605
605
|
maxYoungGeneration?: number | string;
|
|
606
606
|
codeRangeSize?: number | string;
|
|
607
|
+
noHeapCheck?: boolean | string;
|
|
607
608
|
};
|
|
608
609
|
undici?: {
|
|
609
610
|
agentOptions?: {
|
|
@@ -907,6 +908,7 @@ export interface PlatformaticDatabaseConfig {
|
|
|
907
908
|
maxHeapTotal?: number | string;
|
|
908
909
|
maxYoungGeneration?: number | string;
|
|
909
910
|
codeRangeSize?: number | string;
|
|
911
|
+
noHeapCheck?: boolean | string;
|
|
910
912
|
};
|
|
911
913
|
arguments?: string[];
|
|
912
914
|
env?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/db",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0-alpha.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -66,17 +66,17 @@
|
|
|
66
66
|
"rfdc": "^1.3.1",
|
|
67
67
|
"rimraf": "^4.4.1",
|
|
68
68
|
"semgrator": "^0.3.0",
|
|
69
|
-
"@platformatic/
|
|
70
|
-
"@platformatic/db-core": "3.
|
|
71
|
-
"@platformatic/
|
|
72
|
-
"@platformatic/
|
|
73
|
-
"@platformatic/
|
|
74
|
-
"@platformatic/sql-
|
|
75
|
-
"@platformatic/sql-json-schema-mapper": "3.
|
|
76
|
-
"@platformatic/sql-
|
|
77
|
-
"@platformatic/sql-
|
|
78
|
-
"@platformatic/telemetry": "3.
|
|
79
|
-
"@platformatic/sql-
|
|
69
|
+
"@platformatic/db-authorization": "3.32.0-alpha.0",
|
|
70
|
+
"@platformatic/db-core": "3.32.0-alpha.0",
|
|
71
|
+
"@platformatic/basic": "3.32.0-alpha.0",
|
|
72
|
+
"@platformatic/foundation": "3.32.0-alpha.0",
|
|
73
|
+
"@platformatic/service": "3.32.0-alpha.0",
|
|
74
|
+
"@platformatic/sql-events": "3.32.0-alpha.0",
|
|
75
|
+
"@platformatic/sql-json-schema-mapper": "3.32.0-alpha.0",
|
|
76
|
+
"@platformatic/sql-graphql": "3.32.0-alpha.0",
|
|
77
|
+
"@platformatic/sql-mapper": "3.32.0-alpha.0",
|
|
78
|
+
"@platformatic/telemetry": "3.32.0-alpha.0",
|
|
79
|
+
"@platformatic/sql-openapi": "3.32.0-alpha.0"
|
|
80
80
|
},
|
|
81
81
|
"engines": {
|
|
82
82
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/db/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/db/3.32.0-alpha.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Database Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1509,6 +1509,16 @@
|
|
|
1509
1509
|
"type": "string"
|
|
1510
1510
|
}
|
|
1511
1511
|
]
|
|
1512
|
+
},
|
|
1513
|
+
"noHeapCheck": {
|
|
1514
|
+
"anyOf": [
|
|
1515
|
+
{
|
|
1516
|
+
"type": "boolean"
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"type": "string"
|
|
1520
|
+
}
|
|
1521
|
+
]
|
|
1512
1522
|
}
|
|
1513
1523
|
},
|
|
1514
1524
|
"additionalProperties": false
|
|
@@ -2153,6 +2163,17 @@
|
|
|
2153
2163
|
}
|
|
2154
2164
|
],
|
|
2155
2165
|
"default": 268435456
|
|
2166
|
+
},
|
|
2167
|
+
"noHeapCheck": {
|
|
2168
|
+
"anyOf": [
|
|
2169
|
+
{
|
|
2170
|
+
"type": "boolean"
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
"type": "string"
|
|
2174
|
+
}
|
|
2175
|
+
],
|
|
2176
|
+
"default": false
|
|
2156
2177
|
}
|
|
2157
2178
|
},
|
|
2158
2179
|
"additionalProperties": false
|
|
@@ -3046,6 +3067,16 @@
|
|
|
3046
3067
|
"type": "string"
|
|
3047
3068
|
}
|
|
3048
3069
|
]
|
|
3070
|
+
},
|
|
3071
|
+
"noHeapCheck": {
|
|
3072
|
+
"anyOf": [
|
|
3073
|
+
{
|
|
3074
|
+
"type": "boolean"
|
|
3075
|
+
},
|
|
3076
|
+
{
|
|
3077
|
+
"type": "string"
|
|
3078
|
+
}
|
|
3079
|
+
]
|
|
3049
3080
|
}
|
|
3050
3081
|
},
|
|
3051
3082
|
"additionalProperties": false
|