@mastra/client-js 0.0.0-separate-trace-data-from-component-20250501042644 → 0.0.0-share-agent-metadata-with-cloud-20250718110128
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +19 -0
- package/CHANGELOG.md +924 -2
- package/LICENSE.md +11 -42
- package/README.md +1 -1
- package/dist/index.cjs +1501 -121
- package/dist/index.d.cts +566 -87
- package/dist/index.d.ts +566 -87
- package/dist/index.js +1508 -132
- package/package.json +24 -16
- package/src/adapters/agui.test.ts +180 -0
- package/src/adapters/agui.ts +239 -0
- package/src/client.ts +317 -23
- package/src/example.ts +59 -29
- package/src/index.test.ts +132 -6
- package/src/resources/a2a.ts +88 -0
- package/src/resources/agent.ts +648 -52
- package/src/resources/base.ts +3 -1
- package/src/resources/index.ts +4 -2
- package/src/resources/{vnext-workflow.ts → legacy-workflow.ts} +140 -132
- package/src/resources/mcp-tool.ts +48 -0
- package/src/resources/memory-thread.ts +13 -3
- package/src/resources/network-memory-thread.ts +63 -0
- package/src/resources/network.ts +6 -13
- package/src/resources/tool.ts +9 -2
- package/src/resources/vNextNetwork.ts +194 -0
- package/src/resources/workflow.ts +273 -95
- package/src/types.ts +199 -23
- package/src/utils/index.ts +11 -0
- package/src/utils/process-client-tools.ts +32 -0
- package/src/utils/zod-to-json-schema.ts +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,940 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-share-agent-metadata-with-cloud-20250718110128
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- 7827943: Handle streaming large data
|
|
8
|
+
- Updated dependencies [7827943]
|
|
9
|
+
- Updated dependencies [bf1e7e7]
|
|
10
|
+
- Updated dependencies [cbddd18]
|
|
11
|
+
- @mastra/core@0.0.0-share-agent-metadata-with-cloud-20250718110128
|
|
12
|
+
|
|
13
|
+
## 0.10.15-alpha.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- @mastra/core@0.11.0-alpha.1
|
|
18
|
+
|
|
19
|
+
## 0.10.15-alpha.0
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 7827943: Handle streaming large data
|
|
24
|
+
- Updated dependencies [7827943]
|
|
25
|
+
- Updated dependencies [bf1e7e7]
|
|
26
|
+
- Updated dependencies [cbddd18]
|
|
27
|
+
- @mastra/core@0.11.0-alpha.0
|
|
28
|
+
|
|
29
|
+
## 0.10.14
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- 31f9f6b: Replace crypto randomUUID in client SDK"
|
|
34
|
+
- 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
|
|
35
|
+
- 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
|
|
36
|
+
- Updated dependencies [0b56518]
|
|
37
|
+
- Updated dependencies [db5cc15]
|
|
38
|
+
- Updated dependencies [2ba5b76]
|
|
39
|
+
- Updated dependencies [5237998]
|
|
40
|
+
- Updated dependencies [c3a30de]
|
|
41
|
+
- Updated dependencies [37c1acd]
|
|
42
|
+
- Updated dependencies [1aa60b1]
|
|
43
|
+
- Updated dependencies [89ec9d4]
|
|
44
|
+
- Updated dependencies [cf3a184]
|
|
45
|
+
- Updated dependencies [d6bfd60]
|
|
46
|
+
- Updated dependencies [626b0f4]
|
|
47
|
+
- Updated dependencies [c22a91f]
|
|
48
|
+
- Updated dependencies [f7403ab]
|
|
49
|
+
- Updated dependencies [6c89d7f]
|
|
50
|
+
- @mastra/core@0.10.15
|
|
51
|
+
|
|
52
|
+
## 0.10.14-alpha.1
|
|
53
|
+
|
|
54
|
+
### Patch Changes
|
|
55
|
+
|
|
56
|
+
- Updated dependencies [0b56518]
|
|
57
|
+
- Updated dependencies [2ba5b76]
|
|
58
|
+
- Updated dependencies [c3a30de]
|
|
59
|
+
- Updated dependencies [cf3a184]
|
|
60
|
+
- Updated dependencies [d6bfd60]
|
|
61
|
+
- @mastra/core@0.10.15-alpha.1
|
|
62
|
+
|
|
63
|
+
## 0.10.14-alpha.0
|
|
64
|
+
|
|
65
|
+
### Patch Changes
|
|
66
|
+
|
|
67
|
+
- 31f9f6b: Replace crypto randomUUID in client SDK"
|
|
68
|
+
- 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
|
|
69
|
+
- 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
|
|
70
|
+
- Updated dependencies [db5cc15]
|
|
71
|
+
- Updated dependencies [5237998]
|
|
72
|
+
- Updated dependencies [37c1acd]
|
|
73
|
+
- Updated dependencies [1aa60b1]
|
|
74
|
+
- Updated dependencies [89ec9d4]
|
|
75
|
+
- Updated dependencies [626b0f4]
|
|
76
|
+
- Updated dependencies [c22a91f]
|
|
77
|
+
- Updated dependencies [f7403ab]
|
|
78
|
+
- Updated dependencies [6c89d7f]
|
|
79
|
+
- @mastra/core@0.10.15-alpha.0
|
|
80
|
+
|
|
81
|
+
## 0.10.13
|
|
82
|
+
|
|
83
|
+
### Patch Changes
|
|
84
|
+
|
|
85
|
+
- @mastra/core@0.10.14
|
|
86
|
+
|
|
87
|
+
## 0.10.11
|
|
88
|
+
|
|
89
|
+
### Patch Changes
|
|
90
|
+
|
|
91
|
+
- 9468be4: Fix error on agent generate while using antropic
|
|
92
|
+
- 44731a4: Client SDK - Expose processTextStream util for agent textstream with structured output
|
|
93
|
+
- Updated dependencies [b4a9811]
|
|
94
|
+
- Updated dependencies [4d5583d]
|
|
95
|
+
- @mastra/core@0.10.12
|
|
96
|
+
|
|
97
|
+
## 0.10.11-alpha.1
|
|
98
|
+
|
|
99
|
+
### Patch Changes
|
|
100
|
+
|
|
101
|
+
- Updated dependencies [4d5583d]
|
|
102
|
+
- @mastra/core@0.10.12-alpha.1
|
|
103
|
+
|
|
104
|
+
## 0.10.11-alpha.0
|
|
105
|
+
|
|
106
|
+
### Patch Changes
|
|
107
|
+
|
|
108
|
+
- 9468be4: Fix error on agent generate while using antropic
|
|
109
|
+
- 44731a4: Client SDK - Expose processTextStream util for agent textstream with structured output
|
|
110
|
+
- Updated dependencies [b4a9811]
|
|
111
|
+
- @mastra/core@0.10.12-alpha.0
|
|
112
|
+
|
|
113
|
+
## 0.10.10
|
|
114
|
+
|
|
115
|
+
### Patch Changes
|
|
116
|
+
|
|
117
|
+
- 18da791: Add abortSignal to client SDK options
|
|
118
|
+
- Updated dependencies [2873c7f]
|
|
119
|
+
- Updated dependencies [1c1c6a1]
|
|
120
|
+
- Updated dependencies [f8ce2cc]
|
|
121
|
+
- Updated dependencies [8c846b6]
|
|
122
|
+
- Updated dependencies [c7bbf1e]
|
|
123
|
+
- Updated dependencies [8722d53]
|
|
124
|
+
- Updated dependencies [565cc0c]
|
|
125
|
+
- Updated dependencies [b790fd1]
|
|
126
|
+
- Updated dependencies [132027f]
|
|
127
|
+
- Updated dependencies [0c85311]
|
|
128
|
+
- Updated dependencies [d7ed04d]
|
|
129
|
+
- Updated dependencies [cb16baf]
|
|
130
|
+
- Updated dependencies [f36e4f1]
|
|
131
|
+
- Updated dependencies [7f6e403]
|
|
132
|
+
- @mastra/core@0.10.11
|
|
133
|
+
|
|
134
|
+
## 0.10.10-alpha.4
|
|
135
|
+
|
|
136
|
+
### Patch Changes
|
|
137
|
+
|
|
138
|
+
- @mastra/core@0.10.11-alpha.4
|
|
139
|
+
|
|
140
|
+
## 0.10.10-alpha.3
|
|
141
|
+
|
|
142
|
+
### Patch Changes
|
|
143
|
+
|
|
144
|
+
- Updated dependencies [c7bbf1e]
|
|
145
|
+
- Updated dependencies [8722d53]
|
|
146
|
+
- Updated dependencies [132027f]
|
|
147
|
+
- Updated dependencies [0c85311]
|
|
148
|
+
- Updated dependencies [cb16baf]
|
|
149
|
+
- @mastra/core@0.10.11-alpha.3
|
|
150
|
+
|
|
151
|
+
## 0.10.10-alpha.2
|
|
152
|
+
|
|
153
|
+
### Patch Changes
|
|
154
|
+
|
|
155
|
+
- 18da791: Add abortSignal to client SDK options
|
|
156
|
+
- Updated dependencies [2873c7f]
|
|
157
|
+
- Updated dependencies [1c1c6a1]
|
|
158
|
+
- Updated dependencies [565cc0c]
|
|
159
|
+
- @mastra/core@0.10.11-alpha.2
|
|
160
|
+
|
|
161
|
+
## 0.10.10-alpha.1
|
|
162
|
+
|
|
163
|
+
### Patch Changes
|
|
164
|
+
|
|
165
|
+
- Updated dependencies [7f6e403]
|
|
166
|
+
- @mastra/core@0.10.11-alpha.1
|
|
167
|
+
|
|
168
|
+
## 0.10.10-alpha.0
|
|
169
|
+
|
|
170
|
+
### Patch Changes
|
|
171
|
+
|
|
172
|
+
- Updated dependencies [f8ce2cc]
|
|
173
|
+
- Updated dependencies [8c846b6]
|
|
174
|
+
- Updated dependencies [b790fd1]
|
|
175
|
+
- Updated dependencies [d7ed04d]
|
|
176
|
+
- Updated dependencies [f36e4f1]
|
|
177
|
+
- @mastra/core@0.10.11-alpha.0
|
|
178
|
+
|
|
179
|
+
## 0.10.9
|
|
180
|
+
|
|
181
|
+
### Patch Changes
|
|
182
|
+
|
|
183
|
+
- b60f510: Fix getWorkflowRuns by limit and offset
|
|
184
|
+
- 6997af1: add send event to server, deployer, client-js and playground-ui
|
|
185
|
+
- Updated dependencies [4d3fbdf]
|
|
186
|
+
- @mastra/core@0.10.10
|
|
187
|
+
|
|
188
|
+
## 0.10.9-alpha.1
|
|
189
|
+
|
|
190
|
+
### Patch Changes
|
|
191
|
+
|
|
192
|
+
- b60f510: Fix getWorkflowRuns by limit and offset
|
|
193
|
+
- 6997af1: add send event to server, deployer, client-js and playground-ui
|
|
194
|
+
- @mastra/core@0.10.10-alpha.1
|
|
195
|
+
|
|
196
|
+
## 0.10.9-alpha.0
|
|
197
|
+
|
|
198
|
+
### Patch Changes
|
|
199
|
+
|
|
200
|
+
- Updated dependencies [4d3fbdf]
|
|
201
|
+
- @mastra/core@0.10.10-alpha.0
|
|
202
|
+
|
|
203
|
+
## 0.10.8
|
|
204
|
+
|
|
205
|
+
### Patch Changes
|
|
206
|
+
|
|
207
|
+
- 9047bda: clientTools - stream tool-result part
|
|
208
|
+
- a606c75: show right suspend schema for nested workflow on playground
|
|
209
|
+
- 1760a1c: Use workflow stream in playground instead of watch
|
|
210
|
+
- 038e5ae: Add cancel workflow run
|
|
211
|
+
- 7e801dd: Add tools to network api response
|
|
212
|
+
- Updated dependencies [9dda1ac]
|
|
213
|
+
- Updated dependencies [c984582]
|
|
214
|
+
- Updated dependencies [7e801dd]
|
|
215
|
+
- Updated dependencies [a606c75]
|
|
216
|
+
- Updated dependencies [7aa70a4]
|
|
217
|
+
- Updated dependencies [764f86a]
|
|
218
|
+
- Updated dependencies [1760a1c]
|
|
219
|
+
- Updated dependencies [038e5ae]
|
|
220
|
+
- Updated dependencies [7dda16a]
|
|
221
|
+
- Updated dependencies [5ebfcdd]
|
|
222
|
+
- Updated dependencies [b2d0c91]
|
|
223
|
+
- Updated dependencies [4e809ad]
|
|
224
|
+
- Updated dependencies [57929df]
|
|
225
|
+
- Updated dependencies [b7852ed]
|
|
226
|
+
- Updated dependencies [6320a61]
|
|
227
|
+
- @mastra/core@0.10.9
|
|
228
|
+
|
|
229
|
+
## 0.10.8-alpha.0
|
|
230
|
+
|
|
231
|
+
### Patch Changes
|
|
232
|
+
|
|
233
|
+
- 9047bda: clientTools - stream tool-result part
|
|
234
|
+
- a606c75: show right suspend schema for nested workflow on playground
|
|
235
|
+
- 1760a1c: Use workflow stream in playground instead of watch
|
|
236
|
+
- 038e5ae: Add cancel workflow run
|
|
237
|
+
- 7e801dd: Add tools to network api response
|
|
238
|
+
- Updated dependencies [9dda1ac]
|
|
239
|
+
- Updated dependencies [c984582]
|
|
240
|
+
- Updated dependencies [7e801dd]
|
|
241
|
+
- Updated dependencies [a606c75]
|
|
242
|
+
- Updated dependencies [7aa70a4]
|
|
243
|
+
- Updated dependencies [764f86a]
|
|
244
|
+
- Updated dependencies [1760a1c]
|
|
245
|
+
- Updated dependencies [038e5ae]
|
|
246
|
+
- Updated dependencies [7dda16a]
|
|
247
|
+
- Updated dependencies [5ebfcdd]
|
|
248
|
+
- Updated dependencies [b2d0c91]
|
|
249
|
+
- Updated dependencies [4e809ad]
|
|
250
|
+
- Updated dependencies [57929df]
|
|
251
|
+
- Updated dependencies [b7852ed]
|
|
252
|
+
- Updated dependencies [6320a61]
|
|
253
|
+
- @mastra/core@0.10.9-alpha.0
|
|
254
|
+
|
|
255
|
+
## 0.10.7
|
|
256
|
+
|
|
257
|
+
### Patch Changes
|
|
258
|
+
|
|
259
|
+
- a344ac7: Fix tool streaming in agent network
|
|
260
|
+
- Updated dependencies [b8f16b2]
|
|
261
|
+
- Updated dependencies [3e04487]
|
|
262
|
+
- Updated dependencies [a344ac7]
|
|
263
|
+
- Updated dependencies [dc4ca0a]
|
|
264
|
+
- @mastra/core@0.10.8
|
|
265
|
+
|
|
266
|
+
## 0.10.7-alpha.1
|
|
267
|
+
|
|
268
|
+
### Patch Changes
|
|
269
|
+
|
|
270
|
+
- Updated dependencies [b8f16b2]
|
|
271
|
+
- Updated dependencies [3e04487]
|
|
272
|
+
- Updated dependencies [dc4ca0a]
|
|
273
|
+
- @mastra/core@0.10.8-alpha.1
|
|
274
|
+
|
|
275
|
+
## 0.10.7-alpha.0
|
|
276
|
+
|
|
277
|
+
### Patch Changes
|
|
278
|
+
|
|
279
|
+
- a344ac7: Fix tool streaming in agent network
|
|
280
|
+
- Updated dependencies [a344ac7]
|
|
281
|
+
- @mastra/core@0.10.8-alpha.0
|
|
282
|
+
|
|
283
|
+
## 0.10.6
|
|
284
|
+
|
|
285
|
+
### Patch Changes
|
|
286
|
+
|
|
287
|
+
- 8e1b6e9: dependencies updates:
|
|
288
|
+
- Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
|
|
289
|
+
- 9bf1d55: Fix runtimeContext in mastra server, client SDK
|
|
290
|
+
- 18a5d59: clientTools client side execution
|
|
291
|
+
- 5d74aab: vNext network in playground
|
|
292
|
+
- bee3fe4: Fix client side tool calling
|
|
293
|
+
- c0d41f6: Fix streaming for agent tool calls
|
|
294
|
+
- Updated dependencies [15e9d26]
|
|
295
|
+
- Updated dependencies [d1baedb]
|
|
296
|
+
- Updated dependencies [d8f2d19]
|
|
297
|
+
- Updated dependencies [4d21bf2]
|
|
298
|
+
- Updated dependencies [07d6d88]
|
|
299
|
+
- Updated dependencies [9d52b17]
|
|
300
|
+
- Updated dependencies [2097952]
|
|
301
|
+
- Updated dependencies [792c4c0]
|
|
302
|
+
- Updated dependencies [5d74aab]
|
|
303
|
+
- Updated dependencies [a8b194f]
|
|
304
|
+
- Updated dependencies [4fb0cc2]
|
|
305
|
+
- Updated dependencies [d2a7a31]
|
|
306
|
+
- Updated dependencies [502fe05]
|
|
307
|
+
- Updated dependencies [144eb0b]
|
|
308
|
+
- Updated dependencies [8ba1b51]
|
|
309
|
+
- Updated dependencies [4efcfa0]
|
|
310
|
+
- Updated dependencies [0e17048]
|
|
311
|
+
- @mastra/core@0.10.7
|
|
312
|
+
|
|
313
|
+
## 0.10.6-alpha.6
|
|
314
|
+
|
|
315
|
+
### Patch Changes
|
|
316
|
+
|
|
317
|
+
- c0d41f6: Fix streaming for agent tool calls
|
|
318
|
+
|
|
319
|
+
## 0.10.6-alpha.5
|
|
320
|
+
|
|
321
|
+
### Patch Changes
|
|
322
|
+
|
|
323
|
+
- bee3fe4: Fix client side tool calling
|
|
324
|
+
- @mastra/core@0.10.7-alpha.5
|
|
325
|
+
|
|
326
|
+
## 0.10.6-alpha.4
|
|
327
|
+
|
|
328
|
+
### Patch Changes
|
|
329
|
+
|
|
330
|
+
- Updated dependencies [a8b194f]
|
|
331
|
+
- @mastra/core@0.10.7-alpha.4
|
|
332
|
+
|
|
333
|
+
## 0.10.6-alpha.3
|
|
334
|
+
|
|
335
|
+
### Patch Changes
|
|
336
|
+
|
|
337
|
+
- 18a5d59: clientTools client side execution
|
|
338
|
+
- Updated dependencies [792c4c0]
|
|
339
|
+
- Updated dependencies [502fe05]
|
|
340
|
+
- Updated dependencies [4efcfa0]
|
|
341
|
+
- @mastra/core@0.10.7-alpha.3
|
|
342
|
+
|
|
343
|
+
## 0.10.6-alpha.2
|
|
344
|
+
|
|
345
|
+
### Patch Changes
|
|
346
|
+
|
|
347
|
+
- 8e1b6e9: dependencies updates:
|
|
348
|
+
- Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
|
|
349
|
+
- 9bf1d55: Fix runtimeContext in mastra server, client SDK
|
|
350
|
+
- 5d74aab: vNext network in playground
|
|
351
|
+
- Updated dependencies [15e9d26]
|
|
352
|
+
- Updated dependencies [07d6d88]
|
|
353
|
+
- Updated dependencies [5d74aab]
|
|
354
|
+
- Updated dependencies [144eb0b]
|
|
355
|
+
- @mastra/core@0.10.7-alpha.2
|
|
356
|
+
|
|
357
|
+
## 0.10.6-alpha.1
|
|
358
|
+
|
|
359
|
+
### Patch Changes
|
|
360
|
+
|
|
361
|
+
- Updated dependencies [d1baedb]
|
|
362
|
+
- Updated dependencies [4d21bf2]
|
|
363
|
+
- Updated dependencies [2097952]
|
|
364
|
+
- Updated dependencies [4fb0cc2]
|
|
365
|
+
- Updated dependencies [d2a7a31]
|
|
366
|
+
- Updated dependencies [0e17048]
|
|
367
|
+
- @mastra/core@0.10.7-alpha.1
|
|
368
|
+
|
|
369
|
+
## 0.10.6-alpha.0
|
|
370
|
+
|
|
371
|
+
### Patch Changes
|
|
372
|
+
|
|
373
|
+
- Updated dependencies [d8f2d19]
|
|
374
|
+
- Updated dependencies [9d52b17]
|
|
375
|
+
- Updated dependencies [8ba1b51]
|
|
376
|
+
- @mastra/core@0.10.7-alpha.0
|
|
377
|
+
|
|
378
|
+
## 0.10.5
|
|
379
|
+
|
|
380
|
+
### Patch Changes
|
|
381
|
+
|
|
382
|
+
- 63f6b7d: dependencies updates:
|
|
383
|
+
- 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`)
|
|
384
|
+
- Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
|
|
385
|
+
- ee9af57: Add api for polling run execution result and get run by id
|
|
386
|
+
- 3270d9d: Fix runtime context being undefined
|
|
387
|
+
- Updated dependencies [63f6b7d]
|
|
388
|
+
- Updated dependencies [12a95fc]
|
|
389
|
+
- Updated dependencies [4b0f8a6]
|
|
390
|
+
- Updated dependencies [51264a5]
|
|
391
|
+
- Updated dependencies [8e6f677]
|
|
392
|
+
- Updated dependencies [d70c420]
|
|
393
|
+
- Updated dependencies [ee9af57]
|
|
394
|
+
- Updated dependencies [36f1c36]
|
|
395
|
+
- Updated dependencies [2a16996]
|
|
396
|
+
- Updated dependencies [10d352e]
|
|
397
|
+
- Updated dependencies [9589624]
|
|
398
|
+
- Updated dependencies [53d3c37]
|
|
399
|
+
- Updated dependencies [751c894]
|
|
400
|
+
- Updated dependencies [577ce3a]
|
|
401
|
+
- Updated dependencies [9260b3a]
|
|
402
|
+
- @mastra/core@0.10.6
|
|
403
|
+
|
|
404
|
+
## 0.10.5-alpha.5
|
|
405
|
+
|
|
406
|
+
### Patch Changes
|
|
407
|
+
|
|
408
|
+
- Updated dependencies [12a95fc]
|
|
409
|
+
- Updated dependencies [51264a5]
|
|
410
|
+
- Updated dependencies [8e6f677]
|
|
411
|
+
- @mastra/core@0.10.6-alpha.5
|
|
412
|
+
|
|
413
|
+
## 0.10.5-alpha.4
|
|
414
|
+
|
|
415
|
+
### Patch Changes
|
|
416
|
+
|
|
417
|
+
- Updated dependencies [9589624]
|
|
418
|
+
- @mastra/core@0.10.6-alpha.4
|
|
419
|
+
|
|
420
|
+
## 0.10.5-alpha.3
|
|
421
|
+
|
|
422
|
+
### Patch Changes
|
|
423
|
+
|
|
424
|
+
- Updated dependencies [d70c420]
|
|
425
|
+
- Updated dependencies [2a16996]
|
|
426
|
+
- @mastra/core@0.10.6-alpha.3
|
|
427
|
+
|
|
428
|
+
## 0.10.5-alpha.2
|
|
429
|
+
|
|
430
|
+
### Patch Changes
|
|
431
|
+
|
|
432
|
+
- Updated dependencies [4b0f8a6]
|
|
433
|
+
- @mastra/core@0.10.6-alpha.2
|
|
434
|
+
|
|
435
|
+
## 0.10.5-alpha.1
|
|
436
|
+
|
|
437
|
+
### Patch Changes
|
|
438
|
+
|
|
439
|
+
- ee9af57: Add api for polling run execution result and get run by id
|
|
440
|
+
- 3270d9d: Fix runtime context being undefined
|
|
441
|
+
- Updated dependencies [ee9af57]
|
|
442
|
+
- Updated dependencies [751c894]
|
|
443
|
+
- Updated dependencies [577ce3a]
|
|
444
|
+
- Updated dependencies [9260b3a]
|
|
445
|
+
- @mastra/core@0.10.6-alpha.1
|
|
446
|
+
|
|
447
|
+
## 0.10.5-alpha.0
|
|
448
|
+
|
|
449
|
+
### Patch Changes
|
|
450
|
+
|
|
451
|
+
- 63f6b7d: dependencies updates:
|
|
452
|
+
- 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`)
|
|
453
|
+
- Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
|
|
454
|
+
- Updated dependencies [63f6b7d]
|
|
455
|
+
- Updated dependencies [36f1c36]
|
|
456
|
+
- Updated dependencies [10d352e]
|
|
457
|
+
- Updated dependencies [53d3c37]
|
|
458
|
+
- @mastra/core@0.10.6-alpha.0
|
|
459
|
+
|
|
460
|
+
## 0.10.4
|
|
461
|
+
|
|
462
|
+
### Patch Changes
|
|
463
|
+
|
|
464
|
+
- Updated dependencies [13c97f9]
|
|
465
|
+
- @mastra/core@0.10.5
|
|
466
|
+
|
|
467
|
+
## 0.10.3
|
|
468
|
+
|
|
469
|
+
### Patch Changes
|
|
470
|
+
|
|
471
|
+
- 1ccccff: dependencies updates:
|
|
472
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
473
|
+
- 1ccccff: dependencies updates:
|
|
474
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
475
|
+
- f1f1f1b: Add basic filtering capabilities to logs
|
|
476
|
+
- b2810ab: Move @mastra/core to deps
|
|
477
|
+
- 82090c1: Add pagination to logs
|
|
478
|
+
- 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
|
|
479
|
+
- Updated dependencies [d1ed912]
|
|
480
|
+
- Updated dependencies [f6fd25f]
|
|
481
|
+
- Updated dependencies [dffb67b]
|
|
482
|
+
- Updated dependencies [f1f1f1b]
|
|
483
|
+
- Updated dependencies [925ab94]
|
|
484
|
+
- Updated dependencies [f9816ae]
|
|
485
|
+
- Updated dependencies [82090c1]
|
|
486
|
+
- Updated dependencies [1b443fd]
|
|
487
|
+
- Updated dependencies [ce97900]
|
|
488
|
+
- Updated dependencies [f1309d3]
|
|
489
|
+
- Updated dependencies [14a2566]
|
|
490
|
+
- Updated dependencies [f7f8293]
|
|
491
|
+
- Updated dependencies [48eddb9]
|
|
492
|
+
- @mastra/core@0.10.4
|
|
493
|
+
|
|
494
|
+
## 0.10.3-alpha.3
|
|
495
|
+
|
|
496
|
+
### Patch Changes
|
|
497
|
+
|
|
498
|
+
- Updated dependencies [925ab94]
|
|
499
|
+
- @mastra/core@0.10.4-alpha.3
|
|
500
|
+
|
|
501
|
+
## 0.10.3-alpha.2
|
|
502
|
+
|
|
503
|
+
### Patch Changes
|
|
504
|
+
|
|
505
|
+
- Updated dependencies [48eddb9]
|
|
506
|
+
- @mastra/core@0.10.4-alpha.2
|
|
507
|
+
|
|
508
|
+
## 0.10.3-alpha.1
|
|
509
|
+
|
|
510
|
+
### Patch Changes
|
|
511
|
+
|
|
512
|
+
- 1ccccff: dependencies updates:
|
|
513
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
514
|
+
- 1ccccff: dependencies updates:
|
|
515
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
516
|
+
- Updated dependencies [f6fd25f]
|
|
517
|
+
- Updated dependencies [dffb67b]
|
|
518
|
+
- Updated dependencies [f1309d3]
|
|
519
|
+
- Updated dependencies [f7f8293]
|
|
520
|
+
- @mastra/core@0.10.4-alpha.1
|
|
521
|
+
|
|
522
|
+
## 0.10.3-alpha.0
|
|
523
|
+
|
|
524
|
+
### Patch Changes
|
|
525
|
+
|
|
526
|
+
- f1f1f1b: Add basic filtering capabilities to logs
|
|
527
|
+
- b2810ab: Move @mastra/core to deps
|
|
528
|
+
- 82090c1: Add pagination to logs
|
|
529
|
+
- 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
|
|
530
|
+
- Updated dependencies [d1ed912]
|
|
531
|
+
- Updated dependencies [f1f1f1b]
|
|
532
|
+
- Updated dependencies [f9816ae]
|
|
533
|
+
- Updated dependencies [82090c1]
|
|
534
|
+
- Updated dependencies [1b443fd]
|
|
535
|
+
- Updated dependencies [ce97900]
|
|
536
|
+
- Updated dependencies [14a2566]
|
|
537
|
+
- @mastra/core@0.10.4-alpha.0
|
|
538
|
+
|
|
539
|
+
## 0.10.2
|
|
540
|
+
|
|
541
|
+
### Patch Changes
|
|
542
|
+
|
|
543
|
+
- 592a2db: Added different icons for agents and workflows in mcp tools list
|
|
544
|
+
- 37643b8: Fix tool access
|
|
545
|
+
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
546
|
+
- b72c768: [Bug fix] Serialize parameters in clientTools
|
|
547
|
+
- f0d559f: Fix peerdeps for alpha channel
|
|
548
|
+
- Updated dependencies [ee77e78]
|
|
549
|
+
- Updated dependencies [592a2db]
|
|
550
|
+
- Updated dependencies [e5dc18d]
|
|
551
|
+
- Updated dependencies [ab5adbe]
|
|
552
|
+
- Updated dependencies [1e8bb40]
|
|
553
|
+
- Updated dependencies [1b5fc55]
|
|
554
|
+
- Updated dependencies [195c428]
|
|
555
|
+
- Updated dependencies [f73e11b]
|
|
556
|
+
- Updated dependencies [37643b8]
|
|
557
|
+
- Updated dependencies [99fd6cf]
|
|
558
|
+
- Updated dependencies [c5bf1ce]
|
|
559
|
+
- Updated dependencies [add596e]
|
|
560
|
+
- Updated dependencies [8dc94d8]
|
|
561
|
+
- Updated dependencies [ecebbeb]
|
|
562
|
+
- Updated dependencies [79d5145]
|
|
563
|
+
- Updated dependencies [12b7002]
|
|
564
|
+
- Updated dependencies [2901125]
|
|
565
|
+
- @mastra/core@0.10.2
|
|
566
|
+
|
|
567
|
+
## 0.10.2-alpha.3
|
|
568
|
+
|
|
569
|
+
### Patch Changes
|
|
570
|
+
|
|
571
|
+
- 37643b8: Fix tool access
|
|
572
|
+
- b72c768: [Bug fix] Serialize parameters in clientTools
|
|
573
|
+
- Updated dependencies [37643b8]
|
|
574
|
+
- Updated dependencies [79d5145]
|
|
575
|
+
- @mastra/core@0.10.2-alpha.8
|
|
576
|
+
|
|
577
|
+
## 0.10.2-alpha.2
|
|
578
|
+
|
|
579
|
+
### Patch Changes
|
|
580
|
+
|
|
581
|
+
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
582
|
+
- Updated dependencies [c5bf1ce]
|
|
583
|
+
- Updated dependencies [12b7002]
|
|
584
|
+
- @mastra/core@0.10.2-alpha.4
|
|
585
|
+
|
|
586
|
+
## 0.10.2-alpha.1
|
|
587
|
+
|
|
588
|
+
### Patch Changes
|
|
589
|
+
|
|
590
|
+
- f0d559f: Fix peerdeps for alpha channel
|
|
591
|
+
- Updated dependencies [1e8bb40]
|
|
592
|
+
- @mastra/core@0.10.2-alpha.2
|
|
593
|
+
|
|
594
|
+
## 0.10.2-alpha.0
|
|
595
|
+
|
|
596
|
+
### Patch Changes
|
|
597
|
+
|
|
598
|
+
- 592a2db: Added different icons for agents and workflows in mcp tools list
|
|
599
|
+
- Updated dependencies [592a2db]
|
|
600
|
+
- Updated dependencies [e5dc18d]
|
|
601
|
+
- @mastra/core@0.10.2-alpha.0
|
|
602
|
+
|
|
603
|
+
## 0.10.1
|
|
604
|
+
|
|
605
|
+
### Patch Changes
|
|
606
|
+
|
|
607
|
+
- 267773e: Show map config on workflow graph
|
|
608
|
+
Highlight borders for conditions too on workflow graph
|
|
609
|
+
Fix watch stream
|
|
610
|
+
- 5343f93: Move emitter to symbol to make private
|
|
611
|
+
- f622cfa: Make some properties of CreateMemoryThreadParams optional
|
|
612
|
+
- 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
|
|
613
|
+
- Updated dependencies [d70b807]
|
|
614
|
+
- Updated dependencies [6d16390]
|
|
615
|
+
- Updated dependencies [1e4a421]
|
|
616
|
+
- Updated dependencies [200d0da]
|
|
617
|
+
- Updated dependencies [bf5f17b]
|
|
618
|
+
- Updated dependencies [5343f93]
|
|
619
|
+
- Updated dependencies [38aee50]
|
|
620
|
+
- Updated dependencies [5c41100]
|
|
621
|
+
- Updated dependencies [d6a759b]
|
|
622
|
+
- Updated dependencies [6015bdf]
|
|
623
|
+
- @mastra/core@0.10.1
|
|
624
|
+
|
|
625
|
+
## 0.10.1-alpha.3
|
|
626
|
+
|
|
627
|
+
### Patch Changes
|
|
628
|
+
|
|
629
|
+
- 267773e: Show map config on workflow graph
|
|
630
|
+
Highlight borders for conditions too on workflow graph
|
|
631
|
+
Fix watch stream
|
|
632
|
+
|
|
633
|
+
## 0.10.1-alpha.2
|
|
634
|
+
|
|
635
|
+
### Patch Changes
|
|
636
|
+
|
|
637
|
+
- 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
|
|
638
|
+
- Updated dependencies [6015bdf]
|
|
639
|
+
- @mastra/core@0.10.1-alpha.2
|
|
640
|
+
|
|
641
|
+
## 0.10.1-alpha.1
|
|
642
|
+
|
|
643
|
+
### Patch Changes
|
|
644
|
+
|
|
645
|
+
- 5343f93: Move emitter to symbol to make private
|
|
646
|
+
- Updated dependencies [200d0da]
|
|
647
|
+
- Updated dependencies [bf5f17b]
|
|
648
|
+
- Updated dependencies [5343f93]
|
|
649
|
+
- Updated dependencies [38aee50]
|
|
650
|
+
- Updated dependencies [5c41100]
|
|
651
|
+
- Updated dependencies [d6a759b]
|
|
652
|
+
- @mastra/core@0.10.1-alpha.1
|
|
653
|
+
|
|
654
|
+
## 0.10.1-alpha.0
|
|
655
|
+
|
|
656
|
+
### Patch Changes
|
|
657
|
+
|
|
658
|
+
- f622cfa: Make some properties of CreateMemoryThreadParams optional
|
|
659
|
+
- Updated dependencies [6d16390]
|
|
660
|
+
- Updated dependencies [1e4a421]
|
|
661
|
+
- @mastra/core@0.10.1-alpha.0
|
|
662
|
+
|
|
663
|
+
## 0.10.0
|
|
664
|
+
|
|
665
|
+
### Minor Changes
|
|
666
|
+
|
|
667
|
+
- 83da932: Move @mastra/core to peerdeps
|
|
668
|
+
- 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
|
|
669
|
+
|
|
670
|
+
### Patch Changes
|
|
671
|
+
|
|
672
|
+
- b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
|
|
673
|
+
- 0215b0b: Add description to vnext workflow response
|
|
674
|
+
- f53a6ac: Add VNextWorkflowRuns type
|
|
675
|
+
- ccdabdc: Remove trailing / from mastraClient baseUrl
|
|
676
|
+
- a6e3881: Remove non serializable options from agent stream,generate
|
|
677
|
+
- fddae56: Add telemetry to cliend SDK streamParams
|
|
678
|
+
- 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.
|
|
679
|
+
- 5063646: Accept plain obects as runtimeContext
|
|
680
|
+
- 2672a05: Add MCP servers and tool call execution to playground
|
|
681
|
+
- Updated dependencies [b3a3d63]
|
|
682
|
+
- Updated dependencies [344f453]
|
|
683
|
+
- Updated dependencies [0a3ae6d]
|
|
684
|
+
- Updated dependencies [95911be]
|
|
685
|
+
- Updated dependencies [f53a6ac]
|
|
686
|
+
- Updated dependencies [5eb5a99]
|
|
687
|
+
- Updated dependencies [7e632c5]
|
|
688
|
+
- Updated dependencies [1e9fbfa]
|
|
689
|
+
- Updated dependencies [eabdcd9]
|
|
690
|
+
- Updated dependencies [90be034]
|
|
691
|
+
- Updated dependencies [99f050a]
|
|
692
|
+
- Updated dependencies [d0ee3c6]
|
|
693
|
+
- Updated dependencies [b2ae5aa]
|
|
694
|
+
- Updated dependencies [23f258c]
|
|
695
|
+
- Updated dependencies [a7292b0]
|
|
696
|
+
- Updated dependencies [0dcb9f0]
|
|
697
|
+
- Updated dependencies [2672a05]
|
|
698
|
+
- @mastra/core@0.10.0
|
|
699
|
+
|
|
700
|
+
## 0.2.0-alpha.1
|
|
701
|
+
|
|
702
|
+
### Minor Changes
|
|
703
|
+
|
|
704
|
+
- 83da932: Move @mastra/core to peerdeps
|
|
705
|
+
- 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
|
|
706
|
+
|
|
707
|
+
### Patch Changes
|
|
708
|
+
|
|
709
|
+
- b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
|
|
710
|
+
- 0215b0b: Add description to vnext workflow response
|
|
711
|
+
- 5063646: Accept plain obects as runtimeContext
|
|
712
|
+
- Updated dependencies [b3a3d63]
|
|
713
|
+
- Updated dependencies [344f453]
|
|
714
|
+
- Updated dependencies [0a3ae6d]
|
|
715
|
+
- Updated dependencies [95911be]
|
|
716
|
+
- Updated dependencies [5eb5a99]
|
|
717
|
+
- Updated dependencies [7e632c5]
|
|
718
|
+
- Updated dependencies [1e9fbfa]
|
|
719
|
+
- Updated dependencies [b2ae5aa]
|
|
720
|
+
- Updated dependencies [a7292b0]
|
|
721
|
+
- Updated dependencies [0dcb9f0]
|
|
722
|
+
- @mastra/core@0.10.0-alpha.1
|
|
723
|
+
|
|
724
|
+
## 0.1.23-alpha.0
|
|
725
|
+
|
|
726
|
+
### Patch Changes
|
|
727
|
+
|
|
728
|
+
- f53a6ac: Add VNextWorkflowRuns type
|
|
729
|
+
- ccdabdc: Remove trailing / from mastraClient baseUrl
|
|
730
|
+
- a6e3881: Remove non serializable options from agent stream,generate
|
|
731
|
+
- fddae56: Add telemetry to cliend SDK streamParams
|
|
732
|
+
- 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.
|
|
733
|
+
- 2672a05: Add MCP servers and tool call execution to playground
|
|
734
|
+
- Updated dependencies [f53a6ac]
|
|
735
|
+
- Updated dependencies [eabdcd9]
|
|
736
|
+
- Updated dependencies [90be034]
|
|
737
|
+
- Updated dependencies [99f050a]
|
|
738
|
+
- Updated dependencies [d0ee3c6]
|
|
739
|
+
- Updated dependencies [23f258c]
|
|
740
|
+
- Updated dependencies [2672a05]
|
|
741
|
+
- @mastra/core@0.9.5-alpha.0
|
|
742
|
+
|
|
743
|
+
## 0.1.22
|
|
744
|
+
|
|
745
|
+
### Patch Changes
|
|
746
|
+
|
|
747
|
+
- c2f9e60: Resolves type issue and listen response string wrapped in text object twice
|
|
748
|
+
- 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
|
|
749
|
+
- b4c6c87: fix: Specify $refStrategy: 'none' when calling zodToJsonSchema.
|
|
750
|
+
- 0c3d117: Add workflows to agent server handlers
|
|
751
|
+
- a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
|
|
752
|
+
- c2b980b: Fix multiple too-calls in AGUI
|
|
753
|
+
- cb1f698: Set runtimeContext from playground for agents, tools, workflows
|
|
754
|
+
- 0b8b868: Added A2A support + streaming
|
|
755
|
+
- Updated dependencies [396be50]
|
|
756
|
+
- Updated dependencies [ab80e7e]
|
|
757
|
+
- Updated dependencies [c3bd795]
|
|
758
|
+
- Updated dependencies [da082f8]
|
|
759
|
+
- Updated dependencies [a5810ce]
|
|
760
|
+
- Updated dependencies [3e9c131]
|
|
761
|
+
- Updated dependencies [3171b5b]
|
|
762
|
+
- Updated dependencies [973e5ac]
|
|
763
|
+
- Updated dependencies [daf942f]
|
|
764
|
+
- Updated dependencies [0b8b868]
|
|
765
|
+
- Updated dependencies [9e1eff5]
|
|
766
|
+
- Updated dependencies [6fa1ad1]
|
|
767
|
+
- Updated dependencies [c28d7a0]
|
|
768
|
+
- Updated dependencies [edf1e88]
|
|
769
|
+
- @mastra/core@0.9.4
|
|
770
|
+
|
|
771
|
+
## 0.1.22-alpha.4
|
|
772
|
+
|
|
773
|
+
### Patch Changes
|
|
774
|
+
|
|
775
|
+
- 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
|
|
776
|
+
- Updated dependencies [3e9c131]
|
|
777
|
+
- @mastra/core@0.9.4-alpha.4
|
|
778
|
+
|
|
779
|
+
## 0.1.22-alpha.3
|
|
780
|
+
|
|
781
|
+
### Patch Changes
|
|
782
|
+
|
|
783
|
+
- c2f9e60: Resolves type issue and listen response string wrapped in text object twice
|
|
784
|
+
- 0c3d117: Add workflows to agent server handlers
|
|
785
|
+
- a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
|
|
786
|
+
- Updated dependencies [396be50]
|
|
787
|
+
- Updated dependencies [c3bd795]
|
|
788
|
+
- Updated dependencies [da082f8]
|
|
789
|
+
- Updated dependencies [a5810ce]
|
|
790
|
+
- @mastra/core@0.9.4-alpha.3
|
|
791
|
+
|
|
792
|
+
## 0.1.22-alpha.2
|
|
793
|
+
|
|
794
|
+
### Patch Changes
|
|
795
|
+
|
|
796
|
+
- b4c6c87: fix: Specify $refStrategy: 'none' when calling zodToJsonSchema.
|
|
797
|
+
- c2b980b: Fix multiple too-calls in AGUI
|
|
798
|
+
- Updated dependencies [3171b5b]
|
|
799
|
+
- Updated dependencies [973e5ac]
|
|
800
|
+
- Updated dependencies [9e1eff5]
|
|
801
|
+
- @mastra/core@0.9.4-alpha.2
|
|
802
|
+
|
|
803
|
+
## 0.1.22-alpha.1
|
|
804
|
+
|
|
805
|
+
### Patch Changes
|
|
806
|
+
|
|
807
|
+
- Updated dependencies [ab80e7e]
|
|
808
|
+
- Updated dependencies [6fa1ad1]
|
|
809
|
+
- Updated dependencies [c28d7a0]
|
|
810
|
+
- Updated dependencies [edf1e88]
|
|
811
|
+
- @mastra/core@0.9.4-alpha.1
|
|
812
|
+
|
|
813
|
+
## 0.1.22-alpha.0
|
|
814
|
+
|
|
815
|
+
### Patch Changes
|
|
816
|
+
|
|
817
|
+
- cb1f698: Set runtimeContext from playground for agents, tools, workflows
|
|
818
|
+
- 0b8b868: Added A2A support + streaming
|
|
819
|
+
- Updated dependencies [daf942f]
|
|
820
|
+
- Updated dependencies [0b8b868]
|
|
821
|
+
- @mastra/core@0.9.4-alpha.0
|
|
822
|
+
|
|
823
|
+
## 0.1.21
|
|
824
|
+
|
|
825
|
+
### Patch Changes
|
|
826
|
+
|
|
827
|
+
- 526c570: expose agent runtimeContext from clientSDK
|
|
828
|
+
- 36eb1aa: Fix AGUI text part
|
|
829
|
+
- 62c9e7d: Fix disappearing tool calls in streaming
|
|
830
|
+
- Updated dependencies [e450778]
|
|
831
|
+
- Updated dependencies [8902157]
|
|
832
|
+
- Updated dependencies [ca0dc88]
|
|
833
|
+
- Updated dependencies [526c570]
|
|
834
|
+
- Updated dependencies [d7a6a33]
|
|
835
|
+
- Updated dependencies [9cd1a46]
|
|
836
|
+
- Updated dependencies [b5d2de0]
|
|
837
|
+
- Updated dependencies [644f8ad]
|
|
838
|
+
- Updated dependencies [70dbf51]
|
|
839
|
+
- @mastra/core@0.9.3
|
|
840
|
+
|
|
841
|
+
## 0.1.21-alpha.1
|
|
842
|
+
|
|
843
|
+
### Patch Changes
|
|
844
|
+
|
|
845
|
+
- 36eb1aa: Fix AGUI text part
|
|
846
|
+
- 62c9e7d: Fix disappearing tool calls in streaming
|
|
847
|
+
- Updated dependencies [e450778]
|
|
848
|
+
- Updated dependencies [8902157]
|
|
849
|
+
- Updated dependencies [ca0dc88]
|
|
850
|
+
- Updated dependencies [9cd1a46]
|
|
851
|
+
- Updated dependencies [70dbf51]
|
|
852
|
+
- @mastra/core@0.9.3-alpha.1
|
|
853
|
+
|
|
854
|
+
## 0.1.21-alpha.0
|
|
855
|
+
|
|
856
|
+
### Patch Changes
|
|
857
|
+
|
|
858
|
+
- 526c570: expose agent runtimeContext from clientSDK
|
|
859
|
+
- Updated dependencies [526c570]
|
|
860
|
+
- Updated dependencies [b5d2de0]
|
|
861
|
+
- Updated dependencies [644f8ad]
|
|
862
|
+
- @mastra/core@0.9.3-alpha.0
|
|
863
|
+
|
|
864
|
+
## 0.1.20
|
|
865
|
+
|
|
866
|
+
### Patch Changes
|
|
867
|
+
|
|
868
|
+
- 2cf3b8f: dependencies updates:
|
|
869
|
+
- Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
|
|
870
|
+
- 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`)
|
|
871
|
+
- 4155f47: Add parameters to filter workflow runs
|
|
872
|
+
Add fromDate and toDate to telemetry parameters
|
|
7
873
|
- 254f5c3: Audit, cleanup MastraClient
|
|
8
874
|
- 0097d50: Add serializedStepGraph to vNext workflow
|
|
9
875
|
Return serializedStepGraph from vNext workflow
|
|
10
876
|
Use serializedStepGraph in vNext workflow graph
|
|
11
877
|
- 2429c74: Add get workflow runs api to client-js
|
|
878
|
+
- 2e4f8e9: Agui client integration
|
|
879
|
+
- Updated dependencies [6052aa6]
|
|
880
|
+
- Updated dependencies [967b41c]
|
|
881
|
+
- Updated dependencies [3d2fb5c]
|
|
12
882
|
- Updated dependencies [26738f4]
|
|
883
|
+
- Updated dependencies [4155f47]
|
|
884
|
+
- Updated dependencies [7eeb2bc]
|
|
13
885
|
- Updated dependencies [b804723]
|
|
886
|
+
- Updated dependencies [8607972]
|
|
887
|
+
- Updated dependencies [ccef9f9]
|
|
14
888
|
- Updated dependencies [0097d50]
|
|
15
|
-
|
|
889
|
+
- Updated dependencies [7eeb2bc]
|
|
890
|
+
- Updated dependencies [17826a9]
|
|
891
|
+
- Updated dependencies [7d8b7c7]
|
|
892
|
+
- Updated dependencies [fba031f]
|
|
893
|
+
- Updated dependencies [3a5f1e1]
|
|
894
|
+
- Updated dependencies [51e6923]
|
|
895
|
+
- Updated dependencies [8398d89]
|
|
896
|
+
- @mastra/core@0.9.2
|
|
897
|
+
|
|
898
|
+
## 0.1.20-alpha.6
|
|
899
|
+
|
|
900
|
+
### Patch Changes
|
|
901
|
+
|
|
902
|
+
- 2e4f8e9: Agui client integration
|
|
903
|
+
- Updated dependencies [6052aa6]
|
|
904
|
+
- Updated dependencies [7d8b7c7]
|
|
905
|
+
- Updated dependencies [3a5f1e1]
|
|
906
|
+
- Updated dependencies [8398d89]
|
|
907
|
+
- @mastra/core@0.9.2-alpha.6
|
|
908
|
+
|
|
909
|
+
## 0.1.20-alpha.5
|
|
910
|
+
|
|
911
|
+
### Patch Changes
|
|
912
|
+
|
|
913
|
+
- Updated dependencies [3d2fb5c]
|
|
914
|
+
- Updated dependencies [7eeb2bc]
|
|
915
|
+
- Updated dependencies [8607972]
|
|
916
|
+
- Updated dependencies [7eeb2bc]
|
|
917
|
+
- Updated dependencies [fba031f]
|
|
918
|
+
- @mastra/core@0.9.2-alpha.5
|
|
919
|
+
|
|
920
|
+
## 0.1.20-alpha.4
|
|
921
|
+
|
|
922
|
+
### Patch Changes
|
|
923
|
+
|
|
924
|
+
- Updated dependencies [ccef9f9]
|
|
925
|
+
- Updated dependencies [51e6923]
|
|
926
|
+
- @mastra/core@0.9.2-alpha.4
|
|
927
|
+
|
|
928
|
+
## 0.1.20-alpha.3
|
|
929
|
+
|
|
930
|
+
### Patch Changes
|
|
931
|
+
|
|
932
|
+
- 4155f47: Add parameters to filter workflow runs
|
|
933
|
+
Add fromDate and toDate to telemetry parameters
|
|
934
|
+
- Updated dependencies [967b41c]
|
|
935
|
+
- Updated dependencies [4155f47]
|
|
936
|
+
- Updated dependencies [17826a9]
|
|
937
|
+
- @mastra/core@0.9.2-alpha.3
|
|
16
938
|
|
|
17
939
|
## 0.1.20-alpha.2
|
|
18
940
|
|