@webitel/ui-sdk 24.12.99 → 24.12.100

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.99",
3
+ "version": "24.12.100",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -227,7 +227,11 @@ export default {
227
227
  name: 'CRM',
228
228
  sections: {
229
229
  [CrmSections.CONTACTS]: 'Contacts',
230
- [CrmSections.SLAS]: 'SLAS',
230
+ [CrmSections.CASES]: 'Cases',
231
+ [CrmSections.PRIORITIES]: 'Priorities',
232
+ [CrmSections.CLOSE_REASON_GROUPS]: 'Closure reasons',
233
+ [CrmSections.STATUSES]: 'Statuses',
234
+ [CrmSections.SLAS]: 'SLA',
231
235
  [CrmSections.SERVICE_CATALOGS]: 'Service catalogs',
232
236
  [CrmSections.SOURCES]: 'Case sources',
233
237
  [CrmSections.CONTACT_GROUPS]: 'Contact groups',
@@ -225,7 +225,11 @@ export default {
225
225
  name: 'CRM',
226
226
  sections: {
227
227
  [CrmSections.CONTACTS]: 'Контакты',
228
- [CrmSections.SLAS]: 'SLAS',
228
+ [CrmSections.CASES]: 'Обращения',
229
+ [CrmSections.PRIORITIES]: 'Приоритеты',
230
+ [CrmSections.CLOSE_REASON_GROUPS]: 'Причины закрытия',
231
+ [CrmSections.STATUSES]: 'Статусы',
232
+ [CrmSections.SLAS]: 'SLA',
229
233
  [CrmSections.SERVICE_CATALOGS]: 'Каталоги сервисов',
230
234
  [CrmSections.SOURCES]: 'Источники обращений',
231
235
  [CrmSections.CONTACT_GROUPS]: 'Группы контактов',
@@ -225,7 +225,11 @@ export default {
225
225
  name: 'CRM',
226
226
  sections: {
227
227
  [CrmSections.CONTACTS]: 'Контакти',
228
- [CrmSections.SLAS]: 'SLAS',
228
+ [CrmSections.CASES]: 'Звернення',
229
+ [CrmSections.PRIORITIES]: 'Пріоритети',
230
+ [CrmSections.CLOSE_REASON_GROUPS]: 'Причини закриття',
231
+ [CrmSections.STATUSES]: 'Статуси',
232
+ [CrmSections.SLAS]: 'SLA',
229
233
  [CrmSections.SERVICE_CATALOGS]: 'Каталоги сервісів',
230
234
  [CrmSections.SOURCES]: 'Джерела звернень',
231
235
  [CrmSections.CONTACT_GROUPS]: 'Групи контактів',
@@ -199,6 +199,10 @@ const applicationsAccess = (value = true) => ({
199
199
  _enabled: value,
200
200
  _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.CONTACTS}`,
201
201
  },
202
+ [CrmSections.CASES]: {
203
+ _enabled: value,
204
+ _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.CASES}`,
205
+ },
202
206
  [CrmSections.SLAS]: {
203
207
  _enabled: value,
204
208
  _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.SLAS}`,
@@ -223,6 +227,10 @@ const applicationsAccess = (value = true) => ({
223
227
  _enabled: value,
224
228
  _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.PRIORITIES}`,
225
229
  },
230
+ [CrmSections.STATUSES]: {
231
+ _enabled: value,
232
+ _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.STATUSES}`,
233
+ },
226
234
  },
227
235
  });
228
236