@mastra/client-js 0.2.0-alpha.1 → 0.10.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @mastra/client-js@0.2.0-alpha.1 build /home/runner/work/mastra/mastra/client-sdks/client-js
2
+ > @mastra/client-js@0.10.0-alpha.1 build /home/runner/work/mastra/mastra/client-sdks/client-js
3
3
  > tsup src/index.ts --format esm,cjs --dts --clean --treeshake=smallest --splitting
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,10 +10,10 @@
10
10
  ESM Build start
11
11
  CJS Build start
12
12
  CJS dist/index.cjs 41.29 KB
13
- CJS ⚡️ Build success in 1179ms
13
+ CJS ⚡️ Build success in 1290ms
14
14
  ESM dist/index.js 41.00 KB
15
- ESM ⚡️ Build success in 1188ms
15
+ ESM ⚡️ Build success in 1302ms
16
16
  DTS Build start
17
- DTS ⚡️ Build success in 13211ms
17
+ DTS ⚡️ Build success in 16990ms
18
18
  DTS dist/index.d.ts 30.61 KB
19
19
  DTS dist/index.d.cts 30.61 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 0.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 83da932: Move @mastra/core to peerdeps
8
+ - 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
9
+
10
+ ### Patch Changes
11
+
12
+ - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
13
+ - 0215b0b: Add description to vnext workflow response
14
+ - f53a6ac: Add VNextWorkflowRuns type
15
+ - ccdabdc: Remove trailing / from mastraClient baseUrl
16
+ - a6e3881: Remove non serializable options from agent stream,generate
17
+ - fddae56: Add telemetry to cliend SDK streamParams
18
+ - 23f258c: Add new list and get routes for mcp servers. Changed route make-up for more consistency with existing API routes. Lastly, added in a lot of extra detail that can be optionally passed to the mcp server per the mcp spec.
19
+ - 5063646: Accept plain obects as runtimeContext
20
+ - 2672a05: Add MCP servers and tool call execution to playground
21
+ - Updated dependencies [b3a3d63]
22
+ - Updated dependencies [344f453]
23
+ - Updated dependencies [0a3ae6d]
24
+ - Updated dependencies [95911be]
25
+ - Updated dependencies [f53a6ac]
26
+ - Updated dependencies [5eb5a99]
27
+ - Updated dependencies [7e632c5]
28
+ - Updated dependencies [1e9fbfa]
29
+ - Updated dependencies [eabdcd9]
30
+ - Updated dependencies [90be034]
31
+ - Updated dependencies [99f050a]
32
+ - Updated dependencies [d0ee3c6]
33
+ - Updated dependencies [b2ae5aa]
34
+ - Updated dependencies [23f258c]
35
+ - Updated dependencies [a7292b0]
36
+ - Updated dependencies [0dcb9f0]
37
+ - Updated dependencies [2672a05]
38
+ - @mastra/core@0.10.0
39
+
3
40
  ## 0.2.0-alpha.1
4
41
 
5
42
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/client-js",
3
- "version": "0.2.0-alpha.1",
3
+ "version": "0.10.0",
4
4
  "description": "The official TypeScript library for the Mastra Client API",
5
5
  "author": "",
6
6
  "type": "module",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "peerDependencies": {
33
33
  "zod": "^3.0.0",
34
- "@mastra/core": "^0.9.4"
34
+ "@mastra/core": "^0.10.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@babel/preset-env": "^7.26.9",
@@ -42,8 +42,8 @@
42
42
  "tsup": "^8.4.0",
43
43
  "typescript": "^5.8.2",
44
44
  "vitest": "^3.1.2",
45
- "@internal/lint": "0.0.5",
46
- "@mastra/core": "0.10.0-alpha.1"
45
+ "@internal/lint": "0.0.6",
46
+ "@mastra/core": "0.10.0"
47
47
  },
48
48
  "scripts": {
49
49
  "build": "tsup src/index.ts --format esm,cjs --dts --clean --treeshake=smallest --splitting",