@platformatic/composer 2.44.1 → 2.44.3
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/config.d.ts +1 -0
- package/package.json +10 -10
- package/schema.json +11 -1
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "2.44.
|
|
3
|
+
"version": "2.44.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"typescript": "^5.5.4",
|
|
32
32
|
"why-is-node-running": "2",
|
|
33
33
|
"ws": "^8.16.0",
|
|
34
|
-
"@platformatic/client": "2.44.
|
|
35
|
-
"@platformatic/
|
|
36
|
-
"@platformatic/
|
|
34
|
+
"@platformatic/client": "2.44.3",
|
|
35
|
+
"@platformatic/db": "2.44.3",
|
|
36
|
+
"@platformatic/config": "2.44.3"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@fastify/error": "^4.0.0",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
"rfdc": "^1.3.1",
|
|
68
68
|
"semgrator": "^0.3.0",
|
|
69
69
|
"undici": "^7.0.0",
|
|
70
|
-
"@platformatic/
|
|
71
|
-
"@platformatic/
|
|
72
|
-
"@platformatic/
|
|
73
|
-
"@platformatic/
|
|
74
|
-
"@platformatic/
|
|
75
|
-
"@platformatic/
|
|
70
|
+
"@platformatic/generators": "2.44.3",
|
|
71
|
+
"@platformatic/scalar-theme": "2.44.3",
|
|
72
|
+
"@platformatic/service": "2.44.3",
|
|
73
|
+
"@platformatic/utils": "^2.44.3",
|
|
74
|
+
"@platformatic/config": "2.44.3",
|
|
75
|
+
"@platformatic/telemetry": "2.44.3"
|
|
76
76
|
},
|
|
77
77
|
"scripts": {
|
|
78
78
|
"test": "pnpm run lint && borp -T --timeout=300000 -c 1 && tsd",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/composer/2.44.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/2.44.3.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Composer",
|
|
5
5
|
"type": "object",
|
|
@@ -1284,6 +1284,16 @@
|
|
|
1284
1284
|
"$id": "/OpenTelemetry",
|
|
1285
1285
|
"type": "object",
|
|
1286
1286
|
"properties": {
|
|
1287
|
+
"enabled": {
|
|
1288
|
+
"anyOf": [
|
|
1289
|
+
{
|
|
1290
|
+
"type": "boolean"
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"type": "string"
|
|
1294
|
+
}
|
|
1295
|
+
]
|
|
1296
|
+
},
|
|
1287
1297
|
"serviceName": {
|
|
1288
1298
|
"type": "string",
|
|
1289
1299
|
"description": "The name of the service. Defaults to the folder name if not specified."
|