@webitel/ui-sdk 24.12.8 → 24.12.10

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": "24.12.8",
3
+ "version": "24.12.10",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -140,6 +140,7 @@ export default {
140
140
  grantor: 'Grantor | Grantors',
141
141
  role: 'Role | Roles',
142
142
  user: 'User | Users',
143
+ calendar: 'Calendar | Calendars',
143
144
  queue: {
144
145
  type: {
145
146
  [QueueType.INBOUND_QUEUE]: 'Inbound queue',
@@ -221,6 +222,7 @@ export default {
221
222
  sections: {
222
223
  [CrmSections.CONTACTS]: 'Contacts',
223
224
  [CrmSections.SLAS]: 'SLAS',
225
+ [CrmSections.SOURCES]: 'Case sources',
224
226
  },
225
227
  },
226
228
  [WebitelApplications.HISTORY]: { name: 'Call History' },
@@ -139,6 +139,7 @@ export default {
139
139
  grantor: 'Праводатель | Праводатели',
140
140
  user: 'Пользователь | Пользователи',
141
141
  role: 'Роль | Роли',
142
+ calendar: 'Календарь | Календари',
142
143
  queue: {
143
144
  type: {
144
145
  [QueueType.INBOUND_QUEUE]: 'Входящая очередь',
@@ -220,6 +221,7 @@ export default {
220
221
  sections: {
221
222
  [CrmSections.CONTACTS]: 'Контакты',
222
223
  [CrmSections.SLAS]: 'SLAS',
224
+ [CrmSections.SOURCES]: 'Источники обращений',
223
225
  },
224
226
  },
225
227
  [WebitelApplications.HISTORY]: { name: 'Call History' },
@@ -139,6 +139,7 @@ export default {
139
139
  grantor: 'Надавач | Надавачі',
140
140
  user: 'Користувач | Користувачі',
141
141
  role: 'Роль | Ролі',
142
+ calendar: 'Календар | Календарі',
142
143
  queue: {
143
144
  type: {
144
145
  [QueueType.INBOUND_QUEUE]: 'Вхідна черга',
@@ -220,6 +221,7 @@ export default {
220
221
  sections: {
221
222
  [CrmSections.CONTACTS]: 'Контакти',
222
223
  [CrmSections.SLAS]: 'SLAS',
224
+ [CrmSections.SOURCES]: 'Джерела звернень',
223
225
  },
224
226
  },
225
227
  [WebitelApplications.HISTORY]: { name: 'Call History' },
@@ -198,6 +198,10 @@ const applicationsAccess = (value = true) => ({
198
198
  _enabled: value,
199
199
  _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.SLAS}`,
200
200
  },
201
+ [CrmSections.SOURCES]: {
202
+ _enabled: value,
203
+ _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.SOURCES}`,
204
+ },
201
205
  },
202
206
  });
203
207