@webitel/ui-sdk 24.10.53 → 24.10.54

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.10.53",
3
+ "version": "24.10.54",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -2,7 +2,7 @@ const CrmSections = Object.freeze({
2
2
  CONTACTS: 'contacts',
3
3
 
4
4
  // CONFIGURATION - LOOKUPS
5
- SLA: 'sla',
5
+ SLAS: 'slas',
6
6
  SERVICE_CATALOG: 'service-catalog',
7
7
  PRIORITIES: 'priorities',
8
8
  STATUSES: 'statuses',
@@ -220,7 +220,7 @@ export default {
220
220
  name: 'CRM',
221
221
  sections: {
222
222
  [CrmSections.CONTACTS]: 'Contacts',
223
- [CrmSections.SLA]: 'SLA',
223
+ [CrmSections.SLAS]: 'SLAS',
224
224
  },
225
225
  },
226
226
  [WebitelApplications.HISTORY]: { name: 'Call History' },
@@ -219,7 +219,7 @@ export default {
219
219
  name: 'CRM',
220
220
  sections: {
221
221
  [CrmSections.CONTACTS]: 'Контакты',
222
- [CrmSections.SLA]: 'SLA',
222
+ [CrmSections.SLAS]: 'SLAS',
223
223
  },
224
224
  },
225
225
  [WebitelApplications.HISTORY]: { name: 'Call History' },
@@ -219,7 +219,7 @@ export default {
219
219
  name: 'CRM',
220
220
  sections: {
221
221
  [CrmSections.CONTACTS]: 'Контакти',
222
- [CrmSections.SLA]: 'SLA',
222
+ [CrmSections.SLAS]: 'SLAS',
223
223
  },
224
224
  },
225
225
  [WebitelApplications.HISTORY]: { name: 'Call History' },
@@ -194,9 +194,9 @@ const applicationsAccess = (value = true) => ({
194
194
  _enabled: value,
195
195
  _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.CONTACTS}`,
196
196
  },
197
- [CrmSections.SLA]: {
197
+ [CrmSections.SLAS]: {
198
198
  _enabled: value,
199
- _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.SLA}`,
199
+ _locale: `WebitelApplications.${WebitelApplications.CRM}.sections.${CrmSections.SLAS}`,
200
200
  },
201
201
  },
202
202
  });