@koredev/kore-web-sdk 11.7.0-rc.ee4116a → 11.7.1-rc.2708fe7
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 +2 -1
- package/dist/esm/kore-web-sdk-chat.min.js +1 -1
- package/dist/esm/plugins/kore-graph-templates-plugin.js +1 -1
- package/dist/esm/plugins/kore-picker-plugin.js +1 -1
- package/dist/esm/plugins/kore-solutions-plugin.js +1 -1
- package/dist/esm/plugins/v2-plugin.js +1 -1
- package/dist/umd/kore-web-sdk-umd-chat.min.js +1 -1
- package/dist/umd/plugins/kore-graph-templates-plugin-umd.js +1 -1
- package/dist/umd/plugins/kore-picker-plugin-umd.js +1 -1
- package/dist/umd/plugins/kore-solutions-plugin-umd.js +1 -1
- package/dist/umd/plugins/v2-plugin.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.7.1/dist/umd/kore-web-sdk-umd-chat.min.js"></script>
|
|
75
75
|
<script>
|
|
76
76
|
//chat window declaration
|
|
77
77
|
var chatConfig=KoreChatSDK.chatConfig;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import EventEmitter from '../../utils/EventEmiter';
|
|
2
2
|
import './../../libs/perfectscroll/css/perfect-scrollbar.min.css';
|
|
3
3
|
import './sass/chatWindow.scss';
|
|
4
|
+
import './sass/fonts.scss';
|
|
4
5
|
/**
|
|
5
6
|
* ChatWindow class
|
|
6
7
|
*
|
|
@@ -229,7 +230,7 @@ declare class chatWindow extends EventEmitter {
|
|
|
229
230
|
getJWTByAPIKey(API_KEY_CONFIG: {
|
|
230
231
|
KEY: any;
|
|
231
232
|
bootstrapURL: any;
|
|
232
|
-
}): any;
|
|
233
|
+
}, userIdentity: any): any;
|
|
233
234
|
getJWT(options: {
|
|
234
235
|
clientId: any;
|
|
235
236
|
clientSecret: any;
|