@mastra/client-js 0.0.0-vnextWorkflows-20250422142014 → 0.0.0-workflow-deno-20250616130925
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 +662 -2
- package/dist/index.cjs +889 -55
- package/dist/index.d.cts +408 -41
- package/dist/index.d.ts +408 -41
- package/dist/index.js +885 -55
- package/package.json +23 -13
- package/src/adapters/agui.test.ts +180 -0
- package/src/adapters/agui.ts +239 -0
- package/src/client.ts +200 -13
- package/src/example.ts +30 -31
- package/src/index.test.ts +125 -5
- package/src/resources/a2a.ts +88 -0
- package/src/resources/agent.ts +49 -37
- package/src/resources/base.ts +2 -2
- package/src/resources/index.ts +4 -1
- package/src/resources/legacy-workflow.ts +242 -0
- package/src/resources/mcp-tool.ts +48 -0
- package/src/resources/memory-thread.ts +8 -5
- package/src/resources/network.ts +6 -12
- package/src/resources/tool.ts +16 -3
- package/src/resources/workflow.ts +254 -96
- package/src/types.ts +134 -19
- package/src/utils/index.ts +11 -0
- package/src/utils/process-client-tools.ts +31 -0
- package/src/utils/zod-to-json-schema.ts +10 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
|
|
2
|
+
> @mastra/client-js@0.10.5-alpha.0 build /home/runner/work/mastra/mastra/client-sdks/client-js
|
|
3
|
+
> tsup src/index.ts --format esm,cjs --dts --clean --treeshake=smallest --splitting
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v8.5.0
|
|
8
|
+
[34mCLI[39m Target: es2022
|
|
9
|
+
[34mCLI[39m Cleaning output folder
|
|
10
|
+
[34mESM[39m Build start
|
|
11
|
+
[34mCJS[39m Build start
|
|
12
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m47.27 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 1634ms
|
|
14
|
+
[32mESM[39m [1mdist/index.js [22m[32m46.98 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 1644ms
|
|
16
|
+
[34mDTS[39m Build start
|
|
17
|
+
[32mDTS[39m ⚡️ Build success in 12991ms
|
|
18
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m33.64 KB[39m
|
|
19
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m33.64 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,680 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-workflow-deno-20250616130925
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- 63f6b7d: dependencies updates:
|
|
8
|
+
- 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`)
|
|
9
|
+
- Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
|
|
10
|
+
- ee9af57: Add api for polling run execution result and get run by id
|
|
11
|
+
- 3ca9a67: Make createRun async to support storage
|
|
12
|
+
- Updated dependencies [63f6b7d]
|
|
13
|
+
- Updated dependencies [ee9af57]
|
|
14
|
+
- Updated dependencies [36f1c36]
|
|
15
|
+
- Updated dependencies [10d352e]
|
|
16
|
+
- Updated dependencies [3ca9a67]
|
|
17
|
+
- Updated dependencies [53d3c37]
|
|
18
|
+
- Updated dependencies [577ce3a]
|
|
19
|
+
- Updated dependencies [9260b3a]
|
|
20
|
+
- @mastra/core@0.0.0-workflow-deno-20250616130925
|
|
21
|
+
|
|
22
|
+
## 0.10.5-alpha.0
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- 63f6b7d: dependencies updates:
|
|
27
|
+
- 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`)
|
|
28
|
+
- Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
|
|
29
|
+
- Updated dependencies [63f6b7d]
|
|
30
|
+
- Updated dependencies [36f1c36]
|
|
31
|
+
- Updated dependencies [10d352e]
|
|
32
|
+
- Updated dependencies [53d3c37]
|
|
33
|
+
- @mastra/core@0.10.6-alpha.0
|
|
34
|
+
|
|
35
|
+
## 0.10.4
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies [13c97f9]
|
|
40
|
+
- @mastra/core@0.10.5
|
|
41
|
+
|
|
42
|
+
## 0.10.3
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- 1ccccff: dependencies updates:
|
|
47
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
48
|
+
- 1ccccff: dependencies updates:
|
|
49
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
50
|
+
- f1f1f1b: Add basic filtering capabilities to logs
|
|
51
|
+
- b2810ab: Move @mastra/core to deps
|
|
52
|
+
- 82090c1: Add pagination to logs
|
|
53
|
+
- 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
|
|
54
|
+
- Updated dependencies [d1ed912]
|
|
55
|
+
- Updated dependencies [f6fd25f]
|
|
56
|
+
- Updated dependencies [dffb67b]
|
|
57
|
+
- Updated dependencies [f1f1f1b]
|
|
58
|
+
- Updated dependencies [925ab94]
|
|
59
|
+
- Updated dependencies [f9816ae]
|
|
60
|
+
- Updated dependencies [82090c1]
|
|
61
|
+
- Updated dependencies [1b443fd]
|
|
62
|
+
- Updated dependencies [ce97900]
|
|
63
|
+
- Updated dependencies [f1309d3]
|
|
64
|
+
- Updated dependencies [14a2566]
|
|
65
|
+
- Updated dependencies [f7f8293]
|
|
66
|
+
- Updated dependencies [48eddb9]
|
|
67
|
+
- @mastra/core@0.10.4
|
|
68
|
+
|
|
69
|
+
## 0.10.3-alpha.3
|
|
70
|
+
|
|
71
|
+
### Patch Changes
|
|
72
|
+
|
|
73
|
+
- Updated dependencies [925ab94]
|
|
74
|
+
- @mastra/core@0.10.4-alpha.3
|
|
75
|
+
|
|
76
|
+
## 0.10.3-alpha.2
|
|
77
|
+
|
|
78
|
+
### Patch Changes
|
|
79
|
+
|
|
80
|
+
- Updated dependencies [48eddb9]
|
|
81
|
+
- @mastra/core@0.10.4-alpha.2
|
|
82
|
+
|
|
83
|
+
## 0.10.3-alpha.1
|
|
84
|
+
|
|
85
|
+
### Patch Changes
|
|
86
|
+
|
|
87
|
+
- 1ccccff: dependencies updates:
|
|
88
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
89
|
+
- 1ccccff: dependencies updates:
|
|
90
|
+
- Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
|
|
91
|
+
- Updated dependencies [f6fd25f]
|
|
92
|
+
- Updated dependencies [dffb67b]
|
|
93
|
+
- Updated dependencies [f1309d3]
|
|
94
|
+
- Updated dependencies [f7f8293]
|
|
95
|
+
- @mastra/core@0.10.4-alpha.1
|
|
96
|
+
|
|
97
|
+
## 0.10.3-alpha.0
|
|
98
|
+
|
|
99
|
+
### Patch Changes
|
|
100
|
+
|
|
101
|
+
- f1f1f1b: Add basic filtering capabilities to logs
|
|
102
|
+
- b2810ab: Move @mastra/core to deps
|
|
103
|
+
- 82090c1: Add pagination to logs
|
|
104
|
+
- 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
|
|
105
|
+
- Updated dependencies [d1ed912]
|
|
106
|
+
- Updated dependencies [f1f1f1b]
|
|
107
|
+
- Updated dependencies [f9816ae]
|
|
108
|
+
- Updated dependencies [82090c1]
|
|
109
|
+
- Updated dependencies [1b443fd]
|
|
110
|
+
- Updated dependencies [ce97900]
|
|
111
|
+
- Updated dependencies [14a2566]
|
|
112
|
+
- @mastra/core@0.10.4-alpha.0
|
|
113
|
+
|
|
114
|
+
## 0.10.2
|
|
115
|
+
|
|
116
|
+
### Patch Changes
|
|
117
|
+
|
|
118
|
+
- 592a2db: Added different icons for agents and workflows in mcp tools list
|
|
119
|
+
- 37643b8: Fix tool access
|
|
120
|
+
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
121
|
+
- b72c768: [Bug fix] Serialize parameters in clientTools
|
|
122
|
+
- f0d559f: Fix peerdeps for alpha channel
|
|
123
|
+
- Updated dependencies [ee77e78]
|
|
124
|
+
- Updated dependencies [592a2db]
|
|
125
|
+
- Updated dependencies [e5dc18d]
|
|
126
|
+
- Updated dependencies [ab5adbe]
|
|
127
|
+
- Updated dependencies [1e8bb40]
|
|
128
|
+
- Updated dependencies [1b5fc55]
|
|
129
|
+
- Updated dependencies [195c428]
|
|
130
|
+
- Updated dependencies [f73e11b]
|
|
131
|
+
- Updated dependencies [37643b8]
|
|
132
|
+
- Updated dependencies [99fd6cf]
|
|
133
|
+
- Updated dependencies [c5bf1ce]
|
|
134
|
+
- Updated dependencies [add596e]
|
|
135
|
+
- Updated dependencies [8dc94d8]
|
|
136
|
+
- Updated dependencies [ecebbeb]
|
|
137
|
+
- Updated dependencies [79d5145]
|
|
138
|
+
- Updated dependencies [12b7002]
|
|
139
|
+
- Updated dependencies [2901125]
|
|
140
|
+
- @mastra/core@0.10.2
|
|
141
|
+
|
|
142
|
+
## 0.10.2-alpha.3
|
|
143
|
+
|
|
144
|
+
### Patch Changes
|
|
145
|
+
|
|
146
|
+
- 37643b8: Fix tool access
|
|
147
|
+
- b72c768: [Bug fix] Serialize parameters in clientTools
|
|
148
|
+
- Updated dependencies [37643b8]
|
|
149
|
+
- Updated dependencies [79d5145]
|
|
150
|
+
- @mastra/core@0.10.2-alpha.8
|
|
151
|
+
|
|
152
|
+
## 0.10.2-alpha.2
|
|
153
|
+
|
|
154
|
+
### Patch Changes
|
|
155
|
+
|
|
156
|
+
- c5bf1ce: Add backwards compat code for new MessageList in storage
|
|
157
|
+
- Updated dependencies [c5bf1ce]
|
|
158
|
+
- Updated dependencies [12b7002]
|
|
159
|
+
- @mastra/core@0.10.2-alpha.4
|
|
160
|
+
|
|
161
|
+
## 0.10.2-alpha.1
|
|
162
|
+
|
|
163
|
+
### Patch Changes
|
|
164
|
+
|
|
165
|
+
- f0d559f: Fix peerdeps for alpha channel
|
|
166
|
+
- Updated dependencies [1e8bb40]
|
|
167
|
+
- @mastra/core@0.10.2-alpha.2
|
|
168
|
+
|
|
169
|
+
## 0.10.2-alpha.0
|
|
170
|
+
|
|
171
|
+
### Patch Changes
|
|
172
|
+
|
|
173
|
+
- 592a2db: Added different icons for agents and workflows in mcp tools list
|
|
174
|
+
- Updated dependencies [592a2db]
|
|
175
|
+
- Updated dependencies [e5dc18d]
|
|
176
|
+
- @mastra/core@0.10.2-alpha.0
|
|
177
|
+
|
|
178
|
+
## 0.10.1
|
|
179
|
+
|
|
180
|
+
### Patch Changes
|
|
181
|
+
|
|
182
|
+
- 267773e: Show map config on workflow graph
|
|
183
|
+
Highlight borders for conditions too on workflow graph
|
|
184
|
+
Fix watch stream
|
|
185
|
+
- 5343f93: Move emitter to symbol to make private
|
|
186
|
+
- f622cfa: Make some properties of CreateMemoryThreadParams optional
|
|
187
|
+
- 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
|
|
188
|
+
- Updated dependencies [d70b807]
|
|
189
|
+
- Updated dependencies [6d16390]
|
|
190
|
+
- Updated dependencies [1e4a421]
|
|
191
|
+
- Updated dependencies [200d0da]
|
|
192
|
+
- Updated dependencies [bf5f17b]
|
|
193
|
+
- Updated dependencies [5343f93]
|
|
194
|
+
- Updated dependencies [38aee50]
|
|
195
|
+
- Updated dependencies [5c41100]
|
|
196
|
+
- Updated dependencies [d6a759b]
|
|
197
|
+
- Updated dependencies [6015bdf]
|
|
198
|
+
- @mastra/core@0.10.1
|
|
199
|
+
|
|
200
|
+
## 0.10.1-alpha.3
|
|
201
|
+
|
|
202
|
+
### Patch Changes
|
|
203
|
+
|
|
204
|
+
- 267773e: Show map config on workflow graph
|
|
205
|
+
Highlight borders for conditions too on workflow graph
|
|
206
|
+
Fix watch stream
|
|
207
|
+
|
|
208
|
+
## 0.10.1-alpha.2
|
|
209
|
+
|
|
210
|
+
### Patch Changes
|
|
211
|
+
|
|
212
|
+
- 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
|
|
213
|
+
- Updated dependencies [6015bdf]
|
|
214
|
+
- @mastra/core@0.10.1-alpha.2
|
|
215
|
+
|
|
216
|
+
## 0.10.1-alpha.1
|
|
217
|
+
|
|
218
|
+
### Patch Changes
|
|
219
|
+
|
|
220
|
+
- 5343f93: Move emitter to symbol to make private
|
|
221
|
+
- Updated dependencies [200d0da]
|
|
222
|
+
- Updated dependencies [bf5f17b]
|
|
223
|
+
- Updated dependencies [5343f93]
|
|
224
|
+
- Updated dependencies [38aee50]
|
|
225
|
+
- Updated dependencies [5c41100]
|
|
226
|
+
- Updated dependencies [d6a759b]
|
|
227
|
+
- @mastra/core@0.10.1-alpha.1
|
|
228
|
+
|
|
229
|
+
## 0.10.1-alpha.0
|
|
230
|
+
|
|
231
|
+
### Patch Changes
|
|
232
|
+
|
|
233
|
+
- f622cfa: Make some properties of CreateMemoryThreadParams optional
|
|
234
|
+
- Updated dependencies [6d16390]
|
|
235
|
+
- Updated dependencies [1e4a421]
|
|
236
|
+
- @mastra/core@0.10.1-alpha.0
|
|
237
|
+
|
|
238
|
+
## 0.10.0
|
|
239
|
+
|
|
240
|
+
### Minor Changes
|
|
241
|
+
|
|
242
|
+
- 83da932: Move @mastra/core to peerdeps
|
|
243
|
+
- 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
|
|
244
|
+
|
|
245
|
+
### Patch Changes
|
|
246
|
+
|
|
247
|
+
- b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
|
|
248
|
+
- 0215b0b: Add description to vnext workflow response
|
|
249
|
+
- f53a6ac: Add VNextWorkflowRuns type
|
|
250
|
+
- ccdabdc: Remove trailing / from mastraClient baseUrl
|
|
251
|
+
- a6e3881: Remove non serializable options from agent stream,generate
|
|
252
|
+
- fddae56: Add telemetry to cliend SDK streamParams
|
|
253
|
+
- 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.
|
|
254
|
+
- 5063646: Accept plain obects as runtimeContext
|
|
255
|
+
- 2672a05: Add MCP servers and tool call execution to playground
|
|
256
|
+
- Updated dependencies [b3a3d63]
|
|
257
|
+
- Updated dependencies [344f453]
|
|
258
|
+
- Updated dependencies [0a3ae6d]
|
|
259
|
+
- Updated dependencies [95911be]
|
|
260
|
+
- Updated dependencies [f53a6ac]
|
|
261
|
+
- Updated dependencies [5eb5a99]
|
|
262
|
+
- Updated dependencies [7e632c5]
|
|
263
|
+
- Updated dependencies [1e9fbfa]
|
|
264
|
+
- Updated dependencies [eabdcd9]
|
|
265
|
+
- Updated dependencies [90be034]
|
|
266
|
+
- Updated dependencies [99f050a]
|
|
267
|
+
- Updated dependencies [d0ee3c6]
|
|
268
|
+
- Updated dependencies [b2ae5aa]
|
|
269
|
+
- Updated dependencies [23f258c]
|
|
270
|
+
- Updated dependencies [a7292b0]
|
|
271
|
+
- Updated dependencies [0dcb9f0]
|
|
272
|
+
- Updated dependencies [2672a05]
|
|
273
|
+
- @mastra/core@0.10.0
|
|
274
|
+
|
|
275
|
+
## 0.2.0-alpha.1
|
|
276
|
+
|
|
277
|
+
### Minor Changes
|
|
278
|
+
|
|
279
|
+
- 83da932: Move @mastra/core to peerdeps
|
|
280
|
+
- 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
|
|
281
|
+
|
|
282
|
+
### Patch Changes
|
|
283
|
+
|
|
284
|
+
- b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
|
|
285
|
+
- 0215b0b: Add description to vnext workflow response
|
|
286
|
+
- 5063646: Accept plain obects as runtimeContext
|
|
287
|
+
- Updated dependencies [b3a3d63]
|
|
288
|
+
- Updated dependencies [344f453]
|
|
289
|
+
- Updated dependencies [0a3ae6d]
|
|
290
|
+
- Updated dependencies [95911be]
|
|
291
|
+
- Updated dependencies [5eb5a99]
|
|
292
|
+
- Updated dependencies [7e632c5]
|
|
293
|
+
- Updated dependencies [1e9fbfa]
|
|
294
|
+
- Updated dependencies [b2ae5aa]
|
|
295
|
+
- Updated dependencies [a7292b0]
|
|
296
|
+
- Updated dependencies [0dcb9f0]
|
|
297
|
+
- @mastra/core@0.10.0-alpha.1
|
|
298
|
+
|
|
299
|
+
## 0.1.23-alpha.0
|
|
300
|
+
|
|
301
|
+
### Patch Changes
|
|
302
|
+
|
|
303
|
+
- f53a6ac: Add VNextWorkflowRuns type
|
|
304
|
+
- ccdabdc: Remove trailing / from mastraClient baseUrl
|
|
305
|
+
- a6e3881: Remove non serializable options from agent stream,generate
|
|
306
|
+
- fddae56: Add telemetry to cliend SDK streamParams
|
|
307
|
+
- 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.
|
|
308
|
+
- 2672a05: Add MCP servers and tool call execution to playground
|
|
309
|
+
- Updated dependencies [f53a6ac]
|
|
310
|
+
- Updated dependencies [eabdcd9]
|
|
311
|
+
- Updated dependencies [90be034]
|
|
312
|
+
- Updated dependencies [99f050a]
|
|
313
|
+
- Updated dependencies [d0ee3c6]
|
|
314
|
+
- Updated dependencies [23f258c]
|
|
315
|
+
- Updated dependencies [2672a05]
|
|
316
|
+
- @mastra/core@0.9.5-alpha.0
|
|
317
|
+
|
|
318
|
+
## 0.1.22
|
|
319
|
+
|
|
320
|
+
### Patch Changes
|
|
321
|
+
|
|
322
|
+
- c2f9e60: Resolves type issue and listen response string wrapped in text object twice
|
|
323
|
+
- 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
|
|
324
|
+
- b4c6c87: fix: Specify $refStrategy: 'none' when calling zodToJsonSchema.
|
|
325
|
+
- 0c3d117: Add workflows to agent server handlers
|
|
326
|
+
- a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
|
|
327
|
+
- c2b980b: Fix multiple too-calls in AGUI
|
|
328
|
+
- cb1f698: Set runtimeContext from playground for agents, tools, workflows
|
|
329
|
+
- 0b8b868: Added A2A support + streaming
|
|
330
|
+
- Updated dependencies [396be50]
|
|
331
|
+
- Updated dependencies [ab80e7e]
|
|
332
|
+
- Updated dependencies [c3bd795]
|
|
333
|
+
- Updated dependencies [da082f8]
|
|
334
|
+
- Updated dependencies [a5810ce]
|
|
335
|
+
- Updated dependencies [3e9c131]
|
|
336
|
+
- Updated dependencies [3171b5b]
|
|
337
|
+
- Updated dependencies [973e5ac]
|
|
338
|
+
- Updated dependencies [daf942f]
|
|
339
|
+
- Updated dependencies [0b8b868]
|
|
340
|
+
- Updated dependencies [9e1eff5]
|
|
341
|
+
- Updated dependencies [6fa1ad1]
|
|
342
|
+
- Updated dependencies [c28d7a0]
|
|
343
|
+
- Updated dependencies [edf1e88]
|
|
344
|
+
- @mastra/core@0.9.4
|
|
345
|
+
|
|
346
|
+
## 0.1.22-alpha.4
|
|
347
|
+
|
|
348
|
+
### Patch Changes
|
|
349
|
+
|
|
350
|
+
- 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
|
|
351
|
+
- Updated dependencies [3e9c131]
|
|
352
|
+
- @mastra/core@0.9.4-alpha.4
|
|
353
|
+
|
|
354
|
+
## 0.1.22-alpha.3
|
|
355
|
+
|
|
356
|
+
### Patch Changes
|
|
357
|
+
|
|
358
|
+
- c2f9e60: Resolves type issue and listen response string wrapped in text object twice
|
|
359
|
+
- 0c3d117: Add workflows to agent server handlers
|
|
360
|
+
- a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
|
|
361
|
+
- Updated dependencies [396be50]
|
|
362
|
+
- Updated dependencies [c3bd795]
|
|
363
|
+
- Updated dependencies [da082f8]
|
|
364
|
+
- Updated dependencies [a5810ce]
|
|
365
|
+
- @mastra/core@0.9.4-alpha.3
|
|
366
|
+
|
|
367
|
+
## 0.1.22-alpha.2
|
|
368
|
+
|
|
369
|
+
### Patch Changes
|
|
370
|
+
|
|
371
|
+
- b4c6c87: fix: Specify $refStrategy: 'none' when calling zodToJsonSchema.
|
|
372
|
+
- c2b980b: Fix multiple too-calls in AGUI
|
|
373
|
+
- Updated dependencies [3171b5b]
|
|
374
|
+
- Updated dependencies [973e5ac]
|
|
375
|
+
- Updated dependencies [9e1eff5]
|
|
376
|
+
- @mastra/core@0.9.4-alpha.2
|
|
377
|
+
|
|
378
|
+
## 0.1.22-alpha.1
|
|
379
|
+
|
|
380
|
+
### Patch Changes
|
|
381
|
+
|
|
382
|
+
- Updated dependencies [ab80e7e]
|
|
383
|
+
- Updated dependencies [6fa1ad1]
|
|
384
|
+
- Updated dependencies [c28d7a0]
|
|
385
|
+
- Updated dependencies [edf1e88]
|
|
386
|
+
- @mastra/core@0.9.4-alpha.1
|
|
387
|
+
|
|
388
|
+
## 0.1.22-alpha.0
|
|
389
|
+
|
|
390
|
+
### Patch Changes
|
|
391
|
+
|
|
392
|
+
- cb1f698: Set runtimeContext from playground for agents, tools, workflows
|
|
393
|
+
- 0b8b868: Added A2A support + streaming
|
|
394
|
+
- Updated dependencies [daf942f]
|
|
395
|
+
- Updated dependencies [0b8b868]
|
|
396
|
+
- @mastra/core@0.9.4-alpha.0
|
|
397
|
+
|
|
398
|
+
## 0.1.21
|
|
399
|
+
|
|
400
|
+
### Patch Changes
|
|
401
|
+
|
|
402
|
+
- 526c570: expose agent runtimeContext from clientSDK
|
|
403
|
+
- 36eb1aa: Fix AGUI text part
|
|
404
|
+
- 62c9e7d: Fix disappearing tool calls in streaming
|
|
405
|
+
- Updated dependencies [e450778]
|
|
406
|
+
- Updated dependencies [8902157]
|
|
407
|
+
- Updated dependencies [ca0dc88]
|
|
408
|
+
- Updated dependencies [526c570]
|
|
409
|
+
- Updated dependencies [d7a6a33]
|
|
410
|
+
- Updated dependencies [9cd1a46]
|
|
411
|
+
- Updated dependencies [b5d2de0]
|
|
412
|
+
- Updated dependencies [644f8ad]
|
|
413
|
+
- Updated dependencies [70dbf51]
|
|
414
|
+
- @mastra/core@0.9.3
|
|
415
|
+
|
|
416
|
+
## 0.1.21-alpha.1
|
|
417
|
+
|
|
418
|
+
### Patch Changes
|
|
419
|
+
|
|
420
|
+
- 36eb1aa: Fix AGUI text part
|
|
421
|
+
- 62c9e7d: Fix disappearing tool calls in streaming
|
|
422
|
+
- Updated dependencies [e450778]
|
|
423
|
+
- Updated dependencies [8902157]
|
|
424
|
+
- Updated dependencies [ca0dc88]
|
|
425
|
+
- Updated dependencies [9cd1a46]
|
|
426
|
+
- Updated dependencies [70dbf51]
|
|
427
|
+
- @mastra/core@0.9.3-alpha.1
|
|
428
|
+
|
|
429
|
+
## 0.1.21-alpha.0
|
|
430
|
+
|
|
431
|
+
### Patch Changes
|
|
432
|
+
|
|
433
|
+
- 526c570: expose agent runtimeContext from clientSDK
|
|
434
|
+
- Updated dependencies [526c570]
|
|
435
|
+
- Updated dependencies [b5d2de0]
|
|
436
|
+
- Updated dependencies [644f8ad]
|
|
437
|
+
- @mastra/core@0.9.3-alpha.0
|
|
438
|
+
|
|
439
|
+
## 0.1.20
|
|
440
|
+
|
|
441
|
+
### Patch Changes
|
|
442
|
+
|
|
443
|
+
- 2cf3b8f: dependencies updates:
|
|
444
|
+
- Updated dependency [`zod@^3.24.3` ↗︎](https://www.npmjs.com/package/zod/v/3.24.3) (from `^3.24.2`, in `dependencies`)
|
|
445
|
+
- 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`)
|
|
446
|
+
- 4155f47: Add parameters to filter workflow runs
|
|
447
|
+
Add fromDate and toDate to telemetry parameters
|
|
448
|
+
- 254f5c3: Audit, cleanup MastraClient
|
|
449
|
+
- 0097d50: Add serializedStepGraph to vNext workflow
|
|
450
|
+
Return serializedStepGraph from vNext workflow
|
|
451
|
+
Use serializedStepGraph in vNext workflow graph
|
|
452
|
+
- 2429c74: Add get workflow runs api to client-js
|
|
453
|
+
- 2e4f8e9: Agui client integration
|
|
454
|
+
- Updated dependencies [6052aa6]
|
|
455
|
+
- Updated dependencies [967b41c]
|
|
456
|
+
- Updated dependencies [3d2fb5c]
|
|
457
|
+
- Updated dependencies [26738f4]
|
|
458
|
+
- Updated dependencies [4155f47]
|
|
459
|
+
- Updated dependencies [7eeb2bc]
|
|
460
|
+
- Updated dependencies [b804723]
|
|
461
|
+
- Updated dependencies [8607972]
|
|
462
|
+
- Updated dependencies [ccef9f9]
|
|
463
|
+
- Updated dependencies [0097d50]
|
|
464
|
+
- Updated dependencies [7eeb2bc]
|
|
465
|
+
- Updated dependencies [17826a9]
|
|
466
|
+
- Updated dependencies [7d8b7c7]
|
|
467
|
+
- Updated dependencies [fba031f]
|
|
468
|
+
- Updated dependencies [3a5f1e1]
|
|
469
|
+
- Updated dependencies [51e6923]
|
|
470
|
+
- Updated dependencies [8398d89]
|
|
471
|
+
- @mastra/core@0.9.2
|
|
472
|
+
|
|
473
|
+
## 0.1.20-alpha.6
|
|
474
|
+
|
|
475
|
+
### Patch Changes
|
|
476
|
+
|
|
477
|
+
- 2e4f8e9: Agui client integration
|
|
478
|
+
- Updated dependencies [6052aa6]
|
|
479
|
+
- Updated dependencies [7d8b7c7]
|
|
480
|
+
- Updated dependencies [3a5f1e1]
|
|
481
|
+
- Updated dependencies [8398d89]
|
|
482
|
+
- @mastra/core@0.9.2-alpha.6
|
|
483
|
+
|
|
484
|
+
## 0.1.20-alpha.5
|
|
485
|
+
|
|
486
|
+
### Patch Changes
|
|
487
|
+
|
|
488
|
+
- Updated dependencies [3d2fb5c]
|
|
489
|
+
- Updated dependencies [7eeb2bc]
|
|
490
|
+
- Updated dependencies [8607972]
|
|
491
|
+
- Updated dependencies [7eeb2bc]
|
|
492
|
+
- Updated dependencies [fba031f]
|
|
493
|
+
- @mastra/core@0.9.2-alpha.5
|
|
494
|
+
|
|
495
|
+
## 0.1.20-alpha.4
|
|
496
|
+
|
|
497
|
+
### Patch Changes
|
|
498
|
+
|
|
499
|
+
- Updated dependencies [ccef9f9]
|
|
500
|
+
- Updated dependencies [51e6923]
|
|
501
|
+
- @mastra/core@0.9.2-alpha.4
|
|
502
|
+
|
|
503
|
+
## 0.1.20-alpha.3
|
|
504
|
+
|
|
505
|
+
### Patch Changes
|
|
506
|
+
|
|
507
|
+
- 4155f47: Add parameters to filter workflow runs
|
|
508
|
+
Add fromDate and toDate to telemetry parameters
|
|
509
|
+
- Updated dependencies [967b41c]
|
|
510
|
+
- Updated dependencies [4155f47]
|
|
511
|
+
- Updated dependencies [17826a9]
|
|
512
|
+
- @mastra/core@0.9.2-alpha.3
|
|
513
|
+
|
|
514
|
+
## 0.1.20-alpha.2
|
|
515
|
+
|
|
516
|
+
### Patch Changes
|
|
517
|
+
|
|
518
|
+
- Updated dependencies [26738f4]
|
|
519
|
+
- @mastra/core@0.9.2-alpha.2
|
|
520
|
+
|
|
521
|
+
## 0.1.20-alpha.1
|
|
522
|
+
|
|
523
|
+
### Patch Changes
|
|
524
|
+
|
|
525
|
+
- 254f5c3: Audit, cleanup MastraClient
|
|
526
|
+
- 2429c74: Add get workflow runs api to client-js
|
|
527
|
+
- Updated dependencies [b804723]
|
|
528
|
+
- @mastra/core@0.9.2-alpha.1
|
|
529
|
+
|
|
530
|
+
## 0.1.20-alpha.0
|
|
531
|
+
|
|
532
|
+
### Patch Changes
|
|
533
|
+
|
|
534
|
+
- 0097d50: Add serializedStepGraph to vNext workflow
|
|
535
|
+
Return serializedStepGraph from vNext workflow
|
|
536
|
+
Use serializedStepGraph in vNext workflow graph
|
|
537
|
+
- Updated dependencies [0097d50]
|
|
538
|
+
- @mastra/core@0.9.2-alpha.0
|
|
539
|
+
|
|
540
|
+
## 0.1.19
|
|
541
|
+
|
|
542
|
+
### Patch Changes
|
|
543
|
+
|
|
544
|
+
- b50b9b7: Add vNext workflow to client-js
|
|
545
|
+
- 11d4485: Show VNext workflows on the playground
|
|
546
|
+
Show running status for step in vNext workflowState
|
|
547
|
+
- Updated dependencies [405b63d]
|
|
548
|
+
- Updated dependencies [81fb7f6]
|
|
549
|
+
- Updated dependencies [20275d4]
|
|
550
|
+
- Updated dependencies [7d1892c]
|
|
551
|
+
- Updated dependencies [a90a082]
|
|
552
|
+
- Updated dependencies [2d17c73]
|
|
553
|
+
- Updated dependencies [61e92f5]
|
|
554
|
+
- Updated dependencies [35955b0]
|
|
555
|
+
- Updated dependencies [6262bd5]
|
|
556
|
+
- Updated dependencies [c1409ef]
|
|
557
|
+
- Updated dependencies [3e7b69d]
|
|
558
|
+
- Updated dependencies [e4943b8]
|
|
559
|
+
- Updated dependencies [11d4485]
|
|
560
|
+
- Updated dependencies [479f490]
|
|
561
|
+
- Updated dependencies [c23a81c]
|
|
562
|
+
- Updated dependencies [2d4001d]
|
|
563
|
+
- Updated dependencies [c71013a]
|
|
564
|
+
- Updated dependencies [1d3b1cd]
|
|
565
|
+
- @mastra/core@0.9.1
|
|
566
|
+
|
|
567
|
+
## 0.1.19-alpha.8
|
|
568
|
+
|
|
569
|
+
### Patch Changes
|
|
570
|
+
|
|
571
|
+
- Updated dependencies [2d17c73]
|
|
572
|
+
- @mastra/core@0.9.1-alpha.8
|
|
573
|
+
|
|
574
|
+
## 0.1.19-alpha.7
|
|
575
|
+
|
|
576
|
+
### Patch Changes
|
|
577
|
+
|
|
578
|
+
- Updated dependencies [1d3b1cd]
|
|
579
|
+
- @mastra/core@0.9.1-alpha.7
|
|
580
|
+
|
|
581
|
+
## 0.1.19-alpha.6
|
|
582
|
+
|
|
583
|
+
### Patch Changes
|
|
584
|
+
|
|
585
|
+
- Updated dependencies [c23a81c]
|
|
586
|
+
- @mastra/core@0.9.1-alpha.6
|
|
587
|
+
|
|
588
|
+
## 0.1.19-alpha.5
|
|
589
|
+
|
|
590
|
+
### Patch Changes
|
|
591
|
+
|
|
592
|
+
- Updated dependencies [3e7b69d]
|
|
593
|
+
- @mastra/core@0.9.1-alpha.5
|
|
594
|
+
|
|
595
|
+
## 0.1.19-alpha.4
|
|
596
|
+
|
|
597
|
+
### Patch Changes
|
|
598
|
+
|
|
599
|
+
- Updated dependencies [e4943b8]
|
|
600
|
+
- Updated dependencies [479f490]
|
|
601
|
+
- @mastra/core@0.9.1-alpha.4
|
|
602
|
+
|
|
603
|
+
## 0.1.19-alpha.3
|
|
604
|
+
|
|
605
|
+
### Patch Changes
|
|
606
|
+
|
|
607
|
+
- Updated dependencies [6262bd5]
|
|
608
|
+
- @mastra/core@0.9.1-alpha.3
|
|
609
|
+
|
|
610
|
+
## 0.1.19-alpha.2
|
|
611
|
+
|
|
612
|
+
### Patch Changes
|
|
613
|
+
|
|
614
|
+
- Updated dependencies [405b63d]
|
|
615
|
+
- Updated dependencies [61e92f5]
|
|
616
|
+
- Updated dependencies [c71013a]
|
|
617
|
+
- @mastra/core@0.9.1-alpha.2
|
|
618
|
+
|
|
619
|
+
## 0.1.19-alpha.1
|
|
620
|
+
|
|
621
|
+
### Patch Changes
|
|
622
|
+
|
|
623
|
+
- b50b9b7: Add vNext workflow to client-js
|
|
624
|
+
- 11d4485: Show VNext workflows on the playground
|
|
625
|
+
Show running status for step in vNext workflowState
|
|
626
|
+
- Updated dependencies [20275d4]
|
|
627
|
+
- Updated dependencies [7d1892c]
|
|
628
|
+
- Updated dependencies [a90a082]
|
|
629
|
+
- Updated dependencies [35955b0]
|
|
630
|
+
- Updated dependencies [c1409ef]
|
|
631
|
+
- Updated dependencies [11d4485]
|
|
632
|
+
- Updated dependencies [2d4001d]
|
|
633
|
+
- @mastra/core@0.9.1-alpha.1
|
|
634
|
+
|
|
635
|
+
## 0.1.19-alpha.0
|
|
636
|
+
|
|
637
|
+
### Patch Changes
|
|
638
|
+
|
|
639
|
+
- Updated dependencies [81fb7f6]
|
|
640
|
+
- @mastra/core@0.9.1-alpha.0
|
|
641
|
+
|
|
642
|
+
## 0.1.18
|
|
643
|
+
|
|
644
|
+
### Patch Changes
|
|
645
|
+
|
|
646
|
+
- 2538066: Fix memory thread creation from client SDK
|
|
647
|
+
- Updated dependencies [000a6d4]
|
|
7
648
|
- Updated dependencies [08bb78e]
|
|
8
649
|
- Updated dependencies [ed2f549]
|
|
9
650
|
- Updated dependencies [7e92011]
|
|
10
651
|
- Updated dependencies [9ee4293]
|
|
11
652
|
- Updated dependencies [03f3cd0]
|
|
653
|
+
- Updated dependencies [c0f22b4]
|
|
12
654
|
- Updated dependencies [71d9444]
|
|
13
655
|
- Updated dependencies [157c741]
|
|
14
656
|
- Updated dependencies [8a8a73b]
|
|
657
|
+
- Updated dependencies [0a033fa]
|
|
15
658
|
- Updated dependencies [fe3ae4d]
|
|
659
|
+
- Updated dependencies [9c26508]
|
|
660
|
+
- Updated dependencies [0f4eae3]
|
|
661
|
+
- Updated dependencies [16a8648]
|
|
16
662
|
- Updated dependencies [6f92295]
|
|
17
|
-
- @mastra/core@0.
|
|
663
|
+
- @mastra/core@0.9.0
|
|
664
|
+
|
|
665
|
+
## 0.1.18-alpha.8
|
|
666
|
+
|
|
667
|
+
### Patch Changes
|
|
668
|
+
|
|
669
|
+
- 2538066: Fix memory thread creation from client SDK
|
|
670
|
+
- Updated dependencies [000a6d4]
|
|
671
|
+
- Updated dependencies [ed2f549]
|
|
672
|
+
- Updated dependencies [c0f22b4]
|
|
673
|
+
- Updated dependencies [0a033fa]
|
|
674
|
+
- Updated dependencies [9c26508]
|
|
675
|
+
- Updated dependencies [0f4eae3]
|
|
676
|
+
- Updated dependencies [16a8648]
|
|
677
|
+
- @mastra/core@0.9.0-alpha.8
|
|
18
678
|
|
|
19
679
|
## 0.1.18-alpha.7
|
|
20
680
|
|