@webitel/ui-sdk 26.6.31 → 26.6.32
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,4 +1,4 @@
|
|
|
1
|
-
export const QueueType =
|
|
1
|
+
export const QueueType = {
|
|
2
2
|
OFFLINE_QUEUE: 0,
|
|
3
3
|
INBOUND_QUEUE: 1,
|
|
4
4
|
OUTBOUND_IVR_QUEUE: 2,
|
|
@@ -8,7 +8,10 @@ export const QueueType = Object.freeze({
|
|
|
8
8
|
CHAT_INBOUND_QUEUE: 6,
|
|
9
9
|
INBOUND_JOB_QUEUE: 7,
|
|
10
10
|
OUTBOUND_JOB_QUEUE: 8,
|
|
11
|
-
|
|
11
|
+
INBOUND_IM_CHAT_QUEUE: 9,
|
|
12
|
+
} as const;
|
|
13
|
+
|
|
14
|
+
export type QueueType = (typeof QueueType)[keyof typeof QueueType];
|
|
12
15
|
|
|
13
16
|
export const QueueTypeName = {
|
|
14
17
|
OFFLINE_QUEUE: 'offline',
|
|
@@ -21,7 +24,8 @@ export const QueueTypeName = {
|
|
|
21
24
|
INBOUND_JOB_QUEUE: 'task',
|
|
22
25
|
OUTBOUND_JOB_QUEUE: 'outbound_task',
|
|
23
26
|
OUTBOUND_CALL: 'outbound_call',
|
|
27
|
+
INBOUND_IM_CHAT_QUEUE: 'inbound_im_chat',
|
|
24
28
|
NOT_IMPLEMENT: 'NOT_IMPLEMENT',
|
|
25
|
-
};
|
|
29
|
+
} as const;
|
|
26
30
|
|
|
27
31
|
export type QueueTypeName = (typeof QueueTypeName)[keyof typeof QueueTypeName];
|
package/src/locale/en/en.js
CHANGED
|
@@ -217,6 +217,7 @@ export default deepmerge(
|
|
|
217
217
|
[QueueType.CHAT_INBOUND_QUEUE]: 'Chat queue',
|
|
218
218
|
[QueueType.INBOUND_JOB_QUEUE]: 'Inbound task queue',
|
|
219
219
|
[QueueType.OUTBOUND_JOB_QUEUE]: 'Outbound task queue',
|
|
220
|
+
[QueueType.INBOUND_IM_CHAT_QUEUE]: 'im queue',
|
|
220
221
|
},
|
|
221
222
|
},
|
|
222
223
|
agent: {
|
|
@@ -1,25 +1,28 @@
|
|
|
1
|
-
export declare const QueueType:
|
|
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
|
-
|
|
1
|
+
export declare const QueueType: {
|
|
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 INBOUND_IM_CHAT_QUEUE: 9;
|
|
12
|
+
};
|
|
13
|
+
export type QueueType = (typeof QueueType)[keyof typeof QueueType];
|
|
12
14
|
export declare const QueueTypeName: {
|
|
13
|
-
OFFLINE_QUEUE:
|
|
14
|
-
INBOUND_QUEUE:
|
|
15
|
-
OUTBOUND_IVR_QUEUE:
|
|
16
|
-
PREVIEW_DIALER:
|
|
17
|
-
PROGRESSIVE_DIALER:
|
|
18
|
-
PREDICTIVE_DIALER:
|
|
19
|
-
CHAT_INBOUND_QUEUE:
|
|
20
|
-
INBOUND_JOB_QUEUE:
|
|
21
|
-
OUTBOUND_JOB_QUEUE:
|
|
22
|
-
OUTBOUND_CALL:
|
|
23
|
-
|
|
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 INBOUND_IM_CHAT_QUEUE: "inbound_im_chat";
|
|
26
|
+
readonly NOT_IMPLEMENT: "NOT_IMPLEMENT";
|
|
24
27
|
};
|
|
25
28
|
export type QueueTypeName = (typeof QueueTypeName)[keyof typeof QueueTypeName];
|
package/types/locale/en/en.d.ts
CHANGED
package/types/locale/i18n.d.ts
CHANGED