@webitel/ui-sdk 24.12.9 → 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.9",
3
+ "version": "24.12.10",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -222,6 +222,7 @@ export default {
222
222
  sections: {
223
223
  [CrmSections.CONTACTS]: 'Contacts',
224
224
  [CrmSections.SLAS]: 'SLAS',
225
+ [CrmSections.SOURCES]: 'Case sources',
225
226
  },
226
227
  },
227
228
  [WebitelApplications.HISTORY]: { name: 'Call History' },
@@ -221,6 +221,7 @@ export default {
221
221
  sections: {
222
222
  [CrmSections.CONTACTS]: 'Контакты',
223
223
  [CrmSections.SLAS]: 'SLAS',
224
+ [CrmSections.SOURCES]: 'Источники обращений',
224
225
  },
225
226
  },
226
227
  [WebitelApplications.HISTORY]: { name: 'Call History' },
@@ -221,6 +221,7 @@ export default {
221
221
  sections: {
222
222
  [CrmSections.CONTACTS]: 'Контакти',
223
223
  [CrmSections.SLAS]: 'SLAS',
224
+ [CrmSections.SOURCES]: 'Джерела звернень',
224
225
  },
225
226
  },
226
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