wattpm 3.57.0 → 3.58.1

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 (2) hide show
  1. package/package.json +6 -6
  2. package/schema.json +20 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wattpm",
3
- "version": "3.57.0",
3
+ "version": "3.58.1",
4
4
  "description": "The Node.js Application Server",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -30,10 +30,10 @@
30
30
  "pino-pretty": "^13.0.0",
31
31
  "split2": "^4.2.0",
32
32
  "table": "^6.8.2",
33
- "@platformatic/control": "3.57.0",
34
- "@platformatic/globals": "3.57.0",
35
- "@platformatic/runtime": "3.57.0",
36
- "@platformatic/foundation": "3.57.0"
33
+ "@platformatic/control": "3.58.1",
34
+ "@platformatic/foundation": "3.58.1",
35
+ "@platformatic/globals": "3.58.1",
36
+ "@platformatic/runtime": "3.58.1"
37
37
  },
38
38
  "devDependencies": {
39
39
  "cleaner-spec-reporter": "^0.5.0",
@@ -45,7 +45,7 @@
45
45
  "neostandard": "^0.12.0",
46
46
  "typescript": "^5.5.4",
47
47
  "undici": "^7.27.2",
48
- "@platformatic/node": "3.57.0"
48
+ "@platformatic/node": "3.58.1"
49
49
  },
50
50
  "engines": {
51
51
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/wattpm/3.57.0.json",
2
+ "$id": "https://schemas.platformatic.dev/wattpm/3.58.1.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Runtime Config",
5
5
  "type": "object",
@@ -1928,7 +1928,14 @@
1928
1928
  },
1929
1929
  "exitOnUnhandledErrors": {
1930
1930
  "default": true,
1931
- "type": "boolean"
1931
+ "anyOf": [
1932
+ {
1933
+ "type": "boolean"
1934
+ },
1935
+ {
1936
+ "type": "number"
1937
+ }
1938
+ ]
1932
1939
  },
1933
1940
  "gracefulShutdown": {
1934
1941
  "type": "object",
@@ -2110,6 +2117,17 @@
2110
2117
  },
2111
2118
  "additionalProperties": false
2112
2119
  },
2120
+ "healthProbes": {
2121
+ "anyOf": [
2122
+ {
2123
+ "type": "boolean"
2124
+ },
2125
+ {
2126
+ "type": "string"
2127
+ }
2128
+ ],
2129
+ "default": true
2130
+ },
2113
2131
  "undici": {
2114
2132
  "type": "object",
2115
2133
  "properties": {