@mastra/react 0.0.0-monorepo-binary-20251013210052 → 0.0.0-sidebar-window-undefined-fix-20251029233656
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 +130 -2
- package/dist/index.cjs +437 -113
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +438 -115
- package/dist/index.js.map +1 -1
- package/dist/react.css +1 -1
- package/dist/src/agent/hooks.d.ts +7 -0
- package/dist/src/agent/types.d.ts +1 -0
- package/dist/src/lib/ai-sdk/index.d.ts +1 -0
- package/dist/src/lib/ai-sdk/memory/resolveInitialMessages.d.ts +10 -0
- package/dist/src/lib/ai-sdk/memory/resolveInitialMessages.test.d.ts +1 -0
- package/dist/src/lib/ai-sdk/transformers/AISdkNetworkTransformer.d.ts +1 -0
- package/dist/src/lib/ai-sdk/transformers/AISdkNetworkTransformer.test.d.ts +1 -0
- package/dist/src/lib/ai-sdk/types.d.ts +7 -0
- package/dist/src/lib/ai-sdk/utils/fromCoreUserMessageToUIMessage.d.ts +10 -0
- package/dist/src/lib/ai-sdk/utils/fromCoreUserMessageToUIMessage.test.d.ts +1 -0
- package/dist/src/lib/ai-sdk/utils/toUIMessage.test.d.ts +1 -0
- package/package.json +14 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,96 @@
|
|
|
1
1
|
# @mastra/react-hooks
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-sidebar-window-undefined-fix-20251029233656
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add tool call approval ([#8649](https://github.com/mastra-ai/mastra/pull/8649))
|
|
8
|
+
|
|
9
|
+
- Fix multi modal in react sdk ([#9373](https://github.com/mastra-ai/mastra/pull/9373))
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`1ee3411`](https://github.com/mastra-ai/mastra/commit/1ee34113192b11aa8bcdd8d9d5830ae13254b345), [`5df9cce`](https://github.com/mastra-ai/mastra/commit/5df9cce1a753438413f64c11eeef8f845745c2a8), [`c576fc0`](https://github.com/mastra-ai/mastra/commit/c576fc0b100b2085afded91a37c97a0ea0ec09c7), [`ea0b8de`](https://github.com/mastra-ai/mastra/commit/ea0b8dec0d4bc86a72a7e75b2f56c6017c58786d), [`f0f8f12`](https://github.com/mastra-ai/mastra/commit/f0f8f125c308f2d0fd36942ef652fd852df7522f), [`63f2f18`](https://github.com/mastra-ai/mastra/commit/63f2f1863dffe3ad23221d0660ed4e4f2b81789d), [`c23200d`](https://github.com/mastra-ai/mastra/commit/c23200ddfd60830effb39329674ba4ca93be6aac)]:
|
|
12
|
+
- @mastra/client-js@0.0.0-sidebar-window-undefined-fix-20251029233656
|
|
13
|
+
|
|
14
|
+
## 0.0.10
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies []:
|
|
19
|
+
- @mastra/client-js@0.16.4
|
|
20
|
+
|
|
21
|
+
## 0.0.10-alpha.0
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies []:
|
|
26
|
+
- @mastra/client-js@0.16.4-alpha.0
|
|
27
|
+
|
|
28
|
+
## 0.0.9
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies []:
|
|
33
|
+
- @mastra/client-js@0.16.3
|
|
34
|
+
|
|
35
|
+
## 0.0.9-alpha.0
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies []:
|
|
40
|
+
- @mastra/client-js@0.16.3-alpha.0
|
|
41
|
+
|
|
42
|
+
## 0.0.8
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- Fix perf issue: removed flush sync ([#9014](https://github.com/mastra-ai/mastra/pull/9014))
|
|
47
|
+
|
|
48
|
+
- Fix tool result in playground ([#9087](https://github.com/mastra-ai/mastra/pull/9087))
|
|
49
|
+
|
|
50
|
+
- Show agent tool output better in playground ([#9021](https://github.com/mastra-ai/mastra/pull/9021))
|
|
51
|
+
|
|
52
|
+
- Updated dependencies []:
|
|
53
|
+
- @mastra/client-js@0.16.2
|
|
54
|
+
|
|
55
|
+
## 0.0.8-alpha.1
|
|
56
|
+
|
|
57
|
+
### Patch Changes
|
|
58
|
+
|
|
59
|
+
- Fix perf issue: removed flush sync ([#9014](https://github.com/mastra-ai/mastra/pull/9014))
|
|
60
|
+
|
|
61
|
+
- Fix tool result in playground ([#9087](https://github.com/mastra-ai/mastra/pull/9087))
|
|
62
|
+
|
|
63
|
+
- Show agent tool output better in playground ([#9021](https://github.com/mastra-ai/mastra/pull/9021))
|
|
64
|
+
|
|
65
|
+
- Updated dependencies []:
|
|
66
|
+
- @mastra/client-js@0.16.2-alpha.1
|
|
67
|
+
|
|
68
|
+
## 0.0.8-alpha.0
|
|
69
|
+
|
|
70
|
+
### Patch Changes
|
|
71
|
+
|
|
72
|
+
- Updated dependencies []:
|
|
73
|
+
- @mastra/client-js@0.16.2-alpha.0
|
|
74
|
+
|
|
75
|
+
## 0.0.7
|
|
76
|
+
|
|
77
|
+
### Patch Changes
|
|
78
|
+
|
|
79
|
+
- Add @mastra/react to peer deps ([#8857](https://github.com/mastra-ai/mastra/pull/8857))
|
|
80
|
+
|
|
81
|
+
- Updated dependencies []:
|
|
82
|
+
- @mastra/client-js@0.16.1
|
|
83
|
+
|
|
84
|
+
## 0.0.7-alpha.0
|
|
85
|
+
|
|
86
|
+
### Patch Changes
|
|
87
|
+
|
|
88
|
+
- Add @mastra/react to peer deps ([#8857](https://github.com/mastra-ai/mastra/pull/8857))
|
|
89
|
+
|
|
90
|
+
- Updated dependencies []:
|
|
91
|
+
- @mastra/client-js@0.16.1-alpha.0
|
|
92
|
+
|
|
93
|
+
## 0.0.6
|
|
4
94
|
|
|
5
95
|
### Patch Changes
|
|
6
96
|
|
|
@@ -10,14 +100,52 @@
|
|
|
10
100
|
|
|
11
101
|
- Improve the surface API of the react sdk ([#8715](https://github.com/mastra-ai/mastra/pull/8715))
|
|
12
102
|
|
|
103
|
+
- Move react and react-dom deps to peer and dev deps ([#8698](https://github.com/mastra-ai/mastra/pull/8698))
|
|
104
|
+
|
|
13
105
|
- Fix back the tripwire verification inside the new react system ([#8674](https://github.com/mastra-ai/mastra/pull/8674))
|
|
14
106
|
|
|
15
107
|
- handle error case in react sdk ([#8676](https://github.com/mastra-ai/mastra/pull/8676))
|
|
16
108
|
|
|
17
109
|
- fix maxSteps model settings not being passed to generate and stream endpoints ([#8627](https://github.com/mastra-ai/mastra/pull/8627))
|
|
18
110
|
|
|
111
|
+
- Stream finalResult from network loop ([#8795](https://github.com/mastra-ai/mastra/pull/8795))
|
|
112
|
+
|
|
19
113
|
- Updated dependencies [[`7b1ef57`](https://github.com/mastra-ai/mastra/commit/7b1ef57fc071c2aa2a2e32905b18cd88719c5a39), [`78cfb6b`](https://github.com/mastra-ai/mastra/commit/78cfb6b66fe88bc848105fccb6459fd75413ec87)]:
|
|
20
|
-
- @mastra/client-js@0.
|
|
114
|
+
- @mastra/client-js@0.16.0
|
|
115
|
+
|
|
116
|
+
## 0.0.6-alpha.4
|
|
117
|
+
|
|
118
|
+
### Patch Changes
|
|
119
|
+
|
|
120
|
+
- Updated dependencies []:
|
|
121
|
+
- @mastra/client-js@0.16.0-alpha.4
|
|
122
|
+
|
|
123
|
+
## 0.0.6-alpha.3
|
|
124
|
+
|
|
125
|
+
### Patch Changes
|
|
126
|
+
|
|
127
|
+
- Updated dependencies []:
|
|
128
|
+
- @mastra/client-js@0.16.0-alpha.3
|
|
129
|
+
|
|
130
|
+
## 0.0.6-alpha.2
|
|
131
|
+
|
|
132
|
+
### Patch Changes
|
|
133
|
+
|
|
134
|
+
- Updated dependencies []:
|
|
135
|
+
- @mastra/client-js@0.16.0-alpha.2
|
|
136
|
+
|
|
137
|
+
## 0.0.6-alpha.1
|
|
138
|
+
|
|
139
|
+
### Patch Changes
|
|
140
|
+
|
|
141
|
+
- Improve the surface API of the react sdk ([#8715](https://github.com/mastra-ai/mastra/pull/8715))
|
|
142
|
+
|
|
143
|
+
- Move react and react-dom deps to peer and dev deps ([#8698](https://github.com/mastra-ai/mastra/pull/8698))
|
|
144
|
+
|
|
145
|
+
- Stream finalResult from network loop ([#8795](https://github.com/mastra-ai/mastra/pull/8795))
|
|
146
|
+
|
|
147
|
+
- Updated dependencies []:
|
|
148
|
+
- @mastra/client-js@0.16.0-alpha.1
|
|
21
149
|
|
|
22
150
|
## 0.0.6-alpha.0
|
|
23
151
|
|