@platformatic/db 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 +12 -12
- package/schema.json +29 -5
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/db",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.21.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/basic": "3.
|
|
70
|
-
"@platformatic/db-authorization": "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/
|
|
79
|
-
"@platformatic/telemetry": "3.
|
|
69
|
+
"@platformatic/basic": "3.21.0",
|
|
70
|
+
"@platformatic/db-authorization": "3.21.0",
|
|
71
|
+
"@platformatic/foundation": "3.21.0",
|
|
72
|
+
"@platformatic/service": "3.21.0",
|
|
73
|
+
"@platformatic/sql-events": "3.21.0",
|
|
74
|
+
"@platformatic/sql-graphql": "3.21.0",
|
|
75
|
+
"@platformatic/sql-json-schema-mapper": "3.21.0",
|
|
76
|
+
"@platformatic/sql-mapper": "3.21.0",
|
|
77
|
+
"@platformatic/sql-openapi": "3.21.0",
|
|
78
|
+
"@platformatic/db-core": "3.21.0",
|
|
79
|
+
"@platformatic/telemetry": "3.21.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.21.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Database Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1488,6 +1488,17 @@
|
|
|
1488
1488
|
"type": "string"
|
|
1489
1489
|
}
|
|
1490
1490
|
]
|
|
1491
|
+
},
|
|
1492
|
+
"codeRangeSize": {
|
|
1493
|
+
"anyOf": [
|
|
1494
|
+
{
|
|
1495
|
+
"type": "number",
|
|
1496
|
+
"minimum": 0
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"type": "string"
|
|
1500
|
+
}
|
|
1501
|
+
]
|
|
1491
1502
|
}
|
|
1492
1503
|
},
|
|
1493
1504
|
"additionalProperties": false
|
|
@@ -1515,8 +1526,7 @@
|
|
|
1515
1526
|
"type": "string"
|
|
1516
1527
|
},
|
|
1517
1528
|
"sourceMaps": {
|
|
1518
|
-
"type": "boolean"
|
|
1519
|
-
"default": false
|
|
1529
|
+
"type": "boolean"
|
|
1520
1530
|
},
|
|
1521
1531
|
"packageManager": {
|
|
1522
1532
|
"type": "string",
|
|
@@ -2081,7 +2091,8 @@
|
|
|
2081
2091
|
{
|
|
2082
2092
|
"type": "string"
|
|
2083
2093
|
}
|
|
2084
|
-
]
|
|
2094
|
+
],
|
|
2095
|
+
"default": 4294967296
|
|
2085
2096
|
},
|
|
2086
2097
|
"maxYoungGeneration": {
|
|
2087
2098
|
"anyOf": [
|
|
@@ -2092,7 +2103,20 @@
|
|
|
2092
2103
|
{
|
|
2093
2104
|
"type": "string"
|
|
2094
2105
|
}
|
|
2095
|
-
]
|
|
2106
|
+
],
|
|
2107
|
+
"default": 134217728
|
|
2108
|
+
},
|
|
2109
|
+
"codeRangeSize": {
|
|
2110
|
+
"anyOf": [
|
|
2111
|
+
{
|
|
2112
|
+
"type": "number",
|
|
2113
|
+
"minimum": 0
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"type": "string"
|
|
2117
|
+
}
|
|
2118
|
+
],
|
|
2119
|
+
"default": 268435456
|
|
2096
2120
|
}
|
|
2097
2121
|
},
|
|
2098
2122
|
"additionalProperties": false
|