wattpm 2.44.2 → 2.44.4
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 +7 -7
- package/schema.json +11 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "2.44.
|
|
3
|
+
"version": "2.44.4",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"semver": "^7.7.0",
|
|
37
37
|
"split2": "^4.2.0",
|
|
38
38
|
"table": "^6.8.2",
|
|
39
|
-
"@platformatic/basic": "2.44.
|
|
40
|
-
"@platformatic/config": "2.44.
|
|
41
|
-
"@platformatic/
|
|
42
|
-
"@platformatic/
|
|
43
|
-
"@platformatic/
|
|
39
|
+
"@platformatic/basic": "2.44.4",
|
|
40
|
+
"@platformatic/config": "2.44.4",
|
|
41
|
+
"@platformatic/control": "2.44.4",
|
|
42
|
+
"@platformatic/utils": "2.44.4",
|
|
43
|
+
"@platformatic/runtime": "2.44.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"borp": "^0.19.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"neostandard": "^0.12.0",
|
|
51
51
|
"typescript": "^5.5.4",
|
|
52
52
|
"undici": "^7.0.0",
|
|
53
|
-
"@platformatic/node": "2.44.
|
|
53
|
+
"@platformatic/node": "2.44.4"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"test": "npm run lint && borp --concurrency=1 --timeout=300000",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/wattpm/2.44.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/wattpm/2.44.4.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"properties": {
|
|
@@ -1174,6 +1174,16 @@
|
|
|
1174
1174
|
"$id": "/OpenTelemetry",
|
|
1175
1175
|
"type": "object",
|
|
1176
1176
|
"properties": {
|
|
1177
|
+
"enabled": {
|
|
1178
|
+
"anyOf": [
|
|
1179
|
+
{
|
|
1180
|
+
"type": "boolean"
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"type": "string"
|
|
1184
|
+
}
|
|
1185
|
+
]
|
|
1186
|
+
},
|
|
1177
1187
|
"serviceName": {
|
|
1178
1188
|
"type": "string",
|
|
1179
1189
|
"description": "The name of the service. Defaults to the folder name if not specified."
|