@webitel/ui-sdk 25.10.95 → 25.12.2
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.12.2",
|
|
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",
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export const QueueType = Object.freeze({
|
|
2
|
+
OFFLINE_QUEUE: 0,
|
|
3
|
+
INBOUND_QUEUE: 1,
|
|
4
|
+
OUTBOUND_IVR_QUEUE: 2,
|
|
5
|
+
PREVIEW_DIALER: 3,
|
|
6
|
+
PROGRESSIVE_DIALER: 4,
|
|
7
|
+
PREDICTIVE_DIALER: 5,
|
|
8
|
+
CHAT_INBOUND_QUEUE: 6,
|
|
9
|
+
INBOUND_JOB_QUEUE: 7,
|
|
10
|
+
OUTBOUND_JOB_QUEUE: 8,
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export const QueueTypeName = {
|
|
15
|
+
OFFLINE_QUEUE: "offline",
|
|
16
|
+
INBOUND_QUEUE: "inbound",
|
|
17
|
+
OUTBOUND_IVR_QUEUE: "ivr",
|
|
18
|
+
PREVIEW_DIALER: "preview",
|
|
19
|
+
PROGRESSIVE_DIALER: "progressive",
|
|
20
|
+
PREDICTIVE_DIALER: "predictive",
|
|
21
|
+
CHAT_INBOUND_QUEUE: "inbound chat",
|
|
22
|
+
INBOUND_JOB_QUEUE: "task",
|
|
23
|
+
OUTBOUND_JOB_QUEUE: "outbound_task",
|
|
24
|
+
OUTBOUND_CALL: "outbound_call",
|
|
25
|
+
NOT_IMPLEMENT: "NOT_IMPLEMENT"
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
export type QueueTypeName = (typeof QueueTypeName)[keyof typeof QueueTypeName];
|
package/src/enums/index.ts
CHANGED
|
@@ -12,7 +12,7 @@ import { EmptyCause } from './EmptyCause/EmptyCause';
|
|
|
12
12
|
import IconAction from './IconAction/IconAction.enum.js';
|
|
13
13
|
import { IconColor } from './IconColor/IconColor';
|
|
14
14
|
import { ProcessingTableColumnType } from './ProcessingTableColumnType/ProcessingTableColumnType';
|
|
15
|
-
import QueueType from './QueueType/QueueType.enum
|
|
15
|
+
import { QueueType, QueueTypeName } from './QueueType/QueueType.enum';
|
|
16
16
|
import { RelativeDatetimeValue } from './RelativeDatetimeValue/RelativeDatetimeValue';
|
|
17
17
|
import TypesExportedSettings from './TypesExportedSettings/TypesExportedSettings.enum.js';
|
|
18
18
|
import { AdminSections } from './WebitelApplications/AdminSections';
|
|
@@ -43,6 +43,7 @@ export {
|
|
|
43
43
|
ProcessingTableColumnType,
|
|
44
44
|
ProviderIconType,
|
|
45
45
|
QueueType,
|
|
46
|
+
QueueTypeName,
|
|
46
47
|
RelativeDatetimeValue,
|
|
47
48
|
SupervisorSections,
|
|
48
49
|
TypesExportedSettings,
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
declare const QueueType: Readonly<{
|
|
1
|
+
export declare const QueueType: Readonly<{
|
|
3
2
|
OFFLINE_QUEUE: 0;
|
|
4
3
|
INBOUND_QUEUE: 1;
|
|
5
4
|
OUTBOUND_IVR_QUEUE: 2;
|
|
@@ -10,3 +9,17 @@ declare const QueueType: Readonly<{
|
|
|
10
9
|
INBOUND_JOB_QUEUE: 7;
|
|
11
10
|
OUTBOUND_JOB_QUEUE: 8;
|
|
12
11
|
}>;
|
|
12
|
+
export declare const QueueTypeName: {
|
|
13
|
+
OFFLINE_QUEUE: string;
|
|
14
|
+
INBOUND_QUEUE: string;
|
|
15
|
+
OUTBOUND_IVR_QUEUE: string;
|
|
16
|
+
PREVIEW_DIALER: string;
|
|
17
|
+
PROGRESSIVE_DIALER: string;
|
|
18
|
+
PREDICTIVE_DIALER: string;
|
|
19
|
+
CHAT_INBOUND_QUEUE: string;
|
|
20
|
+
INBOUND_JOB_QUEUE: string;
|
|
21
|
+
OUTBOUND_JOB_QUEUE: string;
|
|
22
|
+
OUTBOUND_CALL: string;
|
|
23
|
+
NOT_IMPLEMENT: string;
|
|
24
|
+
};
|
|
25
|
+
export type QueueTypeName = (typeof QueueTypeName)[keyof typeof QueueTypeName];
|
package/types/enums/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { EmptyCause } from './EmptyCause/EmptyCause';
|
|
|
11
11
|
import IconAction from './IconAction/IconAction.enum.js';
|
|
12
12
|
import { IconColor } from './IconColor/IconColor';
|
|
13
13
|
import { ProcessingTableColumnType } from './ProcessingTableColumnType/ProcessingTableColumnType';
|
|
14
|
-
import QueueType from './QueueType/QueueType.enum
|
|
14
|
+
import { QueueType, QueueTypeName } from './QueueType/QueueType.enum';
|
|
15
15
|
import { RelativeDatetimeValue } from './RelativeDatetimeValue/RelativeDatetimeValue';
|
|
16
16
|
import TypesExportedSettings from './TypesExportedSettings/TypesExportedSettings.enum.js';
|
|
17
17
|
import { AdminSections } from './WebitelApplications/AdminSections';
|
|
@@ -23,4 +23,4 @@ import { WfmSections } from './WebitelApplications/WfmSections';
|
|
|
23
23
|
import { WtApplication } from './WebitelApplications/WtApplication';
|
|
24
24
|
import { WtObject } from './WtObject/WtObject';
|
|
25
25
|
import { WtTypeExtensionFieldKind } from './WtTypeExtensionFieldKind/WtTypeExtensionFieldKind';
|
|
26
|
-
export { AbstractUserStatus, AdminSections, AgentStatus, AuditorSections, ButtonColor, ButtonVariant, ChatGatewayProvider, ChipColor, ComponentSize, CrmSections, CrudAction, EmptyCause, IconAction, IconColor, ProcessingTableColumnType, ProviderIconType, QueueType, RelativeDatetimeValue, SupervisorSections, TypesExportedSettings, WebitelApplications, WfmSections, WtApplication, WtObject, WtTypeExtensionFieldKind, };
|
|
26
|
+
export { AbstractUserStatus, AdminSections, AgentStatus, AuditorSections, ButtonColor, ButtonVariant, ChatGatewayProvider, ChipColor, ComponentSize, CrmSections, CrudAction, EmptyCause, IconAction, IconColor, ProcessingTableColumnType, ProviderIconType, QueueType, QueueTypeName, RelativeDatetimeValue, SupervisorSections, TypesExportedSettings, WebitelApplications, WfmSections, WtApplication, WtObject, WtTypeExtensionFieldKind, };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
const QueueType = Object.freeze({
|
|
2
|
-
OFFLINE_QUEUE: 0,
|
|
3
|
-
INBOUND_QUEUE: 1,
|
|
4
|
-
OUTBOUND_IVR_QUEUE: 2,
|
|
5
|
-
PREVIEW_DIALER: 3,
|
|
6
|
-
PROGRESSIVE_DIALER: 4,
|
|
7
|
-
PREDICTIVE_DIALER: 5,
|
|
8
|
-
CHAT_INBOUND_QUEUE: 6,
|
|
9
|
-
INBOUND_JOB_QUEUE: 7,
|
|
10
|
-
OUTBOUND_JOB_QUEUE: 8,
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
export default QueueType;
|