wattpm 3.56.0 → 3.57.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/package.json +6 -6
- package/schema.json +126 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.57.0",
|
|
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.
|
|
34
|
-
"@platformatic/
|
|
35
|
-
"@platformatic/
|
|
36
|
-
"@platformatic/
|
|
33
|
+
"@platformatic/control": "3.57.0",
|
|
34
|
+
"@platformatic/globals": "3.57.0",
|
|
35
|
+
"@platformatic/runtime": "3.57.0",
|
|
36
|
+
"@platformatic/foundation": "3.57.0"
|
|
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.
|
|
48
|
+
"@platformatic/node": "3.57.0"
|
|
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.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/wattpm/3.57.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Runtime Config",
|
|
5
5
|
"type": "object",
|
|
@@ -2361,6 +2361,99 @@
|
|
|
2361
2361
|
"endpoint": {
|
|
2362
2362
|
"type": "string"
|
|
2363
2363
|
},
|
|
2364
|
+
"https": {
|
|
2365
|
+
"type": "object",
|
|
2366
|
+
"properties": {
|
|
2367
|
+
"allowHTTP1": {
|
|
2368
|
+
"type": "boolean"
|
|
2369
|
+
},
|
|
2370
|
+
"key": {
|
|
2371
|
+
"anyOf": [
|
|
2372
|
+
{
|
|
2373
|
+
"type": "string"
|
|
2374
|
+
},
|
|
2375
|
+
{
|
|
2376
|
+
"type": "object",
|
|
2377
|
+
"properties": {
|
|
2378
|
+
"path": {
|
|
2379
|
+
"type": "string",
|
|
2380
|
+
"resolvePath": true
|
|
2381
|
+
}
|
|
2382
|
+
},
|
|
2383
|
+
"additionalProperties": false
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
"type": "array",
|
|
2387
|
+
"items": {
|
|
2388
|
+
"anyOf": [
|
|
2389
|
+
{
|
|
2390
|
+
"type": "string"
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
"type": "object",
|
|
2394
|
+
"properties": {
|
|
2395
|
+
"path": {
|
|
2396
|
+
"type": "string",
|
|
2397
|
+
"resolvePath": true
|
|
2398
|
+
}
|
|
2399
|
+
},
|
|
2400
|
+
"additionalProperties": false
|
|
2401
|
+
}
|
|
2402
|
+
]
|
|
2403
|
+
}
|
|
2404
|
+
}
|
|
2405
|
+
]
|
|
2406
|
+
},
|
|
2407
|
+
"cert": {
|
|
2408
|
+
"anyOf": [
|
|
2409
|
+
{
|
|
2410
|
+
"type": "string"
|
|
2411
|
+
},
|
|
2412
|
+
{
|
|
2413
|
+
"type": "object",
|
|
2414
|
+
"properties": {
|
|
2415
|
+
"path": {
|
|
2416
|
+
"type": "string",
|
|
2417
|
+
"resolvePath": true
|
|
2418
|
+
}
|
|
2419
|
+
},
|
|
2420
|
+
"additionalProperties": false
|
|
2421
|
+
},
|
|
2422
|
+
{
|
|
2423
|
+
"type": "array",
|
|
2424
|
+
"items": {
|
|
2425
|
+
"anyOf": [
|
|
2426
|
+
{
|
|
2427
|
+
"type": "string"
|
|
2428
|
+
},
|
|
2429
|
+
{
|
|
2430
|
+
"type": "object",
|
|
2431
|
+
"properties": {
|
|
2432
|
+
"path": {
|
|
2433
|
+
"type": "string",
|
|
2434
|
+
"resolvePath": true
|
|
2435
|
+
}
|
|
2436
|
+
},
|
|
2437
|
+
"additionalProperties": false
|
|
2438
|
+
}
|
|
2439
|
+
]
|
|
2440
|
+
}
|
|
2441
|
+
}
|
|
2442
|
+
]
|
|
2443
|
+
},
|
|
2444
|
+
"requestCert": {
|
|
2445
|
+
"type": "boolean"
|
|
2446
|
+
},
|
|
2447
|
+
"rejectUnauthorized": {
|
|
2448
|
+
"type": "boolean"
|
|
2449
|
+
}
|
|
2450
|
+
},
|
|
2451
|
+
"additionalProperties": false,
|
|
2452
|
+
"required": [
|
|
2453
|
+
"key",
|
|
2454
|
+
"cert"
|
|
2455
|
+
]
|
|
2456
|
+
},
|
|
2364
2457
|
"auth": {
|
|
2365
2458
|
"type": "object",
|
|
2366
2459
|
"properties": {
|
|
@@ -2676,6 +2769,22 @@
|
|
|
2676
2769
|
"path": {
|
|
2677
2770
|
"type": "string",
|
|
2678
2771
|
"description": "The path to write the traces to. Only for file exporter."
|
|
2772
|
+
},
|
|
2773
|
+
"protocol": {
|
|
2774
|
+
"type": "string",
|
|
2775
|
+
"enum": [
|
|
2776
|
+
"http",
|
|
2777
|
+
"grpc"
|
|
2778
|
+
],
|
|
2779
|
+
"description": "The OTLP transport protocol to use. Only for the otlp exporter. Defaults to http."
|
|
2780
|
+
},
|
|
2781
|
+
"transport": {
|
|
2782
|
+
"type": "string",
|
|
2783
|
+
"enum": [
|
|
2784
|
+
"http",
|
|
2785
|
+
"grpc"
|
|
2786
|
+
],
|
|
2787
|
+
"description": "Alias for protocol. Only for the otlp exporter. Defaults to http."
|
|
2679
2788
|
}
|
|
2680
2789
|
}
|
|
2681
2790
|
},
|
|
@@ -2712,6 +2821,22 @@
|
|
|
2712
2821
|
"path": {
|
|
2713
2822
|
"type": "string",
|
|
2714
2823
|
"description": "The path to write the traces to. Only for file exporter."
|
|
2824
|
+
},
|
|
2825
|
+
"protocol": {
|
|
2826
|
+
"type": "string",
|
|
2827
|
+
"enum": [
|
|
2828
|
+
"http",
|
|
2829
|
+
"grpc"
|
|
2830
|
+
],
|
|
2831
|
+
"description": "The OTLP transport protocol to use. Only for the otlp exporter. Defaults to http."
|
|
2832
|
+
},
|
|
2833
|
+
"transport": {
|
|
2834
|
+
"type": "string",
|
|
2835
|
+
"enum": [
|
|
2836
|
+
"http",
|
|
2837
|
+
"grpc"
|
|
2838
|
+
],
|
|
2839
|
+
"description": "Alias for protocol. Only for the otlp exporter. Defaults to http."
|
|
2715
2840
|
}
|
|
2716
2841
|
}
|
|
2717
2842
|
},
|