@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.
@@ -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, httpUrl, chatSessionId, isDark, className, autoHeight, onOpenLink, onFollowUp, onCallTool, onDisplayModeChange, isFullscreen, }: McpAppFrameProps): react_jsx_runtime.JSX.Element;
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