@webitel/ui-sdk 2.0.29 → 2.0.32-1

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.
@@ -1,3 +1,3 @@
1
1
  <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8L11 11L8 11C7.44771 11 7 11.4477 7 12C7 12.5523 7.44771 13 8 13L11 13L11 16C11 16.5523 11.4477 17 12 17C12.5523 17 13 16.5523 13 16V13L16 13C16.5523 13 17 12.5523 17 12C17 11.4477 16.5523 11 16 11L13 11V8Z"/>
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17 11C17 14.3137 14.3137 17 11 17C7.68629 17 5 14.3137 5 11C5 7.68629 7.68629 5 11 5C14.3137 5 17 7.68629 17 11ZM15.9056 17.3199C14.551 18.3729 12.8487 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11C19 12.8487 18.3729 14.551 17.3199 15.9056L20.6569 19.2426C21.0474 19.6332 21.0474 20.2663 20.6569 20.6569C20.2663 21.0474 19.6332 21.0474 19.2426 20.6569L15.9056 17.3199ZM11 8C11.5523 8 12 8.44772 12 9V10H13C13.5523 10 14 10.4477 14 11C14 11.5523 13.5523 12 13 12H12V13C12 13.5523 11.5523 14 11 14C10.4477 14 10 13.5523 10 13V12H9C8.44772 12 8 11.5523 8 11C8 10.4477 8.44772 10 9 10H10V9C10 8.44772 10.4477 8 11 8Z"/>
3
3
  </svg>
@@ -1,3 +1,4 @@
1
1
  <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8 11C7.44771 11 7 11.4477 7 12C7 12.5523 7.44771 13 8 13L16 13C16.5523 13 17 12.5523 17 12C17 11.4477 16.5523 11 16 11H8Z"/>
2
+ <path d="M13 12C13.5523 12 14 11.5523 14 11C14 10.4477 13.5523 10 13 10H9C8.44772 10 8 10.4477 8 11C8 11.5523 8.44772 12 9 12H13Z"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11 19C12.8487 19 14.551 18.3729 15.9056 17.3199L19.2426 20.6569C19.6332 21.0474 20.2663 21.0474 20.6569 20.6569C21.0474 20.2663 21.0474 19.6332 20.6569 19.2426L17.3199 15.9056C18.3729 14.551 19 12.8487 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19ZM11 17C14.3137 17 17 14.3137 17 11C17 7.68629 14.3137 5 11 5C7.68629 5 5 7.68629 5 11C5 14.3137 7.68629 17 11 17Z"/>
3
4
  </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "2.0.29",
3
+ "version": "2.0.32-1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -44,7 +44,7 @@
44
44
  "vue-observe-visibility": "^1.0.0",
45
45
  "vue-router": "^3.2.0",
46
46
  "vuejs-datepicker": "^1.6.2",
47
- "webitel-sdk": "^0.1.130"
47
+ "webitel-sdk": "^0.1.157"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@babel/eslint-parser": "^7.17.0",
@@ -3,6 +3,7 @@ import {
3
3
  CallDirection,
4
4
  ChannelState,
5
5
  ChannelType,
6
+ EngineRoutingSchemaType,
6
7
  } from 'webitel-sdk';
7
8
  import { QueueType } from 'webitel-sdk/esm2015/enums';
8
9
  import AdminSections from '../../enums/WebitelApplications/AdminSections.enum';
@@ -58,6 +59,7 @@ export default {
58
59
  logout: 'Logout',
59
60
  priority: 'Priority',
60
61
  variables: 'Variable | Variables',
62
+ type: 'Type',
61
63
  },
62
64
  // date-related texts
63
65
  date: {
@@ -90,6 +92,14 @@ export default {
90
92
  [snakeToCamel(AgentStatus.BreakOut)]: 'Break out',
91
93
  },
92
94
  },
95
+ flow: {
96
+ type: {
97
+ [EngineRoutingSchemaType.Chat]: 'Chat',
98
+ [EngineRoutingSchemaType.Voice]: 'Voice',
99
+ [EngineRoutingSchemaType.Service]: 'Service',
100
+ [EngineRoutingSchemaType.Processing]: 'Processing',
101
+ },
102
+ },
93
103
  },
94
104
  channel: {
95
105
  state: {
@@ -2,7 +2,7 @@ import {
2
2
  AgentStatus,
3
3
  CallDirection,
4
4
  ChannelState,
5
- ChannelType,
5
+ ChannelType, EngineRoutingSchemaType,
6
6
  } from 'webitel-sdk';
7
7
  import { QueueType } from 'webitel-sdk/esm2015/enums';
8
8
  import AdminSections from '../../enums/WebitelApplications/AdminSections.enum';
@@ -57,6 +57,7 @@ export default {
57
57
  logout: 'Выйти',
58
58
  priority: 'Приоритет',
59
59
  variables: 'Переменная | Переменные',
60
+ type: 'Тип',
60
61
  },
61
62
  // date-related texts
62
63
  date: {
@@ -89,6 +90,14 @@ export default {
89
90
  [snakeToCamel(AgentStatus.BreakOut)]: 'Принудительный перерыв',
90
91
  },
91
92
  },
93
+ flow: {
94
+ type: {
95
+ [EngineRoutingSchemaType.Chat]: 'Чат',
96
+ [EngineRoutingSchemaType.Voice]: 'Голос',
97
+ [EngineRoutingSchemaType.Service]: 'Сервис',
98
+ [EngineRoutingSchemaType.Processing]: 'Обработка',
99
+ },
100
+ },
92
101
  },
93
102
  channel: {
94
103
  state: {
@@ -2,7 +2,7 @@ import {
2
2
  AgentStatus,
3
3
  CallDirection,
4
4
  ChannelState,
5
- ChannelType,
5
+ ChannelType, EngineRoutingSchemaType,
6
6
  } from 'webitel-sdk';
7
7
  import { QueueType } from 'webitel-sdk/esm2015/enums';
8
8
  import AdminSections from '../../enums/WebitelApplications/AdminSections.enum';
@@ -57,6 +57,7 @@ export default {
57
57
  logout: 'Вийти',
58
58
  priority: 'Приорітет',
59
59
  variables: 'Змінна | Змінні',
60
+ type: 'Тип',
60
61
  },
61
62
  // date-related texts
62
63
  date: {
@@ -89,6 +90,14 @@ export default {
89
90
  [snakeToCamel(AgentStatus.BreakOut)]: 'Примусова перерва',
90
91
  },
91
92
  },
93
+ flow: {
94
+ type: {
95
+ [EngineRoutingSchemaType.Chat]: 'Чат',
96
+ [EngineRoutingSchemaType.Voice]: 'Голос',
97
+ [EngineRoutingSchemaType.Service]: 'Сервіс',
98
+ [EngineRoutingSchemaType.Processing]: 'Обробка',
99
+ },
100
+ },
92
101
  },
93
102
  channel: {
94
103
  state: {