@mastra/client-js 1.42.0 → 1.42.1-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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 1.42.1-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`e737014`](https://github.com/mastra-ai/mastra/commit/e737014e0fc7035759762bb5b48baef1d6c0f6a7), [`d6ce34a`](https://github.com/mastra-ai/mastra/commit/d6ce34aeceb06ddf3d595a1eed5cc74f481a46a1), [`e6f8450`](https://github.com/mastra-ai/mastra/commit/e6f845074d478527026b18d85031b23353e1d0a4)]:
8
+ - @mastra/core@1.62.0-alpha.2
9
+
10
+ ## 1.42.1-alpha.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`f95f468`](https://github.com/mastra-ai/mastra/commit/f95f468cf1e7c2b924a13826494f98b8f2ccd581)]:
15
+ - @mastra/core@1.61.1-alpha.1
16
+
17
+ ## 1.42.1-alpha.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [[`1e47b75`](https://github.com/mastra-ai/mastra/commit/1e47b7520cab4cfaa8daed52f17e2e6d14ff7539)]:
22
+ - @mastra/core@1.61.1-alpha.0
23
+
3
24
  ## 1.42.0
4
25
 
5
26
  ### Minor Changes
@@ -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.42.0"
6
+ version: "1.42.1-alpha.2"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.42.0",
2
+ "version": "1.42.1-alpha.2",
3
3
  "package": "@mastra/client-js",
4
4
  "exports": {},
5
5
  "modules": {}
@@ -1353,6 +1353,10 @@ type Shared_Type_78 = {
1353
1353
  scorerId?: (string | string[]) | undefined;
1354
1354
  /** Filter by how the score was produced */
1355
1355
  scoreSource?: string | undefined;
1356
+ /** Filter by metadata key-value pairs (exact match per key) */
1357
+ metadata?: ({
1358
+ [key: string]: unknown;
1359
+ } | null) | undefined;
1356
1360
  /** Filter by how the score was produced */
1357
1361
  source?: string | undefined;
1358
1362
  };
@@ -7132,6 +7136,9 @@ export type GetObservabilityScores_QueryParams = {
7132
7136
  scorerId?: ((string | string[]) | undefined) | undefined;
7133
7137
  /** Filter by how the score was produced */
7134
7138
  scoreSource?: (string | undefined) | undefined;
7139
+ metadata?: ((({
7140
+ [key: string]: unknown;
7141
+ } | null) | undefined) | undefined) | unknown;
7135
7142
  /** Filter by how the score was produced */
7136
7143
  source?: (string | undefined) | undefined;
7137
7144
  page?: (number | undefined) | undefined;