@koredev/kore-web-sdk 11.18.0-rc.2b3374f → 11.18.0-rc.f92a18a

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.
@@ -10,6 +10,10 @@ import './sass/fonts.scss';
10
10
  declare class chatWindow extends EventEmitter {
11
11
  chatEle: any;
12
12
  config: {};
13
+ streamingMessages: Map<string, {
14
+ text: string;
15
+ msgData: any;
16
+ }>;
13
17
  /**
14
18
  * @eventProperty
15
19
  */
@@ -180,6 +184,10 @@ declare class chatWindow extends EventEmitter {
180
184
  sendWebhookOnConnectEvent(): void;
181
185
  bindSDKEvents(): void;
182
186
  parseSocketMessage(msgString: string): any;
187
+ handleStreamingMessage(msgData: any): void;
188
+ updateStreamingMessage(messageId: string, fullText: string): void;
189
+ scrollToBottom(): void;
190
+ stopStreamingMessage(messageId: string): void;
183
191
  onBotReady(): void;
184
192
  bindIframeEvents(authPopup: {
185
193
  on: (arg0: string, arg1: string, arg2: () => void) => void;