@platformatic/service 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.
package/config.d.ts CHANGED
@@ -533,6 +533,7 @@ export interface PlatformaticServiceConfig {
533
533
  body?: string;
534
534
  };
535
535
  };
536
+ healthChecksTimeouts?: number | string;
536
537
  plugins?: string[];
537
538
  timeout?: number | string;
538
539
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/service",
3
- "version": "3.17.0",
3
+ "version": "3.19.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -67,12 +67,12 @@
67
67
  "rfdc": "^1.3.1",
68
68
  "semgrator": "^0.3.0",
69
69
  "undici": "^7.0.0",
70
- "@platformatic/basic": "3.17.0",
71
- "@platformatic/foundation": "3.17.0",
72
- "@platformatic/generators": "3.17.0",
73
- "@platformatic/metrics": "3.17.0",
74
- "@platformatic/scalar-theme": "3.17.0",
75
- "@platformatic/telemetry": "3.17.0"
70
+ "@platformatic/basic": "3.19.0",
71
+ "@platformatic/foundation": "3.19.0",
72
+ "@platformatic/generators": "3.19.0",
73
+ "@platformatic/scalar-theme": "3.19.0",
74
+ "@platformatic/telemetry": "3.19.0",
75
+ "@platformatic/metrics": "3.19.0"
76
76
  },
77
77
  "engines": {
78
78
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/service/3.17.0.json",
3
- "version": "3.17.0",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/service/3.19.0.json",
3
+ "version": "3.19.0",
4
4
  "title": "Platformatic Service Config",
5
5
  "type": "object",
6
6
  "properties": {
@@ -1770,8 +1770,7 @@
1770
1770
  {
1771
1771
  "type": "string"
1772
1772
  }
1773
- ],
1774
- "default": 4294967296
1773
+ ]
1775
1774
  },
1776
1775
  "maxYoungGeneration": {
1777
1776
  "anyOf": [
@@ -2098,6 +2097,17 @@
2098
2097
  }
2099
2098
  ]
2100
2099
  },
2100
+ "healthChecksTimeouts": {
2101
+ "anyOf": [
2102
+ {
2103
+ "type": "integer"
2104
+ },
2105
+ {
2106
+ "type": "string"
2107
+ }
2108
+ ],
2109
+ "default": 5000
2110
+ },
2101
2111
  "plugins": {
2102
2112
  "type": "array",
2103
2113
  "items": {