kore-web-sdk 11.23.1 → 11.24.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/README.md +1 -1
- package/dist/components/chatwindow/chatWindow.d.ts +1 -1
- package/dist/esm/kore-web-sdk-chat.min.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/proactive-web-campaign.js +1 -1
- package/dist/plugins/answers/templates/SearchResultsTemplate/searchResultsTemplate.d.ts +21 -0
- package/dist/plugins/answers/templates/relevantResultsTemplate/filtersComponent/filtersComponent.d.ts +24 -0
- package/dist/plugins/answers/templates/relevantResultsTemplate/filtersComponent/multiSelectDropdown.d.ts +15 -0
- package/dist/plugins/answers/templates/relevantResultsTemplate/filtersComponent/singleSelectDropdown.d.ts +15 -0
- package/dist/plugins/answers/templates/relevantResultsTemplate/relevantResults.d.ts +10 -0
- package/dist/plugins/answers/templates/relevantResultsTemplate/relevantResultsSvgIcons.d.ts +9 -0
- package/dist/plugins/answers/templates/relevantResultsTemplate/searchResultsData.d.ts +12 -0
- package/dist/plugins/answers/templates/tablePreviewTemplate/tablePreviewUtils.d.ts +26 -0
- package/dist/plugins/proactiveWebCampaign/proactiveWebCampaign.d.ts +2 -0
- package/dist/plugins/proactiveWebCampaign/templates/pwcQuickChatTemplate/pwcQuickChatTemplate.d.ts +7 -0
- package/dist/umd/kore-web-sdk-umd-chat.min.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/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.
|
|
74
|
+
<script src="https://cdn.jsdelivr.net/npm/kore-web-sdk@11.24.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;
|
|
@@ -265,7 +265,7 @@ declare class chatWindow extends EventEmitter {
|
|
|
265
265
|
setWidgetInstance(widgetSDKInstace: any): void;
|
|
266
266
|
hideError(): void;
|
|
267
267
|
showError(response: any): void;
|
|
268
|
-
bottomSliderAction(action: any, appendElement: any, fullSlide?: any): void;
|
|
268
|
+
bottomSliderAction(action: any, appendElement: any, fullSlide?: any, customClass?: string, parentCustomClass?: string): void;
|
|
269
269
|
modalAction(appendElement: any): void;
|
|
270
270
|
unfreezeUIOnHistoryLoadingFail(): void;
|
|
271
271
|
installPlugin(plugin: any): void;
|