@platformatic/astro 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.
package/config.d.ts CHANGED
@@ -55,6 +55,7 @@ export interface PlatformaticAstroStackable {
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 PlatformaticAstroStackable {
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/astro",
3
- "version": "2.63.1",
3
+ "version": "2.63.3",
4
4
  "description": "Platformatic Astro Stackable",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -19,9 +19,9 @@
19
19
  "@fastify/static": "^8.0.0",
20
20
  "fastify": "^5.0.0",
21
21
  "semver": "^7.6.3",
22
- "@platformatic/basic": "2.63.1",
23
- "@platformatic/config": "2.63.1",
24
- "@platformatic/utils": "2.63.1"
22
+ "@platformatic/basic": "2.63.3",
23
+ "@platformatic/utils": "2.63.3",
24
+ "@platformatic/config": "2.63.3"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@astrojs/node": "^9.2.0",
@@ -34,8 +34,8 @@
34
34
  "typescript": "^5.5.4",
35
35
  "vite": "^5.4.4",
36
36
  "ws": "^8.18.0",
37
- "@platformatic/composer": "2.63.1",
38
- "@platformatic/service": "2.63.1"
37
+ "@platformatic/composer": "2.63.3",
38
+ "@platformatic/service": "2.63.3"
39
39
  },
40
40
  "scripts": {
41
41
  "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/astro/2.63.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/astro/2.63.3.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Astro 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,