@webitel/ui-sdk 26.6.100 → 26.6.102
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/{clients-DBR1e2Vq.js → clients-DhfpT_WX.js} +11 -4
- package/dist/{components-89d9wbnp.js → components-D09oOmMT.js} +26 -20
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +1 -1
- package/dist/ui-sdk.umd.cjs +241 -241
- package/dist/{wt-chat-emoji-D9JuBz2G.js → wt-chat-emoji-BNd-IMKX.js} +1 -1
- package/dist/{wt-display-chip-items-BKf1iLN9.js → wt-display-chip-items-DDtIC1eC.js} +1 -1
- package/dist/{wt-send-message-popup-DgiD0_MI.js → wt-send-message-popup-CZw4gY49.js} +2 -2
- package/dist/{wt-time-input-CO2cop3y.js → wt-time-input-u5Ay5_X5.js} +3 -1
- package/dist/{wt-timepicker-CURP_N80.js → wt-timepicker-CHNPor19.js} +25 -29
- package/dist/{wt-type-extension-value-input-CuniJHNW.js → wt-type-extension-value-input-Fbnk51qu.js} +2 -2
- package/dist/{wt-vidstack-player-2y5Cn9Cg.js → wt-vidstack-player-BnwDqffJ.js} +1 -1
- package/package.json +1 -1
- package/src/components/wt-input-text/wt-input-text.vue +32 -4
- package/src/components/wt-password/wt-password.vue +1 -2
- package/src/components/wt-time-input/wt-time-input.vue +6 -1
- package/src/components/wt-timepicker/wt-timepicker.vue +13 -16
- package/src/composables/useEventBus/useEventBus.d.ts +4 -4
- package/src/enums/BroadcastChannelName/BroadcastChannelName.d.ts +3 -2
- package/src/enums/BroadcastChannelName/UserSettingsBroadcastMessage.d.ts +7 -7
- package/src/enums/ButtonColor/ButtonColor.d.ts +8 -8
- package/src/enums/ButtonVariant/ButtonVariant.d.ts +3 -3
- package/src/enums/ChipColor/ChipColor.d.ts +8 -8
- package/src/enums/ComponentSize/ComponentSize.d.ts +14 -14
- package/src/enums/ConnectionQualityLevel/ConnectionQualityLevel.enum.d.ts +5 -4
- package/src/enums/CrudAction/CrudAction.d.ts +4 -4
- package/src/enums/DefaultWorkspaceTabSettings/DefaultWorkspaceTabSettings.d.ts +8 -7
- package/src/enums/EmptyCause/EmptyCause.d.ts +3 -3
- package/src/enums/FormatDateMode/FormatDateMode.d.ts +7 -6
- package/src/enums/IconColor/IconColor.d.ts +14 -14
- package/src/enums/LoginOptions/LoginOptions.d.ts +3 -3
- package/src/enums/MessageColor/MessageColor.d.ts +6 -6
- package/src/enums/MessageVariant/MessageVariant.d.ts +3 -3
- package/src/enums/MimeTypes/MimeTypes.enum.d.ts +14 -14
- package/src/enums/ProcessingTableColumnType/ProcessingTableColumnType.d.ts +7 -6
- package/src/enums/QueueType/QueueType.enum.d.ts +22 -22
- package/src/enums/RelativeDatetimeValue/RelativeDatetimeValue.d.ts +6 -5
- package/src/enums/RingtoneType/RingtoneType.d.ts +3 -3
- package/src/enums/SingleSignOnProvider/SingleSignOnProvider.d.ts +6 -5
- package/src/enums/SingleSignOnProviderIconMappings/SingleSignOnProviderIconMappings.d.ts +6 -2
- package/src/enums/WebitelApplications/AdminSections.d.ts +38 -38
- package/src/enums/WebitelApplications/AuditorSections.d.ts +3 -2
- package/src/enums/WebitelApplications/CrmSections.d.ts +13 -13
- package/src/enums/WebitelApplications/SupervisorSections.d.ts +5 -4
- package/src/enums/WebitelApplications/WfmSections.d.ts +3 -3
- package/src/enums/WebitelApplications/WtApplication.d.ts +9 -9
- package/src/enums/WtObject/WtObject.d.ts +57 -57
- package/src/enums/WtTypeExtensionFieldKind/WtTypeExtensionFieldKind.d.ts +8 -7
- package/src/enums/index.d.ts +54 -4
- package/src/modules/ObjectPermissions/enums/AccessMode.enum.d.ts +3 -3
- package/src/modules/ObjectPermissions/enums/AccessRuleName.enum.d.ts +6 -5
- package/src/modules/ObjectPermissions/headers/headers.d.ts +5 -5
- package/src/modules/Userinfo/constants/UserSettingsConstants.d.ts +1 -1
- package/src/utils/displayText.d.ts +1 -1
- package/src/utils/formatDate.d.ts +9 -3
- package/types/components/wt-input-text/wt-input-text.vue.d.ts +4 -2
- package/types/components/wt-password/wt-password.vue.d.ts +0 -1
- package/types/components/wt-time-input/wt-time-input.vue.d.ts +5 -0
- package/types/components/wt-timepicker/wt-timepicker.vue.d.ts +0 -5
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export declare const IconColor: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
readonly DEFAULT: 'default';
|
|
3
|
+
readonly ACTIVE: 'active';
|
|
4
|
+
readonly DISABLED: 'disabled';
|
|
5
|
+
readonly PRIMARY: 'primary';
|
|
6
|
+
readonly ERROR: 'error';
|
|
7
|
+
readonly SUCCESS: 'success';
|
|
8
|
+
readonly WARNING: 'warning';
|
|
9
|
+
readonly ON_DARK: 'on-dark';
|
|
10
|
+
readonly ON_LIGHT: 'on-light';
|
|
11
|
+
readonly ON_PRIMARY: 'on-primary';
|
|
12
|
+
readonly INFO: 'info';
|
|
13
|
+
readonly CHAT: 'chat';
|
|
14
|
+
readonly TRANSFER: 'transfer';
|
|
15
|
+
readonly JOB: 'job';
|
|
16
16
|
};
|
|
17
17
|
export type IconColor = (typeof IconColor)[keyof typeof IconColor];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const LoginOptions: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
readonly LOCAL_PASSWORD_ONLY: 'local_password_only';
|
|
3
|
+
readonly SSO_AND_LOCAL: 'sso_and_local';
|
|
4
|
+
readonly SSO_ONLY: 'sso_only';
|
|
5
5
|
};
|
|
6
6
|
export type LoginOptions = keyof typeof LoginOptions;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export declare const MessageColor: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
readonly SECONDARY: 'secondary';
|
|
3
|
+
readonly SUCCESS: 'success';
|
|
4
|
+
readonly ERROR: 'error';
|
|
5
|
+
readonly WARN: 'warn';
|
|
6
|
+
readonly INFO: 'info';
|
|
7
|
+
readonly CONTRAST: 'contrast';
|
|
8
8
|
};
|
|
9
9
|
export type MessageColor = keyof typeof MessageColor;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const MessageVariant: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
readonly FILLED: 'filled';
|
|
3
|
+
readonly OUTLINED: 'outlined';
|
|
4
|
+
readonly SIMPLE: 'simple';
|
|
5
5
|
};
|
|
6
6
|
export type MessageVariant = keyof typeof MessageVariant;
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export declare const MimeTypes: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
readonly IMAGE_JPEG: 'image/jpeg';
|
|
3
|
+
readonly IMAGE_PNG: 'image/png';
|
|
4
|
+
readonly IMAGE_GIF: 'image/gif';
|
|
5
|
+
readonly IMAGE_SVG_XML: 'image/svg+xml';
|
|
6
|
+
readonly IMAGE_WEBP: 'image/webp';
|
|
7
|
+
readonly VIDEO_MP4: 'video/mp4';
|
|
8
|
+
readonly VIDEO_WEBM: 'video/webm';
|
|
9
|
+
readonly VIDEO_MPEG: 'video/mpeg';
|
|
10
|
+
readonly AUDIO_MPEG: 'audio/mpeg';
|
|
11
|
+
readonly AUDIO_WAV: 'audio/wav';
|
|
12
|
+
readonly APPLICATION_PDF: 'application/pdf';
|
|
13
|
+
readonly APPLICATION_MSWORD: 'application/msword';
|
|
14
|
+
readonly APPLICATION_DOCX: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
|
|
15
|
+
readonly APPLICATION_XLSX: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
|
|
16
16
|
};
|
|
17
17
|
export type MimeTypes = (typeof MimeTypes)[keyof typeof MimeTypes];
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export declare const ProcessingTableColumnType: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
readonly TEXT: 'text';
|
|
3
|
+
readonly NUMBER: 'number';
|
|
4
|
+
readonly BOOL: 'bool';
|
|
5
|
+
readonly DATETIME: 'datetime';
|
|
6
|
+
readonly LINK: 'link';
|
|
7
7
|
};
|
|
8
|
-
export type ProcessingTableColumnType =
|
|
8
|
+
export type ProcessingTableColumnType =
|
|
9
|
+
(typeof ProcessingTableColumnType)[keyof typeof ProcessingTableColumnType];
|
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
export declare const QueueType: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
readonly OFFLINE_QUEUE: 0;
|
|
3
|
+
readonly INBOUND_QUEUE: 1;
|
|
4
|
+
readonly OUTBOUND_IVR_QUEUE: 2;
|
|
5
|
+
readonly PREVIEW_DIALER: 3;
|
|
6
|
+
readonly PROGRESSIVE_DIALER: 4;
|
|
7
|
+
readonly PREDICTIVE_DIALER: 5;
|
|
8
|
+
readonly CHAT_INBOUND_QUEUE: 6;
|
|
9
|
+
readonly INBOUND_JOB_QUEUE: 7;
|
|
10
|
+
readonly OUTBOUND_JOB_QUEUE: 8;
|
|
11
|
+
readonly IM_CHAT_QUEUE: 9;
|
|
12
12
|
};
|
|
13
13
|
export type QueueType = (typeof QueueType)[keyof typeof QueueType];
|
|
14
14
|
export declare const QueueTypeName: {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
15
|
+
readonly OFFLINE_QUEUE: 'offline';
|
|
16
|
+
readonly INBOUND_QUEUE: 'inbound';
|
|
17
|
+
readonly OUTBOUND_IVR_QUEUE: 'ivr';
|
|
18
|
+
readonly PREVIEW_DIALER: 'preview';
|
|
19
|
+
readonly PROGRESSIVE_DIALER: 'progressive';
|
|
20
|
+
readonly PREDICTIVE_DIALER: 'predictive';
|
|
21
|
+
readonly CHAT_INBOUND_QUEUE: 'inbound chat';
|
|
22
|
+
readonly INBOUND_JOB_QUEUE: 'task';
|
|
23
|
+
readonly OUTBOUND_JOB_QUEUE: 'outbound_task';
|
|
24
|
+
readonly OUTBOUND_CALL: 'outbound_call';
|
|
25
|
+
readonly IM_CHAT_QUEUE: 'im_chat';
|
|
26
|
+
readonly NOT_IMPLEMENT: 'NOT_IMPLEMENT';
|
|
27
27
|
};
|
|
28
28
|
export type QueueTypeName = (typeof QueueTypeName)[keyof typeof QueueTypeName];
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export declare const RelativeDatetimeValue: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
readonly Today: 'rdt_today';
|
|
3
|
+
readonly ThisWeek: 'rdt_this_week';
|
|
4
|
+
readonly ThisMonth: 'rdt_this_month';
|
|
5
|
+
readonly Custom: 'rdt_custom';
|
|
6
6
|
};
|
|
7
|
-
export type RelativeDatetimeValue =
|
|
7
|
+
export type RelativeDatetimeValue =
|
|
8
|
+
(typeof RelativeDatetimeValue)[keyof typeof RelativeDatetimeValue];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const RingtoneType: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
readonly Call: 'call';
|
|
3
|
+
readonly Chat: 'chat';
|
|
4
|
+
readonly Task: 'task';
|
|
5
5
|
};
|
|
6
6
|
export type RingtoneType = (typeof RingtoneType)[keyof typeof RingtoneType];
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export declare const SingleSignOnProvider: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
readonly Microsoft: 'microsoft';
|
|
3
|
+
readonly Google: 'google';
|
|
4
|
+
readonly Facebook: 'facebook';
|
|
5
|
+
readonly Custom: 'custom';
|
|
6
6
|
};
|
|
7
|
-
export type SingleSignOnProvider =
|
|
7
|
+
export type SingleSignOnProvider =
|
|
8
|
+
(typeof SingleSignOnProvider)[keyof typeof SingleSignOnProvider];
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
import { SingleSignOnProvider } from '../SingleSignOnProvider/SingleSignOnProvider';
|
|
2
|
-
export declare const SingleSignOnProviderIconMappings: Record<
|
|
3
|
-
|
|
2
|
+
export declare const SingleSignOnProviderIconMappings: Record<
|
|
3
|
+
SingleSignOnProvider,
|
|
4
|
+
string
|
|
5
|
+
>;
|
|
6
|
+
export type SingleSignOnProviderIconMappings =
|
|
7
|
+
(typeof SingleSignOnProviderIconMappings)[keyof typeof SingleSignOnProviderIconMappings];
|
|
@@ -4,43 +4,43 @@
|
|
|
4
4
|
* without any relation to WtObjects (?)
|
|
5
5
|
*/
|
|
6
6
|
export declare const AdminSections: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
7
|
+
readonly Agents: 'agents';
|
|
8
|
+
readonly Blacklist: 'blacklist';
|
|
9
|
+
readonly Buckets: 'buckets';
|
|
10
|
+
readonly Calendars: 'calendars';
|
|
11
|
+
readonly Changelogs: 'changelogs';
|
|
12
|
+
readonly ChatGateways: 'chat-gateways';
|
|
13
|
+
readonly Chatplan: 'chatplan';
|
|
14
|
+
readonly CognitiveProfiles: 'cognitive-profiles';
|
|
15
|
+
readonly Communications: 'communications';
|
|
16
|
+
readonly Configuration: 'configuration';
|
|
17
|
+
readonly Dialplan: 'dialplan';
|
|
18
|
+
readonly Devices: 'devices';
|
|
19
|
+
readonly EmailProfiles: 'email-profiles';
|
|
20
|
+
readonly Flow: 'flow';
|
|
21
|
+
readonly Gateways: 'gateways';
|
|
22
|
+
readonly GlobalVariables: 'global-variables';
|
|
23
|
+
readonly ImportCsv: 'import-csv';
|
|
24
|
+
readonly License: 'license';
|
|
25
|
+
readonly Media: 'media';
|
|
26
|
+
readonly Members: 'members';
|
|
27
|
+
readonly Objects: 'objects';
|
|
28
|
+
readonly PauseCause: 'pause-cause';
|
|
29
|
+
readonly PauseTemplates: 'pause-templates';
|
|
30
|
+
readonly Queues: 'queues';
|
|
31
|
+
readonly Regions: 'regions';
|
|
32
|
+
readonly ResourceGroups: 'resource-groups';
|
|
33
|
+
readonly Resources: 'resources';
|
|
34
|
+
readonly Roles: 'roles';
|
|
35
|
+
readonly ShiftTemplates: 'shift-templates';
|
|
36
|
+
readonly SingleSignOn: 'single-sign-on';
|
|
37
|
+
readonly Skills: 'skills';
|
|
38
|
+
readonly Storage: 'storage';
|
|
39
|
+
readonly StoragePolicies: 'storage-policies';
|
|
40
|
+
readonly Teams: 'teams';
|
|
41
|
+
readonly Triggers: 'triggers';
|
|
42
|
+
readonly Users: 'users';
|
|
43
|
+
readonly WorkingConditions: 'working-conditions';
|
|
44
|
+
readonly QuickReplies: 'quick-replies';
|
|
45
45
|
};
|
|
46
46
|
export type AdminSections = (typeof AdminSections)[keyof typeof AdminSections];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare const AuditorSections: {
|
|
2
|
-
|
|
2
|
+
readonly Scorecards: 'scorecards';
|
|
3
3
|
};
|
|
4
|
-
export type AuditorSections =
|
|
4
|
+
export type AuditorSections =
|
|
5
|
+
(typeof AuditorSections)[keyof typeof AuditorSections];
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export declare const CrmSections: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
readonly Contacts: 'contacts';
|
|
3
|
+
readonly Cases: 'cases';
|
|
4
|
+
readonly Slas: 'slas';
|
|
5
|
+
readonly ServiceCatalogs: 'service-catalogs';
|
|
6
|
+
readonly Priorities: 'priorities';
|
|
7
|
+
readonly Statuses: 'statuses';
|
|
8
|
+
readonly Sources: 'sources';
|
|
9
|
+
readonly CloseReasonGroups: 'close-reason-groups';
|
|
10
|
+
readonly ContactGroups: 'contact-groups';
|
|
11
|
+
readonly CaseSources: 'case-sources';
|
|
12
|
+
readonly CasesExtensions: 'ext-cases';
|
|
13
|
+
readonly ContactsExtensions: 'ext-contacts';
|
|
14
|
+
readonly CustomLookups: 'custom-lookups';
|
|
15
15
|
};
|
|
16
16
|
export type CrmSections = (typeof CrmSections)[keyof typeof CrmSections];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare const SupervisorSections: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
readonly Queues: 'queues';
|
|
3
|
+
readonly Agents: 'agents';
|
|
4
|
+
readonly ActiveCalls: 'active-calls';
|
|
5
5
|
};
|
|
6
|
-
export type SupervisorSections =
|
|
6
|
+
export type SupervisorSections =
|
|
7
|
+
(typeof SupervisorSections)[keyof typeof SupervisorSections];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const WfmSections: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
readonly MySchedules: 'my-schedules';
|
|
3
|
+
readonly Agents: 'agents';
|
|
4
|
+
readonly Schedules: 'schedules';
|
|
5
5
|
};
|
|
6
6
|
export type WfmSections = (typeof WfmSections)[keyof typeof WfmSections];
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export declare const WtApplication: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
readonly Admin: 'admin';
|
|
3
|
+
readonly Agent: 'agent';
|
|
4
|
+
readonly Supervisor: 'supervisor';
|
|
5
|
+
readonly History: 'history';
|
|
6
|
+
readonly Audit: 'audit';
|
|
7
|
+
readonly Analytics: 'grafana';
|
|
8
|
+
readonly Crm: 'crm';
|
|
9
|
+
readonly Wfm: 'wfm';
|
|
10
|
+
readonly Meet: 'meet';
|
|
11
11
|
};
|
|
12
12
|
export type WtApplication = (typeof WtApplication)[keyof typeof WtApplication];
|
|
@@ -2,62 +2,62 @@
|
|
|
2
2
|
* Represents existing Webitel entities
|
|
3
3
|
*/
|
|
4
4
|
export declare const WtObject: {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
5
|
+
readonly Agent: 'agent';
|
|
6
|
+
readonly Queue: 'queue';
|
|
7
|
+
readonly Contact: 'contact';
|
|
8
|
+
readonly Region: 'region';
|
|
9
|
+
readonly User: 'user';
|
|
10
|
+
readonly Resource: 'resource';
|
|
11
|
+
readonly Device: 'device';
|
|
12
|
+
readonly License: 'license';
|
|
13
|
+
readonly Flow: 'flow';
|
|
14
|
+
readonly Dialplan: 'dialplan';
|
|
15
|
+
readonly Gateway: 'gateway';
|
|
16
|
+
readonly Chatplan: 'chatplan';
|
|
17
|
+
readonly ChatGateway: 'chatGateway';
|
|
18
|
+
readonly Blacklist: 'blacklist';
|
|
19
|
+
readonly Calendar: 'calendar';
|
|
20
|
+
readonly Communication: 'communication';
|
|
21
|
+
readonly PauseCause: 'pauseCause';
|
|
22
|
+
readonly Media: 'media';
|
|
23
|
+
readonly ShiftTemplate: 'shiftTemplate';
|
|
24
|
+
readonly PauseTemplate: 'pauseTemplate';
|
|
25
|
+
readonly WorkingCondition: 'workingCondition';
|
|
26
|
+
readonly Skill: 'skill';
|
|
27
|
+
readonly Bucket: 'bucket';
|
|
28
|
+
readonly Member: 'member';
|
|
29
|
+
readonly ResourceGroup: 'resourceGroup';
|
|
30
|
+
readonly Team: 'team';
|
|
31
|
+
readonly Storage: 'storage';
|
|
32
|
+
readonly CognitiveProfile: 'cognitiveProfile';
|
|
33
|
+
readonly EmailProfile: 'emailProfile';
|
|
34
|
+
readonly SingleSignOn: 'singleSignOn';
|
|
35
|
+
readonly ImportCsv: 'importCsv';
|
|
36
|
+
readonly Trigger: 'trigger';
|
|
37
|
+
readonly Role: 'role';
|
|
38
|
+
readonly Object: 'object';
|
|
39
|
+
readonly ChangeLog: 'changelog';
|
|
40
|
+
readonly Configuration: 'configuration';
|
|
41
|
+
readonly GlobalVariable: 'globalVariable';
|
|
42
|
+
readonly Call: 'call';
|
|
43
|
+
readonly RecordFile: 'recordFile';
|
|
44
|
+
readonly ContactGroup: 'contactGroup';
|
|
45
|
+
readonly Case: 'case';
|
|
46
|
+
readonly CaseComment: 'caseComment';
|
|
47
|
+
readonly Slas: 'slas';
|
|
48
|
+
readonly ServiceCatalog: 'serviceCatalog';
|
|
49
|
+
readonly CaseSource: 'caseSource';
|
|
50
|
+
readonly CloseReasonGroup: 'closeReasonGroup';
|
|
51
|
+
readonly Priorities: 'priorities';
|
|
52
|
+
readonly Status: 'status';
|
|
53
|
+
readonly Source: 'source';
|
|
54
|
+
readonly CustomLookup: 'customLookup';
|
|
55
|
+
readonly AuditForm: 'auditForm';
|
|
56
|
+
readonly AuditRating: 'auditRating';
|
|
57
|
+
readonly QuickReply: 'quickReply';
|
|
58
|
+
readonly ListNumber: 'listNumber';
|
|
59
|
+
readonly AgentWorkingCondition: 'agentWorkingCondition';
|
|
60
|
+
readonly FilePolicy: 'filePolicy';
|
|
61
|
+
readonly PortalUser: 'portalUser';
|
|
62
62
|
};
|
|
63
63
|
export type WtObject = (typeof WtObject)[keyof typeof WtObject];
|
|
@@ -3,11 +3,12 @@
|
|
|
3
3
|
* @description Enumerates (ONLY!) the types of field type.
|
|
4
4
|
*/
|
|
5
5
|
export declare const WtTypeExtensionFieldKind: {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
readonly Text: 'string';
|
|
7
|
+
readonly Number: 'int32';
|
|
8
|
+
readonly Select: 'lookup';
|
|
9
|
+
readonly Multiselect: 'list';
|
|
10
|
+
readonly Calendar: 'datetime';
|
|
11
|
+
readonly Boolean: 'bool';
|
|
12
12
|
};
|
|
13
|
-
export type ExtensionFieldType =
|
|
13
|
+
export type ExtensionFieldType =
|
|
14
|
+
(typeof WtTypeExtensionFieldKind)[keyof typeof WtTypeExtensionFieldKind];
|
package/src/enums/index.d.ts
CHANGED
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
import AbstractUserStatus from './AbstractUserStatus/AbstractUserStatus.enum.js';
|
|
2
2
|
import AgentStatus from './AgentStatus/AgentStatus.enum.js';
|
|
3
3
|
import { BroadcastChannelName } from './BroadcastChannelName/BroadcastChannelName';
|
|
4
|
-
import type {
|
|
4
|
+
import type {
|
|
5
|
+
UserSettingsBroadcastMessage,
|
|
6
|
+
WebphoneBroadcastMessage,
|
|
7
|
+
WebphoneBroadcastPayload,
|
|
8
|
+
} from './BroadcastChannelName/UserSettingsBroadcastMessage';
|
|
5
9
|
import { ButtonColor } from './ButtonColor/ButtonColor';
|
|
6
10
|
import { ButtonVariant } from './ButtonVariant/ButtonVariant';
|
|
7
11
|
import ChatGatewayProvider from './ChatGatewayProvider/ChatGatewayProvider.enum.js';
|
|
8
12
|
import ProviderIconType from './ChatGatewayProvider/ProviderIconType.enum';
|
|
9
13
|
import { ChipColor } from './ChipColor/ChipColor';
|
|
10
14
|
import { ComponentSize } from './ComponentSize/ComponentSize';
|
|
11
|
-
import {
|
|
15
|
+
import {
|
|
16
|
+
ConnectionQualityLevels,
|
|
17
|
+
type ConnectionQualityLevelsType,
|
|
18
|
+
} from './ConnectionQualityLevel/ConnectionQualityLevel.enum';
|
|
12
19
|
import { CrudAction } from './CrudAction/CrudAction';
|
|
13
20
|
import { DefaultWorkspaceTabSettings } from './DefaultWorkspaceTabSettings/DefaultWorkspaceTabSettings';
|
|
14
21
|
import { EmptyCause } from './EmptyCause/EmptyCause';
|
|
@@ -34,5 +41,48 @@ import { WfmSections } from './WebitelApplications/WfmSections';
|
|
|
34
41
|
import { WtApplication } from './WebitelApplications/WtApplication';
|
|
35
42
|
import { WtObject } from './WtObject/WtObject';
|
|
36
43
|
import { WtTypeExtensionFieldKind } from './WtTypeExtensionFieldKind/WtTypeExtensionFieldKind';
|
|
37
|
-
|
|
38
|
-
export {
|
|
44
|
+
|
|
45
|
+
export type {
|
|
46
|
+
ConnectionQualityLevelsType,
|
|
47
|
+
UserSettingsBroadcastMessage,
|
|
48
|
+
WebphoneBroadcastMessage,
|
|
49
|
+
WebphoneBroadcastPayload,
|
|
50
|
+
};
|
|
51
|
+
export {
|
|
52
|
+
AbstractUserStatus,
|
|
53
|
+
AdminSections,
|
|
54
|
+
AgentStatus,
|
|
55
|
+
AuditorSections,
|
|
56
|
+
BroadcastChannelName,
|
|
57
|
+
ButtonColor,
|
|
58
|
+
ButtonVariant,
|
|
59
|
+
ChatGatewayProvider,
|
|
60
|
+
ChipColor,
|
|
61
|
+
ComponentSize,
|
|
62
|
+
ConnectionQualityLevels,
|
|
63
|
+
CrmSections,
|
|
64
|
+
CrudAction,
|
|
65
|
+
DefaultWorkspaceTabSettings,
|
|
66
|
+
EmptyCause,
|
|
67
|
+
FormatDateMode,
|
|
68
|
+
IconAction,
|
|
69
|
+
IconColor,
|
|
70
|
+
LoginOptions,
|
|
71
|
+
MessageColor,
|
|
72
|
+
MessageVariant,
|
|
73
|
+
MimeTypes,
|
|
74
|
+
ProcessingTableColumnType,
|
|
75
|
+
ProviderIconType,
|
|
76
|
+
QueueType,
|
|
77
|
+
QueueTypeName,
|
|
78
|
+
RelativeDatetimeValue,
|
|
79
|
+
RingtoneType,
|
|
80
|
+
SingleSignOnProvider,
|
|
81
|
+
SingleSignOnProviderIconMappings,
|
|
82
|
+
SupervisorSections,
|
|
83
|
+
TypesExportedSettings,
|
|
84
|
+
WfmSections,
|
|
85
|
+
WtApplication,
|
|
86
|
+
WtObject,
|
|
87
|
+
WtTypeExtensionFieldKind,
|
|
88
|
+
};
|