@mastra/client-js 0.0.0-switch-to-core-20250424015131 → 0.0.0-taofeeq-fix-tool-call-showing-after-message-20250806184630

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.
Files changed (84) hide show
  1. package/.turbo/turbo-build.log +18 -0
  2. package/CHANGELOG.md +1356 -2
  3. package/LICENSE.md +11 -42
  4. package/README.md +2 -1
  5. package/dist/adapters/agui.d.ts +23 -0
  6. package/dist/adapters/agui.d.ts.map +1 -0
  7. package/dist/client.d.ts +265 -0
  8. package/dist/client.d.ts.map +1 -0
  9. package/dist/example.d.ts +2 -0
  10. package/dist/example.d.ts.map +1 -0
  11. package/dist/index.cjs +1785 -82
  12. package/dist/index.cjs.map +1 -0
  13. package/dist/index.d.ts +4 -585
  14. package/dist/index.d.ts.map +1 -0
  15. package/dist/index.js +1785 -86
  16. package/dist/index.js.map +1 -0
  17. package/dist/resources/a2a.d.ts +44 -0
  18. package/dist/resources/a2a.d.ts.map +1 -0
  19. package/dist/resources/agent.d.ts +112 -0
  20. package/dist/resources/agent.d.ts.map +1 -0
  21. package/dist/resources/base.d.ts +13 -0
  22. package/dist/resources/base.d.ts.map +1 -0
  23. package/dist/resources/index.d.ts +11 -0
  24. package/dist/resources/index.d.ts.map +1 -0
  25. package/dist/resources/legacy-workflow.d.ts +87 -0
  26. package/dist/resources/legacy-workflow.d.ts.map +1 -0
  27. package/dist/resources/mcp-tool.d.ts +27 -0
  28. package/dist/resources/mcp-tool.d.ts.map +1 -0
  29. package/dist/resources/memory-thread.d.ts +53 -0
  30. package/dist/resources/memory-thread.d.ts.map +1 -0
  31. package/dist/resources/network-memory-thread.d.ts +47 -0
  32. package/dist/resources/network-memory-thread.d.ts.map +1 -0
  33. package/dist/resources/network.d.ts +30 -0
  34. package/dist/resources/network.d.ts.map +1 -0
  35. package/dist/resources/tool.d.ts +23 -0
  36. package/dist/resources/tool.d.ts.map +1 -0
  37. package/dist/resources/vNextNetwork.d.ts +42 -0
  38. package/dist/resources/vNextNetwork.d.ts.map +1 -0
  39. package/dist/resources/vector.d.ts +48 -0
  40. package/dist/resources/vector.d.ts.map +1 -0
  41. package/dist/resources/workflow.d.ts +154 -0
  42. package/dist/resources/workflow.d.ts.map +1 -0
  43. package/dist/types.d.ts +422 -0
  44. package/dist/types.d.ts.map +1 -0
  45. package/dist/utils/index.d.ts +3 -0
  46. package/dist/utils/index.d.ts.map +1 -0
  47. package/dist/utils/process-client-tools.d.ts +3 -0
  48. package/dist/utils/process-client-tools.d.ts.map +1 -0
  49. package/dist/utils/zod-to-json-schema.d.ts +105 -0
  50. package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
  51. package/integration-tests/agui-adapter.test.ts +122 -0
  52. package/integration-tests/package.json +18 -0
  53. package/integration-tests/src/mastra/index.ts +35 -0
  54. package/integration-tests/vitest.config.ts +9 -0
  55. package/package.json +32 -19
  56. package/src/adapters/agui.test.ts +322 -0
  57. package/src/adapters/agui.ts +257 -0
  58. package/src/client.ts +414 -5
  59. package/src/example.ts +59 -29
  60. package/src/index.test.ts +526 -10
  61. package/src/index.ts +1 -0
  62. package/src/resources/a2a.ts +88 -0
  63. package/src/resources/agent.ts +629 -49
  64. package/src/resources/base.ts +8 -2
  65. package/src/resources/index.ts +4 -1
  66. package/src/resources/legacy-workflow.ts +242 -0
  67. package/src/resources/mcp-tool.ts +48 -0
  68. package/src/resources/memory-thread.test.ts +285 -0
  69. package/src/resources/memory-thread.ts +49 -3
  70. package/src/resources/network-memory-thread.test.ts +269 -0
  71. package/src/resources/network-memory-thread.ts +81 -0
  72. package/src/resources/network.ts +11 -17
  73. package/src/resources/tool.ts +16 -3
  74. package/src/resources/vNextNetwork.ts +194 -0
  75. package/src/resources/workflow.ts +289 -94
  76. package/src/types.ts +298 -20
  77. package/src/utils/index.ts +11 -0
  78. package/src/utils/process-client-tools.ts +32 -0
  79. package/src/utils/zod-to-json-schema.ts +10 -0
  80. package/src/v2-messages.test.ts +180 -0
  81. package/tsconfig.build.json +9 -0
  82. package/tsconfig.json +1 -1
  83. package/tsup.config.ts +17 -0
  84. package/dist/index.d.cts +0 -585
package/CHANGELOG.md CHANGED
@@ -1,15 +1,1369 @@
1
1
  # @mastra/client-js
2
2
 
