@platformatic/next 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 +5 -5
- package/schema.json +29 -5
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/next",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.21.0",
|
|
4
4
|
"description": "Platformatic Next.js Capability",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"iovalkey": "^0.3.0",
|
|
24
24
|
"msgpackr": "^1.11.2",
|
|
25
25
|
"semver": "^7.6.3",
|
|
26
|
-
"@platformatic/basic": "3.
|
|
27
|
-
"@platformatic/foundation": "3.
|
|
26
|
+
"@platformatic/basic": "3.21.0",
|
|
27
|
+
"@platformatic/foundation": "3.21.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@fastify/reply-from": "^12.0.0",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"next": "^16.0.0",
|
|
41
41
|
"typescript": "^5.5.4",
|
|
42
42
|
"ws": "^8.18.0",
|
|
43
|
-
"@platformatic/
|
|
44
|
-
"@platformatic/
|
|
43
|
+
"@platformatic/service": "3.21.0",
|
|
44
|
+
"@platformatic/gateway": "3.21.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/next/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/next/3.21.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Next.js Config",
|
|
5
5
|
"type": "object",
|
|
@@ -549,6 +549,17 @@
|
|
|
549
549
|
"type": "string"
|
|
550
550
|
}
|
|
551
551
|
]
|
|
552
|
+
},
|
|
553
|
+
"codeRangeSize": {
|
|
554
|
+
"anyOf": [
|
|
555
|
+
{
|
|
556
|
+
"type": "number",
|
|
557
|
+
"minimum": 0
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"type": "string"
|
|
561
|
+
}
|
|
562
|
+
]
|
|
552
563
|
}
|
|
553
564
|
},
|
|
554
565
|
"additionalProperties": false
|
|
@@ -576,8 +587,7 @@
|
|
|
576
587
|
"type": "string"
|
|
577
588
|
},
|
|
578
589
|
"sourceMaps": {
|
|
579
|
-
"type": "boolean"
|
|
580
|
-
"default": false
|
|
590
|
+
"type": "boolean"
|
|
581
591
|
},
|
|
582
592
|
"packageManager": {
|
|
583
593
|
"type": "string",
|
|
@@ -1142,7 +1152,8 @@
|
|
|
1142
1152
|
{
|
|
1143
1153
|
"type": "string"
|
|
1144
1154
|
}
|
|
1145
|
-
]
|
|
1155
|
+
],
|
|
1156
|
+
"default": 4294967296
|
|
1146
1157
|
},
|
|
1147
1158
|
"maxYoungGeneration": {
|
|
1148
1159
|
"anyOf": [
|
|
@@ -1153,7 +1164,20 @@
|
|
|
1153
1164
|
{
|
|
1154
1165
|
"type": "string"
|
|
1155
1166
|
}
|
|
1156
|
-
]
|
|
1167
|
+
],
|
|
1168
|
+
"default": 134217728
|
|
1169
|
+
},
|
|
1170
|
+
"codeRangeSize": {
|
|
1171
|
+
"anyOf": [
|
|
1172
|
+
{
|
|
1173
|
+
"type": "number",
|
|
1174
|
+
"minimum": 0
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"type": "string"
|
|
1178
|
+
}
|
|
1179
|
+
],
|
|
1180
|
+
"default": 268435456
|
|
1157
1181
|
}
|
|
1158
1182
|
},
|
|
1159
1183
|
"additionalProperties": false
|