@platformatic/next 3.18.0 → 3.19.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 CHANGED
@@ -337,6 +337,7 @@ export interface PlatformaticNextJsConfig {
337
337
  body?: string;
338
338
  };
339
339
  };
340
+ healthChecksTimeouts?: number | string;
340
341
  plugins?: string[];
341
342
  timeout?: number | string;
342
343
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/next",
3
- "version": "3.18.0",
3
+ "version": "3.19.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.18.0",
27
- "@platformatic/foundation": "3.18.0"
26
+ "@platformatic/basic": "3.19.0",
27
+ "@platformatic/foundation": "3.19.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/service": "3.18.0",
44
- "@platformatic/gateway": "3.18.0"
43
+ "@platformatic/gateway": "3.19.0",
44
+ "@platformatic/service": "3.19.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.18.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/next/3.19.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Next.js Config",
5
5
  "type": "object",
@@ -1469,6 +1469,17 @@
1469
1469
  }
1470
1470
  ]
1471
1471
  },
1472
+ "healthChecksTimeouts": {
1473
+ "anyOf": [
1474
+ {
1475
+ "type": "integer"
1476
+ },
1477
+ {
1478
+ "type": "string"
1479
+ }
1480
+ ],
1481
+ "default": 5000
1482
+ },
1472
1483
  "plugins": {
1473
1484
  "type": "array",
1474
1485
  "items": {