@waniwani/sdk 0.20.0 → 0.20.1
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/embed.js +67 -67
- package/dist/chat/embed.js.map +1 -1
- package/dist/chat/index.d.ts +1 -1
- package/dist/chat/index.js +7 -7
- package/dist/chat/index.js.map +1 -1
- package/dist/chat/styles.css +1 -1
- package/dist/mcp/index.d.ts +80 -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
|
@@ -364,7 +364,7 @@ interface SuggestionCandidates {
|
|
|
364
364
|
type PreChatSuggestions = Pick<SuggestionCandidates, "page" | "channel">;
|
|
365
365
|
|
|
366
366
|
/** Surface the widget is mounted on. */
|
|
367
|
-
type WidgetMode = "inline" | "floating";
|
|
367
|
+
type WidgetMode = "inline" | "floating" | "composer";
|
|
368
368
|
interface WidgetEventBase {
|
|
369
369
|
/** Surface the widget is mounted on. */
|
|
370
370
|
mode: WidgetMode;
|