@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,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "26.6.31",
3
+ "version": "26.6.32",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "npm run docs:dev",
@@ -1,4 +1,4 @@
1
- export const QueueType = Object.freeze({
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];
@@ -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: Readonly<{
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: 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;
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];
@@ -178,6 +178,7 @@ declare const _default: {
178
178
  6: string;
179
179
  7: string;
180
180
  8: string;
181
+ 9: string;
181
182
  };
182
183
  };
183
184
  agent: {
@@ -179,6 +179,7 @@ declare const _default: import("vue-i18n").I18n<{
179
179
  6: string;
180
180
  7: string;
181
181
  8: string;
182
+ 9: string;
182
183
  };
183
184
  };
184
185
  agent: {
@@ -189,6 +189,7 @@ export declare const messages: {
189
189
  6: string;
190
190
  7: string;
191
191
  8: string;
192
+ 9: string;
192
193
  };
193
194
  };
194
195
  agent: {