@platformatic/basic 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
@@ -233,6 +233,7 @@ export interface PlatformaticBasicConfig {
233
233
  body?: string;
234
234
  };
235
235
  };
236
+ healthChecksTimeouts?: number | string;
236
237
  plugins?: string[];
237
238
  timeout?: number | string;
238
239
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/basic",
3
- "version": "3.18.0",
3
+ "version": "3.19.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -25,10 +25,10 @@
25
25
  "split2": "^4.2.0",
26
26
  "undici": "^7.0.0",
27
27
  "ws": "^8.18.0",
28
- "@platformatic/foundation": "3.18.0",
29
- "@platformatic/metrics": "3.18.0",
30
- "@platformatic/itc": "3.18.0",
31
- "@platformatic/telemetry": "3.18.0"
28
+ "@platformatic/foundation": "3.19.0",
29
+ "@platformatic/metrics": "3.19.0",
30
+ "@platformatic/itc": "3.19.0",
31
+ "@platformatic/telemetry": "3.19.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "cleaner-spec-reporter": "^0.5.0",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/basic/3.18.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/basic/3.19.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Basic Config",
5
5
  "type": "object",
@@ -1111,6 +1111,17 @@
1111
1111
  }
1112
1112
  ]
1113
1113
  },
1114
+ "healthChecksTimeouts": {
1115
+ "anyOf": [
1116
+ {
1117
+ "type": "integer"
1118
+ },
1119
+ {
1120
+ "type": "string"
1121
+ }
1122
+ ],
1123
+ "default": 5000
1124
+ },
1114
1125
  "plugins": {
1115
1126
  "type": "array",
1116
1127
  "items": {