wattpm 3.56.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 +145 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wattpm",
3
- "version": "3.56.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.56.0",
34
- "@platformatic/foundation": "3.56.0",
35
- "@platformatic/globals": "3.56.0",
36
- "@platformatic/runtime": "3.56.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.56.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.56.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": {
@@ -2361,6 +2379,99 @@
2361
2379
  "endpoint": {
2362
2380
  "type": "string"
2363
2381
  },
2382
+ "https": {
2383
+ "type": "object",
2384
+ "properties": {
2385
+ "allowHTTP1": {
2386
+ "type": "boolean"
2387
+ },
2388
+ "key": {
2389
+ "anyOf": [
2390
+ {
2391
+ "type": "string"
2392
+ },
2393
+ {
2394
+ "type": "object",
2395
+ "properties": {
2396
+ "path": {
2397
+ "type": "string",
2398
+ "resolvePath": true
2399
+ }
2400
+ },
2401
+ "additionalProperties": false
2402
+ },
2403
+ {
2404
+ "type": "array",
2405
+ "items": {
2406
+ "anyOf": [
2407
+ {
2408
+ "type": "string"
2409
+ },
2410
+ {
2411
+ "type": "object",
2412
+ "properties": {
2413
+ "path": {
2414
+ "type": "string",
2415
+ "resolvePath": true
2416
+ }
2417
+ },
2418
+ "additionalProperties": false
2419
+ }
2420
+ ]
2421
+ }
2422
+ }
2423
+ ]
2424
+ },
2425
+ "cert": {
2426
+ "anyOf": [
2427
+ {
2428
+ "type": "string"
2429
+ },
2430
+ {
2431
+ "type": "object",
2432
+ "properties": {
2433
+ "path": {
2434
+ "type": "string",
2435
+ "resolvePath": true
2436
+ }
2437
+ },
2438
+ "additionalProperties": false
2439
+ },
2440
+ {
2441
+ "type": "array",
2442
+ "items": {
2443
+ "anyOf": [
2444
+ {
2445
+ "type": "string"
2446
+ },
2447
+ {
2448
+ "type": "object",
2449
+ "properties": {
2450
+ "path": {
2451
+ "type": "string",
2452
+ "resolvePath": true
2453
+ }
2454
+ },
2455
+ "additionalProperties": false
2456
+ }
2457
+ ]
2458
+ }
2459
+ }
2460
+ ]
2461
+ },
2462
+ "requestCert": {
2463
+ "type": "boolean"
2464
+ },
2465
+ "rejectUnauthorized": {
2466
+ "type": "boolean"
2467
+ }
2468
+ },
2469
+ "additionalProperties": false,
2470
+ "required": [
2471
+ "key",
2472
+ "cert"
2473
+ ]
2474
+ },
2364
2475
  "auth": {
2365
2476
  "type": "object",
2366
2477
  "properties": {
@@ -2676,6 +2787,22 @@
2676
2787
  "path": {
2677
2788
  "type": "string",
2678
2789
  "description": "The path to write the traces to. Only for file exporter."
2790
+ },
2791
+ "protocol": {
2792
+ "type": "string",
2793
+ "enum": [
2794
+ "http",
2795
+ "grpc"
2796
+ ],
2797
+ "description": "The OTLP transport protocol to use. Only for the otlp exporter. Defaults to http."
2798
+ },
2799
+ "transport": {
2800
+ "type": "string",
2801
+ "enum": [
2802
+ "http",
2803
+ "grpc"
2804
+ ],
2805
+ "description": "Alias for protocol. Only for the otlp exporter. Defaults to http."
2679
2806
  }
2680
2807
  }
2681
2808
  },
@@ -2712,6 +2839,22 @@
2712
2839
  "path": {
2713
2840
  "type": "string",
2714
2841
  "description": "The path to write the traces to. Only for file exporter."
2842
+ },
2843
+ "protocol": {
2844
+ "type": "string",
2845
+ "enum": [
2846
+ "http",
2847
+ "grpc"
2848
+ ],
2849
+ "description": "The OTLP transport protocol to use. Only for the otlp exporter. Defaults to http."
2850
+ },
2851
+ "transport": {
2852
+ "type": "string",
2853
+ "enum": [
2854
+ "http",
2855
+ "grpc"
2856
+ ],
2857
+ "description": "Alias for protocol. Only for the otlp exporter. Defaults to http."
2715
2858
  }
2716
2859
  }
2717
2860
  },