@webitel/ui-sdk 23.12.21 → 23.12.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/package.json
CHANGED
|
@@ -35,6 +35,7 @@ const AdminSections = Object.freeze({
|
|
|
35
35
|
STORAGE: 'storage', // scope: storage_profile
|
|
36
36
|
COGNITIVE_PROFILES: 'cognitive-profiles', // scope: cognitive_profile
|
|
37
37
|
EMAIL_PROFILES: 'email-profiles', // scope: email_profile
|
|
38
|
+
SINGLE_SIGN_ON: 'single-sign-on', // scope: single-sign-on
|
|
38
39
|
IMPORT_CSV: 'import-csv',
|
|
39
40
|
TRIGGERS: 'triggers',
|
|
40
41
|
|
|
@@ -44,7 +45,7 @@ const AdminSections = Object.freeze({
|
|
|
44
45
|
|
|
45
46
|
// SYSTEM
|
|
46
47
|
CHANGELOGS: 'changelogs',
|
|
47
|
-
|
|
48
|
+
CONFIGURATION: 'configuration',
|
|
48
49
|
});
|
|
49
50
|
|
|
50
51
|
export default AdminSections;
|
package/src/locale/en/en.js
CHANGED
|
@@ -223,13 +223,14 @@ export default {
|
|
|
223
223
|
[AdminSections.STORAGE]: 'Storage',
|
|
224
224
|
[AdminSections.COGNITIVE_PROFILES]: 'Cognitive profiles',
|
|
225
225
|
[AdminSections.EMAIL_PROFILES]: 'Email profiles',
|
|
226
|
+
[AdminSections.SINGLE_SIGN_ON]: 'Single Sign-on',
|
|
226
227
|
[AdminSections.IMPORT_CSV]: 'Imports of CSV from file',
|
|
227
228
|
[AdminSections.TRIGGERS]: 'Triggers',
|
|
228
229
|
[AdminSections.MEDIA]: 'Media files',
|
|
229
230
|
[AdminSections.ROLES]: 'Roles',
|
|
230
231
|
[AdminSections.OBJECTS]: 'Objects',
|
|
231
232
|
[AdminSections.CHANGELOGS]: 'Change log',
|
|
232
|
-
[AdminSections.
|
|
233
|
+
[AdminSections.CONFIGURATION]: 'Configuration',
|
|
233
234
|
},
|
|
234
235
|
},
|
|
235
236
|
},
|
package/src/locale/es/es.js
CHANGED
|
@@ -188,6 +188,7 @@ export default {
|
|
|
188
188
|
[AdminSections.STORAGE]: 'Almacenamiento',
|
|
189
189
|
[AdminSections.COGNITIVE_PROFILES]: 'Perfiles de voz',
|
|
190
190
|
[AdminSections.EMAIL_PROFILES]: 'Perfiles de correo electrónico',
|
|
191
|
+
[AdminSections.SINGLE_SIGN_ON]: 'Single Sign-on',
|
|
191
192
|
[AdminSections.IMPORT_CSV]: 'Importación de datos de archivos CSV',
|
|
192
193
|
[AdminSections.TRIGGERS]: 'Activadores',
|
|
193
194
|
[AdminSections.ROLES]: 'Funciones',
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -222,12 +222,13 @@ export default {
|
|
|
222
222
|
[AdminSections.STORAGE]: 'Хранилища',
|
|
223
223
|
[AdminSections.COGNITIVE_PROFILES]: 'Голосовые профили',
|
|
224
224
|
[AdminSections.EMAIL_PROFILES]: 'Email профили',
|
|
225
|
+
[AdminSections.SINGLE_SIGN_ON]: 'Single Sign-on',
|
|
225
226
|
[AdminSections.IMPORT_CSV]: 'Импорт данных из CSV файлов',
|
|
226
227
|
[AdminSections.TRIGGERS]: 'Триггеры',
|
|
227
228
|
[AdminSections.ROLES]: 'Роли',
|
|
228
229
|
[AdminSections.OBJECTS]: 'Разделы',
|
|
229
230
|
[AdminSections.CHANGELOGS]: 'Журнал изменений',
|
|
230
|
-
[AdminSections.
|
|
231
|
+
[AdminSections.CONFIGURATION]: 'Конфигурация',
|
|
231
232
|
},
|
|
232
233
|
},
|
|
233
234
|
},
|
package/src/locale/ua/ua.js
CHANGED
|
@@ -222,12 +222,13 @@ export default {
|
|
|
222
222
|
[AdminSections.STORAGE]: 'Сховища',
|
|
223
223
|
[AdminSections.COGNITIVE_PROFILES]: 'Голосові профілі',
|
|
224
224
|
[AdminSections.EMAIL_PROFILES]: 'Email профілі',
|
|
225
|
+
[AdminSections.SINGLE_SIGN_ON]: 'Single Sign-on',
|
|
225
226
|
[AdminSections.IMPORT_CSV]: 'Імпорт даних з CSV файлів',
|
|
226
227
|
[AdminSections.TRIGGERS]: 'Тригери',
|
|
227
228
|
[AdminSections.ROLES]: 'Ролі',
|
|
228
229
|
[AdminSections.OBJECTS]: 'Розділи',
|
|
229
230
|
[AdminSections.CHANGELOGS]: 'Журнал змін',
|
|
230
|
-
[AdminSections.
|
|
231
|
+
[AdminSections.CONFIGURATION]: 'Конфігурація',
|
|
231
232
|
},
|
|
232
233
|
},
|
|
233
234
|
},
|
|
@@ -135,6 +135,10 @@ const applicationsAccess = (value = true) => ({
|
|
|
135
135
|
_enabled: value,
|
|
136
136
|
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.EMAIL_PROFILES}`,
|
|
137
137
|
},
|
|
138
|
+
[AdminSections.SINGLE_SIGN_ON]: {
|
|
139
|
+
_enabled: value,
|
|
140
|
+
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.SINGLE_SIGN_ON}`,
|
|
141
|
+
},
|
|
138
142
|
[AdminSections.IMPORT_CSV]: {
|
|
139
143
|
_enabled: value,
|
|
140
144
|
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.IMPORT_CSV}`,
|
|
@@ -155,9 +159,9 @@ const applicationsAccess = (value = true) => ({
|
|
|
155
159
|
_enabled: value,
|
|
156
160
|
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.CHANGELOGS}`,
|
|
157
161
|
},
|
|
158
|
-
[AdminSections.
|
|
162
|
+
[AdminSections.CONFIGURATION]: {
|
|
159
163
|
_enabled: value,
|
|
160
|
-
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.
|
|
164
|
+
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.CONFIGURATION}`,
|
|
161
165
|
},
|
|
162
166
|
},
|
|
163
167
|
[WebitelApplications.AUDIT]: {
|