@mastra/client-js 0.0.0-fix-memory-xxhash-20250409202110 → 0.0.0-fix-message-embedding-20250506021742
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/CHANGELOG.md +334 -2
- package/{LICENSE → LICENSE.md} +3 -1
- package/dist/index.cjs +423 -6
- package/dist/index.d.cts +151 -8
- package/dist/index.d.ts +151 -8
- package/dist/index.js +423 -6
- package/package.json +10 -5
- package/src/adapters/agui.test.ts +167 -0
- package/src/adapters/agui.ts +219 -0
- package/src/client.ts +47 -11
- package/src/index.test.ts +4 -4
- package/src/resources/agent.ts +1 -2
- package/src/resources/base.ts +1 -1
- package/src/resources/index.ts +1 -0
- package/src/resources/memory-thread.ts +1 -8
- package/src/resources/network.ts +1 -1
- package/src/resources/tool.ts +9 -3
- package/src/resources/vnext-workflow.ts +257 -0
- package/src/resources/workflow.ts +38 -2
- package/src/types.ts +41 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,343 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
-
## 0.0.0-fix-
|
|
3
|
+
## 0.0.0-fix-message-embedding-20250506021742
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4155f47: Add parameters to filter workflow runs
|
|
8
|
+
Add fromDate and toDate to telemetry parameters
|
|
9
|
+
- 254f5c3: Audit, cleanup MastraClient
|
|
10
|
+
- 0097d50: Add serializedStepGraph to vNext workflow
|
|
11
|
+
Return serializedStepGraph from vNext workflow
|
|
12
|
+
Use serializedStepGraph in vNext workflow graph
|
|
13
|
+
- 2429c74: Add get workflow runs api to client-js
|
|
14
|
+
- 2e4f8e9: Agui client integration
|
|
15
|
+
- Updated dependencies [967b41c]
|
|
16
|
+
- Updated dependencies [3d2fb5c]
|
|
17
|
+
- Updated dependencies [26738f4]
|
|
18
|
+
- Updated dependencies [4155f47]
|
|
19
|
+
- Updated dependencies [7eeb2bc]
|
|
20
|
+
- Updated dependencies [b804723]
|
|
21
|
+
- Updated dependencies [8607972]
|
|
22
|
+
- Updated dependencies [ccef9f9]
|
|
23
|
+
- Updated dependencies [0097d50]
|
|
24
|
+
- Updated dependencies [7eeb2bc]
|
|
25
|
+
- Updated dependencies [17826a9]
|
|
26
|
+
- Updated dependencies [fba031f]
|
|
27
|
+
- Updated dependencies [51e6923]
|
|
28
|
+
- @mastra/core@0.0.0-fix-message-embedding-20250506021742
|
|
29
|
+
|
|
30
|
+
## 0.1.20-alpha.5
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies [3d2fb5c]
|
|
35
|
+
- Updated dependencies [7eeb2bc]
|
|
36
|
+
- Updated dependencies [8607972]
|
|
37
|
+
- Updated dependencies [7eeb2bc]
|
|
38
|
+
- Updated dependencies [fba031f]
|
|
39
|
+
- @mastra/core@0.9.2-alpha.5
|
|
40
|
+
|
|
41
|
+
## 0.1.20-alpha.4
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- Updated dependencies [ccef9f9]
|
|
46
|
+
- Updated dependencies [51e6923]
|
|
47
|
+
- @mastra/core@0.9.2-alpha.4
|
|
48
|
+
|
|
49
|
+
## 0.1.20-alpha.3
|
|
50
|
+
|
|
51
|
+
### Patch Changes
|
|
52
|
+
|
|
53
|
+
- 4155f47: Add parameters to filter workflow runs
|
|
54
|
+
Add fromDate and toDate to telemetry parameters
|
|
55
|
+
- Updated dependencies [967b41c]
|
|
56
|
+
- Updated dependencies [4155f47]
|
|
57
|
+
- Updated dependencies [17826a9]
|
|
58
|
+
- @mastra/core@0.9.2-alpha.3
|
|
59
|
+
|
|
60
|
+
## 0.1.20-alpha.2
|
|
61
|
+
|
|
62
|
+
### Patch Changes
|
|
63
|
+
|
|
64
|
+
- Updated dependencies [26738f4]
|
|
65
|
+
- @mastra/core@0.9.2-alpha.2
|
|
66
|
+
|
|
67
|
+
## 0.1.20-alpha.1
|
|
68
|
+
|
|
69
|
+
### Patch Changes
|
|
70
|
+
|
|
71
|
+
- 254f5c3: Audit, cleanup MastraClient
|
|
72
|
+
- 2429c74: Add get workflow runs api to client-js
|
|
73
|
+
- Updated dependencies [b804723]
|
|
74
|
+
- @mastra/core@0.9.2-alpha.1
|
|
75
|
+
|
|
76
|
+
## 0.1.20-alpha.0
|
|
77
|
+
|
|
78
|
+
### Patch Changes
|
|
79
|
+
|
|
80
|
+
- 0097d50: Add serializedStepGraph to vNext workflow
|
|
81
|
+
Return serializedStepGraph from vNext workflow
|
|
82
|
+
Use serializedStepGraph in vNext workflow graph
|
|
83
|
+
- Updated dependencies [0097d50]
|
|
84
|
+
- @mastra/core@0.9.2-alpha.0
|
|
85
|
+
|
|
86
|
+
## 0.1.19
|
|
87
|
+
|
|
88
|
+
### Patch Changes
|
|
89
|
+
|
|
90
|
+
- b50b9b7: Add vNext workflow to client-js
|
|
91
|
+
- 11d4485: Show VNext workflows on the playground
|
|
92
|
+
Show running status for step in vNext workflowState
|
|
93
|
+
- Updated dependencies [405b63d]
|
|
94
|
+
- Updated dependencies [81fb7f6]
|
|
95
|
+
- Updated dependencies [20275d4]
|
|
96
|
+
- Updated dependencies [7d1892c]
|
|
97
|
+
- Updated dependencies [a90a082]
|
|
98
|
+
- Updated dependencies [2d17c73]
|
|
99
|
+
- Updated dependencies [61e92f5]
|
|
100
|
+
- Updated dependencies [35955b0]
|
|
101
|
+
- Updated dependencies [6262bd5]
|
|
102
|
+
- Updated dependencies [c1409ef]
|
|
103
|
+
- Updated dependencies [3e7b69d]
|
|
104
|
+
- Updated dependencies [e4943b8]
|
|
105
|
+
- Updated dependencies [11d4485]
|
|
106
|
+
- Updated dependencies [479f490]
|
|
107
|
+
- Updated dependencies [c23a81c]
|
|
108
|
+
- Updated dependencies [2d4001d]
|
|
109
|
+
- Updated dependencies [c71013a]
|
|
110
|
+
- Updated dependencies [1d3b1cd]
|
|
111
|
+
- @mastra/core@0.9.1
|
|
112
|
+
|
|
113
|
+
## 0.1.19-alpha.8
|
|
114
|
+
|
|
115
|
+
### Patch Changes
|
|
116
|
+
|
|
117
|
+
- Updated dependencies [2d17c73]
|
|
118
|
+
- @mastra/core@0.9.1-alpha.8
|
|
119
|
+
|
|
120
|
+
## 0.1.19-alpha.7
|
|
121
|
+
|
|
122
|
+
### Patch Changes
|
|
123
|
+
|
|
124
|
+
- Updated dependencies [1d3b1cd]
|
|
125
|
+
- @mastra/core@0.9.1-alpha.7
|
|
126
|
+
|
|
127
|
+
## 0.1.19-alpha.6
|
|
128
|
+
|
|
129
|
+
### Patch Changes
|
|
130
|
+
|
|
131
|
+
- Updated dependencies [c23a81c]
|
|
132
|
+
- @mastra/core@0.9.1-alpha.6
|
|
133
|
+
|
|
134
|
+
## 0.1.19-alpha.5
|
|
135
|
+
|
|
136
|
+
### Patch Changes
|
|
137
|
+
|
|
138
|
+
- Updated dependencies [3e7b69d]
|
|
139
|
+
- @mastra/core@0.9.1-alpha.5
|
|
140
|
+
|
|
141
|
+
## 0.1.19-alpha.4
|
|
142
|
+
|
|
143
|
+
### Patch Changes
|
|
144
|
+
|
|
145
|
+
- Updated dependencies [e4943b8]
|
|
146
|
+
- Updated dependencies [479f490]
|
|
147
|
+
- @mastra/core@0.9.1-alpha.4
|
|
148
|
+
|
|
149
|
+
## 0.1.19-alpha.3
|
|
150
|
+
|
|
151
|
+
### Patch Changes
|
|
152
|
+
|
|
153
|
+
- Updated dependencies [6262bd5]
|
|
154
|
+
- @mastra/core@0.9.1-alpha.3
|
|
155
|
+
|
|
156
|
+
## 0.1.19-alpha.2
|
|
157
|
+
|
|
158
|
+
### Patch Changes
|
|
159
|
+
|
|
160
|
+
- Updated dependencies [405b63d]
|
|
161
|
+
- Updated dependencies [61e92f5]
|
|
162
|
+
- Updated dependencies [c71013a]
|
|
163
|
+
- @mastra/core@0.9.1-alpha.2
|
|
164
|
+
|
|
165
|
+
## 0.1.19-alpha.1
|
|
166
|
+
|
|
167
|
+
### Patch Changes
|
|
168
|
+
|
|
169
|
+
- b50b9b7: Add vNext workflow to client-js
|
|
170
|
+
- 11d4485: Show VNext workflows on the playground
|
|
171
|
+
Show running status for step in vNext workflowState
|
|
172
|
+
- Updated dependencies [20275d4]
|
|
173
|
+
- Updated dependencies [7d1892c]
|
|
174
|
+
- Updated dependencies [a90a082]
|
|
175
|
+
- Updated dependencies [35955b0]
|
|
176
|
+
- Updated dependencies [c1409ef]
|
|
177
|
+
- Updated dependencies [11d4485]
|
|
178
|
+
- Updated dependencies [2d4001d]
|
|
179
|
+
- @mastra/core@0.9.1-alpha.1
|
|
180
|
+
|
|
181
|
+
## 0.1.19-alpha.0
|
|
182
|
+
|
|
183
|
+
### Patch Changes
|
|
184
|
+
|
|
185
|
+
- Updated dependencies [81fb7f6]
|
|
186
|
+
- @mastra/core@0.9.1-alpha.0
|
|
187
|
+
|
|
188
|
+
## 0.1.18
|
|
189
|
+
|
|
190
|
+
### Patch Changes
|
|
191
|
+
|
|
192
|
+
- 2538066: Fix memory thread creation from client SDK
|
|
193
|
+
- Updated dependencies [000a6d4]
|
|
194
|
+
- Updated dependencies [08bb78e]
|
|
195
|
+
- Updated dependencies [ed2f549]
|
|
196
|
+
- Updated dependencies [7e92011]
|
|
197
|
+
- Updated dependencies [9ee4293]
|
|
198
|
+
- Updated dependencies [03f3cd0]
|
|
199
|
+
- Updated dependencies [c0f22b4]
|
|
200
|
+
- Updated dependencies [71d9444]
|
|
201
|
+
- Updated dependencies [157c741]
|
|
202
|
+
- Updated dependencies [8a8a73b]
|
|
203
|
+
- Updated dependencies [0a033fa]
|
|
204
|
+
- Updated dependencies [fe3ae4d]
|
|
205
|
+
- Updated dependencies [9c26508]
|
|
206
|
+
- Updated dependencies [0f4eae3]
|
|
207
|
+
- Updated dependencies [16a8648]
|
|
208
|
+
- Updated dependencies [6f92295]
|
|
209
|
+
- @mastra/core@0.9.0
|
|
210
|
+
|
|
211
|
+
## 0.1.18-alpha.8
|
|
212
|
+
|
|
213
|
+
### Patch Changes
|
|
214
|
+
|
|
215
|
+
- 2538066: Fix memory thread creation from client SDK
|
|
216
|
+
- Updated dependencies [000a6d4]
|
|
217
|
+
- Updated dependencies [ed2f549]
|
|
218
|
+
- Updated dependencies [c0f22b4]
|
|
219
|
+
- Updated dependencies [0a033fa]
|
|
220
|
+
- Updated dependencies [9c26508]
|
|
221
|
+
- Updated dependencies [0f4eae3]
|
|
222
|
+
- Updated dependencies [16a8648]
|
|
223
|
+
- @mastra/core@0.9.0-alpha.8
|
|
224
|
+
|
|
225
|
+
## 0.1.18-alpha.7
|
|
226
|
+
|
|
227
|
+
### Patch Changes
|
|
228
|
+
|
|
229
|
+
- Updated dependencies [71d9444]
|
|
230
|
+
- @mastra/core@0.9.0-alpha.7
|
|
231
|
+
|
|
232
|
+
## 0.1.18-alpha.6
|
|
233
|
+
|
|
234
|
+
### Patch Changes
|
|
235
|
+
|
|
236
|
+
- Updated dependencies [157c741]
|
|
237
|
+
- @mastra/core@0.9.0-alpha.6
|
|
238
|
+
|
|
239
|
+
## 0.1.18-alpha.5
|
|
240
|
+
|
|
241
|
+
### Patch Changes
|
|
242
|
+
|
|
243
|
+
- Updated dependencies [08bb78e]
|
|
244
|
+
- @mastra/core@0.9.0-alpha.5
|
|
245
|
+
|
|
246
|
+
## 0.1.18-alpha.4
|
|
247
|
+
|
|
248
|
+
### Patch Changes
|
|
249
|
+
|
|
250
|
+
- Updated dependencies [7e92011]
|
|
251
|
+
- @mastra/core@0.9.0-alpha.4
|
|
252
|
+
|
|
253
|
+
## 0.1.18-alpha.3
|
|
254
|
+
|
|
255
|
+
### Patch Changes
|
|
256
|
+
|
|
257
|
+
- Updated dependencies [fe3ae4d]
|
|
258
|
+
- @mastra/core@0.9.0-alpha.3
|
|
259
|
+
|
|
260
|
+
## 0.1.18-alpha.2
|
|
261
|
+
|
|
262
|
+
### Patch Changes
|
|
263
|
+
|
|
264
|
+
- Updated dependencies [9ee4293]
|
|
265
|
+
- @mastra/core@0.8.4-alpha.2
|
|
266
|
+
|
|
267
|
+
## 0.1.18-alpha.1
|
|
268
|
+
|
|
269
|
+
### Patch Changes
|
|
270
|
+
|
|
271
|
+
- Updated dependencies [8a8a73b]
|
|
272
|
+
- Updated dependencies [6f92295]
|
|
273
|
+
- @mastra/core@0.8.4-alpha.1
|
|
274
|
+
|
|
275
|
+
## 0.1.18-alpha.0
|
|
276
|
+
|
|
277
|
+
### Patch Changes
|
|
278
|
+
|
|
279
|
+
- Updated dependencies [03f3cd0]
|
|
280
|
+
- @mastra/core@0.8.4-alpha.0
|
|
281
|
+
|
|
282
|
+
## 0.1.17
|
|
283
|
+
|
|
284
|
+
### Patch Changes
|
|
285
|
+
|
|
286
|
+
- 37bb612: Add Elastic-2.0 licensing for packages
|
|
287
|
+
- bc4acb3: updated traces to not be wrapped in traces object
|
|
288
|
+
- Updated dependencies [d72318f]
|
|
289
|
+
- Updated dependencies [0bcc862]
|
|
290
|
+
- Updated dependencies [10a8caf]
|
|
291
|
+
- Updated dependencies [359b089]
|
|
292
|
+
- Updated dependencies [32e7b71]
|
|
293
|
+
- Updated dependencies [37bb612]
|
|
294
|
+
- Updated dependencies [7f1b291]
|
|
295
|
+
- @mastra/core@0.8.3
|
|
296
|
+
|
|
297
|
+
## 0.1.17-alpha.5
|
|
298
|
+
|
|
299
|
+
### Patch Changes
|
|
300
|
+
|
|
301
|
+
- Updated dependencies [d72318f]
|
|
302
|
+
- @mastra/core@0.8.3-alpha.5
|
|
303
|
+
|
|
304
|
+
## 0.1.17-alpha.4
|
|
305
|
+
|
|
306
|
+
### Patch Changes
|
|
307
|
+
|
|
308
|
+
- Updated dependencies [7f1b291]
|
|
309
|
+
- @mastra/core@0.8.3-alpha.4
|
|
310
|
+
|
|
311
|
+
## 0.1.17-alpha.3
|
|
312
|
+
|
|
313
|
+
### Patch Changes
|
|
314
|
+
|
|
315
|
+
- Updated dependencies [10a8caf]
|
|
316
|
+
- @mastra/core@0.8.3-alpha.3
|
|
317
|
+
|
|
318
|
+
## 0.1.17-alpha.2
|
|
319
|
+
|
|
320
|
+
### Patch Changes
|
|
321
|
+
|
|
322
|
+
- Updated dependencies [0bcc862]
|
|
323
|
+
- @mastra/core@0.8.3-alpha.2
|
|
324
|
+
|
|
325
|
+
## 0.1.17-alpha.1
|
|
326
|
+
|
|
327
|
+
### Patch Changes
|
|
328
|
+
|
|
329
|
+
- 37bb612: Add Elastic-2.0 licensing for packages
|
|
330
|
+
- bc4acb3: updated traces to not be wrapped in traces object
|
|
331
|
+
- Updated dependencies [32e7b71]
|
|
332
|
+
- Updated dependencies [37bb612]
|
|
333
|
+
- @mastra/core@0.8.3-alpha.1
|
|
334
|
+
|
|
335
|
+
## 0.1.17-alpha.0
|
|
4
336
|
|
|
5
337
|
### Patch Changes
|
|
6
338
|
|
|
7
339
|
- Updated dependencies [359b089]
|
|
8
|
-
- @mastra/core@0.
|
|
340
|
+
- @mastra/core@0.8.3-alpha.0
|
|
9
341
|
|
|
10
342
|
## 0.1.16
|
|
11
343
|
|