@webitel/ui-sdk 23.12.21 → 23.12.22
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
|
|
package/src/locale/en/en.js
CHANGED
|
@@ -223,6 +223,7 @@ 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',
|
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,6 +222,7 @@ 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]: 'Роли',
|
package/src/locale/ua/ua.js
CHANGED
|
@@ -222,6 +222,7 @@ 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]: 'Ролі',
|
|
@@ -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}`,
|