@platformatic/runtime 2.63.1 → 2.63.3

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.
Files changed (3) hide show
  1. package/config.d.ts +4 -1
  2. package/package.json +14 -14
  3. package/schema.json +10 -1
package/config.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export type HttpsSchemasPlatformaticDevPlatformaticRuntime2631Json = {
8
+ export type HttpsSchemasPlatformaticDevPlatformaticRuntime2633Json = {
9
9
  [k: string]: unknown;
10
10
  } & {
11
11
  $schema?: string;
@@ -92,6 +92,7 @@ export type HttpsSchemasPlatformaticDevPlatformaticRuntime2631Json = {
92
92
  port?: number | string;
93
93
  http2?: boolean;
94
94
  https?: {
95
+ allowHTTP1?: boolean;
95
96
  key:
96
97
  | string
97
98
  | {
@@ -114,6 +115,8 @@ export type HttpsSchemasPlatformaticDevPlatformaticRuntime2631Json = {
114
115
  path?: string;
115
116
  }
116
117
  )[];
118
+ requestCert?: boolean;
119
+ rejectUnauthorized?: boolean;
117
120
  };
118
121
  };
119
122
  startTimeout?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/runtime",
3
- "version": "2.63.1",
3
+ "version": "2.63.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -37,12 +37,12 @@
37
37
  "typescript": "^5.5.4",
38
38
  "undici-oidc-interceptor": "^0.5.0",
39
39
  "why-is-node-running": "^2.2.2",
40
- "@platformatic/composer": "2.63.1",
41
- "@platformatic/db": "2.63.1",
42
- "@platformatic/node": "2.63.1",
43
- "@platformatic/service": "2.63.1",
44
- "@platformatic/sql-graphql": "2.63.1",
45
- "@platformatic/sql-mapper": "2.63.1"
40
+ "@platformatic/composer": "2.63.3",
41
+ "@platformatic/db": "2.63.3",
42
+ "@platformatic/service": "2.63.3",
43
+ "@platformatic/sql-graphql": "2.63.3",
44
+ "@platformatic/node": "2.63.3",
45
+ "@platformatic/sql-mapper": "2.63.3"
46
46
  },
47
47
  "dependencies": {
48
48
  "@fastify/accepts": "^5.0.0",
@@ -76,13 +76,13 @@
76
76
  "undici": "^7.0.0",
77
77
  "undici-thread-interceptor": "^0.13.1",
78
78
  "ws": "^8.16.0",
79
- "@platformatic/basic": "2.63.1",
80
- "@platformatic/config": "2.63.1",
81
- "@platformatic/generators": "2.63.1",
82
- "@platformatic/itc": "2.63.1",
83
- "@platformatic/telemetry": "2.63.1",
84
- "@platformatic/utils": "2.63.1",
85
- "@platformatic/ts-compiler": "2.63.1"
79
+ "@platformatic/basic": "2.63.3",
80
+ "@platformatic/config": "2.63.3",
81
+ "@platformatic/generators": "2.63.3",
82
+ "@platformatic/telemetry": "2.63.3",
83
+ "@platformatic/itc": "2.63.3",
84
+ "@platformatic/utils": "2.63.3",
85
+ "@platformatic/ts-compiler": "2.63.3"
86
86
  },
87
87
  "scripts": {
88
88
  "test": "pnpm run lint && borp --concurrency=1 --timeout=300000 && tsd",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/runtime/2.63.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/runtime/2.63.3.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "type": "object",
5
5
  "properties": {
@@ -804,6 +804,9 @@
804
804
  "https": {
805
805
  "type": "object",
806
806
  "properties": {
807
+ "allowHTTP1": {
808
+ "type": "boolean"
809
+ },
807
810
  "key": {
808
811
  "anyOf": [
809
812
  {
@@ -877,6 +880,12 @@
877
880
  }
878
881
  }
879
882
  ]
883
+ },
884
+ "requestCert": {
885
+ "type": "boolean"
886
+ },
887
+ "rejectUnauthorized": {
888
+ "type": "boolean"
880
889
  }
881
890
  },
882
891
  "additionalProperties": false,