@platformatic/next 2.70.0 → 2.71.0-alpha.1
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 +6 -8
- package/schema.json +13 -1
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/next",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.71.0-alpha.1",
|
|
4
4
|
"description": "Platformatic Next.js Stackable",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"iovalkey": "^0.3.0",
|
|
24
24
|
"msgpackr": "^1.11.2",
|
|
25
25
|
"semver": "^7.6.3",
|
|
26
|
-
"@platformatic/basic": "2.
|
|
27
|
-
"@platformatic/
|
|
28
|
-
"@platformatic/
|
|
26
|
+
"@platformatic/basic": "2.71.0-alpha.1",
|
|
27
|
+
"@platformatic/config": "2.71.0-alpha.1",
|
|
28
|
+
"@platformatic/utils": "2.71.0-alpha.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@fastify/reply-from": "^12.0.0",
|
|
@@ -37,12 +37,10 @@
|
|
|
37
37
|
"json-schema-to-typescript": "^15.0.1",
|
|
38
38
|
"neostandard": "^0.12.0",
|
|
39
39
|
"next": "^15.0.0",
|
|
40
|
-
"react": "^18.3.1",
|
|
41
|
-
"react-dom": "^18.3.1",
|
|
42
40
|
"typescript": "^5.5.4",
|
|
43
41
|
"ws": "^8.18.0",
|
|
44
|
-
"@platformatic/composer": "2.
|
|
45
|
-
"@platformatic/service": "2.
|
|
42
|
+
"@platformatic/composer": "2.71.0-alpha.1",
|
|
43
|
+
"@platformatic/service": "2.71.0-alpha.1"
|
|
46
44
|
},
|
|
47
45
|
"scripts": {
|
|
48
46
|
"test": "npm run lint && borp --concurrency=1 --no-timeout",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/next/2.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/next/2.71.0-alpha.1.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Next.js Stackable",
|
|
5
5
|
"type": "object",
|
|
@@ -1292,6 +1292,18 @@
|
|
|
1292
1292
|
],
|
|
1293
1293
|
"default": 300000
|
|
1294
1294
|
},
|
|
1295
|
+
"messagingTimeout": {
|
|
1296
|
+
"anyOf": [
|
|
1297
|
+
{
|
|
1298
|
+
"type": "number",
|
|
1299
|
+
"minimum": 1
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"type": "string"
|
|
1303
|
+
}
|
|
1304
|
+
],
|
|
1305
|
+
"default": 30000
|
|
1306
|
+
},
|
|
1295
1307
|
"env": {
|
|
1296
1308
|
"type": "object",
|
|
1297
1309
|
"additionalProperties": {
|