3
- ## 0.0.0-switch-to-core-20250424015131
3
+ ## 0.0.0-taofeeq-fix-tool-call-showing-after-message-20250806184630
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - Updated dependencies [8388649]
8
+ - Updated dependencies [2fff911]
9
+ - @mastra/core@0.0.0-taofeeq-fix-tool-call-showing-after-message-20250806184630
10
+
11
+ ## 0.10.20
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [cd0042e]
16
+ - @mastra/core@0.13.1
17
+
18
+ ## 0.10.20-alpha.0
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [cd0042e]
23
+ - @mastra/core@0.13.1-alpha.0
24
+
25
+ ## 0.10.19
26
+
27
+ ### Patch Changes
28
+
29
+ - 42dfc48: Fix tool messages structure in agui adapter
30
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
31
+ - Updated dependencies [cb36de0]
32
+ - Updated dependencies [d0496e6]
33
+ - Updated dependencies [a82b851]
34
+ - Updated dependencies [ea0c5f2]
35
+ - Updated dependencies [41a0a0e]
36
+ - Updated dependencies [2871020]
37
+ - Updated dependencies [94f4812]
38
+ - Updated dependencies [e202b82]
39
+ - Updated dependencies [e00f6a0]
40
+ - Updated dependencies [4a406ec]
41
+ - Updated dependencies [b0e43c1]
42
+ - Updated dependencies [5d377e5]
43
+ - Updated dependencies [1fb812e]
44
+ - Updated dependencies [35c5798]
45
+ - @mastra/core@0.13.0
46
+
47
+ ## 0.10.19-alpha.3
48
+
49
+ ### Patch Changes
50
+
51
+ - Updated dependencies [d0496e6]
52
+ - @mastra/core@0.13.0-alpha.3
53
+
54
+ ## 0.10.19-alpha.2
55
+
56
+ ### Patch Changes
57
+
58
+ - 42dfc48: Fix tool messages structure in agui adapter
59
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
60
+ - Updated dependencies [cb36de0]
61
+ - Updated dependencies [a82b851]
62
+ - Updated dependencies [41a0a0e]
63
+ - Updated dependencies [2871020]
64
+ - Updated dependencies [4a406ec]
65
+ - Updated dependencies [5d377e5]
66
+ - @mastra/core@0.13.0-alpha.2
67
+
68
+ ## 0.10.19-alpha.1
69
+
70
+ ### Patch Changes
71
+
72
+ - Updated dependencies [ea0c5f2]
73
+ - Updated dependencies [b0e43c1]
74
+ - Updated dependencies [1fb812e]
75
+ - Updated dependencies [35c5798]
76
+ - @mastra/core@0.13.0-alpha.1
77
+
78
+ ## 0.10.19-alpha.0
79
+
80
+ ### Patch Changes
81
+
82
+ - Updated dependencies [94f4812]
83
+ - Updated dependencies [e202b82]
84
+ - Updated dependencies [e00f6a0]
85
+ - @mastra/core@0.12.2-alpha.0
86
+
87
+ ## 0.10.18
88
+
89
+ ### Patch Changes
90
+
91
+ - 6690a16: dependencies updates:
92
+ - Updated dependency [`@ag-ui/client@^0.0.35` ↗︎](https://www.npmjs.com/package/@ag-ui/client/v/0.0.35) (from `^0.0.27`, in `dependencies`)
93
+ - Updated dependencies [33dcb07]
94
+ - Updated dependencies [d0d9500]
95
+ - Updated dependencies [d30b1a0]
96
+ - Updated dependencies [bff87f7]
97
+ - Updated dependencies [b4a8df0]
98
+ - @mastra/core@0.12.1
99
+
100
+ ## 0.10.18-alpha.1
101
+
102
+ ### Patch Changes
103
+
104
+ - Updated dependencies [d0d9500]
105
+ - @mastra/core@0.12.1-alpha.1
106
+
107
+ ## 0.10.18-alpha.0
108
+
109
+ ### Patch Changes
110
+
111
+ - 6690a16: dependencies updates:
112
+ - Updated dependency [`@ag-ui/client@^0.0.35` ↗︎](https://www.npmjs.com/package/@ag-ui/client/v/0.0.35) (from `^0.0.27`, in `dependencies`)
113
+ - Updated dependencies [33dcb07]
114
+ - Updated dependencies [d30b1a0]
115
+ - Updated dependencies [bff87f7]
116
+ - Updated dependencies [b4a8df0]
117
+ - @mastra/core@0.12.1-alpha.0
118
+
119
+ ## 0.10.17
120
+
121
+ ### Patch Changes
122
+
123
+ - aa2715b: process stream response error handling
124
+ - 6bd354c: Should not send content type if body instance of FormData
125
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
126
+ - b641ba3: fix: save score params
127
+ - 9802f42: Added types and tests to ensure client-js and hono endpoints can save memory messages where the input is either a v1 or v2 mastra message
128
+ - 1ac8f6b: deduplicate message
129
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
130
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
131
+ - Single message ID as string: `deleteMessages('msg-123')`
132
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
133
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
134
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
135
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
136
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
137
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
138
+ - Updates thread timestamps when messages are deleted
139
+ - Added comprehensive test coverage and documentation
140
+
141
+ - Updated dependencies [510e2c8]
142
+ - Updated dependencies [2f72fb2]
143
+ - Updated dependencies [27cc97a]
144
+ - Updated dependencies [3f89307]
145
+ - Updated dependencies [9eda7d4]
146
+ - Updated dependencies [9d49408]
147
+ - Updated dependencies [41daa63]
148
+ - Updated dependencies [ad0a58b]
149
+ - Updated dependencies [254a36b]
150
+ - Updated dependencies [2ecf658]
151
+ - Updated dependencies [7a7754f]
152
+ - Updated dependencies [fc92d80]
153
+ - Updated dependencies [e0f73c6]
154
+ - Updated dependencies [0b89602]
155
+ - Updated dependencies [4d37822]
156
+ - Updated dependencies [23a6a7c]
157
+ - Updated dependencies [cda801d]
158
+ - Updated dependencies [a77c823]
159
+ - Updated dependencies [ff9c125]
160
+ - Updated dependencies [09bca64]
161
+ - Updated dependencies [b8efbb9]
162
+ - Updated dependencies [71466e7]
163
+ - Updated dependencies [0c99fbe]
164
+ - @mastra/core@0.12.0
165
+
166
+ ## 0.10.17-alpha.5
167
+
168
+ ### Patch Changes
169
+
170
+ - @mastra/core@0.12.0-alpha.5
171
+
172
+ ## 0.10.17-alpha.4
173
+
174
+ ### Patch Changes
175
+
176
+ - Updated dependencies [ad0a58b]
177
+ - @mastra/core@0.12.0-alpha.4
178
+
179
+ ## 0.10.17-alpha.3
180
+
181
+ ### Patch Changes
182
+
183
+ - 9802f42: Added types and tests to ensure client-js and hono endpoints can save memory messages where the input is either a v1 or v2 mastra message
184
+ - 1ac8f6b: deduplicate message
185
+ - @mastra/core@0.12.0-alpha.3
186
+
187
+ ## 0.10.17-alpha.2
188
+
189
+ ### Patch Changes
190
+
191
+ - aa2715b: process stream response error handling
192
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
193
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
194
+ - Single message ID as string: `deleteMessages('msg-123')`
195
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
196
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
197
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
198
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
199
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
200
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
201
+ - Updates thread timestamps when messages are deleted
202
+ - Added comprehensive test coverage and documentation
203
+
204
+ - Updated dependencies [27cc97a]
205
+ - Updated dependencies [41daa63]
206
+ - Updated dependencies [254a36b]
207
+ - Updated dependencies [0b89602]
208
+ - Updated dependencies [4d37822]
209
+ - Updated dependencies [ff9c125]
210
+ - Updated dependencies [b8efbb9]
211
+ - Updated dependencies [71466e7]
212
+ - Updated dependencies [0c99fbe]
213
+ - @mastra/core@0.12.0-alpha.2
214
+
215
+ ## 0.10.17-alpha.1
216
+
217
+ ### Patch Changes
218
+
219
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
220
+ - Updated dependencies [e0f73c6]
221
+ - Updated dependencies [cda801d]
222
+ - Updated dependencies [a77c823]
223
+ - @mastra/core@0.12.0-alpha.1
224
+
225
+ ## 0.10.17-alpha.0
226
+
227
+ ### Patch Changes
228
+
229
+ - 6bd354c: Should not send content type if body instance of FormData
230
+ - b641ba3: fix: save score params
231
+ - Updated dependencies [510e2c8]
232
+ - Updated dependencies [2f72fb2]
233
+ - Updated dependencies [3f89307]
234
+ - Updated dependencies [9eda7d4]
235
+ - Updated dependencies [9d49408]
236
+ - Updated dependencies [2ecf658]
237
+ - Updated dependencies [7a7754f]
238
+ - Updated dependencies [fc92d80]
239
+ - Updated dependencies [23a6a7c]
240
+ - Updated dependencies [09bca64]
241
+ - @mastra/core@0.12.0-alpha.0
242
+
243
+ ## 0.10.16
244
+
245
+ ### Patch Changes
246
+
247
+ - @mastra/core@0.11.1
248
+
249
+ ## 0.10.15
250
+
251
+ ### Patch Changes
252
+
253
+ - 4832752: Do not set content-type header when making POST/PUT requests without a body
254
+ - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
255
+ - 2affc57: Fix output type of network loop
256
+ - 032cb66: ClientJS
257
+ - 7827943: Handle streaming large data
258
+ - 65e3395: Add Scores playground-ui and add scorer hooks
259
+ - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
260
+ - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
261
+ - Updated dependencies [f248d53]
262
+ - Updated dependencies [2affc57]
263
+ - Updated dependencies [66e13e3]
264
+ - Updated dependencies [edd9482]
265
+ - Updated dependencies [18344d7]
266
+ - Updated dependencies [9d372c2]
267
+ - Updated dependencies [40c2525]
268
+ - Updated dependencies [e473f27]
269
+ - Updated dependencies [032cb66]
270
+ - Updated dependencies [703ac71]
271
+ - Updated dependencies [a723d69]
272
+ - Updated dependencies [7827943]
273
+ - Updated dependencies [5889a31]
274
+ - Updated dependencies [bf1e7e7]
275
+ - Updated dependencies [65e3395]
276
+ - Updated dependencies [4933192]
277
+ - Updated dependencies [d1c77a4]
278
+ - Updated dependencies [bea9dd1]
279
+ - Updated dependencies [dcd4802]
280
+ - Updated dependencies [cbddd18]
281
+ - Updated dependencies [7ba91fa]
282
+ - @mastra/core@0.11.0
283
+
284
+ ## 0.10.15-alpha.3
285
+
286
+ ### Patch Changes
287
+
288
+ - @mastra/core@0.11.0-alpha.3
289
+
290
+ ## 0.10.15-alpha.2
291
+
292
+ ### Patch Changes
293
+
294
+ - 4832752: Do not set content-type header when making POST/PUT requests without a body
295
+ - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
296
+ - 2affc57: Fix output type of network loop
297
+ - 032cb66: ClientJS
298
+ - 65e3395: Add Scores playground-ui and add scorer hooks
299
+ - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
300
+ - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
301
+ - Updated dependencies [f248d53]
302
+ - Updated dependencies [2affc57]
303
+ - Updated dependencies [66e13e3]
304
+ - Updated dependencies [edd9482]
305
+ - Updated dependencies [18344d7]
306
+ - Updated dependencies [9d372c2]
307
+ - Updated dependencies [40c2525]
308
+ - Updated dependencies [e473f27]
309
+ - Updated dependencies [032cb66]
310
+ - Updated dependencies [703ac71]
311
+ - Updated dependencies [a723d69]
312
+ - Updated dependencies [5889a31]
313
+ - Updated dependencies [65e3395]
314
+ - Updated dependencies [4933192]
315
+ - Updated dependencies [d1c77a4]
316
+ - Updated dependencies [bea9dd1]
317
+ - Updated dependencies [dcd4802]
318
+ - Updated dependencies [7ba91fa]
319
+ - @mastra/core@0.11.0-alpha.2
320
+
321
+ ## 0.10.15-alpha.1
322
+
323
+ ### Patch Changes
324
+
325
+ - @mastra/core@0.11.0-alpha.1
326
+
327
+ ## 0.10.15-alpha.0
328
+
329
+ ### Patch Changes
330
+
331
+ - 7827943: Handle streaming large data
332
+ - Updated dependencies [7827943]
333
+ - Updated dependencies [bf1e7e7]
334
+ - Updated dependencies [cbddd18]
335
+ - @mastra/core@0.11.0-alpha.0
336
+
337
+ ## 0.10.14
338
+
339
+ ### Patch Changes
340
+
341
+ - 31f9f6b: Replace crypto randomUUID in client SDK"
342
+ - 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
343
+ - 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
344
+ - Updated dependencies [0b56518]
345
+ - Updated dependencies [db5cc15]
346
+ - Updated dependencies [2ba5b76]
347
+ - Updated dependencies [5237998]
348
+ - Updated dependencies [c3a30de]
349
+ - Updated dependencies [37c1acd]
350
+ - Updated dependencies [1aa60b1]
351
+ - Updated dependencies [89ec9d4]
352
+ - Updated dependencies [cf3a184]
353
+ - Updated dependencies [d6bfd60]
354
+ - Updated dependencies [626b0f4]
355
+ - Updated dependencies [c22a91f]
356
+ - Updated dependencies [f7403ab]
357
+ - Updated dependencies [6c89d7f]
358
+ - @mastra/core@0.10.15
359
+
360
+ ## 0.10.14-alpha.1
361
+
362
+ ### Patch Changes
363
+
364
+ - Updated dependencies [0b56518]
365
+ - Updated dependencies [2ba5b76]
366
+ - Updated dependencies [c3a30de]
367
+ - Updated dependencies [cf3a184]
368
+ - Updated dependencies [d6bfd60]
369
+ - @mastra/core@0.10.15-alpha.1
370
+
371
+ ## 0.10.14-alpha.0
372
+
373
+ ### Patch Changes
374
+
375
+ - 31f9f6b: Replace crypto randomUUID in client SDK"
376
+ - 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
377
+ - 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
378
+ - Updated dependencies [db5cc15]
379
+ - Updated dependencies [5237998]
380
+ - Updated dependencies [37c1acd]
381
+ - Updated dependencies [1aa60b1]
382
+ - Updated dependencies [89ec9d4]
383
+ - Updated dependencies [626b0f4]
384
+ - Updated dependencies [c22a91f]
385
+ - Updated dependencies [f7403ab]
386
+ - Updated dependencies [6c89d7f]
387
+ - @mastra/core@0.10.15-alpha.0
388
+
389
+ ## 0.10.13
390
+
391
+ ### Patch Changes
392
+
393
+ - @mastra/core@0.10.14
394
+
395
+ ## 0.10.11
396
+
397
+ ### Patch Changes
398
+
399
+ - 9468be4: Fix error on agent generate while using antropic
400
+ - 44731a4: Client SDK - Expose processTextStream util for agent textstream with structured output
401
+ - Updated dependencies [b4a9811]
402
+ - Updated dependencies [4d5583d]
403
+ - @mastra/core@0.10.12
404
+
405
+ ## 0.10.11-alpha.1
406
+
407
+ ### Patch Changes
408
+
409
+ - Updated dependencies [4d5583d]
410
+ - @mastra/core@0.10.12-alpha.1
411
+
412
+ ## 0.10.11-alpha.0
413
+
414
+ ### Patch Changes
415
+
416
+ - 9468be4: Fix error on agent generate while using antropic
417
+ - 44731a4: Client SDK - Expose processTextStream util for agent textstream with structured output
418
+ - Updated dependencies [b4a9811]
419
+ - @mastra/core@0.10.12-alpha.0
420
+
421
+ ## 0.10.10
422
+
423
+ ### Patch Changes
424
+
425
+ - 18da791: Add abortSignal to client SDK options
426
+ - Updated dependencies [2873c7f]
427
+ - Updated dependencies [1c1c6a1]
428
+ - Updated dependencies [f8ce2cc]
429
+ - Updated dependencies [8c846b6]
430
+ - Updated dependencies [c7bbf1e]
431
+ - Updated dependencies [8722d53]
432
+ - Updated dependencies [565cc0c]
433
+ - Updated dependencies [b790fd1]
434
+ - Updated dependencies [132027f]
435
+ - Updated dependencies [0c85311]
436
+ - Updated dependencies [d7ed04d]
437
+ - Updated dependencies [cb16baf]
438
+ - Updated dependencies [f36e4f1]
439
+ - Updated dependencies [7f6e403]
440
+ - @mastra/core@0.10.11
441
+
442
+ ## 0.10.10-alpha.4
443
+
444
+ ### Patch Changes
445
+
446
+ - @mastra/core@0.10.11-alpha.4
447
+
448
+ ## 0.10.10-alpha.3
449
+
450
+ ### Patch Changes
451
+
452
+ - Updated dependencies [c7bbf1e]
453
+ - Updated dependencies [8722d53]
454
+ - Updated dependencies [132027f]
455
+ - Updated dependencies [0c85311]
456
+ - Updated dependencies [cb16baf]
457
+ - @mastra/core@0.10.11-alpha.3
458
+
459
+ ## 0.10.10-alpha.2
460
+
461
+ ### Patch Changes
462
+
463
+ - 18da791: Add abortSignal to client SDK options
464
+ - Updated dependencies [2873c7f]
465
+ - Updated dependencies [1c1c6a1]
466
+ - Updated dependencies [565cc0c]
467
+ - @mastra/core@0.10.11-alpha.2
468
+
469
+ ## 0.10.10-alpha.1
470
+
471
+ ### Patch Changes
472
+
473
+ - Updated dependencies [7f6e403]
474
+ - @mastra/core@0.10.11-alpha.1
475
+
476
+ ## 0.10.10-alpha.0
477
+
478
+ ### Patch Changes
479
+
480
+ - Updated dependencies [f8ce2cc]
481
+ - Updated dependencies [8c846b6]
482
+ - Updated dependencies [b790fd1]
483
+ - Updated dependencies [d7ed04d]
484
+ - Updated dependencies [f36e4f1]
485
+ - @mastra/core@0.10.11-alpha.0
486
+
487
+ ## 0.10.9
488
+
489
+ ### Patch Changes
490
+
491
+ - b60f510: Fix getWorkflowRuns by limit and offset
492
+ - 6997af1: add send event to server, deployer, client-js and playground-ui
493
+ - Updated dependencies [4d3fbdf]
494
+ - @mastra/core@0.10.10
495
+
496
+ ## 0.10.9-alpha.1
497
+
498
+ ### Patch Changes
499
+
500
+ - b60f510: Fix getWorkflowRuns by limit and offset
501
+ - 6997af1: add send event to server, deployer, client-js and playground-ui
502
+ - @mastra/core@0.10.10-alpha.1
503
+
504
+ ## 0.10.9-alpha.0
505
+
506
+ ### Patch Changes
507
+
508
+ - Updated dependencies [4d3fbdf]
509
+ - @mastra/core@0.10.10-alpha.0
510
+
511
+ ## 0.10.8
512
+
513
+ ### Patch Changes
514
+
515
+ - 9047bda: clientTools - stream tool-result part
516
+ - a606c75: show right suspend schema for nested workflow on playground
517
+ - 1760a1c: Use workflow stream in playground instead of watch
518
+ - 038e5ae: Add cancel workflow run
519
+ - 7e801dd: Add tools to network api response
520
+ - Updated dependencies [9dda1ac]
521
+ - Updated dependencies [c984582]
522
+ - Updated dependencies [7e801dd]
523
+ - Updated dependencies [a606c75]
524
+ - Updated dependencies [7aa70a4]
525
+ - Updated dependencies [764f86a]
526
+ - Updated dependencies [1760a1c]
527
+ - Updated dependencies [038e5ae]
528
+ - Updated dependencies [7dda16a]
529
+ - Updated dependencies [5ebfcdd]
530
+ - Updated dependencies [b2d0c91]
531
+ - Updated dependencies [4e809ad]
532
+ - Updated dependencies [57929df]
533
+ - Updated dependencies [b7852ed]
534
+ - Updated dependencies [6320a61]
535
+ - @mastra/core@0.10.9
536
+
537
+ ## 0.10.8-alpha.0
538
+
539
+ ### Patch Changes
540
+
541
+ - 9047bda: clientTools - stream tool-result part
542
+ - a606c75: show right suspend schema for nested workflow on playground
543
+ - 1760a1c: Use workflow stream in playground instead of watch
544
+ - 038e5ae: Add cancel workflow run
545
+ - 7e801dd: Add tools to network api response
546
+ - Updated dependencies [9dda1ac]
547
+ - Updated dependencies [c984582]
548
+ - Updated dependencies [7e801dd]
549
+ - Updated dependencies [a606c75]
550
+ - Updated dependencies [7aa70a4]
551
+ - Updated dependencies [764f86a]
552
+ - Updated dependencies [1760a1c]
553
+ - Updated dependencies [038e5ae]
554
+ - Updated dependencies [7dda16a]
555
+ - Updated dependencies [5ebfcdd]
556
+ - Updated dependencies [b2d0c91]
557
+ - Updated dependencies [4e809ad]
558
+ - Updated dependencies [57929df]
559
+ - Updated dependencies [b7852ed]
560
+ - Updated dependencies [6320a61]
561
+ - @mastra/core@0.10.9-alpha.0
562
+
563
+ ## 0.10.7
564
+
565
+ ### Patch Changes
566
+
567
+ - a344ac7: Fix tool streaming in agent network
568
+ - Updated dependencies [b8f16b2]
569
+ - Updated dependencies [3e04487]
570
+ - Updated dependencies [a344ac7]
571
+ - Updated dependencies [dc4ca0a]
572
+ - @mastra/core@0.10.8
573
+
574
+ ## 0.10.7-alpha.1
575
+
576
+ ### Patch Changes
577
+
578
+ - Updated dependencies [b8f16b2]
579
+ - Updated dependencies [3e04487]
580
+ - Updated dependencies [dc4ca0a]
581
+ - @mastra/core@0.10.8-alpha.1
582
+
583
+ ## 0.10.7-alpha.0
584
+
585
+ ### Patch Changes
586
+
587
+ - a344ac7: Fix tool streaming in agent network
588
+ - Updated dependencies [a344ac7]
589
+ - @mastra/core@0.10.8-alpha.0
590
+
591
+ ## 0.10.6
592
+
593
+ ### Patch Changes
594
+
595
+ - 8e1b6e9: dependencies updates:
596
+ - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
597
+ - 9bf1d55: Fix runtimeContext in mastra server, client SDK
598
+ - 18a5d59: clientTools client side execution
599
+ - 5d74aab: vNext network in playground
600
+ - bee3fe4: Fix client side tool calling
601
+ - c0d41f6: Fix streaming for agent tool calls
602
+ - Updated dependencies [15e9d26]
603
+ - Updated dependencies [d1baedb]
604
+ - Updated dependencies [d8f2d19]
605
+ - Updated dependencies [4d21bf2]
606
+ - Updated dependencies [07d6d88]
607
+ - Updated dependencies [9d52b17]
608
+ - Updated dependencies [2097952]
609
+ - Updated dependencies [792c4c0]
610
+ - Updated dependencies [5d74aab]
611
+ - Updated dependencies [a8b194f]
612
+ - Updated dependencies [4fb0cc2]
613
+ - Updated dependencies [d2a7a31]
614
+ - Updated dependencies [502fe05]
615
+ - Updated dependencies [144eb0b]
616
+ - Updated dependencies [8ba1b51]
617
+ - Updated dependencies [4efcfa0]
618
+ - Updated dependencies [0e17048]
619
+ - @mastra/core@0.10.7
620
+
621
+ ## 0.10.6-alpha.6
622
+
623
+ ### Patch Changes
624
+
625
+ - c0d41f6: Fix streaming for agent tool calls
626
+
627
+ ## 0.10.6-alpha.5
628
+
629
+ ### Patch Changes
630
+
631
+ - bee3fe4: Fix client side tool calling
632
+ - @mastra/core@0.10.7-alpha.5
633
+
634
+ ## 0.10.6-alpha.4
635
+
636
+ ### Patch Changes
637
+
638
+ - Updated dependencies [a8b194f]
639
+ - @mastra/core@0.10.7-alpha.4
640
+
641
+ ## 0.10.6-alpha.3
642
+
643
+ ### Patch Changes
644
+
645
+ - 18a5d59: clientTools client side execution
646
+ - Updated dependencies [792c4c0]
647
+ - Updated dependencies [502fe05]
648
+ - Updated dependencies [4efcfa0]
649
+ - @mastra/core@0.10.7-alpha.3
650
+
651
+ ## 0.10.6-alpha.2
652
+
653
+ ### Patch Changes
654
+
655
+ - 8e1b6e9: dependencies updates:
656
+ - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
657
+ - 9bf1d55: Fix runtimeContext in mastra server, client SDK
658
+ - 5d74aab: vNext network in playground
659
+ - Updated dependencies [15e9d26]
660
+ - Updated dependencies [07d6d88]
661
+ - Updated dependencies [5d74aab]
662
+ - Updated dependencies [144eb0b]
663
+ - @mastra/core@0.10.7-alpha.2
664
+
665
+ ## 0.10.6-alpha.1
666
+
667
+ ### Patch Changes
668
+
669
+ - Updated dependencies [d1baedb]
670
+ - Updated dependencies [4d21bf2]
671
+ - Updated dependencies [2097952]
672
+ - Updated dependencies [4fb0cc2]
673
+ - Updated dependencies [d2a7a31]
674
+ - Updated dependencies [0e17048]
675
+ - @mastra/core@0.10.7-alpha.1
676
+
677
+ ## 0.10.6-alpha.0
678
+
679
+ ### Patch Changes
680
+
681
+ - Updated dependencies [d8f2d19]
682
+ - Updated dependencies [9d52b17]
683
+ - Updated dependencies [8ba1b51]
684
+ - @mastra/core@0.10.7-alpha.0
685
+
686
+ ## 0.10.5
687
+
688
+ ### Patch Changes
689
+
690
+ - 63f6b7d: dependencies updates:
691
+ - Updated dependency [`@ai-sdk/ui-utils@^1.2.11` ↗︎](https://www.npmjs.com/package/@ai-sdk/ui-utils/v/1.2.11) (from `^1.1.19`, in `dependencies`)
692
+ - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
693
+ - ee9af57: Add api for polling run execution result and get run by id
694
+ - 3270d9d: Fix runtime context being undefined
695
+ - Updated dependencies [63f6b7d]
696
+ - Updated dependencies [12a95fc]
697
+ - Updated dependencies [4b0f8a6]
698
+ - Updated dependencies [51264a5]
699
+ - Updated dependencies [8e6f677]
700
+ - Updated dependencies [d70c420]
701
+ - Updated dependencies [ee9af57]
702
+ - Updated dependencies [36f1c36]
703
+ - Updated dependencies [2a16996]
704
+ - Updated dependencies [10d352e]
705
+ - Updated dependencies [9589624]
706
+ - Updated dependencies [53d3c37]
707
+ - Updated dependencies [751c894]
708
+ - Updated dependencies [577ce3a]
709
+ - Updated dependencies [9260b3a]
710
+ - @mastra/core@0.10.6
711
+
712
+ ## 0.10.5-alpha.5
713
+
714
+ ### Patch Changes
715
+
716
+ - Updated dependencies [12a95fc]
717
+ - Updated dependencies [51264a5]
718
+ - Updated dependencies [8e6f677]
719
+ - @mastra/core@0.10.6-alpha.5
720
+
721
+ ## 0.10.5-alpha.4
722
+
723
+ ### Patch Changes
724
+
725
+ - Updated dependencies [9589624]
726
+ - @mastra/core@0.10.6-alpha.4
727
+
728
+ ## 0.10.5-alpha.3
729
+
730
+ ### Patch Changes
731
+
732
+ - Updated dependencies [d70c420]
733
+ - Updated dependencies [2a16996]
734
+ - @mastra/core@0.10.6-alpha.3
735
+
736
+ ## 0.10.5-alpha.2
737
+
738
+ ### Patch Changes
739
+
740
+ - Updated dependencies [4b0f8a6]
741
+ - @mastra/core@0.10.6-alpha.2
742
+
743
+ ## 0.10.5-alpha.1
744
+
745
+ ### Patch Changes
746
+
747
+ - ee9af57: Add api for polling run execution result and get run by id
748
+ - 3270d9d: Fix runtime context being undefined
749
+ - Updated dependencies [ee9af57]
750
+ - Updated dependencies [751c894]
751
+ - Updated dependencies [577ce3a]
752
+ - Updated dependencies [9260b3a]
753
+ - @mastra/core@0.10.6-alpha.1
754
+
755
+ ## 0.10.5-alpha.0
756
+
757
+ ### Patch Changes
758
+
759
+ - 63f6b7d: dependencies updates:
760
+ - Updated dependency [`@ai-sdk/ui-utils@^1.2.11` ↗︎](https://www.npmjs.com/package/@ai-sdk/ui-utils/v/1.2.11) (from `^1.1.19`, in `dependencies`)
761
+ - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
762
+ - Updated dependencies [63f6b7d]
763
+ - Updated dependencies [36f1c36]
764
+ - Updated dependencies [10d352e]
765
+ - Updated dependencies [53d3c37]
766
+ - @mastra/core@0.10.6-alpha.0
767
+
768
+ ## 0.10.4
769
+
770
+ ### Patch Changes
771
+
772
+ - Updated dependencies [13c97f9]
773
+ - @mastra/core@0.10.5
774
+
775
+ ## 0.10.3
776
+
777
+ ### Patch Changes
778
+
779
+ - 1ccccff: dependencies updates:
780
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
781
+ - 1ccccff: dependencies updates:
782
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
783
+ - f1f1f1b: Add basic filtering capabilities to logs
784
+ - b2810ab: Move @mastra/core to deps
785
+ - 82090c1: Add pagination to logs
786
+ - 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
787
+ - Updated dependencies [d1ed912]
788
+ - Updated dependencies [f6fd25f]
789
+ - Updated dependencies [dffb67b]
790
+ - Updated dependencies [f1f1f1b]
791
+ - Updated dependencies [925ab94]
792
+ - Updated dependencies [f9816ae]
793
+ - Updated dependencies [82090c1]
794
+ - Updated dependencies [1b443fd]
795
+ - Updated dependencies [ce97900]
796
+ - Updated dependencies [f1309d3]
797
+ - Updated dependencies [14a2566]
798
+ - Updated dependencies [f7f8293]
799
+ - Updated dependencies [48eddb9]
800
+ - @mastra/core@0.10.4
801
+
802
+ ## 0.10.3-alpha.3
803
+
804
+ ### Patch Changes
805
+
806
+ - Updated dependencies [925ab94]
807
+ - @mastra/core@0.10.4-alpha.3
808
+
809
+ ## 0.10.3-alpha.2
810
+
811
+ ### Patch Changes
812
+
813
+ - Updated dependencies [48eddb9]
814
+ - @mastra/core@0.10.4-alpha.2
815
+
816
+ ## 0.10.3-alpha.1
817
+
818
+ ### Patch Changes
819
+
820
+ - 1ccccff: dependencies updates:
821
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
822
+ - 1ccccff: dependencies updates:
823
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
824
+ - Updated dependencies [f6fd25f]
825
+ - Updated dependencies [dffb67b]
826
+ - Updated dependencies [f1309d3]
827
+ - Updated dependencies [f7f8293]
828
+ - @mastra/core@0.10.4-alpha.1
829
+
830
+ ## 0.10.3-alpha.0
831
+
832
+ ### Patch Changes
833
+
834
+ - f1f1f1b: Add basic filtering capabilities to logs
835
+ - b2810ab: Move @mastra/core to deps
836
+ - 82090c1: Add pagination to logs
837
+ - 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
838
+ - Updated dependencies [d1ed912]
839
+ - Updated dependencies [f1f1f1b]
840
+ - Updated dependencies [f9816ae]
841
+ - Updated dependencies [82090c1]
842
+ - Updated dependencies [1b443fd]
843
+ - Updated dependencies [ce97900]
844
+ - Updated dependencies [14a2566]
845
+ - @mastra/core@0.10.4-alpha.0
846
+
847
+ ## 0.10.2
848
+
849
+ ### Patch Changes
850
+
851
+ - 592a2db: Added different icons for agents and workflows in mcp tools list
852
+ - 37643b8: Fix tool access
853
+ - c5bf1ce: Add backwards compat code for new MessageList in storage
854
+ - b72c768: [Bug fix] Serialize parameters in clientTools
855
+ - f0d559f: Fix peerdeps for alpha channel
856
+ - Updated dependencies [ee77e78]
857
+ - Updated dependencies [592a2db]
858
+ - Updated dependencies [e5dc18d]
859
+ - Updated dependencies [ab5adbe]
860
+ - Updated dependencies [1e8bb40]
861
+ - Updated dependencies [1b5fc55]
862
+ - Updated dependencies [195c428]
863
+ - Updated dependencies [f73e11b]
864
+ - Updated dependencies [37643b8]
865
+ - Updated dependencies [99fd6cf]
866
+ - Updated dependencies [c5bf1ce]
867
+ - Updated dependencies [add596e]
868
+ - Updated dependencies [8dc94d8]
869
+ - Updated dependencies [ecebbeb]
870
+ - Updated dependencies [79d5145]
871
+ - Updated dependencies [12b7002]
872
+ - Updated dependencies [2901125]
873
+ - @mastra/core@0.10.2
874
+
875
+ ## 0.10.2-alpha.3
876
+
877
+ ### Patch Changes
878
+
879
+ - 37643b8: Fix tool access
880
+ - b72c768: [Bug fix] Serialize parameters in clientTools
881
+ - Updated dependencies [37643b8]
882
+ - Updated dependencies [79d5145]
883
+ - @mastra/core@0.10.2-alpha.8
884
+
885
+ ## 0.10.2-alpha.2
886
+
887
+ ### Patch Changes
888
+
889
+ - c5bf1ce: Add backwards compat code for new MessageList in storage
890
+ - Updated dependencies [c5bf1ce]
891
+ - Updated dependencies [12b7002]
892
+ - @mastra/core@0.10.2-alpha.4
893
+
894
+ ## 0.10.2-alpha.1
895
+
896
+ ### Patch Changes
897
+
898
+ - f0d559f: Fix peerdeps for alpha channel
899
+ - Updated dependencies [1e8bb40]
900
+ - @mastra/core@0.10.2-alpha.2
901
+
902
+ ## 0.10.2-alpha.0
903
+
904
+ ### Patch Changes
905
+
906
+ - 592a2db: Added different icons for agents and workflows in mcp tools list
907
+ - Updated dependencies [592a2db]
908
+ - Updated dependencies [e5dc18d]
909
+ - @mastra/core@0.10.2-alpha.0
910
+
911
+ ## 0.10.1
912
+
913
+ ### Patch Changes
914
+
915
+ - 267773e: Show map config on workflow graph
916
+ Highlight borders for conditions too on workflow graph
917
+ Fix watch stream
918
+ - 5343f93: Move emitter to symbol to make private
919
+ - f622cfa: Make some properties of CreateMemoryThreadParams optional
920
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
921
+ - Updated dependencies [d70b807]
922
+ - Updated dependencies [6d16390]
923
+ - Updated dependencies [1e4a421]
924
+ - Updated dependencies [200d0da]
925
+ - Updated dependencies [bf5f17b]
926
+ - Updated dependencies [5343f93]
927
+ - Updated dependencies [38aee50]
928
+ - Updated dependencies [5c41100]
929
+ - Updated dependencies [d6a759b]
930
+ - Updated dependencies [6015bdf]
931
+ - @mastra/core@0.10.1
932
+
933
+ ## 0.10.1-alpha.3
934
+
935
+ ### Patch Changes
936
+
937
+ - 267773e: Show map config on workflow graph
938
+ Highlight borders for conditions too on workflow graph
939
+ Fix watch stream
940
+
941
+ ## 0.10.1-alpha.2
942
+
943
+ ### Patch Changes
944
+
945
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
946
+ - Updated dependencies [6015bdf]
947
+ - @mastra/core@0.10.1-alpha.2
948
+
949
+ ## 0.10.1-alpha.1
950
+
951
+ ### Patch Changes
952
+
953
+ - 5343f93: Move emitter to symbol to make private
954
+ - Updated dependencies [200d0da]
955
+ - Updated dependencies [bf5f17b]
956
+ - Updated dependencies [5343f93]
957
+ - Updated dependencies [38aee50]
958
+ - Updated dependencies [5c41100]
959
+ - Updated dependencies [d6a759b]
960
+ - @mastra/core@0.10.1-alpha.1
961
+
962
+ ## 0.10.1-alpha.0
963
+
964
+ ### Patch Changes
965
+
966
+ - f622cfa: Make some properties of CreateMemoryThreadParams optional
967
+ - Updated dependencies [6d16390]
968
+ - Updated dependencies [1e4a421]
969
+ - @mastra/core@0.10.1-alpha.0
970
+
971
+ ## 0.10.0
972
+
973
+ ### Minor Changes
974
+
975
+ - 83da932: Move @mastra/core to peerdeps
976
+ - 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
977
+
978
+ ### Patch Changes
979
+
980
+ - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
981
+ - 0215b0b: Add description to vnext workflow response
982
+ - f53a6ac: Add VNextWorkflowRuns type
983
+ - ccdabdc: Remove trailing / from mastraClient baseUrl
984
+ - a6e3881: Remove non serializable options from agent stream,generate
985
+ - fddae56: Add telemetry to cliend SDK streamParams
986
+ - 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.
987
+ - 5063646: Accept plain obects as runtimeContext
988
+ - 2672a05: Add MCP servers and tool call execution to playground
989
+ - Updated dependencies [b3a3d63]
990
+ - Updated dependencies [344f453]
991
+ - Updated dependencies [0a3ae6d]
992
+ - Updated dependencies [95911be]
993
+ - Updated dependencies [f53a6ac]
994
+ - Updated dependencies [5eb5a99]
995
+ - Updated dependencies [7e632c5]
996
+ - Updated dependencies [1e9fbfa]
997
+ - Updated dependencies [eabdcd9]
998
+ - Updated dependencies [90be034]
999
+ - Updated dependencies [99f050a]
1000
+ - Updated dependencies [d0ee3c6]
1001
+ - Updated dependencies [b2ae5aa]
1002
+ - Updated dependencies [23f258c]
1003
+ - Updated dependencies [a7292b0]
1004
+ - Updated dependencies [0dcb9f0]
1005
+ - Updated dependencies [2672a05]
1006
+ - @mastra/core@0.10.0
1007
+
1008
+ ## 0.2.0-alpha.1
1009
+
1010
+ ### Minor Changes
1011
+
1012
+ - 83da932: Move @mastra/core to peerdeps
1013
+ - 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
1014
+
1015
+ ### Patch Changes
1016
+
1017
+ - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
1018
+ - 0215b0b: Add description to vnext workflow response
1019
+ - 5063646: Accept plain obects as runtimeContext
1020
+ - Updated dependencies [b3a3d63]
1021
+ - Updated dependencies [344f453]
1022
+ - Updated dependencies [0a3ae6d]
1023
+ - Updated dependencies [95911be]
1024
+ - Updated dependencies [5eb5a99]
1025
+ - Updated dependencies [7e632c5]
1026
+ - Updated dependencies [1e9fbfa]
1027
+ - Updated dependencies [b2ae5aa]
1028
+ - Updated dependencies [a7292b0]
1029
+ - Updated dependencies [0dcb9f0]
1030
+ - @mastra/core@0.10.0-alpha.1
1031
+
1032
+ ## 0.1.23-alpha.0
1033
+
1034
+ ### Patch Changes
1035
+
1036
+ - f53a6ac: Add VNextWorkflowRuns type
1037
+ - ccdabdc: Remove trailing / from mastraClient baseUrl
1038
+ - a6e3881: Remove non serializable options from agent stream,generate
1039
+ - fddae56: Add telemetry to cliend SDK streamParams
1040
+ - 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.
1041
+ - 2672a05: Add MCP servers and tool call execution to playground
1042
+ - Updated dependencies [f53a6ac]
1043
+ - Updated dependencies [eabdcd9]
1044
+ - Updated dependencies [90be034]
1045
+ - Updated dependencies [99f050a]
1046
+ - Updated dependencies [d0ee3c6]
1047
+ - Updated dependencies [23f258c]
1048
+ - Updated dependencies [2672a05]
1049
+ - @mastra/core@0.9.5-alpha.0
1050
+
1051
+ ## 0.1.22
1052
+
1053
+ ### Patch Changes
1054
+
1055
+ - c2f9e60: Resolves type issue and listen response string wrapped in text object twice
1056
+ - 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
1057
+ - b4c6c87: fix: Specify $refStrategy: 'none' when calling zodToJsonSchema.
1058
+ - 0c3d117: Add workflows to agent server handlers
1059
+ - a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
1060
+ - c2b980b: Fix multiple too-calls in AGUI
1061
+ - cb1f698: Set runtimeContext from playground for agents, tools, workflows
1062
+ - 0b8b868: Added A2A support + streaming
1063
+ - Updated dependencies [396be50]
1064
+ - Updated dependencies [ab80e7e]
1065
+ - Updated dependencies [c3bd795]
1066
+ - Updated dependencies [da082f8]
1067
+ - Updated dependencies [a5810ce]
1068
+ - Updated dependencies [3e9c131]
1069
+ - Updated dependencies [3171b5b]
1070
+ - Updated dependencies [973e5ac]
1071
+ - Updated dependencies [daf942f]
1072
+ - Updated dependencies [0b8b868]
1073
+ - Updated dependencies [9e1eff5]
1074
+ - Updated dependencies [6fa1ad1]
1075
+ - Updated dependencies [c28d7a0]
1076
+ - Updated dependencies [edf1e88]
1077
+ - @mastra/core@0.9.4
1078
+
1079
+ ## 0.1.22-alpha.4
1080
+
1081
+ ### Patch Changes
1082
+
1083
+ - 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
1084
+ - Updated dependencies [3e9c131]
1085
+ - @mastra/core@0.9.4-alpha.4
1086
+
1087
+ ## 0.1.22-alpha.3
1088
+
1089
+ ### Patch Changes
1090
+
1091
+ - c2f9e60: Resolves type issue and listen response string wrapped in text object twice
1092
+ - 0c3d117: Add workflows to agent server handlers
1093
+ - a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
1094
+ - Updated dependencies [396be50]
1095
+ - Updated dependencies [c3bd795]
1096
+ - Updated dependencies [da082f8]
1097
+ - Updated dependencies [a5810ce]
1098
+ - @mastra/core@0.9.4-alpha.3
1099
+
1100
+ ## 0.1.22-alpha.2
1101
+
1102
+ ### Patch Changes
1103
+
1104
+ - b4c6c87: fix: Specify $refStrategy: 'none' when calling zodToJsonSchema.
1105
+ - c2b980b: Fix multiple too-calls in AGUI
1106
+ - Updated dependencies [3171b5b]
1107
+ - Updated dependencies [973e5ac]
1108
+ - Updated dependencies [9e1eff5]
1109
+ - @mastra/core@0.9.4-alpha.2
1110
+
1111
+ ## 0.1.22-alpha.1
1112
+
1113
+ ### Patch Changes
1114
+
1115
+ - Updated dependencies [ab80e7e]
1116
+ - Updated dependencies [6fa1ad1]
1117
+ - Updated dependencies [c28d7a0]
1118
+ - Updated dependencies [edf1e88]
1119
+ - @mastra/core@0.9.4-alpha.1
1120
+
1121
+ ## 0.1.22-alpha.0
1122
+
1123
+ ### Patch Changes
1124
+
1125
+ - cb1f698: Set runtimeContext from playground for agents, tools, workflows
1126
+ - 0b8b868: Added A2A support + streaming
1127
+ - Updated dependencies [daf942f]
1128
+ - Updated dependencies [0b8b868]
1129
+ - @mastra/core@0.9.4-alpha.0
1130
+
1131
+ ## 0.1.21
1132
+
1133
+ ### Patch Changes
1134
+
1135
+ - 526c570: expose agent runtimeContext from clientSDK
1136
+ - 36eb1aa: Fix AGUI text part
1137
+ - 62c9e7d: Fix disappearing tool calls in streaming
1138
+ - Updated dependencies [e450778]
1139
+ - Updated dependencies [8902157]
1140
+ - Updated dependencies [ca0dc88]
1141
+ - Updated dependencies [526c570]
1142
+ - Updated dependencies [d7a6a33]
1143
+ - Updated dependencies [9cd1a46]
1144
+ - Updated dependencies [b5d2de0]
1145
+ - Updated dependencies [644f8ad]
1146
+ - Updated dependencies [70dbf51]
1147
+ - @mastra/core@0.9.3
1148
+
1149
+ ## 0.1.21-alpha.1
1150
+
1151
+ ### Patch Changes
1152
+
1153
+ - 36eb1aa: Fix AGUI text part
1154
+ - 62c9e7d: Fix disappearing tool calls in streaming
1155
+ - Updated dependencies [e450778]
1156
+ - Updated dependencies [8902157]
1157
+ - Updated dependencies [ca0dc88]
1158
+ - Updated dependencies [9cd1a46]
1159
+ - Updated dependencies [70dbf51]
1160
+ - @mastra/core@0.9.3-alpha.1
1161
+
1162
+ ## 0.1.21-alpha.0
1163
+
1164
+ ### Patch Changes
1165
+
1166
+ - 526c570: expose agent runtimeContext from clientSDK
1167
+ - Updated dependencies [526c570]
1168
+ - Updated dependencies [b5d2de0]
1169
+ - Updated dependencies [644f8ad]
1170
+ - @mastra/core@0.9.3-alpha.0
1171
+
1172
+ ## 0.1.20
1173
+
1174
+ ### Patch Changes
1175
+
1176
+ - 2cf3b8f: dependencies updates:
1177
+ - Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
1178
+ - Updated dependency [`zod-to-json-schema@^3.24.5` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.5) (from `^3.24.3`, in `dependencies`)
1179
+ - 4155f47: Add parameters to filter workflow runs
1180
+ Add fromDate and toDate to telemetry parameters
1181
+ - 254f5c3: Audit, cleanup MastraClient
1182
+ - 0097d50: Add serializedStepGraph to vNext workflow
1183
+ Return serializedStepGraph from vNext workflow
1184
+ Use serializedStepGraph in vNext workflow graph
1185
+ - 2429c74: Add get workflow runs api to client-js
1186
+ - 2e4f8e9: Agui client integration
1187
+ - Updated dependencies [6052aa6]
1188
+ - Updated dependencies [967b41c]
1189
+ - Updated dependencies [3d2fb5c]
1190
+ - Updated dependencies [26738f4]
1191
+ - Updated dependencies [4155f47]
1192
+ - Updated dependencies [7eeb2bc]
1193
+ - Updated dependencies [b804723]
1194
+ - Updated dependencies [8607972]
1195
+ - Updated dependencies [ccef9f9]
1196
+ - Updated dependencies [0097d50]
1197
+ - Updated dependencies [7eeb2bc]
1198
+ - Updated dependencies [17826a9]
1199
+ - Updated dependencies [7d8b7c7]
1200
+ - Updated dependencies [fba031f]
1201
+ - Updated dependencies [3a5f1e1]
1202
+ - Updated dependencies [51e6923]
1203
+ - Updated dependencies [8398d89]
1204
+ - @mastra/core@0.9.2
1205
+
1206
+ ## 0.1.20-alpha.6
1207
+
1208
+ ### Patch Changes
1209
+
1210
+ - 2e4f8e9: Agui client integration
1211
+ - Updated dependencies [6052aa6]
1212
+ - Updated dependencies [7d8b7c7]
1213
+ - Updated dependencies [3a5f1e1]
1214
+ - Updated dependencies [8398d89]
1215
+ - @mastra/core@0.9.2-alpha.6
1216
+
1217
+ ## 0.1.20-alpha.5
1218
+
1219
+ ### Patch Changes
1220
+
1221
+ - Updated dependencies [3d2fb5c]
1222
+ - Updated dependencies [7eeb2bc]
1223
+ - Updated dependencies [8607972]
1224
+ - Updated dependencies [7eeb2bc]
1225
+ - Updated dependencies [fba031f]
1226
+ - @mastra/core@0.9.2-alpha.5
1227
+
1228
+ ## 0.1.20-alpha.4
1229
+
1230
+ ### Patch Changes
1231
+
1232
+ - Updated dependencies [ccef9f9]
1233
+ - Updated dependencies [51e6923]
1234
+ - @mastra/core@0.9.2-alpha.4
1235
+
1236
+ ## 0.1.20-alpha.3
1237
+
1238
+ ### Patch Changes
1239
+
1240
+ - 4155f47: Add parameters to filter workflow runs
1241
+ Add fromDate and toDate to telemetry parameters
1242
+ - Updated dependencies [967b41c]
1243
+ - Updated dependencies [4155f47]
1244
+ - Updated dependencies [17826a9]
1245
+ - @mastra/core@0.9.2-alpha.3
1246
+
1247
+ ## 0.1.20-alpha.2
1248
+
1249
+ ### Patch Changes
1250
+
1251
+ - Updated dependencies [26738f4]
1252
+ - @mastra/core@0.9.2-alpha.2
1253
+
1254
+ ## 0.1.20-alpha.1
1255
+
1256
+ ### Patch Changes
1257
+
1258
+ - 254f5c3: Audit, cleanup MastraClient
1259
+ - 2429c74: Add get workflow runs api to client-js
1260
+ - Updated dependencies [b804723]
1261
+ - @mastra/core@0.9.2-alpha.1
1262
+
1263
+ ## 0.1.20-alpha.0
1264
+
1265
+ ### Patch Changes
1266
+
1267
+ - 0097d50: Add serializedStepGraph to vNext workflow
1268
+ Return serializedStepGraph from vNext workflow
1269
+ Use serializedStepGraph in vNext workflow graph
1270
+ - Updated dependencies [0097d50]
1271
+ - @mastra/core@0.9.2-alpha.0
1272
+
1273
+ ## 0.1.19
1274
+
1275
+ ### Patch Changes
1276
+
1277
+ - b50b9b7: Add vNext workflow to client-js
1278
+ - 11d4485: Show VNext workflows on the playground
1279
+ Show running status for step in vNext workflowState
1280
+ - Updated dependencies [405b63d]
7
1281
  - Updated dependencies [81fb7f6]
1282
+ - Updated dependencies [20275d4]
1283
+ - Updated dependencies [7d1892c]
1284
+ - Updated dependencies [a90a082]
1285
+ - Updated dependencies [2d17c73]
1286
+ - Updated dependencies [61e92f5]
1287
+ - Updated dependencies [35955b0]
1288
+ - Updated dependencies [6262bd5]
1289
+ - Updated dependencies [c1409ef]
1290
+ - Updated dependencies [3e7b69d]
1291
+ - Updated dependencies [e4943b8]
1292
+ - Updated dependencies [11d4485]
1293
+ - Updated dependencies [479f490]
1294
+ - Updated dependencies [c23a81c]
1295
+ - Updated dependencies [2d4001d]
1296
+ - Updated dependencies [c71013a]
1297
+ - Updated dependencies [1d3b1cd]
1298
+ - @mastra/core@0.9.1
1299
+
1300
+ ## 0.1.19-alpha.8
1301
+
1302
+ ### Patch Changes
1303
+
1304
+ - Updated dependencies [2d17c73]
1305
+ - @mastra/core@0.9.1-alpha.8
1306
+
1307
+ ## 0.1.19-alpha.7
1308
+
1309
+ ### Patch Changes
1310
+
1311
+ - Updated dependencies [1d3b1cd]
1312
+ - @mastra/core@0.9.1-alpha.7
1313
+
1314
+ ## 0.1.19-alpha.6
1315
+
1316
+ ### Patch Changes
1317
+
1318
+ - Updated dependencies [c23a81c]
1319
+ - @mastra/core@0.9.1-alpha.6
1320
+
1321
+ ## 0.1.19-alpha.5
1322
+
1323
+ ### Patch Changes
1324
+
1325
+ - Updated dependencies [3e7b69d]
1326
+ - @mastra/core@0.9.1-alpha.5
1327
+
1328
+ ## 0.1.19-alpha.4
1329
+
1330
+ ### Patch Changes
1331
+
1332
+ - Updated dependencies [e4943b8]
1333
+ - Updated dependencies [479f490]
1334
+ - @mastra/core@0.9.1-alpha.4
1335
+
1336
+ ## 0.1.19-alpha.3
1337
+
1338
+ ### Patch Changes
1339
+
1340
+ - Updated dependencies [6262bd5]
1341
+ - @mastra/core@0.9.1-alpha.3
1342
+
1343
+ ## 0.1.19-alpha.2
1344
+
1345
+ ### Patch Changes
1346
+
1347
+ - Updated dependencies [405b63d]
1348
+ - Updated dependencies [61e92f5]
1349
+ - Updated dependencies [c71013a]
1350
+ - @mastra/core@0.9.1-alpha.2
1351
+
1352
+ ## 0.1.19-alpha.1
1353
+
1354
+ ### Patch Changes
1355
+
1356
+ - b50b9b7: Add vNext workflow to client-js
1357
+ - 11d4485: Show VNext workflows on the playground
1358
+ Show running status for step in vNext workflowState
1359
+ - Updated dependencies [20275d4]
8
1360
  - Updated dependencies [7d1892c]
9
1361
  - Updated dependencies [a90a082]
10
1362
  - Updated dependencies [35955b0]
1363
+ - Updated dependencies [c1409ef]
1364
+ - Updated dependencies [11d4485]
11
1365
  - Updated dependencies [2d4001d]
12
- - @mastra/core@0.0.0-switch-to-core-20250424015131
1366
+ - @mastra/core@0.9.1-alpha.1
13
1367
 
14
1368
  ## 0.1.19-alpha.0
15
1369