@mastra/server 1.21.0-alpha.1 → 1.21.0-alpha.2
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/CHANGELOG.md +7 -0
- package/dist/_types/@internal_core/dist/index.d.ts +12 -12
- package/dist/{chunk-FGXFUFWK.cjs → chunk-JMOCVI6W.cjs} +29 -29
- package/dist/{chunk-FGXFUFWK.cjs.map → chunk-JMOCVI6W.cjs.map} +1 -1
- package/dist/{chunk-WO7BJJIB.js → chunk-M7MFCJT4.js} +4 -4
- package/dist/chunk-M7MFCJT4.js.map +1 -0
- package/dist/{chunk-OBR4SMSZ.js → chunk-PKONZNTB.js} +3 -3
- package/dist/{chunk-OBR4SMSZ.js.map → chunk-PKONZNTB.js.map} +1 -1
- package/dist/{chunk-GLB2TK6A.cjs → chunk-VUW7PJZC.cjs} +4 -4
- package/dist/chunk-VUW7PJZC.cjs.map +1 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/server/handlers/observability-new-endpoints.cjs +27 -27
- package/dist/server/handlers/observability-new-endpoints.d.ts +16 -16
- package/dist/server/handlers/observability-new-endpoints.js +1 -1
- package/dist/server/handlers/observability.cjs +32 -32
- package/dist/server/handlers/observability.js +2 -2
- package/dist/server/handlers.cjs +2 -2
- package/dist/server/handlers.js +1 -1
- package/dist/server/server-adapter/index.cjs +31 -31
- package/dist/server/server-adapter/index.js +2 -2
- package/dist/server/server-adapter/routes/observability.d.ts +8 -8
- package/package.json +5 -5
- package/dist/chunk-GLB2TK6A.cjs.map +0 -1
- package/dist/chunk-WO7BJJIB.js.map +0 -1
|
@@ -95,7 +95,6 @@ export declare const LIST_SCORES: import("../server-adapter").ServerRoute<Record
|
|
|
95
95
|
};
|
|
96
96
|
scores: {
|
|
97
97
|
timestamp: Date;
|
|
98
|
-
traceId: string;
|
|
99
98
|
scorerId: string;
|
|
100
99
|
score: number;
|
|
101
100
|
scoreTraceId?: string | null | undefined;
|
|
@@ -122,6 +121,7 @@ export declare const LIST_SCORES: import("../server-adapter").ServerRoute<Record
|
|
|
122
121
|
serviceName?: string | null | undefined;
|
|
123
122
|
scope?: Record<string, unknown> | null | undefined;
|
|
124
123
|
experimentId?: string | null | undefined;
|
|
124
|
+
traceId?: string | null | undefined;
|
|
125
125
|
spanId?: string | null | undefined;
|
|
126
126
|
scorerName?: string | null | undefined;
|
|
127
127
|
scorerVersion?: string | null | undefined;
|
|
@@ -164,7 +164,7 @@ export declare const LIST_SCORES: import("../server-adapter").ServerRoute<Record
|
|
|
164
164
|
scope: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
165
165
|
experimentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
166
166
|
timestamp: z.ZodDate;
|
|
167
|
-
traceId: z.ZodString
|
|
167
|
+
traceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
168
168
|
spanId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
169
169
|
scorerId: z.ZodString;
|
|
170
170
|
scorerName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -177,9 +177,9 @@ export declare const LIST_SCORES: import("../server-adapter").ServerRoute<Record
|
|
|
177
177
|
}, z.core.$strip>>, string, `/${string}`>;
|
|
178
178
|
export declare const CREATE_SCORE: import("../server-adapter").ServerRoute<{
|
|
179
179
|
score: {
|
|
180
|
-
traceId: string;
|
|
181
180
|
scorerId: string;
|
|
182
181
|
score: number;
|
|
182
|
+
traceId?: string | null | undefined;
|
|
183
183
|
spanId?: string | null | undefined;
|
|
184
184
|
source?: string | null | undefined;
|
|
185
185
|
metadata?: Record<string, unknown> | null | undefined;
|
|
@@ -215,7 +215,7 @@ export declare const CREATE_SCORE: import("../server-adapter").ServerRoute<{
|
|
|
215
215
|
success: boolean;
|
|
216
216
|
}, "json", import("../server-adapter").RouteSchemas<undefined, undefined, z.ZodObject<{
|
|
217
217
|
score: z.ZodObject<{
|
|
218
|
-
traceId: z.ZodString
|
|
218
|
+
traceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
219
219
|
spanId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
220
220
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
221
221
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -642,7 +642,6 @@ export declare const LIST_FEEDBACK: import("../server-adapter").ServerRoute<Reco
|
|
|
642
642
|
};
|
|
643
643
|
feedback: {
|
|
644
644
|
timestamp: Date;
|
|
645
|
-
traceId: string;
|
|
646
645
|
feedbackType: string;
|
|
647
646
|
value: string | number;
|
|
648
647
|
sourceId?: string | null | undefined;
|
|
@@ -669,6 +668,7 @@ export declare const LIST_FEEDBACK: import("../server-adapter").ServerRoute<Reco
|
|
|
669
668
|
serviceName?: string | null | undefined;
|
|
670
669
|
scope?: Record<string, unknown> | null | undefined;
|
|
671
670
|
experimentId?: string | null | undefined;
|
|
671
|
+
traceId?: string | null | undefined;
|
|
672
672
|
spanId?: string | null | undefined;
|
|
673
673
|
feedbackSource?: string | null | undefined;
|
|
674
674
|
source?: string | null | undefined;
|
|
@@ -710,7 +710,7 @@ export declare const LIST_FEEDBACK: import("../server-adapter").ServerRoute<Reco
|
|
|
710
710
|
scope: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
711
711
|
experimentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
712
712
|
timestamp: z.ZodDate;
|
|
713
|
-
traceId: z.ZodString
|
|
713
|
+
traceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
714
714
|
spanId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
715
715
|
feedbackSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
716
716
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -723,8 +723,8 @@ export declare const LIST_FEEDBACK: import("../server-adapter").ServerRoute<Reco
|
|
|
723
723
|
export declare const CREATE_FEEDBACK: import("../server-adapter").ServerRoute<{
|
|
724
724
|
feedback: {
|
|
725
725
|
value: string | number;
|
|
726
|
-
traceId: string;
|
|
727
726
|
feedbackType: string;
|
|
727
|
+
traceId?: string | null | undefined;
|
|
728
728
|
spanId?: string | null | undefined;
|
|
729
729
|
source?: string | null | undefined;
|
|
730
730
|
metadata?: Record<string, unknown> | null | undefined;
|
|
@@ -760,7 +760,7 @@ export declare const CREATE_FEEDBACK: import("../server-adapter").ServerRoute<{
|
|
|
760
760
|
}, "json", import("../server-adapter").RouteSchemas<undefined, undefined, z.ZodObject<{
|
|
761
761
|
feedback: z.ZodObject<{
|
|
762
762
|
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
|
|
763
|
-
traceId: z.ZodString
|
|
763
|
+
traceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
764
764
|
spanId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
765
765
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
766
766
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1744,7 +1744,6 @@ export declare const NEW_ROUTES: {
|
|
|
1744
1744
|
};
|
|
1745
1745
|
scores: {
|
|
1746
1746
|
timestamp: Date;
|
|
1747
|
-
traceId: string;
|
|
1748
1747
|
scorerId: string;
|
|
1749
1748
|
score: number;
|
|
1750
1749
|
scoreTraceId?: string | null | undefined;
|
|
@@ -1771,6 +1770,7 @@ export declare const NEW_ROUTES: {
|
|
|
1771
1770
|
serviceName?: string | null | undefined;
|
|
1772
1771
|
scope?: Record<string, unknown> | null | undefined;
|
|
1773
1772
|
experimentId?: string | null | undefined;
|
|
1773
|
+
traceId?: string | null | undefined;
|
|
1774
1774
|
spanId?: string | null | undefined;
|
|
1775
1775
|
scorerName?: string | null | undefined;
|
|
1776
1776
|
scorerVersion?: string | null | undefined;
|
|
@@ -1813,7 +1813,7 @@ export declare const NEW_ROUTES: {
|
|
|
1813
1813
|
scope: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1814
1814
|
experimentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1815
1815
|
timestamp: z.ZodDate;
|
|
1816
|
-
traceId: z.ZodString
|
|
1816
|
+
traceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1817
1817
|
spanId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1818
1818
|
scorerId: z.ZodString;
|
|
1819
1819
|
scorerName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1826,9 +1826,9 @@ export declare const NEW_ROUTES: {
|
|
|
1826
1826
|
}, z.core.$strip>>, string, `/${string}`>;
|
|
1827
1827
|
CREATE_SCORE: import("../server-adapter").ServerRoute<{
|
|
1828
1828
|
score: {
|
|
1829
|
-
traceId: string;
|
|
1830
1829
|
scorerId: string;
|
|
1831
1830
|
score: number;
|
|
1831
|
+
traceId?: string | null | undefined;
|
|
1832
1832
|
spanId?: string | null | undefined;
|
|
1833
1833
|
source?: string | null | undefined;
|
|
1834
1834
|
metadata?: Record<string, unknown> | null | undefined;
|
|
@@ -1864,7 +1864,7 @@ export declare const NEW_ROUTES: {
|
|
|
1864
1864
|
success: boolean;
|
|
1865
1865
|
}, "json", import("../server-adapter").RouteSchemas<undefined, undefined, z.ZodObject<{
|
|
1866
1866
|
score: z.ZodObject<{
|
|
1867
|
-
traceId: z.ZodString
|
|
1867
|
+
traceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1868
1868
|
spanId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1869
1869
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1870
1870
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -2291,7 +2291,6 @@ export declare const NEW_ROUTES: {
|
|
|
2291
2291
|
};
|
|
2292
2292
|
feedback: {
|
|
2293
2293
|
timestamp: Date;
|
|
2294
|
-
traceId: string;
|
|
2295
2294
|
feedbackType: string;
|
|
2296
2295
|
value: string | number;
|
|
2297
2296
|
sourceId?: string | null | undefined;
|
|
@@ -2318,6 +2317,7 @@ export declare const NEW_ROUTES: {
|
|
|
2318
2317
|
serviceName?: string | null | undefined;
|
|
2319
2318
|
scope?: Record<string, unknown> | null | undefined;
|
|
2320
2319
|
experimentId?: string | null | undefined;
|
|
2320
|
+
traceId?: string | null | undefined;
|
|
2321
2321
|
spanId?: string | null | undefined;
|
|
2322
2322
|
feedbackSource?: string | null | undefined;
|
|
2323
2323
|
source?: string | null | undefined;
|
|
@@ -2359,7 +2359,7 @@ export declare const NEW_ROUTES: {
|
|
|
2359
2359
|
scope: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2360
2360
|
experimentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2361
2361
|
timestamp: z.ZodDate;
|
|
2362
|
-
traceId: z.ZodString
|
|
2362
|
+
traceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2363
2363
|
spanId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2364
2364
|
feedbackSource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2365
2365
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2372,8 +2372,8 @@ export declare const NEW_ROUTES: {
|
|
|
2372
2372
|
CREATE_FEEDBACK: import("../server-adapter").ServerRoute<{
|
|
2373
2373
|
feedback: {
|
|
2374
2374
|
value: string | number;
|
|
2375
|
-
traceId: string;
|
|
2376
2375
|
feedbackType: string;
|
|
2376
|
+
traceId?: string | null | undefined;
|
|
2377
2377
|
spanId?: string | null | undefined;
|
|
2378
2378
|
source?: string | null | undefined;
|
|
2379
2379
|
metadata?: Record<string, unknown> | null | undefined;
|
|
@@ -2409,7 +2409,7 @@ export declare const NEW_ROUTES: {
|
|
|
2409
2409
|
}, "json", import("../server-adapter").RouteSchemas<undefined, undefined, z.ZodObject<{
|
|
2410
2410
|
feedback: z.ZodObject<{
|
|
2411
2411
|
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
|
|
2412
|
-
traceId: z.ZodString
|
|
2412
|
+
traceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2413
2413
|
spanId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2414
2414
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2415
2415
|
metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { CREATE_FEEDBACK, CREATE_SCORE, GET_ENTITY_NAMES, GET_ENTITY_TYPES, GET_ENVIRONMENTS, GET_FEEDBACK_AGGREGATE, GET_FEEDBACK_BREAKDOWN, GET_FEEDBACK_PERCENTILES, GET_FEEDBACK_TIME_SERIES, GET_METRIC_AGGREGATE, GET_METRIC_BREAKDOWN, GET_METRIC_LABEL_KEYS, GET_METRIC_LABEL_VALUES, GET_METRIC_NAMES, GET_METRIC_PERCENTILES, GET_METRIC_TIME_SERIES, GET_SCORE_AGGREGATE, GET_SCORE_BREAKDOWN, GET_SCORE_PERCENTILES, GET_SCORE_TIME_SERIES, GET_SERVICE_NAMES, GET_TAGS, LIST_FEEDBACK, LIST_LOGS, LIST_SCORES, NEW_ROUTES } from '../../chunk-
|
|
1
|
+
export { CREATE_FEEDBACK, CREATE_SCORE, GET_ENTITY_NAMES, GET_ENTITY_TYPES, GET_ENVIRONMENTS, GET_FEEDBACK_AGGREGATE, GET_FEEDBACK_BREAKDOWN, GET_FEEDBACK_PERCENTILES, GET_FEEDBACK_TIME_SERIES, GET_METRIC_AGGREGATE, GET_METRIC_BREAKDOWN, GET_METRIC_LABEL_KEYS, GET_METRIC_LABEL_VALUES, GET_METRIC_NAMES, GET_METRIC_PERCENTILES, GET_METRIC_TIME_SERIES, GET_SCORE_AGGREGATE, GET_SCORE_BREAKDOWN, GET_SCORE_PERCENTILES, GET_SCORE_TIME_SERIES, GET_SERVICE_NAMES, GET_TAGS, LIST_FEEDBACK, LIST_LOGS, LIST_SCORES, NEW_ROUTES } from '../../chunk-M7MFCJT4.js';
|
|
2
2
|
//# sourceMappingURL=observability-new-endpoints.js.map
|
|
3
3
|
//# sourceMappingURL=observability-new-endpoints.js.map
|
|
@@ -1,129 +1,129 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var
|
|
3
|
+
var chunkJMOCVI6W_cjs = require('../../chunk-JMOCVI6W.cjs');
|
|
4
|
+
var chunkVUW7PJZC_cjs = require('../../chunk-VUW7PJZC.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Object.defineProperty(exports, "GET_TRACE_ROUTE", {
|
|
9
9
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
10
|
+
get: function () { return chunkJMOCVI6W_cjs.GET_TRACE_ROUTE; }
|
|
11
11
|
});
|
|
12
12
|
Object.defineProperty(exports, "LIST_SCORES_BY_SPAN_ROUTE", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkJMOCVI6W_cjs.LIST_SCORES_BY_SPAN_ROUTE; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "LIST_TRACES_ROUTE", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkJMOCVI6W_cjs.LIST_TRACES_ROUTE; }
|
|
19
19
|
});
|
|
20
20
|
Object.defineProperty(exports, "SCORE_TRACES_ROUTE", {
|
|
21
21
|
enumerable: true,
|
|
22
|
-
get: function () { return
|
|
22
|
+
get: function () { return chunkJMOCVI6W_cjs.SCORE_TRACES_ROUTE; }
|
|
23
23
|
});
|
|
24
24
|
Object.defineProperty(exports, "CREATE_FEEDBACK", {
|
|
25
25
|
enumerable: true,
|
|
26
|
-
get: function () { return
|
|
26
|
+
get: function () { return chunkVUW7PJZC_cjs.CREATE_FEEDBACK; }
|
|
27
27
|
});
|
|
28
28
|
Object.defineProperty(exports, "CREATE_SCORE", {
|
|
29
29
|
enumerable: true,
|
|
30
|
-
get: function () { return
|
|
30
|
+
get: function () { return chunkVUW7PJZC_cjs.CREATE_SCORE; }
|
|
31
31
|
});
|
|
32
32
|
Object.defineProperty(exports, "GET_ENTITY_NAMES", {
|
|
33
33
|
enumerable: true,
|
|
34
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_ENTITY_NAMES; }
|
|
35
35
|
});
|
|
36
36
|
Object.defineProperty(exports, "GET_ENTITY_TYPES", {
|
|
37
37
|
enumerable: true,
|
|
38
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_ENTITY_TYPES; }
|
|
39
39
|
});
|
|
40
40
|
Object.defineProperty(exports, "GET_ENVIRONMENTS", {
|
|
41
41
|
enumerable: true,
|
|
42
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_ENVIRONMENTS; }
|
|
43
43
|
});
|
|
44
44
|
Object.defineProperty(exports, "GET_FEEDBACK_AGGREGATE", {
|
|
45
45
|
enumerable: true,
|
|
46
|
-
get: function () { return
|
|
46
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_FEEDBACK_AGGREGATE; }
|
|
47
47
|
});
|
|
48
48
|
Object.defineProperty(exports, "GET_FEEDBACK_BREAKDOWN", {
|
|
49
49
|
enumerable: true,
|
|
50
|
-
get: function () { return
|
|
50
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_FEEDBACK_BREAKDOWN; }
|
|
51
51
|
});
|
|
52
52
|
Object.defineProperty(exports, "GET_FEEDBACK_PERCENTILES", {
|
|
53
53
|
enumerable: true,
|
|
54
|
-
get: function () { return
|
|
54
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_FEEDBACK_PERCENTILES; }
|
|
55
55
|
});
|
|
56
56
|
Object.defineProperty(exports, "GET_FEEDBACK_TIME_SERIES", {
|
|
57
57
|
enumerable: true,
|
|
58
|
-
get: function () { return
|
|
58
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_FEEDBACK_TIME_SERIES; }
|
|
59
59
|
});
|
|
60
60
|
Object.defineProperty(exports, "GET_METRIC_AGGREGATE", {
|
|
61
61
|
enumerable: true,
|
|
62
|
-
get: function () { return
|
|
62
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_METRIC_AGGREGATE; }
|
|
63
63
|
});
|
|
64
64
|
Object.defineProperty(exports, "GET_METRIC_BREAKDOWN", {
|
|
65
65
|
enumerable: true,
|
|
66
|
-
get: function () { return
|
|
66
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_METRIC_BREAKDOWN; }
|
|
67
67
|
});
|
|
68
68
|
Object.defineProperty(exports, "GET_METRIC_LABEL_KEYS", {
|
|
69
69
|
enumerable: true,
|
|
70
|
-
get: function () { return
|
|
70
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_METRIC_LABEL_KEYS; }
|
|
71
71
|
});
|
|
72
72
|
Object.defineProperty(exports, "GET_METRIC_LABEL_VALUES", {
|
|
73
73
|
enumerable: true,
|
|
74
|
-
get: function () { return
|
|
74
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_METRIC_LABEL_VALUES; }
|
|
75
75
|
});
|
|
76
76
|
Object.defineProperty(exports, "GET_METRIC_NAMES", {
|
|
77
77
|
enumerable: true,
|
|
78
|
-
get: function () { return
|
|
78
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_METRIC_NAMES; }
|
|
79
79
|
});
|
|
80
80
|
Object.defineProperty(exports, "GET_METRIC_PERCENTILES", {
|
|
81
81
|
enumerable: true,
|
|
82
|
-
get: function () { return
|
|
82
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_METRIC_PERCENTILES; }
|
|
83
83
|
});
|
|
84
84
|
Object.defineProperty(exports, "GET_METRIC_TIME_SERIES", {
|
|
85
85
|
enumerable: true,
|
|
86
|
-
get: function () { return
|
|
86
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_METRIC_TIME_SERIES; }
|
|
87
87
|
});
|
|
88
88
|
Object.defineProperty(exports, "GET_SCORE_AGGREGATE", {
|
|
89
89
|
enumerable: true,
|
|
90
|
-
get: function () { return
|
|
90
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_SCORE_AGGREGATE; }
|
|
91
91
|
});
|
|
92
92
|
Object.defineProperty(exports, "GET_SCORE_BREAKDOWN", {
|
|
93
93
|
enumerable: true,
|
|
94
|
-
get: function () { return
|
|
94
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_SCORE_BREAKDOWN; }
|
|
95
95
|
});
|
|
96
96
|
Object.defineProperty(exports, "GET_SCORE_PERCENTILES", {
|
|
97
97
|
enumerable: true,
|
|
98
|
-
get: function () { return
|
|
98
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_SCORE_PERCENTILES; }
|
|
99
99
|
});
|
|
100
100
|
Object.defineProperty(exports, "GET_SCORE_TIME_SERIES", {
|
|
101
101
|
enumerable: true,
|
|
102
|
-
get: function () { return
|
|
102
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_SCORE_TIME_SERIES; }
|
|
103
103
|
});
|
|
104
104
|
Object.defineProperty(exports, "GET_SERVICE_NAMES", {
|
|
105
105
|
enumerable: true,
|
|
106
|
-
get: function () { return
|
|
106
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_SERVICE_NAMES; }
|
|
107
107
|
});
|
|
108
108
|
Object.defineProperty(exports, "GET_TAGS", {
|
|
109
109
|
enumerable: true,
|
|
110
|
-
get: function () { return
|
|
110
|
+
get: function () { return chunkVUW7PJZC_cjs.GET_TAGS; }
|
|
111
111
|
});
|
|
112
112
|
Object.defineProperty(exports, "LIST_FEEDBACK", {
|
|
113
113
|
enumerable: true,
|
|
114
|
-
get: function () { return
|
|
114
|
+
get: function () { return chunkVUW7PJZC_cjs.LIST_FEEDBACK; }
|
|
115
115
|
});
|
|
116
116
|
Object.defineProperty(exports, "LIST_LOGS", {
|
|
117
117
|
enumerable: true,
|
|
118
|
-
get: function () { return
|
|
118
|
+
get: function () { return chunkVUW7PJZC_cjs.LIST_LOGS; }
|
|
119
119
|
});
|
|
120
120
|
Object.defineProperty(exports, "LIST_SCORES", {
|
|
121
121
|
enumerable: true,
|
|
122
|
-
get: function () { return
|
|
122
|
+
get: function () { return chunkVUW7PJZC_cjs.LIST_SCORES; }
|
|
123
123
|
});
|
|
124
124
|
Object.defineProperty(exports, "NEW_ROUTES", {
|
|
125
125
|
enumerable: true,
|
|
126
|
-
get: function () { return
|
|
126
|
+
get: function () { return chunkVUW7PJZC_cjs.NEW_ROUTES; }
|
|
127
127
|
});
|
|
128
128
|
//# sourceMappingURL=observability.cjs.map
|
|
129
129
|
//# sourceMappingURL=observability.cjs.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { GET_TRACE_ROUTE, LIST_SCORES_BY_SPAN_ROUTE, LIST_TRACES_ROUTE, SCORE_TRACES_ROUTE } from '../../chunk-
|
|
2
|
-
export { CREATE_FEEDBACK, CREATE_SCORE, GET_ENTITY_NAMES, GET_ENTITY_TYPES, GET_ENVIRONMENTS, GET_FEEDBACK_AGGREGATE, GET_FEEDBACK_BREAKDOWN, GET_FEEDBACK_PERCENTILES, GET_FEEDBACK_TIME_SERIES, GET_METRIC_AGGREGATE, GET_METRIC_BREAKDOWN, GET_METRIC_LABEL_KEYS, GET_METRIC_LABEL_VALUES, GET_METRIC_NAMES, GET_METRIC_PERCENTILES, GET_METRIC_TIME_SERIES, GET_SCORE_AGGREGATE, GET_SCORE_BREAKDOWN, GET_SCORE_PERCENTILES, GET_SCORE_TIME_SERIES, GET_SERVICE_NAMES, GET_TAGS, LIST_FEEDBACK, LIST_LOGS, LIST_SCORES, NEW_ROUTES } from '../../chunk-
|
|
1
|
+
export { GET_TRACE_ROUTE, LIST_SCORES_BY_SPAN_ROUTE, LIST_TRACES_ROUTE, SCORE_TRACES_ROUTE } from '../../chunk-PKONZNTB.js';
|
|
2
|
+
export { CREATE_FEEDBACK, CREATE_SCORE, GET_ENTITY_NAMES, GET_ENTITY_TYPES, GET_ENVIRONMENTS, GET_FEEDBACK_AGGREGATE, GET_FEEDBACK_BREAKDOWN, GET_FEEDBACK_PERCENTILES, GET_FEEDBACK_TIME_SERIES, GET_METRIC_AGGREGATE, GET_METRIC_BREAKDOWN, GET_METRIC_LABEL_KEYS, GET_METRIC_LABEL_VALUES, GET_METRIC_NAMES, GET_METRIC_PERCENTILES, GET_METRIC_TIME_SERIES, GET_SCORE_AGGREGATE, GET_SCORE_BREAKDOWN, GET_SCORE_PERCENTILES, GET_SCORE_TIME_SERIES, GET_SERVICE_NAMES, GET_TAGS, LIST_FEEDBACK, LIST_LOGS, LIST_SCORES, NEW_ROUTES } from '../../chunk-M7MFCJT4.js';
|
|
3
3
|
//# sourceMappingURL=observability.js.map
|
|
4
4
|
//# sourceMappingURL=observability.js.map
|
package/dist/server/handlers.cjs
CHANGED
|
@@ -6,7 +6,7 @@ var chunkG5IQN5ZG_cjs = require('../chunk-G5IQN5ZG.cjs');
|
|
|
6
6
|
var chunkH6ZLN6EU_cjs = require('../chunk-H6ZLN6EU.cjs');
|
|
7
7
|
var chunkIRRJW5EA_cjs = require('../chunk-IRRJW5EA.cjs');
|
|
8
8
|
var chunk7G44ZSFS_cjs = require('../chunk-7G44ZSFS.cjs');
|
|
9
|
-
var
|
|
9
|
+
var chunkJMOCVI6W_cjs = require('../chunk-JMOCVI6W.cjs');
|
|
10
10
|
var chunkFURWD3DL_cjs = require('../chunk-FURWD3DL.cjs');
|
|
11
11
|
var chunkXKKTZVZX_cjs = require('../chunk-XKKTZVZX.cjs');
|
|
12
12
|
var chunkKAWEDYGS_cjs = require('../chunk-KAWEDYGS.cjs');
|
|
@@ -45,7 +45,7 @@ Object.defineProperty(exports, "scores", {
|
|
|
45
45
|
});
|
|
46
46
|
Object.defineProperty(exports, "observability", {
|
|
47
47
|
enumerable: true,
|
|
48
|
-
get: function () { return
|
|
48
|
+
get: function () { return chunkJMOCVI6W_cjs.observability_exports; }
|
|
49
49
|
});
|
|
50
50
|
Object.defineProperty(exports, "conversations", {
|
|
51
51
|
enumerable: true,
|
package/dist/server/handlers.js
CHANGED
|
@@ -4,7 +4,7 @@ export { tools_exports as tools } from '../chunk-VCA6BSYU.js';
|
|
|
4
4
|
export { vector_exports as vector } from '../chunk-B5KNWY2P.js';
|
|
5
5
|
export { responses_exports as responses } from '../chunk-NCW7IFFR.js';
|
|
6
6
|
export { scores_exports as scores } from '../chunk-VHUB2TYN.js';
|
|
7
|
-
export { observability_exports as observability } from '../chunk-
|
|
7
|
+
export { observability_exports as observability } from '../chunk-PKONZNTB.js';
|
|
8
8
|
export { conversations_exports as conversations } from '../chunk-ZA3NGM3L.js';
|
|
9
9
|
export { logs_exports as logs } from '../chunk-SNGR4M5I.js';
|
|
10
10
|
export { mcp_exports as mcp } from '../chunk-UKYIFRF3.js';
|
|
@@ -21,8 +21,8 @@ var chunkG5IQN5ZG_cjs = require('../../chunk-G5IQN5ZG.cjs');
|
|
|
21
21
|
var chunkH6ZLN6EU_cjs = require('../../chunk-H6ZLN6EU.cjs');
|
|
22
22
|
var chunkIRRJW5EA_cjs = require('../../chunk-IRRJW5EA.cjs');
|
|
23
23
|
var chunk7G44ZSFS_cjs = require('../../chunk-7G44ZSFS.cjs');
|
|
24
|
-
var
|
|
25
|
-
var
|
|
24
|
+
var chunkJMOCVI6W_cjs = require('../../chunk-JMOCVI6W.cjs');
|
|
25
|
+
var chunkVUW7PJZC_cjs = require('../../chunk-VUW7PJZC.cjs');
|
|
26
26
|
var chunkFURWD3DL_cjs = require('../../chunk-FURWD3DL.cjs');
|
|
27
27
|
var chunkXKKTZVZX_cjs = require('../../chunk-XKKTZVZX.cjs');
|
|
28
28
|
var chunkKAWEDYGS_cjs = require('../../chunk-KAWEDYGS.cjs');
|
|
@@ -254,36 +254,36 @@ var MEMORY_ROUTES = [
|
|
|
254
254
|
// src/server/server-adapter/routes/observability.ts
|
|
255
255
|
var OBSERVABILITY_ROUTES = [
|
|
256
256
|
// Legacy
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
257
|
+
chunkJMOCVI6W_cjs.LIST_TRACES_ROUTE,
|
|
258
|
+
chunkJMOCVI6W_cjs.GET_TRACE_ROUTE,
|
|
259
|
+
chunkJMOCVI6W_cjs.SCORE_TRACES_ROUTE,
|
|
260
|
+
chunkJMOCVI6W_cjs.LIST_SCORES_BY_SPAN_ROUTE,
|
|
261
261
|
// New (17 routes)
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
262
|
+
chunkVUW7PJZC_cjs.LIST_LOGS,
|
|
263
|
+
chunkVUW7PJZC_cjs.LIST_SCORES,
|
|
264
|
+
chunkVUW7PJZC_cjs.CREATE_SCORE,
|
|
265
|
+
chunkVUW7PJZC_cjs.GET_SCORE_AGGREGATE,
|
|
266
|
+
chunkVUW7PJZC_cjs.GET_SCORE_BREAKDOWN,
|
|
267
|
+
chunkVUW7PJZC_cjs.GET_SCORE_TIME_SERIES,
|
|
268
|
+
chunkVUW7PJZC_cjs.GET_SCORE_PERCENTILES,
|
|
269
|
+
chunkVUW7PJZC_cjs.LIST_FEEDBACK,
|
|
270
|
+
chunkVUW7PJZC_cjs.CREATE_FEEDBACK,
|
|
271
|
+
chunkVUW7PJZC_cjs.GET_FEEDBACK_AGGREGATE,
|
|
272
|
+
chunkVUW7PJZC_cjs.GET_FEEDBACK_BREAKDOWN,
|
|
273
|
+
chunkVUW7PJZC_cjs.GET_FEEDBACK_TIME_SERIES,
|
|
274
|
+
chunkVUW7PJZC_cjs.GET_FEEDBACK_PERCENTILES,
|
|
275
|
+
chunkVUW7PJZC_cjs.GET_METRIC_AGGREGATE,
|
|
276
|
+
chunkVUW7PJZC_cjs.GET_METRIC_BREAKDOWN,
|
|
277
|
+
chunkVUW7PJZC_cjs.GET_METRIC_TIME_SERIES,
|
|
278
|
+
chunkVUW7PJZC_cjs.GET_METRIC_PERCENTILES,
|
|
279
|
+
chunkVUW7PJZC_cjs.GET_METRIC_NAMES,
|
|
280
|
+
chunkVUW7PJZC_cjs.GET_METRIC_LABEL_KEYS,
|
|
281
|
+
chunkVUW7PJZC_cjs.GET_METRIC_LABEL_VALUES,
|
|
282
|
+
chunkVUW7PJZC_cjs.GET_ENTITY_TYPES,
|
|
283
|
+
chunkVUW7PJZC_cjs.GET_ENTITY_NAMES,
|
|
284
|
+
chunkVUW7PJZC_cjs.GET_SERVICE_NAMES,
|
|
285
|
+
chunkVUW7PJZC_cjs.GET_ENVIRONMENTS,
|
|
286
|
+
chunkVUW7PJZC_cjs.GET_TAGS
|
|
287
287
|
];
|
|
288
288
|
|
|
289
289
|
// src/server/server-adapter/routes/processor-providers.ts
|
|
@@ -19,8 +19,8 @@ import { EXECUTE_AGENT_TOOL_ROUTE, GET_AGENT_TOOL_ROUTE, LIST_TOOLS_ROUTE, GET_T
|
|
|
19
19
|
import { UPSERT_VECTORS_ROUTE, CREATE_INDEX_ROUTE, QUERY_VECTORS_ROUTE, LIST_INDEXES_ROUTE, DESCRIBE_INDEX_ROUTE, DELETE_INDEX_ROUTE, LIST_VECTORS_ROUTE, LIST_EMBEDDERS_ROUTE } from '../../chunk-B5KNWY2P.js';
|
|
20
20
|
import { CREATE_RESPONSE_ROUTE, GET_RESPONSE_ROUTE, DELETE_RESPONSE_ROUTE } from '../../chunk-NCW7IFFR.js';
|
|
21
21
|
import { LIST_SCORERS_ROUTE, GET_SCORER_ROUTE, LIST_SCORES_BY_RUN_ID_ROUTE, LIST_SCORES_BY_SCORER_ID_ROUTE, LIST_SCORES_BY_ENTITY_ID_ROUTE, SAVE_SCORE_ROUTE } from '../../chunk-VHUB2TYN.js';
|
|
22
|
-
import { LIST_TRACES_ROUTE, GET_TRACE_ROUTE, SCORE_TRACES_ROUTE, LIST_SCORES_BY_SPAN_ROUTE } from '../../chunk-
|
|
23
|
-
import { LIST_LOGS, LIST_SCORES, CREATE_SCORE, GET_SCORE_AGGREGATE, GET_SCORE_BREAKDOWN, GET_SCORE_TIME_SERIES, GET_SCORE_PERCENTILES, LIST_FEEDBACK, CREATE_FEEDBACK, GET_FEEDBACK_AGGREGATE, GET_FEEDBACK_BREAKDOWN, GET_FEEDBACK_TIME_SERIES, GET_FEEDBACK_PERCENTILES, GET_METRIC_AGGREGATE, GET_METRIC_BREAKDOWN, GET_METRIC_TIME_SERIES, GET_METRIC_PERCENTILES, GET_METRIC_NAMES, GET_METRIC_LABEL_KEYS, GET_METRIC_LABEL_VALUES, GET_ENTITY_TYPES, GET_ENTITY_NAMES, GET_SERVICE_NAMES, GET_ENVIRONMENTS, GET_TAGS } from '../../chunk-
|
|
22
|
+
import { LIST_TRACES_ROUTE, GET_TRACE_ROUTE, SCORE_TRACES_ROUTE, LIST_SCORES_BY_SPAN_ROUTE } from '../../chunk-PKONZNTB.js';
|
|
23
|
+
import { LIST_LOGS, LIST_SCORES, CREATE_SCORE, GET_SCORE_AGGREGATE, GET_SCORE_BREAKDOWN, GET_SCORE_TIME_SERIES, GET_SCORE_PERCENTILES, LIST_FEEDBACK, CREATE_FEEDBACK, GET_FEEDBACK_AGGREGATE, GET_FEEDBACK_BREAKDOWN, GET_FEEDBACK_TIME_SERIES, GET_FEEDBACK_PERCENTILES, GET_METRIC_AGGREGATE, GET_METRIC_BREAKDOWN, GET_METRIC_TIME_SERIES, GET_METRIC_PERCENTILES, GET_METRIC_NAMES, GET_METRIC_LABEL_KEYS, GET_METRIC_LABEL_VALUES, GET_ENTITY_TYPES, GET_ENTITY_NAMES, GET_SERVICE_NAMES, GET_ENVIRONMENTS, GET_TAGS } from '../../chunk-M7MFCJT4.js';
|
|
24
24
|
import { CREATE_CONVERSATION_ROUTE, GET_CONVERSATION_ROUTE, GET_CONVERSATION_ITEMS_ROUTE, DELETE_CONVERSATION_ROUTE } from '../../chunk-ZA3NGM3L.js';
|
|
25
25
|
import { LIST_LOG_TRANSPORTS_ROUTE, LIST_LOGS_ROUTE, LIST_LOGS_BY_RUN_ID_ROUTE } from '../../chunk-SNGR4M5I.js';
|
|
26
26
|
import { LIST_MCP_SERVERS_ROUTE, GET_MCP_SERVER_DETAIL_ROUTE, LIST_MCP_SERVER_TOOLS_ROUTE, GET_MCP_SERVER_TOOL_DETAIL_ROUTE, EXECUTE_MCP_SERVER_TOOL_ROUTE, MCP_HTTP_TRANSPORT_ROUTE, MCP_SSE_TRANSPORT_ROUTE, MCP_SSE_MESSAGES_ROUTE } from '../../chunk-UKYIFRF3.js';
|
|
@@ -398,7 +398,6 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
398
398
|
};
|
|
399
399
|
scores: {
|
|
400
400
|
timestamp: Date;
|
|
401
|
-
traceId: string;
|
|
402
401
|
scorerId: string;
|
|
403
402
|
score: number;
|
|
404
403
|
scoreTraceId?: string | null | undefined;
|
|
@@ -425,6 +424,7 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
425
424
|
serviceName?: string | null | undefined;
|
|
426
425
|
scope?: Record<string, unknown> | null | undefined;
|
|
427
426
|
experimentId?: string | null | undefined;
|
|
427
|
+
traceId?: string | null | undefined;
|
|
428
428
|
spanId?: string | null | undefined;
|
|
429
429
|
scorerName?: string | null | undefined;
|
|
430
430
|
scorerVersion?: string | null | undefined;
|
|
@@ -467,7 +467,7 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
467
467
|
scope: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
468
468
|
experimentId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
469
469
|
timestamp: import("zod").ZodDate;
|
|
470
|
-
traceId: import("zod").ZodString
|
|
470
|
+
traceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
471
471
|
spanId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
472
472
|
scorerId: import("zod").ZodString;
|
|
473
473
|
scorerName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -479,9 +479,9 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
479
479
|
}, import("zod/v4/core").$strip>>;
|
|
480
480
|
}, import("zod/v4/core").$strip>>, string, `/${string}`>, import(".").ServerRoute<{
|
|
481
481
|
score: {
|
|
482
|
-
traceId: string;
|
|
483
482
|
scorerId: string;
|
|
484
483
|
score: number;
|
|
484
|
+
traceId?: string | null | undefined;
|
|
485
485
|
spanId?: string | null | undefined;
|
|
486
486
|
source?: string | null | undefined;
|
|
487
487
|
metadata?: Record<string, unknown> | null | undefined;
|
|
@@ -517,7 +517,7 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
517
517
|
success: boolean;
|
|
518
518
|
}, "json", import(".").RouteSchemas<undefined, undefined, import("zod").ZodObject<{
|
|
519
519
|
score: import("zod").ZodObject<{
|
|
520
|
-
traceId: import("zod").ZodString
|
|
520
|
+
traceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
521
521
|
spanId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
522
522
|
source: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
523
523
|
metadata: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
@@ -939,7 +939,6 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
939
939
|
};
|
|
940
940
|
feedback: {
|
|
941
941
|
timestamp: Date;
|
|
942
|
-
traceId: string;
|
|
943
942
|
feedbackType: string;
|
|
944
943
|
value: string | number;
|
|
945
944
|
sourceId?: string | null | undefined;
|
|
@@ -966,6 +965,7 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
966
965
|
serviceName?: string | null | undefined;
|
|
967
966
|
scope?: Record<string, unknown> | null | undefined;
|
|
968
967
|
experimentId?: string | null | undefined;
|
|
968
|
+
traceId?: string | null | undefined;
|
|
969
969
|
spanId?: string | null | undefined;
|
|
970
970
|
feedbackSource?: string | null | undefined;
|
|
971
971
|
source?: string | null | undefined;
|
|
@@ -1007,7 +1007,7 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
1007
1007
|
scope: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
1008
1008
|
experimentId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1009
1009
|
timestamp: import("zod").ZodDate;
|
|
1010
|
-
traceId: import("zod").ZodString
|
|
1010
|
+
traceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1011
1011
|
spanId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1012
1012
|
feedbackSource: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1013
1013
|
source: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -1019,8 +1019,8 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
1019
1019
|
}, import("zod/v4/core").$strip>>, string, `/${string}`>, import(".").ServerRoute<{
|
|
1020
1020
|
feedback: {
|
|
1021
1021
|
value: string | number;
|
|
1022
|
-
traceId: string;
|
|
1023
1022
|
feedbackType: string;
|
|
1023
|
+
traceId?: string | null | undefined;
|
|
1024
1024
|
spanId?: string | null | undefined;
|
|
1025
1025
|
source?: string | null | undefined;
|
|
1026
1026
|
metadata?: Record<string, unknown> | null | undefined;
|
|
@@ -1056,7 +1056,7 @@ export declare const OBSERVABILITY_ROUTES: readonly [import(".").ServerRoute<Rec
|
|
|
1056
1056
|
}, "json", import(".").RouteSchemas<undefined, undefined, import("zod").ZodObject<{
|
|
1057
1057
|
feedback: import("zod").ZodObject<{
|
|
1058
1058
|
value: import("zod").ZodUnion<readonly [import("zod").ZodNumber, import("zod").ZodString]>;
|
|
1059
|
-
traceId: import("zod").ZodString
|
|
1059
|
+
traceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1060
1060
|
spanId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1061
1061
|
source: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1062
1062
|
metadata: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/server",
|
|
3
|
-
"version": "1.21.0-alpha.
|
|
3
|
+
"version": "1.21.0-alpha.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -103,13 +103,13 @@
|
|
|
103
103
|
"vitest": "4.0.18",
|
|
104
104
|
"zod": "^4.3.6",
|
|
105
105
|
"@internal/core": "0.0.0",
|
|
106
|
-
"@internal/storage-test-utils": "0.0.73",
|
|
107
106
|
"@internal/lint": "0.0.77",
|
|
107
|
+
"@internal/storage-test-utils": "0.0.73",
|
|
108
108
|
"@internal/test-utils": "0.0.13",
|
|
109
|
+
"@mastra/agent-builder": "1.0.22-alpha.0",
|
|
109
110
|
"@internal/types-builder": "0.0.52",
|
|
110
|
-
"@mastra/
|
|
111
|
-
"@mastra/
|
|
112
|
-
"@mastra/agent-builder": "1.0.22-alpha.0"
|
|
111
|
+
"@mastra/core": "1.21.0-alpha.2",
|
|
112
|
+
"@mastra/schema-compat": "1.2.7"
|
|
113
113
|
},
|
|
114
114
|
"homepage": "https://mastra.ai",
|
|
115
115
|
"repository": {
|