@webitel/ui-sdk 26.8.5 → 26.8.7
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 +2 -2
- package/src/components/index.js +41 -0
- package/types/.tsbuildinfo +1 -1
- package/types/components/index.d.ts +216 -0
- package/types/components/on-demand/wt-call-media-action/wt-call-media-action.vue.d.ts +2 -2
- package/types/components/on-demand/wt-chat-emoji/wt-chat-emoji.vue.d.ts +1 -1
- package/types/components/on-demand/wt-display-chip-items/wt-display-chip-items.vue.d.ts +1 -1
- package/types/components/on-demand/wt-selection-popup/wt-selection-popup.vue.d.ts +4 -4
- package/types/components/transitions/cases/wt-replace-transition.vue.d.ts +1 -1
- package/types/components/transitions/wt-transition.vue.d.ts +2 -2
- package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -2
- package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +23 -23
- package/types/components/wt-badge-new/wt-badge.vue.d.ts +1 -1
- package/types/components/wt-button/wt-button.vue.d.ts +2 -2
- package/types/components/wt-checkbox/wt-checkbox.vue.d.ts +2 -2
- package/types/components/wt-context-menu/wt-context-menu.vue.d.ts +2 -2
- package/types/components/wt-datepicker/wt-datepicker.vue.d.ts +12 -12
- package/types/components/wt-empty/wt-empty.vue.d.ts +2 -2
- package/types/components/wt-galleria/wt-galleria.vue.d.ts +2 -2
- package/types/components/wt-icon/wt-icon.vue.d.ts +1 -1
- package/types/components/wt-icon-action/wt-icon-action.vue.d.ts +1 -1
- package/types/components/wt-indicator/wt-indicator.vue.d.ts +2 -2
- package/types/components/wt-inline-add-panel/wt-inline-add-panel.vue.d.ts +1 -1
- package/types/components/wt-input-number/wt-input-number.vue.d.ts +4 -4
- package/types/components/wt-input-text/wt-input-text.vue.d.ts +4 -4
- package/types/components/wt-item-link/wt-item-link.vue.d.ts +4 -4
- package/types/components/wt-multi-select/wt-multi-select.vue.d.ts +4 -4
- package/types/components/wt-password/wt-password.vue.d.ts +2 -2
- package/types/components/wt-player/wt-player.vue.d.ts +1 -1
- package/types/components/wt-popover/wt-popover.vue.d.ts +2 -2
- package/types/components/wt-popup/wt-popup.vue.d.ts +1 -1
- package/types/components/wt-radio/wt-radio.vue.d.ts +2 -2
- package/types/components/wt-single-select/wt-single-select.vue.d.ts +2 -2
- package/types/components/wt-slider/wt-slider.vue.d.ts +3 -3
- package/types/components/wt-switcher/wt-switcher.vue.d.ts +1 -1
- package/types/components/wt-table/wt-table.vue.d.ts +4 -4
- package/types/components/wt-textarea/wt-textarea.vue.d.ts +2 -2
- package/types/components/wt-time-input/wt-time-input.vue.d.ts +3 -3
- package/types/components/wt-timepicker/wt-timepicker.vue.d.ts +3 -3
- package/types/components/wt-tooltip/_internals/wt-tooltip-floating.vue.d.ts +2 -2
- package/types/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue.d.ts +2 -2
- package/types/mixins/validationMixin/useValidation.d.ts +1 -1
- package/types/mixins/validationMixin/validationMixin.d.ts +1 -1
- package/types/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue.d.ts +2 -2
- package/types/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue.d.ts +4 -4
- package/types/modules/AuditForm/components/audit-form-question.vue.d.ts +2 -2
- package/types/modules/CallSession/modules/VideoCall/video-call.vue.d.ts +2 -2
- package/types/modules/Flow/lookups/FlowTypeApplications.lookup.d.ts +5 -5
- package/types/modules/ObjectPermissions/components/_internal/permissions-tab-content.vue.d.ts +1 -1
- package/src/components/index.d.ts +0 -96
|
@@ -37,11 +37,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
37
37
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
38
38
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
39
39
|
}>, {
|
|
40
|
-
size: string | null;
|
|
41
|
-
disabled: boolean;
|
|
42
|
-
label: string;
|
|
43
|
-
required: boolean;
|
|
44
40
|
type: string;
|
|
41
|
+
required: boolean;
|
|
42
|
+
label: string;
|
|
43
|
+
disabled: boolean;
|
|
44
|
+
size: string | null;
|
|
45
45
|
placeholder: string;
|
|
46
46
|
customValidators: unknown[];
|
|
47
47
|
v: Record<string, unknown>;
|
|
@@ -28,7 +28,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
28
28
|
* @deprecated
|
|
29
29
|
*/
|
|
30
30
|
id: {
|
|
31
|
-
type: (
|
|
31
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
32
32
|
default: string;
|
|
33
33
|
};
|
|
34
34
|
/**
|
|
@@ -66,7 +66,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
66
66
|
* @deprecated
|
|
67
67
|
*/
|
|
68
68
|
id: {
|
|
69
|
-
type: (
|
|
69
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
70
70
|
default: string;
|
|
71
71
|
};
|
|
72
72
|
/**
|
|
@@ -81,10 +81,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
81
81
|
default: boolean;
|
|
82
82
|
};
|
|
83
83
|
}>> & Readonly<{}>, {
|
|
84
|
-
disabled: boolean;
|
|
85
84
|
link: string | Record<string, any>;
|
|
86
|
-
|
|
85
|
+
disabled: boolean;
|
|
87
86
|
target: string;
|
|
87
|
+
id: string | number;
|
|
88
88
|
routeName: string;
|
|
89
89
|
invisible: boolean;
|
|
90
90
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -60,15 +60,15 @@ type __VLS_Slots = {} & {
|
|
|
60
60
|
label?: (props: typeof __VLS_7) => any;
|
|
61
61
|
};
|
|
62
62
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
63
|
-
"update:modelValue": (value: any[]) => any;
|
|
64
|
-
hide: () => any;
|
|
65
63
|
reset: () => any;
|
|
64
|
+
"update:modelValue": (value: any[]) => any;
|
|
66
65
|
"add:custom-value": (value: string) => any;
|
|
66
|
+
hide: () => any;
|
|
67
67
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
68
|
-
"onUpdate:modelValue"?: (value: any[]) => any;
|
|
69
|
-
onHide?: () => any;
|
|
70
68
|
onReset?: () => any;
|
|
69
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
|
71
70
|
"onAdd:custom-value"?: (value: string) => any;
|
|
71
|
+
onHide?: () => any;
|
|
72
72
|
}>, {
|
|
73
73
|
options: unknown[];
|
|
74
74
|
customValidators: unknown[];
|
|
@@ -29,9 +29,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
29
29
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
30
30
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
31
31
|
}>, {
|
|
32
|
-
disabled: boolean;
|
|
33
|
-
label: string;
|
|
34
32
|
required: boolean;
|
|
33
|
+
label: string;
|
|
34
|
+
disabled: boolean;
|
|
35
35
|
placeholder: string;
|
|
36
36
|
customValidators: unknown[];
|
|
37
37
|
v: Record<string, unknown>;
|
|
@@ -87,8 +87,8 @@ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {},
|
|
|
87
87
|
onInitialized?: () => any;
|
|
88
88
|
}>, {
|
|
89
89
|
download: string | ((url: string) => string) | boolean;
|
|
90
|
-
position: string;
|
|
91
90
|
closable: boolean;
|
|
91
|
+
position: string;
|
|
92
92
|
autoplay: boolean;
|
|
93
93
|
loop: boolean;
|
|
94
94
|
resetOnEnd: boolean;
|
|
@@ -20,11 +20,11 @@ declare const __VLS_base: import("vue").DefineComponent<Props, {
|
|
|
20
20
|
show: (event?: Event, target?: HTMLElement | null | undefined) => void;
|
|
21
21
|
hide: (event?: Event) => void;
|
|
22
22
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
-
show: () => any;
|
|
24
23
|
hide: () => any;
|
|
24
|
+
show: () => any;
|
|
25
25
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
26
|
-
onShow?: () => any;
|
|
27
26
|
onHide?: () => any;
|
|
27
|
+
onShow?: () => any;
|
|
28
28
|
}>, {
|
|
29
29
|
dt: import("@primevue/core").DesignToken<any>;
|
|
30
30
|
disabled: boolean;
|
|
@@ -40,8 +40,8 @@ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, i
|
|
|
40
40
|
"onPopup:opened"?: () => any;
|
|
41
41
|
"onPopup:closed"?: () => any;
|
|
42
42
|
}>, {
|
|
43
|
-
size: ComponentSize;
|
|
44
43
|
disabled: boolean;
|
|
44
|
+
size: ComponentSize;
|
|
45
45
|
closable: boolean;
|
|
46
46
|
shown: boolean;
|
|
47
47
|
overflow: boolean;
|
|
@@ -55,9 +55,9 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
55
55
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
56
56
|
"onUpdate:selected"?: (value: string | number | boolean | object) => any;
|
|
57
57
|
}>, {
|
|
58
|
-
disabled: boolean;
|
|
59
|
-
label: string;
|
|
60
58
|
required: boolean;
|
|
59
|
+
label: string;
|
|
60
|
+
disabled: boolean;
|
|
61
61
|
outline: boolean;
|
|
62
62
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
63
63
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -64,13 +64,13 @@ type __VLS_Slots = {} & {
|
|
|
64
64
|
option?: (props: typeof __VLS_49) => any;
|
|
65
65
|
};
|
|
66
66
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
67
|
+
reset: () => any;
|
|
67
68
|
"update:modelValue": (value: string) => any;
|
|
68
69
|
hide: () => any;
|
|
69
|
-
reset: () => any;
|
|
70
70
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
71
|
+
onReset?: () => any;
|
|
71
72
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
72
73
|
onHide?: () => any;
|
|
73
|
-
onReset?: () => any;
|
|
74
74
|
}>, {
|
|
75
75
|
options: unknown[];
|
|
76
76
|
customValidators: unknown[];
|
|
@@ -60,12 +60,12 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
60
60
|
"onUpdate:modelValue"?: (value: number) => any;
|
|
61
61
|
}>, {
|
|
62
62
|
disabled: boolean;
|
|
63
|
-
vertical: boolean;
|
|
64
63
|
step: number;
|
|
65
|
-
|
|
66
|
-
max: number;
|
|
64
|
+
vertical: boolean;
|
|
67
65
|
width: number;
|
|
68
66
|
height: number;
|
|
67
|
+
min: number;
|
|
68
|
+
max: number;
|
|
69
69
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
70
70
|
declare const _default: typeof __VLS_export;
|
|
71
71
|
export default _default;
|
|
@@ -55,8 +55,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
55
55
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
56
56
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
57
57
|
}>, {
|
|
58
|
-
disabled: boolean;
|
|
59
58
|
label: string;
|
|
59
|
+
disabled: boolean;
|
|
60
60
|
labelProps: LabelProps;
|
|
61
61
|
labelLeft: boolean;
|
|
62
62
|
controlled: boolean;
|
|
@@ -91,21 +91,21 @@ type __VLS_Slots = {} & {
|
|
|
91
91
|
};
|
|
92
92
|
declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
93
93
|
sort: (...args: any[]) => void;
|
|
94
|
-
"column-reorder": (...args: any[]) => void;
|
|
95
94
|
"update:selected": (...args: any[]) => void;
|
|
96
95
|
"reorder:row": (...args: any[]) => void;
|
|
97
96
|
"column-resize": (...args: any[]) => void;
|
|
97
|
+
"column-reorder": (...args: any[]) => void;
|
|
98
98
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
99
99
|
onSort?: (...args: any[]) => any;
|
|
100
|
-
"onColumn-reorder"?: (...args: any[]) => any;
|
|
101
100
|
"onUpdate:selected"?: (...args: any[]) => any;
|
|
102
101
|
"onReorder:row"?: (...args: any[]) => any;
|
|
103
102
|
"onColumn-resize"?: (...args: any[]) => any;
|
|
103
|
+
"onColumn-reorder"?: (...args: any[]) => any;
|
|
104
104
|
}>, {
|
|
105
|
-
headers: WtTableHeader[];
|
|
106
|
-
data: Array<unknown>;
|
|
107
105
|
lazy: boolean;
|
|
106
|
+
data: Array<unknown>;
|
|
108
107
|
dataKey: string;
|
|
108
|
+
headers: WtTableHeader[];
|
|
109
109
|
sortable: boolean;
|
|
110
110
|
selectable: boolean;
|
|
111
111
|
gridActions: boolean;
|
|
@@ -95,10 +95,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
95
95
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
96
96
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
97
97
|
}>, {
|
|
98
|
-
disabled: boolean;
|
|
99
|
-
label: string;
|
|
100
98
|
name: string;
|
|
101
99
|
required: boolean;
|
|
100
|
+
label: string;
|
|
101
|
+
disabled: boolean;
|
|
102
102
|
placeholder: string;
|
|
103
103
|
readonly: boolean;
|
|
104
104
|
customValidators: Array<{
|
|
@@ -58,12 +58,12 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
58
58
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
59
59
|
"onUpdate:modelValue"?: (value: number) => any;
|
|
60
60
|
}>, {
|
|
61
|
-
disabled: boolean;
|
|
62
|
-
label: string;
|
|
63
61
|
name: string;
|
|
64
62
|
required: boolean;
|
|
65
|
-
|
|
63
|
+
label: string;
|
|
64
|
+
disabled: boolean;
|
|
66
65
|
maxValue: number;
|
|
66
|
+
minValue: number;
|
|
67
67
|
customValidators: unknown[];
|
|
68
68
|
v: Record<string, unknown>;
|
|
69
69
|
regleValidation: RegleFieldStatus<number>;
|
|
@@ -56,15 +56,15 @@ declare const __VLS_base: import("vue").DefineComponent<WtTimepickerProps, {}, {
|
|
|
56
56
|
}, string, import("vue").PublicProps, Readonly<WtTimepickerProps> & Readonly<{
|
|
57
57
|
"onUpdate:modelValue"?: (value: number) => any;
|
|
58
58
|
}>, {
|
|
59
|
-
disabled: boolean;
|
|
60
|
-
label: string;
|
|
61
59
|
required: boolean;
|
|
62
|
-
|
|
60
|
+
label: string;
|
|
61
|
+
disabled: boolean;
|
|
63
62
|
modelValue: string | number;
|
|
64
63
|
customValidators: unknown[];
|
|
65
64
|
v: Record<string, unknown>;
|
|
66
65
|
regleValidation: RegleFieldStatus<number>;
|
|
67
66
|
labelProps: Record<string, unknown>;
|
|
67
|
+
format: string;
|
|
68
68
|
dateMode: boolean;
|
|
69
69
|
noLabel: boolean;
|
|
70
70
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -10,16 +10,16 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
10
10
|
default: () => any[];
|
|
11
11
|
};
|
|
12
12
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
-
show: (...args: any[]) => void;
|
|
14
13
|
hide: (...args: any[]) => void;
|
|
14
|
+
show: (...args: any[]) => void;
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
16
|
triggers: {
|
|
17
17
|
type: ArrayConstructor;
|
|
18
18
|
default: () => any[];
|
|
19
19
|
};
|
|
20
20
|
}>> & Readonly<{
|
|
21
|
-
onShow?: (...args: any[]) => any;
|
|
22
21
|
onHide?: (...args: any[]) => any;
|
|
22
|
+
onShow?: (...args: any[]) => any;
|
|
23
23
|
}>, {
|
|
24
24
|
triggers: unknown[];
|
|
25
25
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -15,16 +15,16 @@ type __VLS_Props = {
|
|
|
15
15
|
'actions:chat:pressed': boolean;
|
|
16
16
|
};
|
|
17
17
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
18
|
-
chat: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
19
18
|
video: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
19
|
+
chat: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
20
20
|
settings: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
21
21
|
screenshot: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
22
22
|
recordings: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
23
23
|
mic: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
24
24
|
hangup: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
25
25
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
26
|
-
onChat?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
27
26
|
onVideo?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
27
|
+
onChat?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
28
28
|
onSettings?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
29
29
|
onScreenshot?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
30
30
|
onRecordings?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
@@ -12,6 +12,6 @@ export declare const useValidation: ({ v: vuelidateValidation, customValidators:
|
|
|
12
12
|
isValidation: import("vue").ComputedRef<boolean>;
|
|
13
13
|
invalid: import("vue").ComputedRef<boolean>;
|
|
14
14
|
validationText: import("vue").ComputedRef<string>;
|
|
15
|
-
validationTextColor: import("vue").ComputedRef<"
|
|
15
|
+
validationTextColor: import("vue").ComputedRef<"error" | "secondary">;
|
|
16
16
|
};
|
|
17
17
|
export {};
|
|
@@ -14,7 +14,7 @@ declare namespace _default {
|
|
|
14
14
|
function isValidation(): boolean;
|
|
15
15
|
function invalid(): any;
|
|
16
16
|
function validationText(): string;
|
|
17
|
-
function validationTextColor(): "
|
|
17
|
+
function validationTextColor(): "error" | "success";
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
export default _default;
|
package/types/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue.d.ts
CHANGED
|
@@ -6,16 +6,16 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
6
6
|
default: () => any[];
|
|
7
7
|
};
|
|
8
8
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
close: (...args: any[]) => void;
|
|
10
9
|
change: (...args: any[]) => void;
|
|
10
|
+
close: (...args: any[]) => void;
|
|
11
11
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
12
|
options: {
|
|
13
13
|
type: ArrayConstructor;
|
|
14
14
|
default: () => any[];
|
|
15
15
|
};
|
|
16
16
|
}>> & Readonly<{
|
|
17
|
-
onClose?: (...args: any[]) => any;
|
|
18
17
|
onChange?: (...args: any[]) => any;
|
|
18
|
+
onClose?: (...args: any[]) => any;
|
|
19
19
|
}>, {
|
|
20
20
|
options: unknown[];
|
|
21
21
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -2,28 +2,28 @@ declare const _default: typeof __VLS_export;
|
|
|
2
2
|
export default _default;
|
|
3
3
|
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
agentId: {
|
|
5
|
-
type: (
|
|
5
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
8
|
status: {
|
|
9
9
|
default: "offline";
|
|
10
10
|
};
|
|
11
11
|
statusDuration: {
|
|
12
|
-
type: (
|
|
12
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
13
13
|
default: number;
|
|
14
14
|
};
|
|
15
15
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
16
|
changed: (...args: any[]) => void;
|
|
17
17
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
18
|
agentId: {
|
|
19
|
-
type: (
|
|
19
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
20
20
|
required: true;
|
|
21
21
|
};
|
|
22
22
|
status: {
|
|
23
23
|
default: "offline";
|
|
24
24
|
};
|
|
25
25
|
statusDuration: {
|
|
26
|
-
type: (
|
|
26
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
27
27
|
default: number;
|
|
28
28
|
};
|
|
29
29
|
}>> & Readonly<{
|
|
@@ -11,13 +11,13 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
12
12
|
activateQuestion: typeof activateQuestion;
|
|
13
13
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
-
delete: () => any;
|
|
15
14
|
copy: () => any;
|
|
15
|
+
delete: () => any;
|
|
16
16
|
"update:question": (value: EngineQuestion) => any;
|
|
17
17
|
"update:answer": (value: EngineQuestionAnswer) => any;
|
|
18
18
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
|
-
onDelete?: () => any;
|
|
20
19
|
onCopy?: () => any;
|
|
20
|
+
onDelete?: () => any;
|
|
21
21
|
"onUpdate:question"?: (value: EngineQuestion) => any;
|
|
22
22
|
"onUpdate:answer"?: (value: EngineQuestionAnswer) => any;
|
|
23
23
|
}>, {
|
|
@@ -32,9 +32,9 @@ type __VLS_Props = {
|
|
|
32
32
|
'actions:chat:pressed'?: boolean;
|
|
33
33
|
};
|
|
34
34
|
declare var __VLS_26: {
|
|
35
|
-
size:
|
|
35
|
+
size: ComponentSize;
|
|
36
36
|
}, __VLS_33: {
|
|
37
|
-
size:
|
|
37
|
+
size: ComponentSize;
|
|
38
38
|
};
|
|
39
39
|
type __VLS_Slots = {} & {
|
|
40
40
|
content?: (props: typeof __VLS_26) => any;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const FlowTypeApplications: {
|
|
2
|
-
readonly voice: readonly [...("string" | "function" | "
|
|
3
|
-
readonly chat: readonly [...("string" | "function" | "
|
|
4
|
-
readonly processing: readonly [...("string" | "function" | "
|
|
5
|
-
readonly service: readonly [...("string" | "function" | "
|
|
6
|
-
readonly default: ("string" | "function" | "
|
|
2
|
+
readonly voice: readonly [...("string" | "function" | "set" | "switch" | "export" | "calendar" | "list" | "execute" | "log" | "math" | "notification" | "sendMessage" | "schema" | "userInfo" | "goto" | "if" | "js" | "plataByMono" | "softSleep" | "httpRequest" | "customCode" | "unSet" | "listAdd" | "while" | "openLink" | "memberInfo" | "getQueueAgents" | "callbackQueue" | "patchMembers" | "sendEmail" | "broadcastChatMessage" | "getEmail" | "customModule")[], "trigger", "markIVR", "setGrantee", "classifier", "ringReady", "preAnswer", "answer", "sipRedirect", "ringback", "updateCid", "park", "conference", "bridge", "hangup", "inBandDTMF", "flushDTMF", "playback", "recordFile", "recordSession", "generateLink", "tts", "joinQueue", "joinAgent"];
|
|
3
|
+
readonly chat: readonly [...("string" | "function" | "set" | "switch" | "export" | "calendar" | "list" | "execute" | "log" | "math" | "notification" | "sendMessage" | "schema" | "userInfo" | "goto" | "if" | "js" | "plataByMono" | "softSleep" | "httpRequest" | "customCode" | "unSet" | "listAdd" | "while" | "openLink" | "memberInfo" | "getQueueAgents" | "callbackQueue" | "patchMembers" | "sendEmail" | "broadcastChatMessage" | "getEmail" | "customModule")[], "trigger", "menu", "recvMessage", "sendText", "sendTts", "sendFile", "stt", "generateLink", "classifier", "joinQueue", "chatHistory", "chatAi"];
|
|
4
|
+
readonly processing: readonly [...("string" | "function" | "set" | "switch" | "export" | "calendar" | "list" | "execute" | "log" | "math" | "notification" | "sendMessage" | "schema" | "userInfo" | "goto" | "if" | "js" | "plataByMono" | "softSleep" | "httpRequest" | "customCode" | "unSet" | "listAdd" | "while" | "openLink" | "memberInfo" | "getQueueAgents" | "callbackQueue" | "patchMembers" | "sendEmail" | "broadcastChatMessage" | "getEmail" | "customModule")[], "makeCall", "formTextfield", "formSelect", "formSelectService", "formText", "formDatetimePicker", "formRichTextEditor", "formSelectFromObject", "formSelectCaseStatus", "formTable", "formFile", "generateForm", "attemptResult", "iFrame"];
|
|
5
|
+
readonly service: readonly [...("string" | "function" | "set" | "switch" | "export" | "calendar" | "list" | "execute" | "log" | "math" | "notification" | "sendMessage" | "schema" | "userInfo" | "goto" | "if" | "js" | "plataByMono" | "softSleep" | "httpRequest" | "customCode" | "unSet" | "listAdd" | "while" | "openLink" | "memberInfo" | "getQueueAgents" | "callbackQueue" | "patchMembers" | "sendEmail" | "broadcastChatMessage" | "getEmail" | "customModule")[], "attemptResult", "stt"];
|
|
6
|
+
readonly default: ("string" | "function" | "menu" | "set" | "stop" | "switch" | "export" | "calendar" | "trigger" | "recordFile" | "list" | "execute" | "log" | "start" | "math" | "notification" | "hangup" | "sendMessage" | "tts" | "schema" | "userInfo" | "answer" | "goto" | "if" | "js" | "plataByMono" | "iFrame" | "markIVR" | "softSleep" | "setGrantee" | "httpRequest" | "customCode" | "unSet" | "listAdd" | "while" | "openLink" | "playback" | "ringReady" | "preAnswer" | "sipRedirect" | "ringback" | "bridge" | "conference" | "generateLink" | "inBandDTMF" | "flushDTMF" | "updateCid" | "park" | "joinQueue" | "recordSession" | "memberInfo" | "getQueueAgents" | "joinAgent" | "callbackQueue" | "patchMembers" | "recvMessage" | "sendText" | "sendFile" | "sendEmail" | "sendTts" | "stt" | "classifier" | "broadcastChatMessage" | "chatHistory" | "chatAi" | "makeCall" | "formTextfield" | "formSelect" | "formSelectService" | "formTable" | "formText" | "formDatetimePicker" | "formRichTextEditor" | "formSelectFromObject" | "formSelectCaseStatus" | "generateForm" | "attemptResult" | "getEmail" | "formFile" | "customModule")[];
|
|
7
7
|
};
|
|
8
8
|
export type FlowTypeApplications = (typeof FlowTypeApplications)[keyof typeof FlowTypeApplications];
|
package/types/modules/ObjectPermissions/components/_internal/permissions-tab-content.vue.d.ts
CHANGED
|
@@ -88,8 +88,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
88
88
|
};
|
|
89
89
|
}>> & Readonly<{}>, {
|
|
90
90
|
error: Record<string, any>;
|
|
91
|
-
access: Record<string, any>;
|
|
92
91
|
isLoading: boolean;
|
|
92
|
+
access: Record<string, any>;
|
|
93
93
|
existingGranteeIds: unknown[];
|
|
94
94
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
95
95
|
type __VLS_Slots = {
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
import type { DefineComponent } from 'vue';
|
|
2
|
-
|
|
3
|
-
type WtComponent = DefineComponent<
|
|
4
|
-
Record<string, unknown>,
|
|
5
|
-
Record<string, unknown>,
|
|
6
|
-
any
|
|
7
|
-
>;
|
|
8
|
-
|
|
9
|
-
export declare const WtActionBar: WtComponent;
|
|
10
|
-
export declare const WtImage: WtComponent;
|
|
11
|
-
export declare const WtEmpty: WtComponent;
|
|
12
|
-
export declare const WtLogo: WtComponent;
|
|
13
|
-
export declare const WtAvatar: WtComponent;
|
|
14
|
-
export declare const WtBadge: WtComponent;
|
|
15
|
-
export declare const WtBadgeNew: WtComponent;
|
|
16
|
-
export declare const WtMessage: WtComponent;
|
|
17
|
-
export declare const WtIcon: WtComponent;
|
|
18
|
-
export declare const WtIndicator: WtComponent;
|
|
19
|
-
export declare const WtButton: WtComponent;
|
|
20
|
-
export declare const WtChip: WtComponent;
|
|
21
|
-
export declare const WtConfirmDialog: WtComponent;
|
|
22
|
-
export declare const WtDivider: WtComponent;
|
|
23
|
-
export declare const WtTooltip: WtComponent;
|
|
24
|
-
export declare const WtLabel: WtComponent;
|
|
25
|
-
export declare const WtLoader: WtComponent;
|
|
26
|
-
export declare const WtRoundedAction: WtComponent;
|
|
27
|
-
export declare const WtReplaceTransition: WtComponent;
|
|
28
|
-
export declare const WtCheckbox: WtComponent;
|
|
29
|
-
export declare const WtDatepicker: WtComponent;
|
|
30
|
-
export declare const WtIconBtn: WtComponent;
|
|
31
|
-
export declare const WtInputNumber: WtComponent;
|
|
32
|
-
export declare const WtInputText: WtComponent;
|
|
33
|
-
export declare const WtPassword: WtComponent;
|
|
34
|
-
export declare const WtIntersectionObserver: WtComponent;
|
|
35
|
-
export declare const WtHint: WtComponent;
|
|
36
|
-
export declare const WtPopup: WtComponent;
|
|
37
|
-
export declare const WtProgressBar: WtComponent;
|
|
38
|
-
export declare const WtRadio: WtComponent;
|
|
39
|
-
export declare const WtSearchBar: WtComponent;
|
|
40
|
-
export declare const WtSlider: WtComponent;
|
|
41
|
-
export declare const WtSwitcher: WtComponent;
|
|
42
|
-
export declare const WtTabs: WtComponent;
|
|
43
|
-
export declare const WtTimeInput: WtComponent;
|
|
44
|
-
export declare const WtTimepicker: WtComponent;
|
|
45
|
-
export declare const WtTextarea: WtComponent;
|
|
46
|
-
export declare const WtToast: WtComponent;
|
|
47
|
-
export declare const WtAppHeader: WtComponent;
|
|
48
|
-
export declare const WtHeadline: WtComponent;
|
|
49
|
-
export declare const WtBreadcrumb: WtComponent;
|
|
50
|
-
export declare const WtNavigationBar: WtComponent;
|
|
51
|
-
export declare const WtAppNavigator: WtComponent;
|
|
52
|
-
export declare const WtFiltersPanelWrapper: WtComponent;
|
|
53
|
-
export declare const WtHeaderActions: WtComponent;
|
|
54
|
-
export declare const WtErrorPage: WtComponent;
|
|
55
|
-
export declare const WtNotificationsBar: WtComponent;
|
|
56
|
-
export declare const WtPageWrapper: WtComponent;
|
|
57
|
-
export declare const WtDualPanel: WtComponent;
|
|
58
|
-
export declare const WtPagination: WtComponent;
|
|
59
|
-
export declare const WtPlayer: WtComponent;
|
|
60
|
-
export declare const WtPopover: WtComponent;
|
|
61
|
-
export declare const WtStatusSelect: WtComponent;
|
|
62
|
-
export declare const WtTable: WtComponent;
|
|
63
|
-
export declare const WtTree: WtComponent;
|
|
64
|
-
export declare const WtTreeTable: WtComponent;
|
|
65
|
-
export declare const WtTableActions: WtComponent;
|
|
66
|
-
export declare const WtTableColumnSelect: WtComponent;
|
|
67
|
-
export declare const WtButtonSelect: WtComponent;
|
|
68
|
-
export declare const WtContextMenu: WtComponent;
|
|
69
|
-
export declare const WtCopyAction: WtComponent;
|
|
70
|
-
export declare const WtLoadBar: WtComponent;
|
|
71
|
-
export declare const WtIconAction: WtComponent;
|
|
72
|
-
export declare const WtPageHeader: WtComponent;
|
|
73
|
-
export declare const WtItemLink: WtComponent;
|
|
74
|
-
export declare const WtDummy: WtComponent;
|
|
75
|
-
export declare const WtStepper: WtComponent;
|
|
76
|
-
export declare const WtExpansionPanel: WtComponent;
|
|
77
|
-
export declare const WtNavigationMenu: WtComponent;
|
|
78
|
-
export declare const WtStartPage: WtComponent;
|
|
79
|
-
export declare const WtSelectionPopup: WtComponent;
|
|
80
|
-
export declare const WtDisplayChipItems: WtComponent;
|
|
81
|
-
export declare const WtGalleria: WtComponent;
|
|
82
|
-
export declare const WtVidstackPlayer: WtComponent;
|
|
83
|
-
export declare const WtChatEmoji: WtComponent;
|
|
84
|
-
export declare const WtExpansionCard: WtComponent;
|
|
85
|
-
export declare const WtDatetimeText: WtComponent;
|
|
86
|
-
export declare const WtCard: WtComponent;
|
|
87
|
-
export declare const WtSingleSelect: WtComponent;
|
|
88
|
-
export declare const WtMultiSelect: WtComponent;
|
|
89
|
-
export declare const WtScreenRecordingsAction: WtComponent;
|
|
90
|
-
export declare const WtInlineAddPanel: WtComponent;
|
|
91
|
-
export declare const WtCallMediaAction: WtComponent;
|
|
92
|
-
export declare const WtCallMediaMetric: WtComponent;
|
|
93
|
-
export declare const WtSendMessagePopup: WtComponent;
|
|
94
|
-
|
|
95
|
-
declare const Components: Record<string, WtComponent>;
|
|
96
|
-
export default Components;
|