kore-web-sdk 10.13.1 → 10.14.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 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@10.13.1/dist/umd/kore-web-sdk-umd-chat.min.js"></script>
74
+ <script src="https://cdn.jsdelivr.net/npm/kore-web-sdk@10.14.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;
@@ -0,0 +1,28 @@
1
+ import chatWindow from './components/chatwindow/chatWindow';
2
+ import chatConfig from './components/chatwindow/config/kore-config';
3
+ import Korei18nPlugin from './plugins/i18n';
4
+ import KoreFileUploaderPlugin from './plugins/fileUploader/fileUploader';
5
+ import KorePickersPlugin from './plugins/korePickers';
6
+ import GraphTemplatesPlugin from './plugins/graphTemplatesPlugin';
7
+ import SolutionsTemplatesPlugin from './plugins/solutions/solutionsPlugin';
8
+ import WebKitSTT from './plugins/speechToText/WebKitSTT/WebKitSTT';
9
+ import GoogleSTT from './plugins/speechToText/GoogleSTT/GoogleSTT';
10
+ import AzureSTT from './plugins/speechToText/AzureSTT/AzureSTT';
11
+ import BrowserTTS from './plugins/textToSpeech/BrowserTTS/BrowserTTS';
12
+ import AzureTTS from './plugins/textToSpeech/AzureTTS/AzureTTS';
13
+ import SpeakTextWithAWSPolly from './plugins/textToSpeech/KoreAWSPolly/kore-aws-polly';
14
+ import AgentDesktopPlugin from './plugins/agentDesktop/agentdesktop';
15
+ import WebKitSTTConfig from './plugins/speechToText/WebKitSTT/WebKitSTT';
16
+ import KoreWidgetSDK from './components/widgets/kore-widgets';
17
+ import widgetsConfig from './components/widgets/config/kore-widgets-config';
18
+ import KoreDesktopNotificationPlugin from "./plugins/desktopNotifications/desktopnotifications";
19
+ import GoogleSTTConfig from './plugins/speechToText/GoogleSTT/GoogleSTT';
20
+ import AzureSTTConfig from './plugins/speechToText/AzureSTT/AzureSTT';
21
+ import AzureTTSConfig from './plugins/textToSpeech/AzureTTS/AzureTTS';
22
+ import GoogleTTS from './plugins/textToSpeech/GoogleTTS/GoogleTTS';
23
+ import GoogleTTSConfig from './plugins/textToSpeech/GoogleTTS/GoogleTTS';
24
+ import GoogleVoiceConfig from './plugins/textToSpeech/GoogleTTS/GoogleTTS';
25
+ import GoogleAudioConfig from './plugins/textToSpeech/GoogleTTS/GoogleTTS';
26
+ import SpeakTextAWSPollyConfig from './plugins/textToSpeech/KoreAWSPolly/kore-aws-polly';
27
+ import SearchSuggestionsPlugin from './plugins/searchSuggestions/searchSuggestions';
28
+ export { chatConfig, chatWindow, widgetsConfig, KoreWidgetSDK, Korei18nPlugin, KoreFileUploaderPlugin, KorePickersPlugin, GraphTemplatesPlugin, SolutionsTemplatesPlugin, WebKitSTT, GoogleSTT, AzureSTT, BrowserTTS, AzureTTS, GoogleSTTConfig, AzureSTTConfig, AzureTTSConfig, WebKitSTTConfig, GoogleTTS, GoogleTTSConfig, GoogleVoiceConfig, GoogleAudioConfig, SpeakTextWithAWSPolly, AgentDesktopPlugin, KoreDesktopNotificationPlugin, SpeakTextAWSPollyConfig, SearchSuggestionsPlugin };