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

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