@waniwani/sdk 0.10.5 → 0.10.7-beta.0
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/mcp/index.d.ts +6 -0
- 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
|
@@ -196,6 +196,8 @@ interface ChatEmbedProps extends Omit<ChatBaseProps, "api" | "onCallTool"> {
|
|
|
196
196
|
className?: string;
|
|
197
197
|
/** MCP Apps configuration. Only needed if your backend serves widget resources. */
|
|
198
198
|
mcp?: ChatEmbedMcpConfig;
|
|
199
|
+
/** Hide the input bar at the bottom, making the chat read-only. */
|
|
200
|
+
readOnly?: boolean;
|
|
199
201
|
}
|
|
200
202
|
interface ChatCardProps extends ChatBaseProps {
|
|
201
203
|
/** Title shown in the card header. Defaults to "Assistant". */
|