@platformatic/service 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/config.d.ts CHANGED
@@ -224,6 +224,7 @@ export interface PlatformaticService {
224
224
  }[];
225
225
  }
226
226
  export interface OpenTelemetry {
227
+ enabled?: boolean | string;
227
228
  /**
228
229
  * The name of the service. Defaults to the folder name if not specified.
229
230
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/service",
3
- "version": "2.44.2",
3
+ "version": "2.44.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -77,14 +77,14 @@
77
77
  "rfdc": "^1.3.1",
78
78
  "semgrator": "^0.3.0",
79
79
  "undici": "^7.0.0",
80
- "@platformatic/client": "2.44.2",
81
- "@platformatic/generators": "2.44.2",
82
- "@platformatic/metrics": "2.44.2",
83
- "@platformatic/scalar-theme": "2.44.2",
84
- "@platformatic/config": "2.44.2",
85
- "@platformatic/telemetry": "2.44.2",
86
- "@platformatic/ts-compiler": "2.44.2",
87
- "@platformatic/utils": "2.44.2"
80
+ "@platformatic/client": "2.44.4",
81
+ "@platformatic/config": "2.44.4",
82
+ "@platformatic/generators": "2.44.4",
83
+ "@platformatic/metrics": "2.44.4",
84
+ "@platformatic/scalar-theme": "2.44.4",
85
+ "@platformatic/utils": "2.44.4",
86
+ "@platformatic/ts-compiler": "2.44.4",
87
+ "@platformatic/telemetry": "2.44.4"
88
88
  },
89
89
  "scripts": {
90
90
  "test": "pnpm run lint && borp -T --concurrency=1 --timeout=300000 && tsd",
package/schema.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/service/2.44.2.json",
3
- "version": "2.44.2",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/service/2.44.4.json",
3
+ "version": "2.44.4",
4
4
  "title": "Platformatic Service",
5
5
  "type": "object",
6
6
  "properties": {
@@ -701,6 +701,16 @@
701
701
  "$id": "/OpenTelemetry",
702
702
  "type": "object",
703
703
  "properties": {
704
+ "enabled": {
705
+ "anyOf": [
706
+ {
707
+ "type": "boolean"
708
+ },
709
+ {
710
+ "type": "string"
711
+ }
712
+ ]
713
+ },
704
714
  "serviceName": {
705
715
  "type": "string",
706
716
  "description": "The name of the service. Defaults to the folder name if not specified."