@webitel/ui-sdk 25.8.22 → 25.8.23
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/package.json +1 -1
- package/src/locale/en/en.js +4 -0
- package/src/locale/ru/ru.js +4 -0
- package/src/locale/ua/ua.js +4 -0
- package/types/locale/en/en.d.ts +5 -0
- package/types/locale/i18n.d.ts +12 -0
- package/types/locale/ru/ru.d.ts +5 -0
- package/types/locale/ua/ua.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.8.
|
|
3
|
+
"version": "25.8.23",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
|
package/src/locale/en/en.js
CHANGED
|
@@ -216,6 +216,10 @@ export default {
|
|
|
216
216
|
[ChatGatewayProvider.INFOBIP]: 'Infobip',
|
|
217
217
|
[ChatGatewayProvider.CUSTOM]: 'Custom Chat Gateway',
|
|
218
218
|
},
|
|
219
|
+
quickReplies: {
|
|
220
|
+
quickReplies: 'Quick reply | Quick replies',
|
|
221
|
+
quickRepliesEmpty: 'There are no quick replies yet',
|
|
222
|
+
},
|
|
219
223
|
},
|
|
220
224
|
channel: {
|
|
221
225
|
state: {
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -215,6 +215,10 @@ export default {
|
|
|
215
215
|
[ChatGatewayProvider.INFOBIP]: 'Infobip',
|
|
216
216
|
[ChatGatewayProvider.CUSTOM]: 'Custom Chat Gateway',
|
|
217
217
|
},
|
|
218
|
+
quickReplies: {
|
|
219
|
+
quickReplies: 'Быстрый ответ | Быстрые ответы',
|
|
220
|
+
quickRepliesEmpty: 'Еще нет быстрых ответов',
|
|
221
|
+
},
|
|
218
222
|
},
|
|
219
223
|
channel: {
|
|
220
224
|
state: {
|
package/src/locale/ua/ua.js
CHANGED
|
@@ -215,6 +215,10 @@ export default {
|
|
|
215
215
|
[ChatGatewayProvider.INFOBIP]: 'Infobip',
|
|
216
216
|
[ChatGatewayProvider.CUSTOM]: 'Custom Chat Gateway',
|
|
217
217
|
},
|
|
218
|
+
quickReplies: {
|
|
219
|
+
quickReplies: 'Швидка відповідь | Швидкі відповіді',
|
|
220
|
+
quickRepliesEmpty: 'Ще немає швидких відповідей',
|
|
221
|
+
},
|
|
218
222
|
},
|
|
219
223
|
channel: {
|
|
220
224
|
state: {
|
package/types/locale/en/en.d.ts
CHANGED
|
@@ -202,6 +202,11 @@ declare namespace _default {
|
|
|
202
202
|
let infobip_whatsapp: string;
|
|
203
203
|
let custom: string;
|
|
204
204
|
}
|
|
205
|
+
export namespace quickReplies {
|
|
206
|
+
let quickReplies_1: string;
|
|
207
|
+
export { quickReplies_1 as quickReplies };
|
|
208
|
+
export let quickRepliesEmpty: string;
|
|
209
|
+
}
|
|
205
210
|
}
|
|
206
211
|
export namespace channel_1 {
|
|
207
212
|
let state_1: {
|
package/types/locale/i18n.d.ts
CHANGED
|
@@ -190,6 +190,10 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
190
190
|
infobip_whatsapp: string;
|
|
191
191
|
custom: string;
|
|
192
192
|
};
|
|
193
|
+
quickReplies: {
|
|
194
|
+
quickReplies: string;
|
|
195
|
+
quickRepliesEmpty: string;
|
|
196
|
+
};
|
|
193
197
|
};
|
|
194
198
|
channel: {
|
|
195
199
|
state: {
|
|
@@ -1243,6 +1247,10 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1243
1247
|
infobip_whatsapp: string;
|
|
1244
1248
|
custom: string;
|
|
1245
1249
|
};
|
|
1250
|
+
quickReplies: {
|
|
1251
|
+
quickReplies: string;
|
|
1252
|
+
quickRepliesEmpty: string;
|
|
1253
|
+
};
|
|
1246
1254
|
};
|
|
1247
1255
|
channel: {
|
|
1248
1256
|
state: {
|
|
@@ -2072,6 +2080,10 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2072
2080
|
infobip_whatsapp: string;
|
|
2073
2081
|
custom: string;
|
|
2074
2082
|
};
|
|
2083
|
+
quickReplies: {
|
|
2084
|
+
quickReplies: string;
|
|
2085
|
+
quickRepliesEmpty: string;
|
|
2086
|
+
};
|
|
2075
2087
|
};
|
|
2076
2088
|
channel: {
|
|
2077
2089
|
state: {
|
package/types/locale/ru/ru.d.ts
CHANGED
|
@@ -200,6 +200,11 @@ declare namespace _default {
|
|
|
200
200
|
let infobip_whatsapp: string;
|
|
201
201
|
let custom: string;
|
|
202
202
|
}
|
|
203
|
+
export namespace quickReplies {
|
|
204
|
+
let quickReplies_1: string;
|
|
205
|
+
export { quickReplies_1 as quickReplies };
|
|
206
|
+
export let quickRepliesEmpty: string;
|
|
207
|
+
}
|
|
203
208
|
}
|
|
204
209
|
export namespace channel_1 {
|
|
205
210
|
let state_1: {
|
package/types/locale/ua/ua.d.ts
CHANGED
|
@@ -200,6 +200,11 @@ declare namespace _default {
|
|
|
200
200
|
let infobip_whatsapp: string;
|
|
201
201
|
let custom: string;
|
|
202
202
|
}
|
|
203
|
+
export namespace quickReplies {
|
|
204
|
+
let quickReplies_1: string;
|
|
205
|
+
export { quickReplies_1 as quickReplies };
|
|
206
|
+
export let quickRepliesEmpty: string;
|
|
207
|
+
}
|
|
203
208
|
}
|
|
204
209
|
export namespace channel_1 {
|
|
205
210
|
let state_1: {
|