kore-web-sdk 11.0.0 → 11.0.4
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/sass/brandingJSON.d.ts +15 -8
- 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/kore-graph-templates-plugin.js +1 -1
- package/dist/esm/plugins/proactive-web-campaign.js +1 -1
- package/dist/plugins/proactiveWebCampaign/proactiveWebCampaign.d.ts +0 -1
- package/dist/plugins/proactiveWebCampaign/templates/pwcChatTemplate/pwcChatTemplate.d.ts +4 -0
- 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/kore-graph-templates-plugin-umd.js +1 -1
- package/dist/umd/plugins/proactive-web-campaign.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.0.
|
|
74
|
+
<script src="https://cdn.jsdelivr.net/npm/kore-web-sdk@11.0.4/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,8 +1,9 @@
|
|
|
1
1
|
declare const BrandingJSON: {
|
|
2
2
|
general: {
|
|
3
|
+
version: number;
|
|
3
4
|
bot_icon: string;
|
|
4
|
-
size: string;
|
|
5
5
|
themeType: string;
|
|
6
|
+
widgetPanel: boolean;
|
|
6
7
|
colors: {
|
|
7
8
|
primary: string;
|
|
8
9
|
secondary: string;
|
|
@@ -72,9 +73,9 @@ declare const BrandingJSON: {
|
|
|
72
73
|
};
|
|
73
74
|
proactive: {
|
|
74
75
|
show: boolean;
|
|
76
|
+
header: string;
|
|
75
77
|
messages: {
|
|
76
78
|
title: string;
|
|
77
|
-
header: string;
|
|
78
79
|
}[];
|
|
79
80
|
buttons: {
|
|
80
81
|
title: string;
|
|
@@ -121,7 +122,10 @@ declare const BrandingJSON: {
|
|
|
121
122
|
bottom_background: {
|
|
122
123
|
color: string;
|
|
123
124
|
};
|
|
124
|
-
|
|
125
|
+
widgets: {
|
|
126
|
+
show: boolean;
|
|
127
|
+
widgetItems: never[];
|
|
128
|
+
};
|
|
125
129
|
starter_box: {
|
|
126
130
|
show: boolean;
|
|
127
131
|
icon: {
|
|
@@ -263,6 +267,10 @@ declare const BrandingJSON: {
|
|
|
263
267
|
show: boolean;
|
|
264
268
|
icon: string;
|
|
265
269
|
};
|
|
270
|
+
speaker: {
|
|
271
|
+
show: boolean;
|
|
272
|
+
icon: string;
|
|
273
|
+
};
|
|
266
274
|
};
|
|
267
275
|
};
|
|
268
276
|
body: {
|
|
@@ -299,10 +307,12 @@ declare const BrandingJSON: {
|
|
|
299
307
|
title: {
|
|
300
308
|
name: string;
|
|
301
309
|
color: string;
|
|
310
|
+
type: string;
|
|
302
311
|
};
|
|
303
312
|
sub_title: {
|
|
304
313
|
name: string;
|
|
305
314
|
color: string;
|
|
315
|
+
type: string;
|
|
306
316
|
};
|
|
307
317
|
};
|
|
308
318
|
time_stamp: {
|
|
@@ -311,6 +321,8 @@ declare const BrandingJSON: {
|
|
|
311
321
|
position: string;
|
|
312
322
|
separator: string;
|
|
313
323
|
color: string;
|
|
324
|
+
time_format: string;
|
|
325
|
+
date_format: string;
|
|
314
326
|
};
|
|
315
327
|
typing_indicator: {
|
|
316
328
|
icon: string;
|
|
@@ -327,11 +339,6 @@ declare const BrandingJSON: {
|
|
|
327
339
|
color: string;
|
|
328
340
|
};
|
|
329
341
|
bubble_style: string;
|
|
330
|
-
primaryColor: string;
|
|
331
|
-
primaryHoverColor: string;
|
|
332
|
-
secondaryColor: string;
|
|
333
|
-
secondaryHoverColor: string;
|
|
334
|
-
img: string;
|
|
335
342
|
};
|
|
336
343
|
};
|
|
337
344
|
export default BrandingJSON;
|