@webitel/ui-sdk 25.8.22 → 25.8.24
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 +5 -1
- package/src/locale/es/es.js +1 -1
- package/src/locale/i18n.js +2 -2
- package/src/locale/kz/kz.js +1 -1
- package/src/locale/ru/ru.js +5 -1
- package/src/locale/{ua/ua.js → uk/uk.js} +7 -3
- package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -2
- package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +15 -15
- package/types/components/wt-button-select/wt-button-select.vue.d.ts +2 -2
- package/types/components/wt-confirm-dialog/wt-confirm-dialog.vue.d.ts +2 -2
- package/types/components/wt-intersection-observer/wt-intersection-observer.vue.d.ts +2 -2
- package/types/components/wt-loader/_internals/wt-loader--md.vue.d.ts +2 -0
- package/types/components/wt-loader/_internals/wt-loader--sm.vue.d.ts +16 -0
- package/types/components/wt-player/wt-player.vue.d.ts +1 -1
- package/types/components/wt-table/wt-table.vue.d.ts +1 -1
- package/types/components/wt-timepicker/wt-timepicker.vue.d.ts +1 -1
- package/types/locale/en/en.d.ts +6 -1
- package/types/locale/es/es.d.ts +1 -1
- package/types/locale/i18n.d.ts +18 -6
- package/types/locale/kz/kz.d.ts +1 -1
- package/types/locale/ru/ru.d.ts +6 -1
- package/types/locale/uk/uk.d.ts +916 -0
- package/types/modules/Userinfo/api/userinfo.d.ts +1 -1
- package/types/modules/Userinfo/v2/api/UserinfoAPI.d.ts +1 -1
- package/types/plugins/primevue/theme/semantic/color-scheme/color-schema.d.ts +1189 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/dark-color.d.ts +162 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/light-color.d.ts +162 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/palette.d.ts +435 -0
- package/types/plugins/primevue/theme/semantic/semantic.d.ts +5 -0
- package/types/scripts/caseConverters.d.ts +1 -1
- package/types/scripts/sortQueryAdapters.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.8.
|
|
3
|
+
"version": "25.8.24",
|
|
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
|
@@ -55,7 +55,7 @@ export default {
|
|
|
55
55
|
en: 'English',
|
|
56
56
|
es: 'Español',
|
|
57
57
|
ru: 'Русский',
|
|
58
|
-
|
|
58
|
+
uk: 'Українська',
|
|
59
59
|
kz: 'Қазақ',
|
|
60
60
|
},
|
|
61
61
|
from: 'From',
|
|
@@ -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/es/es.js
CHANGED
package/src/locale/i18n.js
CHANGED
|
@@ -4,13 +4,13 @@ import en from './en/en.js';
|
|
|
4
4
|
import es from './es/es.js';
|
|
5
5
|
import kz from './kz/kz.js';
|
|
6
6
|
import ru from './ru/ru.js';
|
|
7
|
-
import
|
|
7
|
+
import uk from './uk/uk.js';
|
|
8
8
|
|
|
9
9
|
const messages = {
|
|
10
10
|
en,
|
|
11
11
|
es,
|
|
12
12
|
ru,
|
|
13
|
-
|
|
13
|
+
uk,
|
|
14
14
|
kz,
|
|
15
15
|
};
|
|
16
16
|
|
package/src/locale/kz/kz.js
CHANGED
package/src/locale/ru/ru.js
CHANGED
|
@@ -55,7 +55,7 @@ export default {
|
|
|
55
55
|
en: 'English',
|
|
56
56
|
es: 'Español',
|
|
57
57
|
ru: 'Русский',
|
|
58
|
-
|
|
58
|
+
uk: 'Українська',
|
|
59
59
|
kz: 'Қазақ',
|
|
60
60
|
},
|
|
61
61
|
from: 'От',
|
|
@@ -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: {
|
|
@@ -55,7 +55,7 @@ export default {
|
|
|
55
55
|
en: 'English',
|
|
56
56
|
es: 'Español',
|
|
57
57
|
ru: 'Русский',
|
|
58
|
-
|
|
58
|
+
uk: 'Українська',
|
|
59
59
|
kz: 'Қазақ',
|
|
60
60
|
},
|
|
61
61
|
from: 'Від',
|
|
@@ -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: {
|
|
@@ -696,6 +700,6 @@ export default {
|
|
|
696
700
|
},
|
|
697
701
|
errorNotifications: {
|
|
698
702
|
chatHistoryApi: 'Сталася помилка завантаження історії чату',
|
|
699
|
-
markChatProcessed: 'Не вдалося перемістити чат у
|
|
703
|
+
markChatProcessed: 'Не вдалося перемістити чат у "Закриті"',
|
|
700
704
|
},
|
|
701
|
-
};
|
|
705
|
+
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const tableActionsOrder: ("
|
|
2
|
-
export const sectionActionsOrder: ("
|
|
1
|
+
export const tableActionsOrder: ("filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact")[];
|
|
2
|
+
export const sectionActionsOrder: ("filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact")[];
|
|
@@ -19,53 +19,53 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
19
19
|
};
|
|
20
20
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
21
21
|
type __VLS_Slots = {
|
|
22
|
-
delete?: (props: {
|
|
23
|
-
action: "delete" | "filters" | "add" | "variables" | "refresh" | "upload" | "download" | "copy" | "columns" | "add-contact";
|
|
24
|
-
size: string;
|
|
25
|
-
onClick: () => void;
|
|
26
|
-
}) => any;
|
|
27
22
|
filters?: (props: {
|
|
28
|
-
action: "
|
|
23
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
29
24
|
size: string;
|
|
30
25
|
onClick: () => void;
|
|
31
26
|
}) => any;
|
|
32
27
|
add?: (props: {
|
|
33
|
-
action: "
|
|
28
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
34
29
|
size: string;
|
|
35
30
|
onClick: () => void;
|
|
36
31
|
}) => any;
|
|
37
|
-
|
|
38
|
-
action: "
|
|
32
|
+
delete?: (props: {
|
|
33
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
39
34
|
size: string;
|
|
40
35
|
onClick: () => void;
|
|
41
36
|
}) => any;
|
|
42
37
|
refresh?: (props: {
|
|
43
|
-
action: "
|
|
38
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
44
39
|
size: string;
|
|
45
40
|
onClick: () => void;
|
|
46
41
|
}) => any;
|
|
47
42
|
upload?: (props: {
|
|
48
|
-
action: "
|
|
43
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
49
44
|
size: string;
|
|
50
45
|
onClick: () => void;
|
|
51
46
|
}) => any;
|
|
52
47
|
download?: (props: {
|
|
53
|
-
action: "
|
|
48
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
54
49
|
size: string;
|
|
55
50
|
onClick: () => void;
|
|
56
51
|
}) => any;
|
|
57
52
|
copy?: (props: {
|
|
58
|
-
action: "
|
|
53
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
59
54
|
size: string;
|
|
60
55
|
onClick: () => void;
|
|
61
56
|
}) => any;
|
|
62
57
|
columns?: (props: {
|
|
63
|
-
action: "
|
|
58
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
59
|
+
size: string;
|
|
60
|
+
onClick: () => void;
|
|
61
|
+
}) => any;
|
|
62
|
+
variables?: (props: {
|
|
63
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
64
64
|
size: string;
|
|
65
65
|
onClick: () => void;
|
|
66
66
|
}) => any;
|
|
67
67
|
"add-contact"?: (props: {
|
|
68
|
-
action: "
|
|
68
|
+
action: "filters" | "add" | "delete" | "refresh" | "upload" | "download" | "copy" | "columns" | "variables" | "add-contact";
|
|
69
69
|
size: string;
|
|
70
70
|
onClick: () => void;
|
|
71
71
|
}) => any;
|
|
@@ -5,12 +5,12 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$emit: (event: "click" | "click:option", ...args: any[]) => void;
|
|
8
|
-
options: unknown[];
|
|
9
8
|
color: string;
|
|
9
|
+
options: unknown[];
|
|
10
10
|
disabled: boolean;
|
|
11
11
|
$props: {
|
|
12
|
-
readonly options?: unknown[];
|
|
13
12
|
readonly color?: string;
|
|
13
|
+
readonly options?: unknown[];
|
|
14
14
|
readonly disabled?: boolean;
|
|
15
15
|
};
|
|
16
16
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -6,14 +6,14 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
7
|
$emit: (event: "close" | "confirm", ...args: any[]) => void;
|
|
8
8
|
title: string;
|
|
9
|
-
callback: Function;
|
|
10
9
|
deleteMessage: string;
|
|
11
10
|
subject: string;
|
|
11
|
+
callback: Function;
|
|
12
12
|
$props: {
|
|
13
13
|
readonly title?: string;
|
|
14
|
-
readonly callback?: Function;
|
|
15
14
|
readonly deleteMessage?: string;
|
|
16
15
|
readonly subject?: string;
|
|
16
|
+
readonly callback?: Function;
|
|
17
17
|
};
|
|
18
18
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
19
|
type __VLS_Slots = {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: (event: "next", ...args: any[]) => void;
|
|
3
|
-
next: Function;
|
|
4
3
|
loading: boolean;
|
|
4
|
+
next: Function;
|
|
5
5
|
$props: {
|
|
6
|
-
readonly next?: Function;
|
|
7
6
|
readonly loading?: boolean;
|
|
7
|
+
readonly next?: Function;
|
|
8
8
|
};
|
|
9
9
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
10
|
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
color: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
color: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
description: string;
|
|
12
|
+
};
|
|
13
|
+
}>> & Readonly<{}>, {
|
|
14
|
+
color: string;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
export default _default;
|
|
@@ -96,7 +96,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
96
96
|
onClose?: (...args: any[]) => any;
|
|
97
97
|
onInitialized?: (...args: any[]) => any;
|
|
98
98
|
}>, {
|
|
99
|
-
position: string;
|
|
100
99
|
download: string | boolean | Function;
|
|
101
100
|
autoplay: boolean;
|
|
102
101
|
loop: boolean;
|
|
@@ -106,5 +105,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
106
105
|
invertTime: boolean;
|
|
107
106
|
resetVolume: boolean;
|
|
108
107
|
closable: boolean;
|
|
108
|
+
position: string;
|
|
109
109
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
110
110
|
export default _default;
|
|
@@ -121,8 +121,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
121
121
|
onSort?: (...args: any[]) => any;
|
|
122
122
|
"onUpdate:selected"?: (...args: any[]) => any;
|
|
123
123
|
}>, {
|
|
124
|
-
headers: unknown[];
|
|
125
124
|
data: unknown[];
|
|
125
|
+
headers: unknown[];
|
|
126
126
|
sortable: boolean;
|
|
127
127
|
selectable: boolean;
|
|
128
128
|
gridActions: boolean;
|
|
@@ -138,8 +138,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
138
138
|
value: string | number;
|
|
139
139
|
label: string;
|
|
140
140
|
disabled: boolean;
|
|
141
|
-
format: string;
|
|
142
141
|
dateMode: boolean;
|
|
142
|
+
format: string;
|
|
143
143
|
noLabel: boolean;
|
|
144
144
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
145
145
|
export default _default;
|
package/types/locale/en/en.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ declare namespace _default {
|
|
|
38
38
|
let en: string;
|
|
39
39
|
let es: string;
|
|
40
40
|
let ru: string;
|
|
41
|
-
let
|
|
41
|
+
let uk: string;
|
|
42
42
|
let kz: string;
|
|
43
43
|
}
|
|
44
44
|
export let from: string;
|
|
@@ -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/es/es.d.ts
CHANGED
package/types/locale/i18n.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
35
35
|
en: string;
|
|
36
36
|
es: string;
|
|
37
37
|
ru: string;
|
|
38
|
-
|
|
38
|
+
uk: string;
|
|
39
39
|
kz: string;
|
|
40
40
|
};
|
|
41
41
|
from: string;
|
|
@@ -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: {
|
|
@@ -854,7 +858,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
854
858
|
en: string;
|
|
855
859
|
es: string;
|
|
856
860
|
ru: string;
|
|
857
|
-
|
|
861
|
+
uk: string;
|
|
858
862
|
kz: string;
|
|
859
863
|
};
|
|
860
864
|
from: string;
|
|
@@ -1088,7 +1092,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1088
1092
|
en: string;
|
|
1089
1093
|
es: string;
|
|
1090
1094
|
ru: string;
|
|
1091
|
-
|
|
1095
|
+
uk: string;
|
|
1092
1096
|
kz: string;
|
|
1093
1097
|
};
|
|
1094
1098
|
from: string;
|
|
@@ -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: {
|
|
@@ -1883,7 +1891,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1883
1891
|
markChatProcessed: string;
|
|
1884
1892
|
};
|
|
1885
1893
|
};
|
|
1886
|
-
|
|
1894
|
+
uk: {
|
|
1887
1895
|
reusable: {
|
|
1888
1896
|
comment: string;
|
|
1889
1897
|
replace: string;
|
|
@@ -1917,7 +1925,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1917
1925
|
en: string;
|
|
1918
1926
|
es: string;
|
|
1919
1927
|
ru: string;
|
|
1920
|
-
|
|
1928
|
+
uk: string;
|
|
1921
1929
|
kz: string;
|
|
1922
1930
|
};
|
|
1923
1931
|
from: string;
|
|
@@ -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: {
|
|
@@ -2738,7 +2750,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2738
2750
|
en: string;
|
|
2739
2751
|
es: string;
|
|
2740
2752
|
ru: string;
|
|
2741
|
-
|
|
2753
|
+
uk: string;
|
|
2742
2754
|
kz: string;
|
|
2743
2755
|
};
|
|
2744
2756
|
from: string;
|
package/types/locale/kz/kz.d.ts
CHANGED
package/types/locale/ru/ru.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ declare namespace _default {
|
|
|
36
36
|
let en: string;
|
|
37
37
|
let es: string;
|
|
38
38
|
let ru: string;
|
|
39
|
-
let
|
|
39
|
+
let uk: string;
|
|
40
40
|
let kz: string;
|
|
41
41
|
}
|
|
42
42
|
export let from: string;
|
|
@@ -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: {
|