@waniwani/sdk 0.7.1-beta.0 → 0.7.2
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/dist/chat/index.d.ts +2 -0
- package/dist/chat/index.js +6 -6
- package/dist/chat/index.js.map +1 -1
- package/dist/chat/styles.css +1 -1
- package/dist/mcp/index.js +5 -5
- package/dist/mcp/index.js.map +1 -1
- package/package.json +1 -1
package/dist/chat/index.d.ts
CHANGED
|
@@ -216,6 +216,8 @@ interface ChatHandle {
|
|
|
216
216
|
reset: () => void;
|
|
217
217
|
/** Scroll to the chat input, focus it, and show a highlight glow */
|
|
218
218
|
focus: () => void;
|
|
219
|
+
/** Current chat messages */
|
|
220
|
+
messages: ai.UIMessage[];
|
|
219
221
|
}
|
|
220
222
|
/** @deprecated Use ChatBarProps instead */
|
|
221
223
|
type ChatWidgetProps = ChatBarProps;
|