@platformatic/control 2.71.1-alpha.0 → 2.73.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/index.d.ts CHANGED
@@ -65,7 +65,8 @@ declare namespace control {
65
65
  le?: number | string,
66
66
  kind?: string,
67
67
  serviceId: string,
68
- workerId?: number
68
+ workerId?: number,
69
+ dispatcher_stats_url?: string
69
70
  },
70
71
  metricName?: string,
71
72
  exemplar?: unknown
package/index.test-d.ts CHANGED
@@ -49,6 +49,7 @@ expectType<string | undefined>(metric.values[0].labels?.method)
49
49
  expectType<number | undefined>(metric.values[0].labels?.status_code)
50
50
  expectType<string | undefined>(metric.values[0].labels?.telemetry_id)
51
51
  expectType<number | undefined>(metric.values[0].labels?.workerId)
52
+ expectType<string | undefined>(metric.values[0].labels?.dispatcher_stats_url)
52
53
  expectType<string | undefined>(metric.values[0].metricName)
53
54
  expectType<unknown | undefined>(metric.values[0].exemplar)
54
55
  expectType<Promise<void>>(api.close())
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/control",
3
- "version": "2.71.1-alpha.0",
3
+ "version": "2.73.0",
4
4
  "description": "Platformatic Control",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -25,8 +25,8 @@
25
25
  "split2": "^4.2.0",
26
26
  "tsd": "^0.32.0",
27
27
  "typescript": "^5.5.4",
28
- "@platformatic/runtime": "2.71.1-alpha.0",
29
- "@platformatic/service": "2.71.1-alpha.0"
28
+ "@platformatic/runtime": "2.73.0",
29
+ "@platformatic/service": "2.73.0"
30
30
  },
31
31
  "dependencies": {
32
32
  "@fastify/error": "^4.0.0",
@@ -37,7 +37,7 @@
37
37
  "table": "^6.8.1",
38
38
  "undici": "^7.0.0",
39
39
  "ws": "^8.16.0",
40
- "@platformatic/utils": "2.71.1-alpha.0"
40
+ "@platformatic/utils": "2.73.0"
41
41
  },
42
42
  "scripts": {
43
43
  "test": "pnpm run lint && pnpm run unit && tsd",