@webitel/ui-sdk 25.10.32 → 25.10.34
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/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +5112 -4963
- package/dist/ui-sdk.umd.cjs +76 -76
- package/package.json +1 -1
- package/src/components/wt-image/wt-image.vue +1 -0
- package/src/components/wt-select/wt-select.vue +10 -1
- package/src/locale/en/en.js +3 -0
- package/src/locale/es/es.js +3 -0
- package/src/locale/kz/kz.js +3 -0
- package/src/locale/pl/pl.js +3 -0
- package/src/locale/ro/ro.js +3 -0
- package/src/locale/ru/ru.js +3 -0
- package/src/locale/uk/uk.js +3 -0
- package/src/locale/uz/uz.js +3 -0
- package/src/locale/vi/vi.js +3 -0
- package/src/scripts/getDefaultFilterDate.js +2 -0
- package/src/scripts/index.js +3 -0
- package/types/locale/en/en.d.ts +3 -0
- package/types/locale/es/es.d.ts +3 -0
- package/types/locale/i18n.d.ts +27 -0
- package/types/locale/index.d.ts +27 -0
- package/types/locale/kz/kz.d.ts +3 -0
- package/types/locale/pl/pl.d.ts +3 -0
- package/types/locale/ro/ro.d.ts +3 -0
- package/types/locale/ru/ru.d.ts +3 -0
- package/types/locale/uk/uk.d.ts +3 -0
- package/types/locale/uz/uz.d.ts +3 -0
- package/types/locale/vi/vi.d.ts +3 -0
- package/types/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue.d.ts +2 -2
- package/types/scripts/getDefaultFilterDate.d.ts +2 -0
- package/types/scripts/index.d.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.10.
|
|
3
|
+
"version": "25.10.34",
|
|
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",
|
|
@@ -159,8 +159,8 @@
|
|
|
159
159
|
</template>
|
|
160
160
|
</vue-multiselect>
|
|
161
161
|
<wt-input-info
|
|
162
|
-
v-if="isValidation"
|
|
163
162
|
:invalid="invalid"
|
|
163
|
+
:class="{ 'wt-input-info_visible': isValidation }"
|
|
164
164
|
>
|
|
165
165
|
{{ validationText }}
|
|
166
166
|
</wt-input-info>
|
|
@@ -484,4 +484,13 @@ export default {
|
|
|
484
484
|
}
|
|
485
485
|
}
|
|
486
486
|
}
|
|
487
|
+
|
|
488
|
+
.wt-input-info {
|
|
489
|
+
transition-duration: var(--transition-fast);
|
|
490
|
+
opacity: 0;
|
|
491
|
+
|
|
492
|
+
&_visible {
|
|
493
|
+
opacity: 1;
|
|
494
|
+
}
|
|
495
|
+
}
|
|
487
496
|
</style>
|
package/src/locale/en/en.js
CHANGED
|
@@ -85,6 +85,7 @@ export default deepmerge(notTranslatable, {
|
|
|
85
85
|
unassigned: 'Unassigned',
|
|
86
86
|
showUnassigned: 'Show unassigned',
|
|
87
87
|
group: 'Group',
|
|
88
|
+
dateTime: 'Date & time',
|
|
88
89
|
updatedBy: (/*{ named }*/) => {
|
|
89
90
|
return 'Edited';
|
|
90
91
|
},
|
|
@@ -223,6 +224,8 @@ export default deepmerge(notTranslatable, {
|
|
|
223
224
|
quickReplies: 'Quick reply | Quick replies',
|
|
224
225
|
quickRepliesEmpty: 'There are no quick replies yet',
|
|
225
226
|
},
|
|
227
|
+
screenRecordings: 'Screen recording | Screen recordings',
|
|
228
|
+
screenshots: 'Screenshot | Screenshots',
|
|
226
229
|
},
|
|
227
230
|
channel: {
|
|
228
231
|
state: {
|
package/src/locale/es/es.js
CHANGED
|
@@ -82,6 +82,7 @@ export default {
|
|
|
82
82
|
unassigned: 'Sin asignar',
|
|
83
83
|
showUnassigned: 'Mostrar sin asignar',
|
|
84
84
|
group: 'Grupo',
|
|
85
|
+
dateTime: 'Fecha y hora',
|
|
85
86
|
updatedBy: (/*{ named }*/) => {
|
|
86
87
|
return 'Editado';
|
|
87
88
|
},
|
|
@@ -216,6 +217,8 @@ export default {
|
|
|
216
217
|
quickReplies: 'Respuesta rápida | Respuestas rápidas',
|
|
217
218
|
quickRepliesEmpty: 'Aún no hay respuestas rápidas',
|
|
218
219
|
},
|
|
220
|
+
screenRecordings: 'Grabación de pantalla | Grabaciones de pantalla',
|
|
221
|
+
screenshots: 'Captura de pantalla | Capturas de pantalla',
|
|
219
222
|
},
|
|
220
223
|
channel: {
|
|
221
224
|
state: {
|
package/src/locale/kz/kz.js
CHANGED
|
@@ -83,6 +83,7 @@ export default {
|
|
|
83
83
|
unassigned: 'Тағайындалмаған',
|
|
84
84
|
showUnassigned: 'Тағайындалмағандарды көрсету',
|
|
85
85
|
group: 'Топ',
|
|
86
|
+
dateTime: 'Күні мен уақыты',
|
|
86
87
|
updatedBy: (/*{ named }*/) => {
|
|
87
88
|
return 'Өңделген';
|
|
88
89
|
},
|
|
@@ -221,6 +222,8 @@ export default {
|
|
|
221
222
|
quickReplies: 'Жылдам жауап | Жылдам жауаптар',
|
|
222
223
|
quickRepliesEmpty: 'Жылдам жауаптар әлі жоқ',
|
|
223
224
|
},
|
|
225
|
+
screenRecordings: 'Экран жазбасы | Экран жазбалары',
|
|
226
|
+
screenshots: 'Экран суреті | Экран суреттері',
|
|
224
227
|
},
|
|
225
228
|
channel: {
|
|
226
229
|
state: {
|
package/src/locale/pl/pl.js
CHANGED
|
@@ -83,6 +83,7 @@ export default {
|
|
|
83
83
|
unassigned: 'Nieprzypisane',
|
|
84
84
|
showUnassigned: 'Pokaż nieprzypisane',
|
|
85
85
|
group: 'Grupa',
|
|
86
|
+
dateTime: 'Data i godzina',
|
|
86
87
|
updatedBy: (/*{ named }*/) => {
|
|
87
88
|
return 'Edytowane';
|
|
88
89
|
},
|
|
@@ -221,6 +222,8 @@ export default {
|
|
|
221
222
|
quickReplies: 'Szybka odpowiedź | Szybkie odpowiedzi',
|
|
222
223
|
quickRepliesEmpty: 'Nie ma jeszcze szybkich odpowiedzi',
|
|
223
224
|
},
|
|
225
|
+
screenRecordings: 'Nagranie ekranu | Nagrania ekranu',
|
|
226
|
+
screenshots: 'Zrzut ekranu | Zrzuty ekranu',
|
|
224
227
|
},
|
|
225
228
|
channel: {
|
|
226
229
|
state: {
|
package/src/locale/ro/ro.js
CHANGED
|
@@ -83,6 +83,7 @@ export default {
|
|
|
83
83
|
unassigned: 'Neatribuit',
|
|
84
84
|
showUnassigned: 'Arată neatribuite',
|
|
85
85
|
group: 'Grup',
|
|
86
|
+
dateTime: 'Dată și oră',
|
|
86
87
|
updatedBy: (/*{ named }*/) => {
|
|
87
88
|
return 'Editat';
|
|
88
89
|
},
|
|
@@ -221,6 +222,8 @@ export default {
|
|
|
221
222
|
quickReplies: 'Răspuns rapid | Răspunsuri rapide',
|
|
222
223
|
quickRepliesEmpty: 'Nu există încă răspunsuri rapide',
|
|
223
224
|
},
|
|
225
|
+
screenRecordings: 'Înregistrarea ecranului | Înregistrări ecran',
|
|
226
|
+
screenshots: 'Captură de ecran | Capturi de ecran',
|
|
224
227
|
},
|
|
225
228
|
channel: {
|
|
226
229
|
state: {
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -83,6 +83,7 @@ export default {
|
|
|
83
83
|
unassigned: 'Неназначенные',
|
|
84
84
|
showUnassigned: 'Показать неназначенные',
|
|
85
85
|
group: 'Группа',
|
|
86
|
+
dateTime: 'Дата и время',
|
|
86
87
|
updatedBy: (/*{ named }*/) => {
|
|
87
88
|
return 'Редактировано';
|
|
88
89
|
},
|
|
@@ -221,6 +222,8 @@ export default {
|
|
|
221
222
|
quickReplies: 'Быстрый ответ | Быстрые ответы',
|
|
222
223
|
quickRepliesEmpty: 'Еще нет быстрых ответов',
|
|
223
224
|
},
|
|
225
|
+
screenRecordings: 'Запись экрана | Записи экрана',
|
|
226
|
+
screenshots: 'Снимок экрана | Снимки экрана',
|
|
224
227
|
},
|
|
225
228
|
channel: {
|
|
226
229
|
state: {
|
package/src/locale/uk/uk.js
CHANGED
|
@@ -83,6 +83,7 @@ export default {
|
|
|
83
83
|
unassigned: 'Непризначені',
|
|
84
84
|
showUnassigned: 'Показати непризначені',
|
|
85
85
|
group: 'Група',
|
|
86
|
+
dateTime: 'Дата і час',
|
|
86
87
|
updatedBy: (/*{ named }*/) => {
|
|
87
88
|
return 'Редаговано';
|
|
88
89
|
},
|
|
@@ -220,6 +221,8 @@ export default {
|
|
|
220
221
|
quickReplies: 'Швидка відповідь | Швидкі відповіді',
|
|
221
222
|
quickRepliesEmpty: 'Ще немає швидких відповідей',
|
|
222
223
|
},
|
|
224
|
+
screenRecordings: 'Запис екрану | Записи екрану',
|
|
225
|
+
screenshots: 'Знімок екрана | Знімки екрана',
|
|
223
226
|
},
|
|
224
227
|
channel: {
|
|
225
228
|
state: {
|
package/src/locale/uz/uz.js
CHANGED
|
@@ -83,6 +83,7 @@ export default {
|
|
|
83
83
|
unassigned: 'Tayinlanmagan',
|
|
84
84
|
showUnassigned: "Tayinlanmaganlarni ko'rsatish",
|
|
85
85
|
group: 'Guruh',
|
|
86
|
+
dateTime: 'Sana va vaqt',
|
|
86
87
|
updatedBy: (/*{ named }*/) => {
|
|
87
88
|
return 'Tahrirlangan';
|
|
88
89
|
},
|
|
@@ -221,6 +222,8 @@ export default {
|
|
|
221
222
|
quickReplies: 'Tezkor javob | Tezkor javoblar',
|
|
222
223
|
quickRepliesEmpty: 'Hali tezkor javoblar mavjud emas',
|
|
223
224
|
},
|
|
225
|
+
screenRecordings: 'Ekran yozuvi | Ekran yozuvlari',
|
|
226
|
+
screenshots: 'Ekran rasmi | Ekran rasmlari',
|
|
224
227
|
},
|
|
225
228
|
channel: {
|
|
226
229
|
state: {
|
package/src/locale/vi/vi.js
CHANGED
|
@@ -83,6 +83,7 @@ export default {
|
|
|
83
83
|
unassigned: 'Chưa được gán',
|
|
84
84
|
showUnassigned: 'Hiển thị chưa được gán',
|
|
85
85
|
group: 'Nhóm',
|
|
86
|
+
dateTime: 'Ngày & giờ',
|
|
86
87
|
updatedBy: (/*{ named }*/) => {
|
|
87
88
|
return 'Đã sửa';
|
|
88
89
|
},
|
|
@@ -221,6 +222,8 @@ export default {
|
|
|
221
222
|
quickReplies: 'Trả lời nhanh | Trả lời nhanh',
|
|
222
223
|
quickRepliesEmpty: 'Chưa có trả lời nhanh nào',
|
|
223
224
|
},
|
|
225
|
+
screenRecordings: 'Ghi hình màn hình | Ghi hình màn hình',
|
|
226
|
+
screenshots: 'Ảnh chụp màn hình | Các ảnh chụp màn hình',
|
|
224
227
|
},
|
|
225
228
|
channel: {
|
|
226
229
|
state: {
|
package/src/scripts/index.js
CHANGED
|
@@ -19,6 +19,7 @@ import {
|
|
|
19
19
|
import convertDuration from './convertDuration.js';
|
|
20
20
|
import debounce from './debounce.js';
|
|
21
21
|
import eventBus from './eventBus.js';
|
|
22
|
+
import { getEndOfDay,getStartOfDay } from './getDefaultFilterDate.js';
|
|
22
23
|
import isEmpty from './isEmpty.js';
|
|
23
24
|
import { wtlog } from './logger.js';
|
|
24
25
|
import {
|
|
@@ -39,7 +40,9 @@ export {
|
|
|
39
40
|
convertDuration,
|
|
40
41
|
debounce,
|
|
41
42
|
eventBus,
|
|
43
|
+
getEndOfDay,
|
|
42
44
|
getNextSortOrder,
|
|
45
|
+
getStartOfDay,
|
|
43
46
|
isEmpty,
|
|
44
47
|
isRelativeDatetimeValue,
|
|
45
48
|
kebabToCamel,
|
package/types/locale/en/en.d.ts
CHANGED
|
@@ -75,6 +75,7 @@ declare const _default: {
|
|
|
75
75
|
unassigned: string;
|
|
76
76
|
showUnassigned: string;
|
|
77
77
|
group: string;
|
|
78
|
+
dateTime: string;
|
|
78
79
|
updatedBy: () => "Edited";
|
|
79
80
|
};
|
|
80
81
|
vocabulary: {
|
|
@@ -207,6 +208,8 @@ declare const _default: {
|
|
|
207
208
|
quickReplies: string;
|
|
208
209
|
quickRepliesEmpty: string;
|
|
209
210
|
};
|
|
211
|
+
screenRecordings: string;
|
|
212
|
+
screenshots: string;
|
|
210
213
|
};
|
|
211
214
|
channel: {
|
|
212
215
|
state: {
|
package/types/locale/es/es.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare namespace _default {
|
|
|
66
66
|
export let unassigned: string;
|
|
67
67
|
export let showUnassigned: string;
|
|
68
68
|
export let group: string;
|
|
69
|
+
export let dateTime: string;
|
|
69
70
|
export function updatedBy(): string;
|
|
70
71
|
}
|
|
71
72
|
export namespace vocabulary {
|
|
@@ -209,6 +210,8 @@ declare namespace _default {
|
|
|
209
210
|
export { quickReplies_1 as quickReplies };
|
|
210
211
|
export let quickRepliesEmpty: string;
|
|
211
212
|
}
|
|
213
|
+
export let screenRecordings: string;
|
|
214
|
+
export let screenshots: string;
|
|
212
215
|
}
|
|
213
216
|
export namespace channel_1 {
|
|
214
217
|
let state_1: {
|
package/types/locale/i18n.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
76
76
|
unassigned: string;
|
|
77
77
|
showUnassigned: string;
|
|
78
78
|
group: string;
|
|
79
|
+
dateTime: string;
|
|
79
80
|
updatedBy: () => "Edited";
|
|
80
81
|
};
|
|
81
82
|
vocabulary: {
|
|
@@ -208,6 +209,8 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
208
209
|
quickReplies: string;
|
|
209
210
|
quickRepliesEmpty: string;
|
|
210
211
|
};
|
|
212
|
+
screenRecordings: string;
|
|
213
|
+
screenshots: string;
|
|
211
214
|
};
|
|
212
215
|
channel: {
|
|
213
216
|
state: {
|
|
@@ -791,6 +794,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
791
794
|
unassigned: string;
|
|
792
795
|
showUnassigned: string;
|
|
793
796
|
group: string;
|
|
797
|
+
dateTime: string;
|
|
794
798
|
updatedBy: () => string;
|
|
795
799
|
};
|
|
796
800
|
vocabulary: {
|
|
@@ -923,6 +927,8 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
923
927
|
quickReplies: string;
|
|
924
928
|
quickRepliesEmpty: string;
|
|
925
929
|
};
|
|
930
|
+
screenRecordings: string;
|
|
931
|
+
screenshots: string;
|
|
926
932
|
};
|
|
927
933
|
channel: {
|
|
928
934
|
state: {
|
|
@@ -1647,6 +1653,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1647
1653
|
unassigned: string;
|
|
1648
1654
|
showUnassigned: string;
|
|
1649
1655
|
group: string;
|
|
1656
|
+
dateTime: string;
|
|
1650
1657
|
updatedBy: () => string;
|
|
1651
1658
|
};
|
|
1652
1659
|
vocabulary: {
|
|
@@ -1779,6 +1786,8 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1779
1786
|
quickReplies: string;
|
|
1780
1787
|
quickRepliesEmpty: string;
|
|
1781
1788
|
};
|
|
1789
|
+
screenRecordings: string;
|
|
1790
|
+
screenshots: string;
|
|
1782
1791
|
};
|
|
1783
1792
|
channel: {
|
|
1784
1793
|
state: {
|
|
@@ -2505,6 +2514,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2505
2514
|
unassigned: string;
|
|
2506
2515
|
showUnassigned: string;
|
|
2507
2516
|
group: string;
|
|
2517
|
+
dateTime: string;
|
|
2508
2518
|
updatedBy: () => string;
|
|
2509
2519
|
};
|
|
2510
2520
|
vocabulary: {
|
|
@@ -2637,6 +2647,8 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2637
2647
|
quickReplies: string;
|
|
2638
2648
|
quickRepliesEmpty: string;
|
|
2639
2649
|
};
|
|
2650
|
+
screenRecordings: string;
|
|
2651
|
+
screenshots: string;
|
|
2640
2652
|
};
|
|
2641
2653
|
channel: {
|
|
2642
2654
|
state: {
|
|
@@ -3361,6 +3373,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
3361
3373
|
unassigned: string;
|
|
3362
3374
|
showUnassigned: string;
|
|
3363
3375
|
group: string;
|
|
3376
|
+
dateTime: string;
|
|
3364
3377
|
updatedBy: () => string;
|
|
3365
3378
|
};
|
|
3366
3379
|
vocabulary: {
|
|
@@ -3493,6 +3506,8 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
3493
3506
|
quickReplies: string;
|
|
3494
3507
|
quickRepliesEmpty: string;
|
|
3495
3508
|
};
|
|
3509
|
+
screenRecordings: string;
|
|
3510
|
+
screenshots: string;
|
|
3496
3511
|
};
|
|
3497
3512
|
channel: {
|
|
3498
3513
|
state: {
|
|
@@ -4219,6 +4234,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
4219
4234
|
unassigned: string;
|
|
4220
4235
|
showUnassigned: string;
|
|
4221
4236
|
group: string;
|
|
4237
|
+
dateTime: string;
|
|
4222
4238
|
updatedBy: () => string;
|
|
4223
4239
|
};
|
|
4224
4240
|
vocabulary: {
|
|
@@ -4351,6 +4367,8 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
4351
4367
|
quickReplies: string;
|
|
4352
4368
|
quickRepliesEmpty: string;
|
|
4353
4369
|
};
|
|
4370
|
+
screenRecordings: string;
|
|
4371
|
+
screenshots: string;
|
|
4354
4372
|
};
|
|
4355
4373
|
channel: {
|
|
4356
4374
|
state: {
|
|
@@ -5077,6 +5095,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
5077
5095
|
unassigned: string;
|
|
5078
5096
|
showUnassigned: string;
|
|
5079
5097
|
group: string;
|
|
5098
|
+
dateTime: string;
|
|
5080
5099
|
updatedBy: () => string;
|
|
5081
5100
|
};
|
|
5082
5101
|
vocabulary: {
|
|
@@ -5209,6 +5228,8 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
5209
5228
|
quickReplies: string;
|
|
5210
5229
|
quickRepliesEmpty: string;
|
|
5211
5230
|
};
|
|
5231
|
+
screenRecordings: string;
|
|
5232
|
+
screenshots: string;
|
|
5212
5233
|
};
|
|
5213
5234
|
channel: {
|
|
5214
5235
|
state: {
|
|
@@ -5935,6 +5956,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
5935
5956
|
unassigned: string;
|
|
5936
5957
|
showUnassigned: string;
|
|
5937
5958
|
group: string;
|
|
5959
|
+
dateTime: string;
|
|
5938
5960
|
updatedBy: () => string;
|
|
5939
5961
|
};
|
|
5940
5962
|
vocabulary: {
|
|
@@ -6067,6 +6089,8 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6067
6089
|
quickReplies: string;
|
|
6068
6090
|
quickRepliesEmpty: string;
|
|
6069
6091
|
};
|
|
6092
|
+
screenRecordings: string;
|
|
6093
|
+
screenshots: string;
|
|
6070
6094
|
};
|
|
6071
6095
|
channel: {
|
|
6072
6096
|
state: {
|
|
@@ -6793,6 +6817,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6793
6817
|
unassigned: string;
|
|
6794
6818
|
showUnassigned: string;
|
|
6795
6819
|
group: string;
|
|
6820
|
+
dateTime: string;
|
|
6796
6821
|
updatedBy: () => string;
|
|
6797
6822
|
};
|
|
6798
6823
|
vocabulary: {
|
|
@@ -6925,6 +6950,8 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6925
6950
|
quickReplies: string;
|
|
6926
6951
|
quickRepliesEmpty: string;
|
|
6927
6952
|
};
|
|
6953
|
+
screenRecordings: string;
|
|
6954
|
+
screenshots: string;
|
|
6928
6955
|
};
|
|
6929
6956
|
channel: {
|
|
6930
6957
|
state: {
|
package/types/locale/index.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ export declare const messages: {
|
|
|
86
86
|
unassigned: string;
|
|
87
87
|
showUnassigned: string;
|
|
88
88
|
group: string;
|
|
89
|
+
dateTime: string;
|
|
89
90
|
updatedBy: () => "Edited";
|
|
90
91
|
};
|
|
91
92
|
vocabulary: {
|
|
@@ -218,6 +219,8 @@ export declare const messages: {
|
|
|
218
219
|
quickReplies: string;
|
|
219
220
|
quickRepliesEmpty: string;
|
|
220
221
|
};
|
|
222
|
+
screenRecordings: string;
|
|
223
|
+
screenshots: string;
|
|
221
224
|
};
|
|
222
225
|
channel: {
|
|
223
226
|
state: {
|
|
@@ -801,6 +804,7 @@ export declare const messages: {
|
|
|
801
804
|
unassigned: string;
|
|
802
805
|
showUnassigned: string;
|
|
803
806
|
group: string;
|
|
807
|
+
dateTime: string;
|
|
804
808
|
updatedBy: () => string;
|
|
805
809
|
};
|
|
806
810
|
vocabulary: {
|
|
@@ -933,6 +937,8 @@ export declare const messages: {
|
|
|
933
937
|
quickReplies: string;
|
|
934
938
|
quickRepliesEmpty: string;
|
|
935
939
|
};
|
|
940
|
+
screenRecordings: string;
|
|
941
|
+
screenshots: string;
|
|
936
942
|
};
|
|
937
943
|
channel: {
|
|
938
944
|
state: {
|
|
@@ -1657,6 +1663,7 @@ export declare const messages: {
|
|
|
1657
1663
|
unassigned: string;
|
|
1658
1664
|
showUnassigned: string;
|
|
1659
1665
|
group: string;
|
|
1666
|
+
dateTime: string;
|
|
1660
1667
|
updatedBy: () => string;
|
|
1661
1668
|
};
|
|
1662
1669
|
vocabulary: {
|
|
@@ -1789,6 +1796,8 @@ export declare const messages: {
|
|
|
1789
1796
|
quickReplies: string;
|
|
1790
1797
|
quickRepliesEmpty: string;
|
|
1791
1798
|
};
|
|
1799
|
+
screenRecordings: string;
|
|
1800
|
+
screenshots: string;
|
|
1792
1801
|
};
|
|
1793
1802
|
channel: {
|
|
1794
1803
|
state: {
|
|
@@ -2515,6 +2524,7 @@ export declare const messages: {
|
|
|
2515
2524
|
unassigned: string;
|
|
2516
2525
|
showUnassigned: string;
|
|
2517
2526
|
group: string;
|
|
2527
|
+
dateTime: string;
|
|
2518
2528
|
updatedBy: () => string;
|
|
2519
2529
|
};
|
|
2520
2530
|
vocabulary: {
|
|
@@ -2647,6 +2657,8 @@ export declare const messages: {
|
|
|
2647
2657
|
quickReplies: string;
|
|
2648
2658
|
quickRepliesEmpty: string;
|
|
2649
2659
|
};
|
|
2660
|
+
screenRecordings: string;
|
|
2661
|
+
screenshots: string;
|
|
2650
2662
|
};
|
|
2651
2663
|
channel: {
|
|
2652
2664
|
state: {
|
|
@@ -3371,6 +3383,7 @@ export declare const messages: {
|
|
|
3371
3383
|
unassigned: string;
|
|
3372
3384
|
showUnassigned: string;
|
|
3373
3385
|
group: string;
|
|
3386
|
+
dateTime: string;
|
|
3374
3387
|
updatedBy: () => string;
|
|
3375
3388
|
};
|
|
3376
3389
|
vocabulary: {
|
|
@@ -3503,6 +3516,8 @@ export declare const messages: {
|
|
|
3503
3516
|
quickReplies: string;
|
|
3504
3517
|
quickRepliesEmpty: string;
|
|
3505
3518
|
};
|
|
3519
|
+
screenRecordings: string;
|
|
3520
|
+
screenshots: string;
|
|
3506
3521
|
};
|
|
3507
3522
|
channel: {
|
|
3508
3523
|
state: {
|
|
@@ -4229,6 +4244,7 @@ export declare const messages: {
|
|
|
4229
4244
|
unassigned: string;
|
|
4230
4245
|
showUnassigned: string;
|
|
4231
4246
|
group: string;
|
|
4247
|
+
dateTime: string;
|
|
4232
4248
|
updatedBy: () => string;
|
|
4233
4249
|
};
|
|
4234
4250
|
vocabulary: {
|
|
@@ -4361,6 +4377,8 @@ export declare const messages: {
|
|
|
4361
4377
|
quickReplies: string;
|
|
4362
4378
|
quickRepliesEmpty: string;
|
|
4363
4379
|
};
|
|
4380
|
+
screenRecordings: string;
|
|
4381
|
+
screenshots: string;
|
|
4364
4382
|
};
|
|
4365
4383
|
channel: {
|
|
4366
4384
|
state: {
|
|
@@ -5087,6 +5105,7 @@ export declare const messages: {
|
|
|
5087
5105
|
unassigned: string;
|
|
5088
5106
|
showUnassigned: string;
|
|
5089
5107
|
group: string;
|
|
5108
|
+
dateTime: string;
|
|
5090
5109
|
updatedBy: () => string;
|
|
5091
5110
|
};
|
|
5092
5111
|
vocabulary: {
|
|
@@ -5219,6 +5238,8 @@ export declare const messages: {
|
|
|
5219
5238
|
quickReplies: string;
|
|
5220
5239
|
quickRepliesEmpty: string;
|
|
5221
5240
|
};
|
|
5241
|
+
screenRecordings: string;
|
|
5242
|
+
screenshots: string;
|
|
5222
5243
|
};
|
|
5223
5244
|
channel: {
|
|
5224
5245
|
state: {
|
|
@@ -5945,6 +5966,7 @@ export declare const messages: {
|
|
|
5945
5966
|
unassigned: string;
|
|
5946
5967
|
showUnassigned: string;
|
|
5947
5968
|
group: string;
|
|
5969
|
+
dateTime: string;
|
|
5948
5970
|
updatedBy: () => string;
|
|
5949
5971
|
};
|
|
5950
5972
|
vocabulary: {
|
|
@@ -6077,6 +6099,8 @@ export declare const messages: {
|
|
|
6077
6099
|
quickReplies: string;
|
|
6078
6100
|
quickRepliesEmpty: string;
|
|
6079
6101
|
};
|
|
6102
|
+
screenRecordings: string;
|
|
6103
|
+
screenshots: string;
|
|
6080
6104
|
};
|
|
6081
6105
|
channel: {
|
|
6082
6106
|
state: {
|
|
@@ -6803,6 +6827,7 @@ export declare const messages: {
|
|
|
6803
6827
|
unassigned: string;
|
|
6804
6828
|
showUnassigned: string;
|
|
6805
6829
|
group: string;
|
|
6830
|
+
dateTime: string;
|
|
6806
6831
|
updatedBy: () => string;
|
|
6807
6832
|
};
|
|
6808
6833
|
vocabulary: {
|
|
@@ -6935,6 +6960,8 @@ export declare const messages: {
|
|
|
6935
6960
|
quickReplies: string;
|
|
6936
6961
|
quickRepliesEmpty: string;
|
|
6937
6962
|
};
|
|
6963
|
+
screenRecordings: string;
|
|
6964
|
+
screenshots: string;
|
|
6938
6965
|
};
|
|
6939
6966
|
channel: {
|
|
6940
6967
|
state: {
|
package/types/locale/kz/kz.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare namespace _default {
|
|
|
66
66
|
export let unassigned: string;
|
|
67
67
|
export let showUnassigned: string;
|
|
68
68
|
export let group: string;
|
|
69
|
+
export let dateTime: string;
|
|
69
70
|
export function updatedBy(): string;
|
|
70
71
|
}
|
|
71
72
|
export namespace vocabulary {
|
|
@@ -209,6 +210,8 @@ declare namespace _default {
|
|
|
209
210
|
export { quickReplies_1 as quickReplies };
|
|
210
211
|
export let quickRepliesEmpty: string;
|
|
211
212
|
}
|
|
213
|
+
export let screenRecordings: string;
|
|
214
|
+
export let screenshots: string;
|
|
212
215
|
}
|
|
213
216
|
export namespace channel_1 {
|
|
214
217
|
let state_1: {
|
package/types/locale/pl/pl.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare namespace _default {
|
|
|
66
66
|
export let unassigned: string;
|
|
67
67
|
export let showUnassigned: string;
|
|
68
68
|
export let group: string;
|
|
69
|
+
export let dateTime: string;
|
|
69
70
|
export function updatedBy(): string;
|
|
70
71
|
}
|
|
71
72
|
export namespace vocabulary {
|
|
@@ -209,6 +210,8 @@ declare namespace _default {
|
|
|
209
210
|
export { quickReplies_1 as quickReplies };
|
|
210
211
|
export let quickRepliesEmpty: string;
|
|
211
212
|
}
|
|
213
|
+
export let screenRecordings: string;
|
|
214
|
+
export let screenshots: string;
|
|
212
215
|
}
|
|
213
216
|
export namespace channel_1 {
|
|
214
217
|
let state_1: {
|
package/types/locale/ro/ro.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare namespace _default {
|
|
|
66
66
|
export let unassigned: string;
|
|
67
67
|
export let showUnassigned: string;
|
|
68
68
|
export let group: string;
|
|
69
|
+
export let dateTime: string;
|
|
69
70
|
export function updatedBy(): string;
|
|
70
71
|
}
|
|
71
72
|
export namespace vocabulary {
|
|
@@ -209,6 +210,8 @@ declare namespace _default {
|
|
|
209
210
|
export { quickReplies_1 as quickReplies };
|
|
210
211
|
export let quickRepliesEmpty: string;
|
|
211
212
|
}
|
|
213
|
+
export let screenRecordings: string;
|
|
214
|
+
export let screenshots: string;
|
|
212
215
|
}
|
|
213
216
|
export namespace channel_1 {
|
|
214
217
|
let state_1: {
|
package/types/locale/ru/ru.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ declare namespace _default {
|
|
|
64
64
|
export let unassigned: string;
|
|
65
65
|
export let showUnassigned: string;
|
|
66
66
|
export let group: string;
|
|
67
|
+
export let dateTime: string;
|
|
67
68
|
export function updatedBy(): string;
|
|
68
69
|
}
|
|
69
70
|
export namespace vocabulary {
|
|
@@ -207,6 +208,8 @@ declare namespace _default {
|
|
|
207
208
|
export { quickReplies_1 as quickReplies };
|
|
208
209
|
export let quickRepliesEmpty: string;
|
|
209
210
|
}
|
|
211
|
+
export let screenRecordings: string;
|
|
212
|
+
export let screenshots: string;
|
|
210
213
|
}
|
|
211
214
|
export namespace channel_1 {
|
|
212
215
|
let state_1: {
|
package/types/locale/uk/uk.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ declare namespace _default {
|
|
|
64
64
|
export let unassigned: string;
|
|
65
65
|
export let showUnassigned: string;
|
|
66
66
|
export let group: string;
|
|
67
|
+
export let dateTime: string;
|
|
67
68
|
export function updatedBy(): string;
|
|
68
69
|
}
|
|
69
70
|
export namespace vocabulary {
|
|
@@ -207,6 +208,8 @@ declare namespace _default {
|
|
|
207
208
|
export { quickReplies_1 as quickReplies };
|
|
208
209
|
export let quickRepliesEmpty: string;
|
|
209
210
|
}
|
|
211
|
+
export let screenRecordings: string;
|
|
212
|
+
export let screenshots: string;
|
|
210
213
|
}
|
|
211
214
|
export namespace channel_1 {
|
|
212
215
|
let state_1: {
|
package/types/locale/uz/uz.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare namespace _default {
|
|
|
66
66
|
export let unassigned: string;
|
|
67
67
|
export let showUnassigned: string;
|
|
68
68
|
export let group: string;
|
|
69
|
+
export let dateTime: string;
|
|
69
70
|
export function updatedBy(): string;
|
|
70
71
|
}
|
|
71
72
|
export namespace vocabulary {
|
|
@@ -209,6 +210,8 @@ declare namespace _default {
|
|
|
209
210
|
export { quickReplies_1 as quickReplies };
|
|
210
211
|
export let quickRepliesEmpty: string;
|
|
211
212
|
}
|
|
213
|
+
export let screenRecordings: string;
|
|
214
|
+
export let screenshots: string;
|
|
212
215
|
}
|
|
213
216
|
export namespace channel_1 {
|
|
214
217
|
let state_1: {
|
package/types/locale/vi/vi.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare namespace _default {
|
|
|
66
66
|
export let unassigned: string;
|
|
67
67
|
export let showUnassigned: string;
|
|
68
68
|
export let group: string;
|
|
69
|
+
export let dateTime: string;
|
|
69
70
|
export function updatedBy(): string;
|
|
70
71
|
}
|
|
71
72
|
export namespace vocabulary {
|
|
@@ -209,6 +210,8 @@ declare namespace _default {
|
|
|
209
210
|
export { quickReplies_1 as quickReplies };
|
|
210
211
|
export let quickRepliesEmpty: string;
|
|
211
212
|
}
|
|
213
|
+
export let screenRecordings: string;
|
|
214
|
+
export let screenshots: string;
|
|
212
215
|
}
|
|
213
216
|
export namespace channel_1 {
|
|
214
217
|
let state_1: {
|