@webitel/ui-sdk 2.1.9 → 2.1.11
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
|
@@ -36,6 +36,7 @@ const AdminSections = Object.freeze({
|
|
|
36
36
|
COGNITIVE_PROFILES: 'cognitive-profiles', // scope: cognitive_profile
|
|
37
37
|
EMAIL_PROFILES: 'email-profiles', // scope: email_profile
|
|
38
38
|
IMPORT_CSV: 'import-csv',
|
|
39
|
+
TRIGGERS: 'triggers',
|
|
39
40
|
|
|
40
41
|
// PERMISSIONS
|
|
41
42
|
OBJECTS: 'objects', // permissions: add
|
package/src/locale/en/en.js
CHANGED
|
@@ -62,6 +62,8 @@ export default {
|
|
|
62
62
|
type: 'Type',
|
|
63
63
|
tag: 'Tag | Tags',
|
|
64
64
|
output: 'Output | Outputs',
|
|
65
|
+
values: 'Value | Values',
|
|
66
|
+
keys: 'Key | Keys',
|
|
65
67
|
},
|
|
66
68
|
// date-related texts
|
|
67
69
|
date: {
|
|
@@ -171,6 +173,7 @@ export default {
|
|
|
171
173
|
[AdminSections.COGNITIVE_PROFILES]: 'Cognitive profiles',
|
|
172
174
|
[AdminSections.EMAIL_PROFILES]: 'Email profiles',
|
|
173
175
|
[AdminSections.IMPORT_CSV]: 'Import data from CSV file',
|
|
176
|
+
[AdminSections.TRIGGERS]: 'Triggers',
|
|
174
177
|
[AdminSections.MEDIA]: 'Media',
|
|
175
178
|
[AdminSections.BLACKLIST]: 'Call lists',
|
|
176
179
|
[AdminSections.ROLES]: 'Roles',
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -60,6 +60,8 @@ export default {
|
|
|
60
60
|
type: 'Тип',
|
|
61
61
|
tag: 'Тег | Теги',
|
|
62
62
|
output: 'Выход | Выходы',
|
|
63
|
+
values: 'Значение | Значения',
|
|
64
|
+
keys: 'Ключ | Ключи',
|
|
63
65
|
},
|
|
64
66
|
// date-related texts
|
|
65
67
|
date: {
|
|
@@ -169,6 +171,7 @@ export default {
|
|
|
169
171
|
[AdminSections.COGNITIVE_PROFILES]: 'Голосовые профили',
|
|
170
172
|
[AdminSections.EMAIL_PROFILES]: 'Email профили',
|
|
171
173
|
[AdminSections.IMPORT_CSV]: 'Импорт данных из CSV файла',
|
|
174
|
+
[AdminSections.TRIGGERS]: 'Триггеры',
|
|
172
175
|
[AdminSections.ROLES]: 'Роли',
|
|
173
176
|
[AdminSections.OBJECTS]: 'Разделы',
|
|
174
177
|
},
|
package/src/locale/ua/ua.js
CHANGED
|
@@ -60,6 +60,8 @@ export default {
|
|
|
60
60
|
type: 'Тип',
|
|
61
61
|
tag: 'Тег | Теги',
|
|
62
62
|
output: 'Вихід | Виходи',
|
|
63
|
+
values: 'Значення | Значення',
|
|
64
|
+
keys: 'Ключ | Ключі',
|
|
63
65
|
},
|
|
64
66
|
// date-related texts
|
|
65
67
|
date: {
|
|
@@ -169,6 +171,7 @@ export default {
|
|
|
169
171
|
[AdminSections.COGNITIVE_PROFILES]: 'Голосові профілі',
|
|
170
172
|
[AdminSections.EMAIL_PROFILES]: 'Email профілі',
|
|
171
173
|
[AdminSections.IMPORT_CSV]: 'Імпорт даних з CSV файлу',
|
|
174
|
+
[AdminSections.TRIGGERS]: 'Тригери',
|
|
172
175
|
[AdminSections.ROLES]: 'Ролі',
|
|
173
176
|
[AdminSections.OBJECTS]: 'Розділи',
|
|
174
177
|
},
|
|
@@ -136,6 +136,10 @@ const applicationsAccess = (value = true) => ({
|
|
|
136
136
|
_enabled: value,
|
|
137
137
|
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.IMPORT_CSV}`,
|
|
138
138
|
},
|
|
139
|
+
[AdminSections.TRIGGERS]: {
|
|
140
|
+
_enabled: value,
|
|
141
|
+
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.TRIGGERS}`,
|
|
142
|
+
},
|
|
139
143
|
[AdminSections.ROLES]: {
|
|
140
144
|
_enabled: value,
|
|
141
145
|
_locale: `WebitelApplications.${WebitelApplications.ADMIN}.sections.${AdminSections.ROLES}`,
|