@koredev/kore-web-sdk 11.9.1-rc.f798039 → 11.10.0-rc.02c2e14
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/README.md +1 -1
- package/dist/components/chatwindow/chatWindow.d.ts +8 -0
- package/dist/esm/kore-web-sdk-chat.min.js +1 -1
- package/dist/esm/kore-web-sdk-widgets.js +1 -1
- package/dist/esm/plugins/agent-desktop.js +1 -1
- package/dist/esm/plugins/answers-template.js +1 -1
- package/dist/esm/plugins/kore-graph-templates-plugin.js +1 -1
- package/dist/esm/plugins/multi-file-upload.js +1 -1
- package/dist/esm/plugins/v2-kore-web-sdk-widgets.js +1 -1
- package/dist/umd/kore-web-sdk-umd-chat.min.js +1 -1
- package/dist/umd/kore-web-sdk-umd-widgets.js +1 -1
- package/dist/umd/plugins/agent-desktop-umd.js +1 -1
- package/dist/umd/plugins/answers-template.js +1 -1
- package/dist/umd/plugins/kore-graph-templates-plugin-umd.js +1 -1
- package/dist/umd/plugins/multi-file-upload.js +1 -1
- package/dist/umd/plugins/v2-kore-web-sdk-widgets.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ include the following script in your html file and configure bot configurations
|
|
|
71
71
|
|
|
72
72
|
```js
|
|
73
73
|
|
|
74
|
-
<script src="https://cdn.jsdelivr.net/npm/kore-web-sdk@11.
|
|
74
|
+
<script src="https://cdn.jsdelivr.net/npm/kore-web-sdk@11.10.0/dist/umd/kore-web-sdk-umd-chat.min.js"></script>
|
|
75
75
|
<script>
|
|
76
76
|
//chat window declaration
|
|
77
77
|
var chatConfig=KoreChatSDK.chatConfig;
|
|
@@ -64,6 +64,14 @@ declare class chatWindow extends EventEmitter {
|
|
|
64
64
|
* @property {Object} chatWindowEvent
|
|
65
65
|
*/
|
|
66
66
|
AFTER_RENDER_MSG: string;
|
|
67
|
+
/** beforeWSConnection will be triggered before web socket connection is established
|
|
68
|
+
*
|
|
69
|
+
* @event chatWindow#beforeWSConnection
|
|
70
|
+
* @type {object}
|
|
71
|
+
* @property {Object} data - contains web socket url
|
|
72
|
+
* @property {Object} isImplicitReconnect - flag whether the connection is implicit reconnection or not
|
|
73
|
+
*/
|
|
74
|
+
BEFORE_WS_CONNECTION: string;
|
|
67
75
|
/**
|
|
68
76
|
* onWSOpen will be triggered on new websocket connection open
|
|
69
77
|
*
|