@platformatic/next 2.63.0 → 2.63.2

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
@@ -55,6 +55,7 @@ export interface PlatformaticNextJsStackable {
55
55
  port?: number | string;
56
56
  http2?: boolean;
57
57
  https?: {
58
+ allowHTTP1?: boolean;
58
59
  key:
59
60
  | string
60
61
  | {
@@ -77,6 +78,8 @@ export interface PlatformaticNextJsStackable {
77
78
  path?: string;
78
79
  }
79
80
  )[];
81
+ requestCert?: boolean;
82
+ rejectUnauthorized?: boolean;
80
83
  };
81
84
  };
82
85
  watch?:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/next",
3
- "version": "2.63.0",
3
+ "version": "2.63.2",
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.63.0",
27
- "@platformatic/config": "2.63.0",
28
- "@platformatic/utils": "2.63.0"
26
+ "@platformatic/config": "2.63.2",
27
+ "@platformatic/utils": "2.63.2",
28
+ "@platformatic/basic": "2.63.2"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@fastify/reply-from": "^12.0.0",
@@ -41,8 +41,8 @@
41
41
  "react-dom": "^18.3.1",
42
42
  "typescript": "^5.5.4",
43
43
  "ws": "^8.18.0",
44
- "@platformatic/composer": "2.63.0",
45
- "@platformatic/service": "2.63.0"
44
+ "@platformatic/composer": "2.63.2",
45
+ "@platformatic/service": "2.63.2"
46
46
  },
47
47
  "scripts": {
48
48
  "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.63.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/next/2.63.2.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Next.js Stackable",
5
5
  "type": "object",
@@ -166,6 +166,9 @@
166
166
  "https": {
167
167
  "type": "object",
168
168
  "properties": {
169
+ "allowHTTP1": {
170
+ "type": "boolean"
171
+ },
169
172
  "key": {
170
173
  "anyOf": [
171
174
  {
@@ -239,6 +242,12 @@
239
242
  }
240
243
  }
241
244
  ]
245
+ },
246
+ "requestCert": {
247
+ "type": "boolean"
248
+ },
249
+ "rejectUnauthorized": {
250
+ "type": "boolean"
242
251
  }
243
252
  },
244
253
  "additionalProperties": false,