@koredev/kore-web-sdk 11.19.0-rc.fb4ca58 → 11.19.1-rc.9c9e629
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/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/kore-i18n.js +1 -1
- package/dist/esm/plugins/proactive-web-campaign.js +1 -1
- package/dist/plugins/i18n.d.ts +20 -0
- package/dist/plugins/proactiveWebCampaign/proactiveWebCampaign.d.ts +2 -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/kore-i18n.js +1 -1
- package/dist/umd/plugins/proactive-web-campaign.js +1 -1
- package/package.json +1 -1
package/dist/plugins/i18n.d.ts
CHANGED
|
@@ -39,6 +39,10 @@ declare class Korei18nPlugin {
|
|
|
39
39
|
today: string;
|
|
40
40
|
yesterday: string;
|
|
41
41
|
clickToCall: string;
|
|
42
|
+
read: string;
|
|
43
|
+
delivered: string;
|
|
44
|
+
sent: string;
|
|
45
|
+
you: string;
|
|
42
46
|
};
|
|
43
47
|
ja: {
|
|
44
48
|
message: string;
|
|
@@ -75,6 +79,10 @@ declare class Korei18nPlugin {
|
|
|
75
79
|
today: string;
|
|
76
80
|
yesterday: string;
|
|
77
81
|
clickToCall: string;
|
|
82
|
+
read: string;
|
|
83
|
+
delivered: string;
|
|
84
|
+
sent: string;
|
|
85
|
+
you: string;
|
|
78
86
|
};
|
|
79
87
|
ko: {
|
|
80
88
|
message: string;
|
|
@@ -111,6 +119,10 @@ declare class Korei18nPlugin {
|
|
|
111
119
|
today: string;
|
|
112
120
|
yesterday: string;
|
|
113
121
|
clickToCall: string;
|
|
122
|
+
read: string;
|
|
123
|
+
delivered: string;
|
|
124
|
+
sent: string;
|
|
125
|
+
you: string;
|
|
114
126
|
};
|
|
115
127
|
zh: {
|
|
116
128
|
message: string;
|
|
@@ -147,6 +159,10 @@ declare class Korei18nPlugin {
|
|
|
147
159
|
today: string;
|
|
148
160
|
yesterday: string;
|
|
149
161
|
clickToCall: string;
|
|
162
|
+
read: string;
|
|
163
|
+
delivered: string;
|
|
164
|
+
sent: string;
|
|
165
|
+
you: string;
|
|
150
166
|
};
|
|
151
167
|
de: {
|
|
152
168
|
message: string;
|
|
@@ -183,6 +199,10 @@ declare class Korei18nPlugin {
|
|
|
183
199
|
today: string;
|
|
184
200
|
yesterday: string;
|
|
185
201
|
clickToCall: string;
|
|
202
|
+
read: string;
|
|
203
|
+
delivered: string;
|
|
204
|
+
sent: string;
|
|
205
|
+
you: string;
|
|
186
206
|
};
|
|
187
207
|
};
|
|
188
208
|
};
|
|
@@ -15,6 +15,7 @@ declare class ProactiveWebCampaignPlugin {
|
|
|
15
15
|
customDataObject: any;
|
|
16
16
|
isInitialPageLoaded: boolean;
|
|
17
17
|
browserSessionId: string;
|
|
18
|
+
isPWEChatTriggered: string;
|
|
18
19
|
flattenedCustomData: any;
|
|
19
20
|
previousFlattenedCustomData: any;
|
|
20
21
|
customColumnConfig: Set<string>;
|
|
@@ -44,6 +45,7 @@ declare class ProactiveWebCampaignPlugin {
|
|
|
44
45
|
generateBrowserSessionId(): string;
|
|
45
46
|
onHostCreate(): void;
|
|
46
47
|
onInit(): void;
|
|
48
|
+
handleAvatarClick(): void;
|
|
47
49
|
/**
|
|
48
50
|
* Called when view is initialized (DOM ready)
|
|
49
51
|
* Attempts template restoration for chat templates that need DOM access
|