@koredev/agentai-web-sdk 1.5.2-rc → 1.5.4-rc

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.
@@ -0,0 +1,2 @@
1
+ import aai18nPlugin from '../plugins/i18n';
2
+ export { aai18nPlugin };
@@ -0,0 +1,109 @@
1
+ declare class aai18nPlugin {
2
+ name: string;
3
+ config: {
4
+ rtlLanguages: string[];
5
+ availableLanguages: string[];
6
+ defaultLanguage: string;
7
+ languageStrings: {
8
+ ar: {
9
+ message: string;
10
+ connecting: string;
11
+ reconnecting: string;
12
+ entertosend: string;
13
+ endofchat: string;
14
+ loadinghistory: string;
15
+ sendText: string;
16
+ closeText: string;
17
+ expandText: string;
18
+ minimizeText: string;
19
+ reconnectText: string;
20
+ attachmentText: string;
21
+ help: string;
22
+ agent: string;
23
+ media: string;
24
+ file: string;
25
+ tapToSpeak: string;
26
+ listenToEnd: string;
27
+ tapToSend: string;
28
+ typing: string;
29
+ menu: string;
30
+ poweredBy: string;
31
+ keyboard: string;
32
+ microphone: string;
33
+ cancel: string;
34
+ speakerOn: string;
35
+ speakerOff: string;
36
+ attachments: string;
37
+ close: string;
38
+ reconnect: string;
39
+ };
40
+ ja: {
41
+ message: string;
42
+ connecting: string;
43
+ reconnecting: string;
44
+ entertosend: string;
45
+ endofchat: string;
46
+ loadinghistory: string;
47
+ sendText: string;
48
+ closeText: string;
49
+ expandText: string;
50
+ minimizeText: string;
51
+ reconnectText: string;
52
+ attachmentText: string;
53
+ help: string;
54
+ agent: string;
55
+ media: string;
56
+ file: string;
57
+ tapToSpeak: string;
58
+ listenToEnd: string;
59
+ tapToSend: string;
60
+ typing: string;
61
+ menu: string;
62
+ poweredBy: string;
63
+ keyboard: string;
64
+ microphone: string;
65
+ cancel: string;
66
+ emojis: string;
67
+ speakerOn: string;
68
+ speakerOff: string;
69
+ attachments: string;
70
+ close: string;
71
+ reconnect: string;
72
+ };
73
+ ko: {
74
+ message: string;
75
+ connecting: string;
76
+ reconnecting: string;
77
+ entertosend: string;
78
+ endofchat: string;
79
+ loadinghistory: string;
80
+ sendText: string;
81
+ closeText: string;
82
+ expandText: string;
83
+ minimizeText: string;
84
+ reconnectText: string;
85
+ attachmentText: string;
86
+ help: string;
87
+ agent: string;
88
+ media: string;
89
+ file: string;
90
+ tapToSpeak: string;
91
+ listenToEnd: string;
92
+ tapToSend: string;
93
+ typing: string;
94
+ menu: string;
95
+ poweredBy: string;
96
+ keyboard: string;
97
+ microphone: string;
98
+ cancel: string;
99
+ emojis: string;
100
+ speakerOn: string;
101
+ speakerOff: string;
102
+ attachments: string;
103
+ close: string;
104
+ reconnect: string;
105
+ };
106
+ };
107
+ };
108
+ }
109
+ export default aai18nPlugin;