@platformatic/db 3.17.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.
Files changed (3) hide show
  1. package/config.d.ts +1 -0
  2. package/package.json +12 -12
  3. package/schema.json +13 -3
package/config.d.ts CHANGED
@@ -703,6 +703,7 @@ export interface PlatformaticDatabaseConfig {
703
703
  body?: string;
704
704
  };
705
705
  };
706
+ healthChecksTimeouts?: number | string;
706
707
  plugins?: string[];
707
708
  timeout?: number | string;
708
709
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/db",
3
- "version": "3.17.0",
3
+ "version": "3.19.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -66,17 +66,17 @@
66
66
  "rfdc": "^1.3.1",
67
67
  "rimraf": "^4.4.1",
68
68
  "semgrator": "^0.3.0",
69
- "@platformatic/basic": "3.17.0",
70
- "@platformatic/db-authorization": "3.17.0",
71
- "@platformatic/db-core": "3.17.0",
72
- "@platformatic/foundation": "3.17.0",
73
- "@platformatic/sql-events": "3.17.0",
74
- "@platformatic/sql-graphql": "3.17.0",
75
- "@platformatic/service": "3.17.0",
76
- "@platformatic/sql-json-schema-mapper": "3.17.0",
77
- "@platformatic/sql-mapper": "3.17.0",
78
- "@platformatic/telemetry": "3.17.0",
79
- "@platformatic/sql-openapi": "3.17.0"
69
+ "@platformatic/basic": "3.19.0",
70
+ "@platformatic/db-authorization": "3.19.0",
71
+ "@platformatic/db-core": "3.19.0",
72
+ "@platformatic/foundation": "3.19.0",
73
+ "@platformatic/service": "3.19.0",
74
+ "@platformatic/sql-events": "3.19.0",
75
+ "@platformatic/sql-json-schema-mapper": "3.19.0",
76
+ "@platformatic/sql-graphql": "3.19.0",
77
+ "@platformatic/sql-mapper": "3.19.0",
78
+ "@platformatic/sql-openapi": "3.19.0",
79
+ "@platformatic/telemetry": "3.19.0"
80
80
  },
81
81
  "engines": {
82
82
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/db/3.17.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/db/3.19.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Database Config",
5
5
  "type": "object",
@@ -2081,8 +2081,7 @@
2081
2081
  {
2082
2082
  "type": "string"
2083
2083
  }
2084
- ],
2085
- "default": 4294967296
2084
+ ]
2086
2085
  },
2087
2086
  "maxYoungGeneration": {
2088
2087
  "anyOf": [
@@ -2409,6 +2408,17 @@
2409
2408
  }
2410
2409
  ]
2411
2410
  },
2411
+ "healthChecksTimeouts": {
2412
+ "anyOf": [
2413
+ {
2414
+ "type": "integer"
2415
+ },
2416
+ {
2417
+ "type": "string"
2418
+ }
2419
+ ],
2420
+ "default": 5000
2421
+ },
2412
2422
  "plugins": {
2413
2423
  "type": "array",
2414
2424
  "items": {