@mastra/client-js 1.35.0-alpha.1 → 1.35.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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 1.35.0-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Added the `name` and `description` fields to the `DatasetExperiment` type. The server already returned these values, so you can now read an experiment's name and description directly from `listDatasetExperiments`, `listExperiments`, and `getDatasetExperiment` — no cast needed. ([#19256](https://github.com/mastra-ai/mastra/pull/19256))
8
+
9
+ ```ts
10
+ const { experiments } = await client.listDatasetExperiments(datasetId);
11
+
12
+ for (const experiment of experiments) {
13
+ console.log(experiment.name, experiment.description);
14
+ }
15
+ ```
16
+
17
+ - Updated dependencies [[`a211d09`](https://github.com/mastra-ai/mastra/commit/a211d09185dc65a746534914cf38b67f21ee9bac), [`05db566`](https://github.com/mastra-ai/mastra/commit/05db566fcbdcbf33d0bffca0c72ec30129e2e3ca), [`8124754`](https://github.com/mastra-ai/mastra/commit/8124754ae89fbc69f8136d1df4a91904d0f84c4e)]:
18
+ - @mastra/core@1.54.0-alpha.2
19
+
3
20
  ## 1.35.0-alpha.1
4
21
 
5
22
  ### Patch 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.35.0-alpha.1"
6
+ version: "1.35.0-alpha.2"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,11 +1,6 @@
1
1
  {
2
- "version": "1.35.0-alpha.1",
2
+ "version": "1.35.0-alpha.2",
3
3
  "package": "@mastra/client-js",
4
- "exports": {
5
- "RequestContext": {
6
- "types": "dist/index.d.ts",
7
- "implementation": "dist/request-context"
8
- }
9
- },
4
+ "exports": {},
10
5
  "modules": {}
11
6
  }