@mastra/client-js 1.41.0-alpha.11 → 1.41.0-alpha.13
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
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
+
## 1.41.0-alpha.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated observability trace response types to include derived span statuses. ([#21450](https://github.com/mastra-ai/mastra/pull/21450))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`c549e2f`](https://github.com/mastra-ai/mastra/commit/c549e2f40edc1cac5d9e74e82f90da22b48df084), [`c549e2f`](https://github.com/mastra-ai/mastra/commit/c549e2f40edc1cac5d9e74e82f90da22b48df084), [`2ef2f23`](https://github.com/mastra-ai/mastra/commit/2ef2f230a7aed342e7dc3b2000cd42e4c43e08a7), [`5740ec6`](https://github.com/mastra-ai/mastra/commit/5740ec60c760ffdfbfaa59d603d03b847c864e05)]:
|
|
10
|
+
- @mastra/core@1.60.0-alpha.13
|
|
11
|
+
|
|
12
|
+
## 1.41.0-alpha.12
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`6db7a5d`](https://github.com/mastra-ai/mastra/commit/6db7a5dd3dd2b6f7ef75dcd804fcffef5fa83963), [`0cdc5dc`](https://github.com/mastra-ai/mastra/commit/0cdc5dc69024957815da4f51acc4119eb4f447d7)]:
|
|
17
|
+
- @mastra/core@1.60.0-alpha.12
|
|
18
|
+
|
|
3
19
|
## 1.41.0-alpha.11
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/dist/docs/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: mastra-client-js
|
|
|
3
3
|
description: Documentation for @mastra/client-js. Use when working with @mastra/client-js APIs, configuration, or implementation.
|
|
4
4
|
metadata:
|
|
5
5
|
package: "@mastra/client-js"
|
|
6
|
-
version: "1.41.0-alpha.
|
|
6
|
+
version: "1.41.0-alpha.13"
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## When to use
|
|
@@ -6638,7 +6638,11 @@ export type GetObservabilityTracesTraceId_PathParams = {
|
|
|
6638
6638
|
/** Unique trace identifier */
|
|
6639
6639
|
traceId: string;
|
|
6640
6640
|
};
|
|
6641
|
-
export type GetObservabilityTracesTraceId_Response =
|
|
6641
|
+
export type GetObservabilityTracesTraceId_Response = {
|
|
6642
|
+
/** Unique trace identifier */
|
|
6643
|
+
traceId: string;
|
|
6644
|
+
spans: Shared_Type_74[];
|
|
6645
|
+
};
|
|
6642
6646
|
export type GetObservabilityTracesTraceId_Request = Simplify<(GetObservabilityTracesTraceId_PathParams extends never ? {} : {
|
|
6643
6647
|
params: GetObservabilityTracesTraceId_PathParams;
|
|
6644
6648
|
}) & (never extends never ? {} : {} extends never ? {
|