@webitel/ui-sdk 24.12.64 → 24.12.66
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/CHANGELOG.md +12 -0
- package/dist/ui-sdk.js +2 -2
- package/dist/ui-sdk.umd.cjs +15 -15
- package/package.json +1 -1
- package/src/enums/WebitelApplications/AdminSections.enum.js +1 -0
- package/src/locale/ru/ru.js +1 -1
- package/src/locale/ua/ua.js +1 -1
- package/src/modules/Userinfo/classes/ApplicationsAccess.js +4 -0
package/package.json
CHANGED
|
@@ -34,6 +34,7 @@ const AdminSections = Object.freeze({
|
|
|
34
34
|
|
|
35
35
|
// INTEGRATIONS
|
|
36
36
|
STORAGE: 'storage', // scope: storage_profile
|
|
37
|
+
STORAGE_POLICIES: 'storage-policies', // scope: storage_policies_profile
|
|
37
38
|
COGNITIVE_PROFILES: 'cognitive-profiles', // scope: cognitive_profile
|
|
38
39
|
EMAIL_PROFILES: 'email-profiles', // scope: email_profile
|
|
39
40
|
SINGLE_SIGN_ON: 'single-sign-on', // scope: single-sign-on
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -136,7 +136,7 @@ export default {
|
|
|
136
136
|
auditor: 'Аудитор | Аудиторы',
|
|
137
137
|
region: 'Регион | Регионы',
|
|
138
138
|
communicationType: 'Тип связи | Типы связи',
|
|
139
|
-
grantee: '
|
|
139
|
+
grantee: 'Владелец прав | Владельцы прав',
|
|
140
140
|
grantor: 'Праводатель | Праводатели',
|
|
141
141
|
user: 'Пользователь | Пользователи',
|
|
142
142
|
role: 'Роль | Роли',
|
package/src/locale/ua/ua.js
CHANGED
|
@@ -136,7 +136,7 @@ export default {
|
|
|
136
136
|
auditor: 'Аудитор | Аудитори',
|
|
137
137
|
region: 'Регіон | Регіони',
|
|
138
138
|
communicationType: "Тип зв'язку | Типи зв'язку",
|
|
139
|
-
grantee: '
|
|
139
|
+
grantee: 'Власник прав | Власники прав',
|
|
140
140
|
grantor: 'Надавач | Надавачі',
|
|
141
141
|
user: 'Користувач | Користувачі',
|
|
142
142
|
role: 'Роль | Ролі',
|
|
@@ -139,6 +139,10 @@ const applicationsAccess = (value = true) => ({
|
|
|
139
139
|
_enabled: value,
|
|
140
140
|
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.STORAGE}`,
|
|
141
141
|
},
|
|
142
|
+
[AdminSections.STORAGE_POLICIES]: {
|
|
143
|
+
_enabled: value,
|
|
144
|
+
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.STORAGE_POLICIES}`,
|
|
145
|
+
},
|
|
142
146
|
[AdminSections.COGNITIVE_PROFILES]: {
|
|
143
147
|
_enabled: value,
|
|
144
148
|
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.COGNITIVE_PROFILES}`,
|