@platformatic/composer 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.
Files changed (3) hide show
  1. package/config.d.ts +1 -0
  2. package/package.json +10 -10
  3. package/schema.json +11 -1
package/config.d.ts CHANGED
@@ -604,6 +604,7 @@ export interface Tag {
604
604
  [k: string]: unknown;
605
605
  }
606
606
  export interface OpenTelemetry {
607
+ enabled?: boolean | string;
607
608
  /**
608
609
  * The name of the service. Defaults to the folder name if not specified.
609
610
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/composer",
3
- "version": "2.44.2",
3
+ "version": "2.44.4",
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.2",
35
- "@platformatic/config": "2.44.2",
36
- "@platformatic/db": "2.44.2"
34
+ "@platformatic/config": "2.44.4",
35
+ "@platformatic/db": "2.44.4",
36
+ "@platformatic/client": "2.44.4"
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/generators": "2.44.2",
71
- "@platformatic/config": "2.44.2",
72
- "@platformatic/service": "2.44.2",
73
- "@platformatic/scalar-theme": "2.44.2",
74
- "@platformatic/utils": "^2.44.2",
75
- "@platformatic/telemetry": "2.44.2"
70
+ "@platformatic/generators": "2.44.4",
71
+ "@platformatic/scalar-theme": "2.44.4",
72
+ "@platformatic/telemetry": "2.44.4",
73
+ "@platformatic/service": "2.44.4",
74
+ "@platformatic/config": "2.44.4",
75
+ "@platformatic/utils": "^2.44.4"
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.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/composer/2.44.4.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."