@waniwani/sdk 0.8.7-alpha.4 → 0.9.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 +1 -3
- package/dist/chat/index.js +7 -6
- package/dist/chat/index.js.map +1 -1
- package/dist/chat/next-js/index.d.ts +5 -0
- package/dist/chat/next-js/index.js +3 -3
- package/dist/chat/next-js/index.js.map +1 -1
- package/dist/chat/server/index.d.ts +5 -0
- package/dist/mcp/index.d.ts +8 -33
- 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
|
@@ -263,8 +263,6 @@ interface McpAppFrameProps {
|
|
|
263
263
|
_meta?: Record<string, unknown>;
|
|
264
264
|
};
|
|
265
265
|
resourceEndpoint?: string;
|
|
266
|
-
/** Direct HTTP URL for the widget HTML. When provided, bypasses the resource proxy. */
|
|
267
|
-
httpUrl?: string;
|
|
268
266
|
chatSessionId?: string;
|
|
269
267
|
isDark?: boolean;
|
|
270
268
|
className?: string;
|
|
@@ -298,7 +296,7 @@ interface McpAppFrameProps {
|
|
|
298
296
|
/** When true, the iframe fills its container (fullscreen mode). */
|
|
299
297
|
isFullscreen?: boolean;
|
|
300
298
|
}
|
|
301
|
-
declare function McpAppFrame({ resourceUri, toolInput, toolResult, resourceEndpoint,
|
|
299
|
+
declare function McpAppFrame({ resourceUri, toolInput, toolResult, resourceEndpoint, chatSessionId, isDark, className, autoHeight, onOpenLink, onFollowUp, onCallTool, onDisplayModeChange, isFullscreen, }: McpAppFrameProps): react_jsx_runtime.JSX.Element;
|
|
302
300
|
|
|
303
301
|
declare const ChatCard: react.ForwardRefExoticComponent<ChatCardProps & react.RefAttributes<ChatHandle>>;
|
|
304
302
|
|