wattpm 3.38.1 → 3.39.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 +5 -5
- package/schema.json +21 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.39.0",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -30,9 +30,9 @@
|
|
|
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/foundation": "3.
|
|
35
|
-
"@platformatic/runtime": "3.
|
|
33
|
+
"@platformatic/control": "3.39.0",
|
|
34
|
+
"@platformatic/foundation": "3.39.0",
|
|
35
|
+
"@platformatic/runtime": "3.39.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"cleaner-spec-reporter": "^0.5.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"neostandard": "^0.12.0",
|
|
45
45
|
"typescript": "^5.5.4",
|
|
46
46
|
"undici": "^7.0.0",
|
|
47
|
-
"@platformatic/node": "3.
|
|
47
|
+
"@platformatic/node": "3.39.0"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"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.39.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Runtime Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1578,6 +1578,26 @@
|
|
|
1578
1578
|
"type": "object",
|
|
1579
1579
|
"additionalProperties": true
|
|
1580
1580
|
},
|
|
1581
|
+
"openTelemetryExporter": {
|
|
1582
|
+
"type": "object",
|
|
1583
|
+
"properties": {
|
|
1584
|
+
"protocol": {
|
|
1585
|
+
"type": "string",
|
|
1586
|
+
"enum": [
|
|
1587
|
+
"grpc",
|
|
1588
|
+
"http"
|
|
1589
|
+
]
|
|
1590
|
+
},
|
|
1591
|
+
"url": {
|
|
1592
|
+
"type": "string"
|
|
1593
|
+
}
|
|
1594
|
+
},
|
|
1595
|
+
"required": [
|
|
1596
|
+
"protocol",
|
|
1597
|
+
"url"
|
|
1598
|
+
],
|
|
1599
|
+
"additionalProperties": false
|
|
1600
|
+
},
|
|
1581
1601
|
"captureStdio": {
|
|
1582
1602
|
"type": "boolean",
|
|
1583
1603
|
"default": true
|