@webitel/ui-sdk 24.10.22 → 24.10.23
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/dist/ui-sdk.js +2240 -2240
- package/dist/ui-sdk.umd.cjs +13 -13
- package/package.json +1 -1
- package/src/enums/WebitelApplications/AdminSections.enum.js +1 -0
- package/src/locale/en/en.js +1 -0
- package/src/locale/ru/ru.js +1 -0
- package/src/locale/ua/ua.js +1 -0
- package/src/modules/Userinfo/classes/ApplicationsAccess.js +4 -0
package/package.json
CHANGED
|
@@ -19,6 +19,7 @@ const AdminSections = Object.freeze({
|
|
|
19
19
|
PAUSE_CAUSE: 'pause-cause', // scope: lookups
|
|
20
20
|
MEDIA: 'media', // scope: media_file
|
|
21
21
|
SHIFT_TEMPLATES: 'shift-templates', // scope: shift_templates
|
|
22
|
+
PAUSE_TEMPLATES: 'pause-templates', //scope: pause_templates
|
|
22
23
|
|
|
23
24
|
// CONTACT CENTER
|
|
24
25
|
SKILLS: 'skills', // scope: lookups
|
package/src/locale/en/en.js
CHANGED
|
@@ -224,6 +224,7 @@ export default {
|
|
|
224
224
|
[AdminSections.BUCKETS]: 'Buckets',
|
|
225
225
|
[AdminSections.MEDIA]: 'Media files',
|
|
226
226
|
[AdminSections.SHIFT_TEMPLATES]: 'Shift templates',
|
|
227
|
+
[AdminSections.PAUSE_TEMPLATES]: 'Pause templates',
|
|
227
228
|
[AdminSections.BLACKLIST]: 'Lists',
|
|
228
229
|
[AdminSections.CALENDARS]: 'Calendars',
|
|
229
230
|
[AdminSections.REGIONS]: 'Locations',
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -223,6 +223,7 @@ export default {
|
|
|
223
223
|
[AdminSections.BUCKETS]: 'Корзины',
|
|
224
224
|
[AdminSections.MEDIA]: 'Медиафайлы',
|
|
225
225
|
[AdminSections.SHIFT_TEMPLATES]: 'Шаблон смен',
|
|
226
|
+
[AdminSections.PAUSE_TEMPLATES]: 'Шаблон пауз',
|
|
226
227
|
[AdminSections.BLACKLIST]: 'Cписки',
|
|
227
228
|
[AdminSections.CALENDARS]: 'Календари',
|
|
228
229
|
[AdminSections.COMMUNICATIONS]: 'Типы связи',
|
package/src/locale/ua/ua.js
CHANGED
|
@@ -223,6 +223,7 @@ export default {
|
|
|
223
223
|
[AdminSections.BUCKETS]: 'Кошики',
|
|
224
224
|
[AdminSections.MEDIA]: 'Медіафайли',
|
|
225
225
|
[AdminSections.SHIFT_TEMPLATES]: 'Шаблон змін',
|
|
226
|
+
[AdminSections.PAUSE_TEMPLATES]: 'Шаблон пауз',
|
|
226
227
|
[AdminSections.BLACKLIST]: 'Cписки',
|
|
227
228
|
[AdminSections.CALENDARS]: 'Календарі',
|
|
228
229
|
[AdminSections.REGIONS]: 'Розташування',
|
|
@@ -106,6 +106,10 @@ const applicationsAccess = (value = true) => ({
|
|
|
106
106
|
_enabled: value,
|
|
107
107
|
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.SHIFT_TEMPLATES}`,
|
|
108
108
|
},
|
|
109
|
+
[AdminSections.PAUSE_TEMPLATES]: {
|
|
110
|
+
_enabled: value,
|
|
111
|
+
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.PAUSE_TEMPLATES}`,
|
|
112
|
+
},
|
|
109
113
|
[AdminSections.AGENTS]: {
|
|
110
114
|
_enabled: value,
|
|
111
115
|
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.AGENTS}`,
|