@webitel/ui-sdk 25.8.5 → 25.8.6

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.
Files changed (521) hide show
  1. package/package.json +143 -39
  2. package/src/modules/AuditForm/components/form-questions/options/audit-form-question-options-write-row.vue +1 -1
  3. package/types/api/axios/generateInstance.d.ts +2 -0
  4. package/types/api/clients/_shared/generatePermissionsApi.d.ts +13 -0
  5. package/types/api/clients/agents/agentChats.d.ts +10 -0
  6. package/types/api/clients/agents/agents.d.ts +55 -0
  7. package/types/api/clients/buckets/buckets.d.ts +30 -0
  8. package/types/api/clients/calendars/calendars.d.ts +35 -0
  9. package/types/api/clients/caseCloseReasonGroups/caseCloseReasonGroups.d.ts +30 -0
  10. package/types/api/clients/caseCloseReasons/caseCloseReasons.d.ts +36 -0
  11. package/types/api/clients/casePriorities/casePriorities.d.ts +30 -0
  12. package/types/api/clients/caseServiceCatalogs/serviceCatalogs.d.ts +30 -0
  13. package/types/api/clients/caseServices/services.d.ts +42 -0
  14. package/types/api/clients/caseStatusConditions/caseStatusConditions.d.ts +43 -0
  15. package/types/api/clients/caseStatuses/caseStatuses.d.ts +30 -0
  16. package/types/api/clients/catalog/catalog.d.ts +10 -0
  17. package/types/api/clients/chatGateways/chatGateways.d.ts +35 -0
  18. package/types/api/clients/chatGateways/defaults/defaultChatGateway.d.ts +15 -0
  19. package/types/api/clients/chatGateways/defaults/webChatGateway.d.ts +64 -0
  20. package/types/api/clients/chatGateways/enums/WebchatAlternativeChannel.enum.d.ts +8 -0
  21. package/types/api/clients/chatGateways/scripts/generateUri.d.ts +2 -0
  22. package/types/api/clients/communications/communications.d.ts +35 -0
  23. package/types/api/clients/configurations/configurations.d.ts +35 -0
  24. package/types/api/clients/contactGroups/contactGroups.d.ts +47 -0
  25. package/types/api/clients/flows/flow.d.ts +35 -0
  26. package/types/api/clients/gateways/defaults/defaultGateway.d.ts +8 -0
  27. package/types/api/clients/gateways/defaults/registerGateway.d.ts +13 -0
  28. package/types/api/clients/gateways/defaults/trunkingGateway.d.ts +11 -0
  29. package/types/api/clients/gateways/gateways.d.ts +35 -0
  30. package/types/api/clients/index.d.ts +34 -0
  31. package/types/api/clients/labels/labels.d.ts +13 -0
  32. package/types/api/clients/lists/blacklists.d.ts +30 -0
  33. package/types/api/clients/media/media.d.ts +24 -0
  34. package/types/api/clients/object/object.d.ts +13 -0
  35. package/types/api/clients/queues/defaults/processing.d.ts +2 -0
  36. package/types/api/clients/queues/queues.d.ts +40 -0
  37. package/types/api/clients/roles/roles.d.ts +40 -0
  38. package/types/api/clients/skills/skills.d.ts +30 -0
  39. package/types/api/clients/slaConditions/slaConditions.d.ts +36 -0
  40. package/types/api/clients/slas/slas.d.ts +30 -0
  41. package/types/api/clients/teams/teams.d.ts +30 -0
  42. package/types/api/clients/users/users.d.ts +46 -0
  43. package/types/api/clients//321/201ontacts/contactChatMessagesHistory.d.ts +16 -0
  44. package/types/api/clients//321/201ontacts/contacts.d.ts +29 -0
  45. package/types/api/clients//321/201ontacts/enums/ContactsSearchMode.d.ts +8 -0
  46. package/types/api/clients//321/201ontacts/index.d.ts +4 -0
  47. package/types/api/defaults/getDefaultGetListResponse/getDefaultGetListResponse.d.ts +5 -0
  48. package/types/api/defaults/getDefaultGetParams/getDefaultGetParams.d.ts +8 -0
  49. package/types/api/defaults/getDefaultInstance/getDefaultInstance.d.ts +2 -0
  50. package/types/api/defaults/getDefaultOpenAPIConfig/getDefaultOpenAPIConfig.d.ts +3 -0
  51. package/types/api/defaults/index.d.ts +5 -0
  52. package/types/api/history/index.d.ts +2 -0
  53. package/types/api/history/transcript/callTranscript.d.ts +15 -0
  54. package/types/api/interceptors/request/updateToken.interceptor.d.ts +2 -0
  55. package/types/api/interceptors/response/handleUnauthorized.interceptor.d.ts +2 -0
  56. package/types/api/transformers/addQueryParamsToUrl/addQueryParamsToUrl.transformer.d.ts +2 -0
  57. package/types/api/transformers/applyTransform.d.ts +5 -0
  58. package/types/api/transformers/camelToSnake/camelToSnake.transformer.d.ts +2 -0
  59. package/types/api/transformers/generateUrl/generateUrl.transformer.d.ts +2 -0
  60. package/types/api/transformers/index.d.ts +14 -0
  61. package/types/api/transformers/log/log.transformer.d.ts +2 -0
  62. package/types/api/transformers/merge/merge.transformer.d.ts +2 -0
  63. package/types/api/transformers/mergeEach/mergeEach.transformer.d.ts +2 -0
  64. package/types/api/transformers/notify/notify.transformer.d.ts +2 -0
  65. package/types/api/transformers/sanitize/sanitize.transformer.d.ts +2 -0
  66. package/types/api/transformers/snakeToCamel/snakeToCamel.transformer.d.ts +2 -0
  67. package/types/api/transformers/starToSearch/starToSearch.transformer.d.ts +2 -0
  68. package/types/api/websocket/WebSocketClientController.d.ts +19 -0
  69. package/types/api/websocket/config.d.ts +2 -0
  70. package/types/api/websocket/websocketErrorEventHandler.d.ts +2 -0
  71. package/types/assets/icons/sprite/index.d.ts +2 -0
  72. package/types/components/index.d.ts +145 -0
  73. package/types/components/on-demand/wt-cc-agent-status-timers/__tests__/wt-cc-agent-status-timers.spec.d.ts +1 -0
  74. package/types/components/on-demand/wt-save-failed-popup/__tests__/WtPopup.spec.d.ts +1 -0
  75. package/{dist/types → types}/components/on-demand/wt-save-failed-popup/wt-save-failed-popup.vue.d.ts +3 -3
  76. package/{dist/types → types}/components/on-demand/wt-selection-popup/wt-selection-popup.vue.d.ts +3 -3
  77. package/types/components/transitions/__tests__/ExpandTransition.spec.d.ts +1 -0
  78. package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -0
  79. package/types/components/wt-action-bar/__tests__/wt-action-bar.spec.d.ts +1 -0
  80. package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +78 -0
  81. package/types/components/wt-app-header/__tests__/WtAppHeader.spec.d.ts +1 -0
  82. package/types/components/wt-app-header/__tests__/WtAppNavigator.spec.d.ts +1 -0
  83. package/types/components/wt-app-header/__tests__/WtHeaderActions.spec.d.ts +1 -0
  84. package/types/components/wt-avatar/__tests__/wt-avatar.spec.d.ts +1 -0
  85. package/{dist/types → types}/components/wt-avatar/wt-avatar.vue.d.ts +4 -4
  86. package/types/components/wt-badge/__tests__/wt-badge.spec.d.ts +1 -0
  87. package/types/components/wt-button/__tests__/WtButton.spec.d.ts +1 -0
  88. package/types/components/wt-button-select/__tests__/WtButtonSelect.spec.d.ts +1 -0
  89. package/types/components/wt-checkbox/__tests__/WtCheckbox.spec.d.ts +1 -0
  90. package/{dist/types → types}/components/wt-checkbox/wt-checkbox.vue.d.ts +3 -3
  91. package/types/components/wt-chip/__tests__/WtChip.spec.d.ts +1 -0
  92. package/types/components/wt-context-menu/__tests__/WtContextMenu.spec.d.ts +1 -0
  93. package/types/components/wt-copy-action/__tests__/WtCopyAction.spec.d.ts +1 -0
  94. package/types/components/wt-datepicker/__tests__/WtDatepicker.spec.d.ts +1 -0
  95. package/types/components/wt-divider/__tests__/WtDivider.spec.d.ts +1 -0
  96. package/types/components/wt-dual-panel/__tests__/WtDualPanel.d.ts +1 -0
  97. package/types/components/wt-dummy/__tests__/WtDummy.spec.d.ts +1 -0
  98. package/types/components/wt-empty/__tests__/wt-empty.spec.d.ts +1 -0
  99. package/{dist/types → types}/components/wt-empty/wt-empty.vue.d.ts +1 -1
  100. package/types/components/wt-error-page/__tests__/wt-error-page.spec.d.ts +1 -0
  101. package/types/components/wt-expansion-panel/__tests__/WtExpansionPanel.spec.d.ts +1 -0
  102. package/types/components/wt-filters-panel-wrapper/__tests__/WtFiltersPanelWrapper.spec.d.ts +1 -0
  103. package/types/components/wt-headline/__tests__/WtHeadline.spec.d.ts +1 -0
  104. package/types/components/wt-headline-nav/__tests__/wt-headline-nav.spec.d.ts +1 -0
  105. package/types/components/wt-hint/__tests__/WtHint.spec.d.ts +1 -0
  106. package/types/components/wt-icon/__tests__/WtIcon.spec.d.ts +1 -0
  107. package/types/components/wt-icon-action/__tests__/WtIconAction.spec.d.ts +1 -0
  108. package/types/components/wt-icon-action/iconMappings.d.ts +21 -0
  109. package/types/components/wt-icon-btn/__tests__/WtIconBtn.spec.d.ts +1 -0
  110. package/types/components/wt-image/__tests__/wt-image.spec.d.ts +1 -0
  111. package/types/components/wt-indicator/__tests__/WtIndicator.spec.d.ts +1 -0
  112. package/types/components/wt-input/__tests__/WtInput.spec.d.ts +1 -0
  113. package/types/components/wt-input-info/__tests__/WtInputInfo.spec.d.ts +1 -0
  114. package/types/components/wt-intersection-observer/__tests__/WtIntersectionObserver.spec.d.ts +1 -0
  115. package/types/components/wt-item-link/__tests__/WtItemLink.spec.d.ts +1 -0
  116. package/types/components/wt-label/__tests__/WtLabel.spec.d.ts +1 -0
  117. package/types/components/wt-label/mixins/labelUsageMixin.d.ts +19 -0
  118. package/types/components/wt-load-bar/__tests__/WtLoadBar.spec.d.ts +1 -0
  119. package/types/components/wt-loader/__tests__/WtLoader.spec.d.ts +1 -0
  120. package/types/components/wt-logo/__tests__/wt-logo.spec.d.ts +1 -0
  121. package/types/components/wt-navigation-bar/__tests__/WtNavigationBar.spec.d.ts +1 -0
  122. package/types/components/wt-notification/__tests__/WtNotification.spec.d.ts +1 -0
  123. package/{dist/types → types}/components/wt-notification/wt-notification.vue.d.ts +1 -1
  124. package/types/components/wt-notifications-bar/__tests__/WtNotificationsBar.spec.d.ts +1 -0
  125. package/{dist/types → types}/components/wt-notifications-bar/wt-notifications-bar.vue.d.ts +5 -1
  126. package/types/components/wt-page-header/__tests__/wt-page-header.spec.d.ts +1 -0
  127. package/types/components/wt-page-wrapper/__tests__/WtPageWrapper.spec.d.ts +1 -0
  128. package/types/components/wt-pagination/__tests__/WtPagination.spec.d.ts +1 -0
  129. package/{dist/types → types}/components/wt-pagination/wt-pagination.vue.d.ts +1 -1
  130. package/types/components/wt-player/__tests__/WtPlayer.spec.d.ts +1 -0
  131. package/types/components/wt-popup/__tests__/WtPopup.spec.d.ts +1 -0
  132. package/types/components/wt-progress-bar/__tests__/WtProgressBar.spec.d.ts +1 -0
  133. package/types/components/wt-radio/__tests__/WtRadio.spec.d.ts +1 -0
  134. package/types/components/wt-rounded-action/__tests__/WtRoundedAction.spec.d.ts +1 -0
  135. package/types/components/wt-search-bar/__tests__/WtSearchBar.spec.d.ts +1 -0
  136. package/{dist/types → types}/components/wt-search-bar/wt-search-bar.vue.d.ts +1 -1
  137. package/types/components/wt-select/__tests__/WtSelect.spec.d.ts +1 -0
  138. package/types/components/wt-select/mixins/__tests__/multiselectMixin.spec.d.ts +1 -0
  139. package/types/components/wt-select/mixins/multiselectMixin.d.ts +128 -0
  140. package/{dist/types → types}/components/wt-select/wt-select-v2.vue.d.ts +1 -1
  141. package/types/components/wt-select/wt-select.vue.d.ts +202 -0
  142. package/types/components/wt-slider/__tests__/WtSlider.spec.d.ts +1 -0
  143. package/types/components/wt-status-select/__tests__/WtStatusSelect.spec.d.ts +1 -0
  144. package/types/components/wt-status-select/_internals/StatusOptions.lookup.d.ts +18 -0
  145. package/{dist/types → types}/components/wt-status-select/wt-status-select.vue.d.ts +6 -6
  146. package/types/components/wt-stepper/__tests__/WtStepper.spec.vue.d.ts +1 -0
  147. package/types/components/wt-switcher/__tests__/WtSwitcher.spec.d.ts +1 -0
  148. package/types/components/wt-table/__tests__/WtTable.spec.d.ts +1 -0
  149. package/types/components/wt-table-actions/__tests__/WtTableActions.spec.d.ts +1 -0
  150. package/types/components/wt-table-column-select/__tests__/WtTableColumnSelect.spec.d.ts +1 -0
  151. package/types/components/wt-tabs/__tests__/WtTabs.spec.d.ts +1 -0
  152. package/types/components/wt-tags-input/__tests__/WtTagsInput.spec.d.ts +1 -0
  153. package/types/components/wt-tags-input/mixin/__tests__/taggableMixin.spec.d.ts +1 -0
  154. package/types/components/wt-tags-input/mixin/taggableMixin.d.ts +7 -0
  155. package/types/components/wt-tags-input/wt-tags-input.vue.d.ts +182 -0
  156. package/types/components/wt-textarea/__tests__/WtTextarea.spec.d.ts +1 -0
  157. package/{dist/types → types}/components/wt-textarea/wt-textarea.vue.d.ts +32 -3
  158. package/types/components/wt-time-input/__tests__/WtTimeInput.spec.d.ts +1 -0
  159. package/{dist/types → types}/components/wt-time-input/wt-time-input.vue.d.ts +31 -3
  160. package/types/components/wt-timepicker/__tests__/WtTimepicker.spec.d.ts +1 -0
  161. package/{dist/types → types}/components/wt-timepicker/wt-timepicker.vue.d.ts +24 -9
  162. package/types/components/wt-tooltip/__tests__/WtTooltip.spec.d.ts +1 -0
  163. package/types/components/wt-tooltip/_internals/useTooltipTriggerSubscriptions.d.ts +6 -0
  164. package/types/components/wt-tree/__tests__/WtTree.spec.d.ts +1 -0
  165. package/types/composables/useAccessControl/useAccessControl.d.ts +8 -0
  166. package/types/composables/useCachedInterval/__tests__/useCachedInterval.spec.d.ts +1 -0
  167. package/types/composables/useCachedInterval/useCachedInterval.d.ts +6 -0
  168. package/types/composables/useCachedItemInstanceName/useCachedItemInstanceName.d.ts +5 -0
  169. package/types/composables/useCard/useCardComponent.d.ts +12 -0
  170. package/types/composables/useCard/useCardTabs.d.ts +4 -0
  171. package/types/composables/useClose/useClose.d.ts +3 -0
  172. package/types/composables/useDestroyableSortable/useDestroyableSortable.d.ts +20 -0
  173. package/types/composables/useRepresentableAgentPauseCause/__tests__/useRepresentableAgentPauseCause.spec.d.ts +1 -0
  174. package/types/composables/useRepresentableAgentPauseCause/useRepresentableAgentPauseCause.d.ts +3 -0
  175. package/types/composables/useValidate/useValidate.d.ts +4 -0
  176. package/types/directives/clickaway/clickaway.d.ts +2 -0
  177. package/types/directives/index.d.ts +5 -0
  178. package/types/enums/AbstractUserStatus/AbstractUserStatus.enum.d.ts +9 -0
  179. package/types/enums/AgentStatus/AgentStatus.enum.d.ts +7 -0
  180. package/types/enums/ChatGatewayProvider/ChatGatewayProvider.enum.d.ts +11 -0
  181. package/types/enums/ChatGatewayProvider/ProviderIconType.enum.d.ts +10 -0
  182. package/types/enums/IconAction/IconAction.enum.d.ts +25 -0
  183. package/types/enums/QueueType/QueueType.enum.d.ts +12 -0
  184. package/types/enums/TypesExportedSettings/TypesExportedSettings.enum.d.ts +5 -0
  185. package/types/enums/WebitelApplications/AdminSections.enum.d.ts +2 -0
  186. package/types/enums/WebitelApplications/AuditorSections.enum.d.ts +2 -0
  187. package/types/enums/WebitelApplications/CrmSections.enum.d.ts +2 -0
  188. package/types/enums/WebitelApplications/SupervisorSections.enum.d.ts +2 -0
  189. package/types/enums/WebitelApplications/WebitelApplications.enum.d.ts +2 -0
  190. package/{dist/types → types}/install.d.ts +1 -1
  191. package/types/locale/en/en.d.ts +915 -0
  192. package/types/locale/es/es.d.ts +245 -0
  193. package/types/locale/i18n.d.ts +2986 -0
  194. package/types/locale/kz/kz.d.ts +301 -0
  195. package/types/locale/ru/ru.d.ts +911 -0
  196. package/types/locale/ua/ua.d.ts +911 -0
  197. package/types/main.d.ts +1 -0
  198. package/types/mixins/dataFilterMixins/__tests__/apiFilterMixin.spec.d.ts +1 -0
  199. package/types/mixins/dataFilterMixins/__tests__/enumFilterMixin.spec.d.ts +1 -0
  200. package/types/mixins/dataFilterMixins/__tests__/paginationFilterMixin.spec.d.ts +1 -0
  201. package/types/mixins/dataFilterMixins/__tests__/sortFilterMixin.spec.d.ts +1 -0
  202. package/types/mixins/dataFilterMixins/__tests__/urlControllerMixin.spec.d.ts +1 -0
  203. package/types/mixins/dataFilterMixins/_urlControllerMixin/_urlControllerMixin.d.ts +17 -0
  204. package/types/mixins/dataFilterMixins/apiFilterMixin.d.ts +45 -0
  205. package/types/mixins/dataFilterMixins/baseFilterMixin/baseFilterMixin.d.ts +33 -0
  206. package/types/mixins/dataFilterMixins/enumFilterMixin.d.ts +47 -0
  207. package/types/mixins/dataFilterMixins/paginationFilterMixin.d.ts +62 -0
  208. package/types/mixins/dataFilterMixins/sortFilterMixin.d.ts +46 -0
  209. package/types/mixins/validationMixin/__tests__/validationMixin.spec.d.ts +1 -0
  210. package/types/mixins/validationMixin/validationMixin.d.ts +19 -0
  211. package/types/modules/AgentStatusSelect/api/agent-status.d.ts +13 -0
  212. package/types/modules/AgentStatusSelect/api/pause-cause.d.ts +12 -0
  213. package/types/modules/AgentStatusSelect/components/__tests__/wt-cc-agent-status-select.spec.d.ts +1 -0
  214. package/types/modules/AgentStatusSelect/components/__tests__/wt-cc-pause-cause-popup.spec.d.ts +1 -0
  215. package/{dist/types → types}/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue.d.ts +1 -1
  216. package/{dist/types → types}/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue.d.ts +2 -2
  217. package/types/modules/Appearance/components/__tests__/wt-dark-mode-switcher.spec.d.ts +1 -0
  218. package/types/modules/Appearance/store/AppearanceStoreModule.d.ts +15 -0
  219. package/types/modules/Appearance/store/__tests__/AppearanceStoreModule.spec.d.ts +1 -0
  220. package/types/modules/AuditForm/components/form-questions/options/__tests__/audit-form-question-options-write-row.spec.d.ts +1 -0
  221. package/types/modules/AuditForm/components/form-questions/options/__tests__/audit-form-question-options.spec.d.ts +1 -0
  222. package/types/modules/AuditForm/components/form-questions/score/__tests__/audit-form-question-score.spec.d.ts +1 -0
  223. package/types/modules/AuditForm/schemas/AuditFormQuestionOptionsSchema.d.ts +12 -0
  224. package/types/modules/AuditForm/schemas/AuditFormQuestionSchema.d.ts +9 -0
  225. package/types/modules/AuditForm/schemas/AuditFormQuestionScoreSchema.d.ts +6 -0
  226. package/types/modules/CSVExport/CSVExport.d.ts +20 -0
  227. package/types/modules/CSVExport/XLSExport.d.ts +19 -0
  228. package/types/modules/CSVExport/__tests__/CSVExport.spec.d.ts +1 -0
  229. package/types/modules/CSVExport/mixins/exportCSVMixin.d.ts +16 -0
  230. package/types/modules/CSVExport/mixins/exportXLSMixin.d.ts +16 -0
  231. package/types/modules/CardStoreModule/composables/useCardStore.d.ts +12 -0
  232. package/types/modules/CardStoreModule/store/CardStoreModule.d.ts +45 -0
  233. package/types/modules/DeleteConfirmationPopup/__tests__/delete-confirmation-popup.spec.d.ts +1 -0
  234. package/types/modules/DeleteConfirmationPopup/composables/useDeleteConfirmationPopup.d.ts +10 -0
  235. package/types/modules/FilesExport/FilesExport.d.ts +28 -0
  236. package/types/modules/FilesExport/__tests__/FilesExport.spec.d.ts +1 -0
  237. package/types/modules/FilesExport/mixins/exportFilesMixin.d.ts +16 -0
  238. package/types/modules/FilesExport/scripts/generateMediaURL.d.ts +2 -0
  239. package/types/modules/Filters/classes/BaseFilterSchema.d.ts +17 -0
  240. package/types/modules/Filters/components/__tests__/filter-pagination.spec.d.ts +1 -0
  241. package/types/modules/Filters/components/__tests__/filter-table-fields.spec.d.ts +1 -0
  242. package/types/modules/Filters/composables/useTableFilters.d.ts +8 -0
  243. package/types/modules/Filters/enums/FilterEvent.enum.d.ts +6 -0
  244. package/types/modules/Filters/scripts/getters/index.d.ts +4 -0
  245. package/types/modules/Filters/scripts/getters/localStorageGetter.d.ts +2 -0
  246. package/types/modules/Filters/scripts/getters/queryGetter.d.ts +2 -0
  247. package/types/modules/Filters/scripts/getters/valueGetter.d.ts +2 -0
  248. package/types/modules/Filters/scripts/restores/index.d.ts +3 -0
  249. package/types/modules/Filters/scripts/restores/localStorageRestore.d.ts +2 -0
  250. package/types/modules/Filters/scripts/restores/queryRestore.d.ts +2 -0
  251. package/types/modules/Filters/scripts/setters/index.d.ts +4 -0
  252. package/types/modules/Filters/scripts/setters/localStorageSetter.d.ts +2 -0
  253. package/types/modules/Filters/scripts/setters/querySetter.d.ts +2 -0
  254. package/types/modules/Filters/scripts/setters/valueSetter.d.ts +2 -0
  255. package/types/modules/Filters/scripts/utils/changeRouteQuery.d.ts +5 -0
  256. package/types/modules/Filters/store/FiltersStoreModule.d.ts +40 -0
  257. package/types/modules/Filters/store/__tests__/FiltersStoreModule.spec.d.ts +1 -0
  258. package/types/modules/Notifications/assets/audio/triggerSound.d.ts +8 -0
  259. package/types/modules/Notifications/store/NotificationsStoreModule.d.ts +54 -0
  260. package/types/modules/Notifications/store/__tests__/NotificationsStoreModule.actions.spec.d.ts +1 -0
  261. package/types/modules/Notifications/store/__tests__/NotificationsStoreModule.mutations.spec.d.ts +1 -0
  262. package/types/modules/ObjectPermissions/_internals/enums/AccessMode.enum.d.ts +5 -0
  263. package/types/modules/ObjectPermissions/_internals/modules/filters/store/filters.store.d.ts +14 -0
  264. package/types/modules/ObjectPermissions/_internals/store/helpers/createObjectPermissionsStoreModule.d.ts +1 -0
  265. package/types/modules/ObjectPermissions/_internals/store/modules/headers.d.ts +7 -0
  266. package/types/modules/ObjectPermissions/_internals/store/modules/objectPermissionsStoreModule.d.ts +39 -0
  267. package/types/modules/ObjectPermissions/store/index.d.ts +2 -0
  268. package/types/modules/QueryFilters/api/__tests__/defaults.spec.d.ts +1 -0
  269. package/types/modules/QueryFilters/api/defaults.d.ts +10 -0
  270. package/types/modules/QueryFilters/classes/ApiFilterSchema.d.ts +11 -0
  271. package/types/modules/QueryFilters/classes/BaseFilterSchema.d.ts +8 -0
  272. package/types/modules/QueryFilters/classes/EnumFilterSchema.d.ts +9 -0
  273. package/types/modules/QueryFilters/classes/__tests__/ApiFilterSchema.spec.d.ts +1 -0
  274. package/types/modules/QueryFilters/components/__tests__/abstract-api-filter.spec.d.ts +1 -0
  275. package/types/modules/QueryFilters/components/__tests__/abstract-enum-filter.spec.d.ts +1 -0
  276. package/types/modules/QueryFilters/components/__tests__/filter-datetime.spec.d.ts +1 -0
  277. package/types/modules/QueryFilters/components/__tests__/filter-from-to.spec.d.ts +1 -0
  278. package/types/modules/QueryFilters/components/__tests__/filter-search.spec.d.ts +1 -0
  279. package/types/modules/QueryFilters/components/abstract-api-filter.vue.d.ts +62 -0
  280. package/types/modules/QueryFilters/components/abstract-enum-filter.vue.d.ts +66 -0
  281. package/types/modules/QueryFilters/components/filter-datetime.vue.d.ts +55 -0
  282. package/types/modules/QueryFilters/components/filter-from-to.vue.d.ts +64 -0
  283. package/types/modules/QueryFilters/components/filter-search.vue.d.ts +50 -0
  284. package/{dist/types → types}/modules/QueryFilters/components/filter-table-fields.vue.d.ts +35 -1
  285. package/types/modules/QueryFilters/mixins/__tests__/apiFilterMixin.spec.d.ts +1 -0
  286. package/types/modules/QueryFilters/mixins/__tests__/enumFilterMixin.spec.d.ts +1 -0
  287. package/types/modules/QueryFilters/mixins/__tests__/paginationFilterMixin.spec.d.ts +1 -0
  288. package/types/modules/QueryFilters/mixins/__tests__/sortFilterMixin.spec.d.ts +1 -0
  289. package/types/modules/QueryFilters/mixins/__tests__/urlControllerMixin.spec.d.ts +1 -0
  290. package/types/modules/QueryFilters/mixins/_urlControllerMixin/_urlControllerMixin.d.ts +17 -0
  291. package/types/modules/QueryFilters/mixins/apiFilterMixin.d.ts +49 -0
  292. package/types/modules/QueryFilters/mixins/baseFilterMixin/baseFilterMixin.d.ts +36 -0
  293. package/types/modules/QueryFilters/mixins/enumFilterMixin.d.ts +57 -0
  294. package/types/modules/QueryFilters/mixins/paginationFilterMixin.d.ts +57 -0
  295. package/types/modules/QueryFilters/mixins/sortFilterMixin.d.ts +49 -0
  296. package/types/modules/QueryFilters/store/QueryFiltersStoreModule.d.ts +27 -0
  297. package/types/modules/QueryFilters/store/__tests__/QueryFiltersStoreModule.spec.d.ts +1 -0
  298. package/types/modules/QueryFilters/store/queryFilters.d.ts +14 -0
  299. package/types/modules/TableComponentModule/composables/useTableEmpty.d.ts +14 -0
  300. package/types/modules/TableStoreModule/composables/useTableStore.d.ts +15 -0
  301. package/types/modules/TableStoreModule/store/TableStoreModule.d.ts +60 -0
  302. package/types/modules/TableStoreModule/store/__tests__/TableStoreModule.spec.d.ts +1 -0
  303. package/types/modules/Userinfo/api/userinfo.d.ts +15 -0
  304. package/types/modules/Userinfo/classes/ApplicationsAccess.d.ts +11 -0
  305. package/types/modules/Userinfo/enums/Permissions.enum.d.ts +8 -0
  306. package/types/modules/Userinfo/store/UserinfoStoreModule.d.ts +60 -0
  307. package/{dist/types → types}/modules/Userinfo/v2/api/UserinfoAPI.d.ts +1 -1
  308. package/types/modules/Userinfo/v2/index.d.ts +1 -0
  309. package/types/plugins/breakpoint/breakpoint.plugin.d.ts +1 -0
  310. package/types/plugins/primevue/primevue.plugin.d.ts +2 -0
  311. package/types/plugins/primevue/theme/components/autocomplete/autocomplete.d.ts +33 -0
  312. package/types/plugins/primevue/theme/components/button/button.d.ts +137 -0
  313. package/types/plugins/primevue/theme/components/components.d.ts +11 -0
  314. package/types/plugins/primevue/theme/components/popover/popover.d.ts +10 -0
  315. package/types/plugins/primevue/theme/components/tooltip/tooltip.d.ts +8 -0
  316. package/types/plugins/primevue/theme/extend/extend.d.ts +5 -0
  317. package/types/plugins/primevue/theme/extend/spacings/spacings.d.ts +13 -0
  318. package/types/plugins/primevue/theme/semantic/color-scheme/color-schema.d.ts +1189 -0
  319. package/types/plugins/primevue/theme/semantic/color-scheme/dark-color.d.ts +162 -0
  320. package/types/plugins/primevue/theme/semantic/color-scheme/light-color.d.ts +162 -0
  321. package/types/plugins/primevue/theme/semantic/color-scheme/palette.d.ts +435 -0
  322. package/types/plugins/primevue/theme/semantic/semantic.d.ts +5 -0
  323. package/types/plugins/primevue/theme/webitel-theme.d.ts +2 -0
  324. package/types/router/index.d.ts +2 -0
  325. package/types/scripts/__tests__/caseConverters.spec.d.ts +1 -0
  326. package/types/scripts/__tests__/convertDuration.spec.d.ts +1 -0
  327. package/types/scripts/__tests__/debounce.spec.d.ts +1 -0
  328. package/types/scripts/__tests__/editProxy.spec.d.ts +1 -0
  329. package/types/scripts/__tests__/isEmpty.spec.d.ts +1 -0
  330. package/types/scripts/__tests__/prettifyFileSize.spec.d.ts +1 -0
  331. package/types/scripts/__tests__/prettifyTime.spec.d.ts +1 -0
  332. package/types/scripts/__tests__/preventHiddenPageCallsDecorator.spec.d.ts +1 -0
  333. package/types/scripts/__tests__/sortQueryAdapters.spec.d.ts +1 -0
  334. package/types/scripts/__tests__/updateObject.spec.d.ts +1 -0
  335. package/types/scripts/caseConverters.d.ts +9 -0
  336. package/types/scripts/convertDuration.d.ts +2 -0
  337. package/types/scripts/convertDurationWithMinutes.d.ts +2 -0
  338. package/types/scripts/debounce.d.ts +2 -0
  339. package/types/scripts/editProxy.d.ts +2 -0
  340. package/types/scripts/eventBus.d.ts +6 -0
  341. package/types/scripts/index.d.ts +29 -0
  342. package/types/scripts/isEmpty.d.ts +2 -0
  343. package/types/scripts/logger.d.ts +12 -0
  344. package/types/scripts/prettifyFileSize.d.ts +2 -0
  345. package/types/scripts/prettifyTime.d.ts +2 -0
  346. package/types/scripts/preventHiddenPageCallsDecorator.d.ts +2 -0
  347. package/types/scripts/saveAsJSON.d.ts +2 -0
  348. package/types/scripts/sortQueryAdapters.d.ts +8 -0
  349. package/types/scripts/updateObject.d.ts +6 -0
  350. package/types/store/BaseStoreModules/ApiStoreModule.d.ts +4 -0
  351. package/types/store/BaseStoreModules/BaseStoreModule.d.ts +31 -0
  352. package/types/store/BaseStoreModules/__tests__/BaseStoreModule.spec.d.ts +1 -0
  353. package/types/store/ReactiveNowStoreModule/ReactiveNowStoreModule.d.ts +13 -0
  354. package/types/store/helpers/__tests__/getNamespacedState.spec.d.ts +1 -0
  355. package/types/store/helpers/getNamespacedState.d.ts +2 -0
  356. package/types/store/new/helpers/createApiStoreModule.d.ts +1 -0
  357. package/types/store/new/helpers/createBaseStoreModule.d.ts +1 -0
  358. package/types/store/new/helpers/createCardStoreModule.d.ts +1 -0
  359. package/types/store/new/helpers/createStoreModule.d.ts +1 -0
  360. package/types/store/new/helpers/createTableStoreModule.d.ts +1 -0
  361. package/types/store/new/index.d.ts +7 -0
  362. package/types/store/new/modules/apiStoreModule/apiStoreModule.d.ts +45 -0
  363. package/types/store/new/modules/baseStoreModule/baseStoreModule.d.ts +13 -0
  364. package/types/store/new/modules/cardStoreModule/cardStoreModule.d.ts +31 -0
  365. package/types/store/new/modules/cardStoreModule/useCardStore.d.ts +12 -0
  366. package/types/store/new/modules/tableStoreModule/__tests__/tableStoreModule.spec.d.ts +1 -0
  367. package/types/store/new/modules/tableStoreModule/tableStoreModule.d.ts +62 -0
  368. package/types/store/new/modules/tableStoreModule/useTableStore.d.ts +15 -0
  369. package/types/tests/mocks/axiosMock.d.ts +2 -0
  370. package/types/tests/mocks/contextMock.d.ts +9 -0
  371. package/types/validations/config/errors/customZodErrorsHandler.d.ts +3 -0
  372. package/types/validations/config/index.d.ts +6 -0
  373. package/types/validations/index.d.ts +1 -0
  374. package/types/validations/vuelidate/validators/decimalValidator.d.ts +2 -0
  375. package/types/validations/vuelidate/validators/domainValidator.d.ts +2 -0
  376. package/types/validations/vuelidate/validators/variableSearchValidator/__tests__/variableSearchValidator.spec.d.ts +1 -0
  377. package/types/validations/vuelidate/validators/variableSearchValidator/variableSearchValidator.d.ts +1 -0
  378. package/types/validations/vuelidate/validators/websocketValidator/__tests__/websocketValidator.spec.d.ts +1 -0
  379. package/types/validations/vuelidate/validators/websocketValidator/websocketValidator.d.ts +2 -0
  380. package/dist/types/components/wt-action-bar/wt-action-bar.vue.d.ts +0 -26
  381. package/dist/types/components/wt-select/wt-select.vue.d.ts +0 -89
  382. package/dist/types/components/wt-tags-input/wt-tags-input.vue.d.ts +0 -54
  383. package/dist/types/modules/QueryFilters/components/abstract-api-filter.vue.d.ts +0 -15
  384. package/dist/types/modules/QueryFilters/components/abstract-enum-filter.vue.d.ts +0 -12
  385. package/dist/types/modules/QueryFilters/components/filter-datetime.vue.d.ts +0 -21
  386. package/dist/types/modules/QueryFilters/components/filter-from-to.vue.d.ts +0 -30
  387. package/dist/types/modules/QueryFilters/components/filter-search.vue.d.ts +0 -16
  388. package/src/{validators → validations/vuelidate/validators}/decimalValidator.js +0 -0
  389. package/src/{validators → validations/vuelidate/validators}/domainValidator.js +0 -0
  390. package/src/{validators → validations/vuelidate/validators}/variableSearchValidator/__tests__/variableSearchValidator.spec.js +0 -0
  391. package/src/{validators → validations/vuelidate/validators}/variableSearchValidator/variableSearchValidator.js +0 -0
  392. package/src/{validators → validations/vuelidate/validators}/websocketValidator/__tests__/websocketValidator.spec.js +0 -0
  393. package/src/{validators → validations/vuelidate/validators}/websocketValidator/websocketValidator.js +0 -0
  394. package/{dist/types → types}/api/clients/caseSources/caseSources.d.ts +0 -0
  395. package/{dist/types → types}/api/clients/quickReplies/quickReplies.d.ts +0 -0
  396. package/{dist/types/modules/Userinfo/v2/index.d.ts → types/api/clients/users/__tests__/users.spec.d.ts} +0 -0
  397. package/{dist/types → types}/api/clients/wtTypes/_shared/utils/sortDynamicFields.d.ts +0 -0
  398. package/{dist/types → types}/api/clients/wtTypes/sysTypes/sysTypes.d.ts +0 -0
  399. package/{dist/types → types}/api/clients/wtTypes/typeExtensions/typeExtensions.d.ts +0 -0
  400. package/{dist/types → types}/api/transformers/skipIf/skipIf.d.ts +0 -0
  401. package/{dist/types → types}/components/on-demand/wt-cc-agent-status-timers/wt-cc-agent-status-timers.vue.d.ts +0 -0
  402. package/{dist/types → types}/components/on-demand/wt-navigation-menu/components/_internals/nav-menu-lvl-1.vue.d.ts +4 -4
  403. package/{dist/types → types}/components/on-demand/wt-navigation-menu/components/_internals/nav-menu-lvl-2.vue.d.ts +0 -0
  404. package/{dist/types → types}/components/on-demand/wt-navigation-menu/components/wt-navigation-menu.vue.d.ts +2 -2
  405. package/{dist/types → types}/components/on-demand/wt-route-transition/wt-route-transition.vue.d.ts +0 -0
  406. package/{dist/types → types}/components/on-demand/wt-start-page/components/start-page-card.vue.d.ts +0 -0
  407. package/{dist/types → types}/components/on-demand/wt-start-page/components/start-page-logo.vue.d.ts +0 -0
  408. package/{dist/types → types}/components/on-demand/wt-start-page/components/wt-start-page.vue.d.ts +0 -0
  409. package/{dist/types → types}/components/on-demand/wt-table-transition/wt-table-transition.vue.d.ts +0 -0
  410. package/{dist/types → types}/components/on-demand/wt-type-extension-value-input/wt-type-extension-value-input.vue.d.ts +0 -0
  411. package/{dist/types → types}/components/transitions/cases/wt-replace-transition.vue.d.ts +2 -2
  412. package/{dist/types → types}/components/transitions/wt-expand-transition.vue.d.ts +0 -0
  413. package/{dist/types → types}/components/transitions/wt-transition.vue.d.ts +2 -2
  414. package/{dist/types → types}/components/wt-app-header/wt-app-header.vue.d.ts +0 -0
  415. package/{dist/types → types}/components/wt-app-header/wt-app-navigator.vue.d.ts +0 -0
  416. package/{dist/types → types}/components/wt-app-header/wt-header-actions.vue.d.ts +0 -0
  417. package/{dist/types → types}/components/wt-badge/wt-badge.vue.d.ts +1 -1
  418. package/{dist/types → types}/components/wt-button/wt-button.vue.d.ts +1 -1
  419. package/{dist/types → types}/components/wt-button-select/wt-button-select.vue.d.ts +4 -4
  420. package/{dist/types → types}/components/wt-chip/wt-chip.vue.d.ts +0 -0
  421. package/{dist/types → types}/components/wt-confirm-dialog/wt-confirm-dialog.vue.d.ts +2 -2
  422. package/{dist/types → types}/components/wt-context-menu/wt-context-menu.vue.d.ts +4 -4
  423. package/{dist/types → types}/components/wt-copy-action/wt-copy-action.vue.d.ts +0 -0
  424. package/{dist/types → types}/components/wt-datepicker/wt-datepicker.vue.d.ts +8 -8
  425. package/{dist/types → types}/components/wt-divider/wt-divider.vue.d.ts +0 -0
  426. package/{dist/types → types}/components/wt-dual-panel/wt-dual-panel.vue.d.ts +0 -0
  427. package/{dist/types → types}/components/wt-dummy/wt-dummy.vue.d.ts +0 -0
  428. package/{dist/types → types}/components/wt-error-page/wt-error-page.vue.d.ts +0 -0
  429. package/{dist/types → types}/components/wt-expansion-panel/wt-expansion-panel.vue.d.ts +0 -0
  430. package/{dist/types → types}/components/wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue.d.ts +0 -0
  431. package/{dist/types → types}/components/wt-headline/wt-headline.vue.d.ts +0 -0
  432. package/{dist/types → types}/components/wt-headline-nav/wt-headline-nav.vue.d.ts +0 -0
  433. package/{dist/types → types}/components/wt-hint/wt-hint.vue.d.ts +0 -0
  434. package/{dist/types → types}/components/wt-icon/wt-icon.vue.d.ts +4 -4
  435. package/{dist/types → types}/components/wt-icon-action/wt-icon-action.vue.d.ts +0 -0
  436. package/{dist/types → types}/components/wt-icon-btn/wt-icon-btn.vue.d.ts +0 -0
  437. package/{dist/types → types}/components/wt-image/wt-image.vue.d.ts +2 -2
  438. package/{dist/types → types}/components/wt-indicator/wt-indicator.vue.d.ts +1 -1
  439. package/{dist/types → types}/components/wt-input/wt-input.vue.d.ts +2 -2
  440. package/{dist/types → types}/components/wt-input-info/wt-input-info.vue.d.ts +0 -0
  441. package/{dist/types → types}/components/wt-intersection-observer/wt-intersection-observer.vue.d.ts +0 -0
  442. package/{dist/types → types}/components/wt-item-link/wt-item-link.vue.d.ts +4 -4
  443. package/{dist/types → types}/components/wt-label/wt-label.vue.d.ts +0 -0
  444. package/{dist/types → types}/components/wt-load-bar/wt-load-bar.vue.d.ts +0 -0
  445. package/{dist/types → types}/components/wt-loader/_internals/wt-loader--md.vue.d.ts +0 -0
  446. package/{dist/types → types}/components/wt-loader/_internals/wt-loader--sm.vue.d.ts +0 -0
  447. package/{dist/types → types}/components/wt-loader/wt-loader.vue.d.ts +1 -1
  448. package/{dist/types → types}/components/wt-logo/wt-logo.vue.d.ts +0 -0
  449. package/{dist/types → types}/components/wt-navigation-bar/wt-navigation-bar.vue.d.ts +0 -0
  450. package/{dist/types → types}/components/wt-page-header/wt-page-header.vue.d.ts +0 -0
  451. package/{dist/types → types}/components/wt-page-wrapper/wt-page-wrapper.vue.d.ts +0 -0
  452. package/{dist/types → types}/components/wt-player/wt-player.vue.d.ts +2 -2
  453. package/{dist/types → types}/components/wt-popover/wt-popover.vue.d.ts +0 -0
  454. package/{dist/types → types}/components/wt-popup/wt-popup.vue.d.ts +1 -1
  455. package/{dist/types → types}/components/wt-progress-bar/wt-progress-bar.vue.d.ts +1 -1
  456. package/{dist/types → types}/components/wt-radio/wt-radio.vue.d.ts +2 -2
  457. package/{dist/types → types}/components/wt-rounded-action/wt-rounded-action.vue.d.ts +4 -4
  458. package/{dist/types → types}/components/wt-slider/wt-slider.vue.d.ts +2 -2
  459. package/{dist/types → types}/components/wt-stepper/wt-stepper.vue.d.ts +0 -0
  460. package/{dist/types → types}/components/wt-switcher/wt-switcher.vue.d.ts +0 -0
  461. package/{dist/types → types}/components/wt-table/wt-table.vue.d.ts +1 -1
  462. package/{dist/types → types}/components/wt-table-actions/wt-table-actions.vue.d.ts +0 -0
  463. package/{dist/types → types}/components/wt-table-column-select/wt-table-column-select.vue.d.ts +0 -0
  464. package/{dist/types → types}/components/wt-tabs/wt-tabs.vue.d.ts +0 -0
  465. package/{dist/types → types}/components/wt-tooltip/_internals/wt-tooltip-floating.vue.d.ts +0 -0
  466. package/{dist/types → types}/components/wt-tooltip/wt-tooltip.vue.d.ts +0 -0
  467. package/{dist/types → types}/components/wt-tree/types/WtTreeMode.d.ts +0 -0
  468. package/{dist/types → types}/components/wt-tree/wt-tree.vue.d.ts +0 -0
  469. package/{dist/types → types}/components/wt-tree-line/types/wt-tree-nested-icons.d.ts +0 -0
  470. package/{dist/types → types}/components/wt-tree-line/wt-tree-line.vue.d.ts +0 -0
  471. package/{dist/types → types}/components/wt-tree-table/wt-tree-table.vue.d.ts +0 -0
  472. package/{dist/types → types}/components/wt-tree-table-row/wt-tree-table-row.vue.d.ts +0 -0
  473. package/{dist/types → types}/composables/useAccessControl/v2/createUserAccessControl.d.ts +0 -0
  474. package/{dist/types → types}/composables/useWtTable/useWtTable.d.ts +0 -0
  475. package/{dist/types → types}/enums/ButtonColor/ButtonColor.d.ts +0 -0
  476. package/{dist/types → types}/enums/ComponentSize/ComponentSize.d.ts +0 -0
  477. package/{dist/types → types}/enums/CrudAction/CrudAction.d.ts +0 -0
  478. package/{dist/types → types}/enums/RelativeDatetimeValue/RelativeDatetimeValue.d.ts +0 -0
  479. package/{dist/types → types}/enums/WebitelApplications/AdminSections.d.ts +0 -0
  480. package/{dist/types → types}/enums/WebitelApplications/AuditorSections.d.ts +0 -0
  481. package/{dist/types → types}/enums/WebitelApplications/CrmSections.d.ts +0 -0
  482. package/{dist/types → types}/enums/WebitelApplications/SupervisorSections.d.ts +0 -0
  483. package/{dist/types → types}/enums/WebitelApplications/WtApplication.d.ts +0 -0
  484. package/{dist/types → types}/enums/WtObject/WtObject.d.ts +0 -0
  485. package/{dist/types → types}/enums/WtTypeExtensionFieldKind/WtTypeExtensionFieldKind.d.ts +0 -0
  486. package/{dist/types → types}/enums/index.d.ts +0 -0
  487. package/{dist/types → types}/mixins/validationMixin/regle/useRegleValidation.d.ts +0 -0
  488. package/{dist/types → types}/mixins/validationMixin/useValidation.d.ts +0 -0
  489. package/{dist/types → types}/mixins/validationMixin/vuelidate/useVuelidateValidation.d.ts +0 -0
  490. package/{dist/types → types}/modules/AgentStatusSelect/components/_internals/wt-cc-status-select-error-popup.vue.d.ts +0 -0
  491. package/{dist/types → types}/modules/Appearance/components/wt-dark-mode-switcher.vue.d.ts +0 -0
  492. package/{dist/types → types}/modules/AuditForm/components/audit-form-question-read-wrapper.vue.d.ts +0 -0
  493. package/{dist/types → types}/modules/AuditForm/components/audit-form-question-write-wrapper.vue.d.ts +0 -0
  494. package/{dist/types → types}/modules/AuditForm/components/audit-form-question.vue.d.ts +0 -0
  495. package/{dist/types → types}/modules/AuditForm/components/audit-form.vue.d.ts +0 -0
  496. package/{dist/types → types}/modules/AuditForm/components/form/form-footer/audit-form-footer.vue.d.ts +0 -0
  497. package/{dist/types → types}/modules/AuditForm/components/form-answers/answer-editing-info/audit-form-answer-editing-info.vue.d.ts +0 -0
  498. package/{dist/types → types}/modules/AuditForm/components/form-questions/options/audit-form-question-options-write-row.vue.d.ts +0 -0
  499. package/{dist/types → types}/modules/AuditForm/components/form-questions/options/audit-form-question-options.vue.d.ts +0 -0
  500. package/{dist/types → types}/modules/AuditForm/components/form-questions/score/audit-form-question-score.vue.d.ts +0 -0
  501. package/{dist/types → types}/modules/DeleteConfirmationPopup/components/delete-confirmation-popup.vue.d.ts +0 -0
  502. package/{dist/types → types}/modules/Filters/components/filter-datetime.vue.d.ts +0 -0
  503. package/{dist/types → types}/modules/Filters/components/filter-pagination.vue.d.ts +2 -2
  504. /package/{dist/types → types}/modules/Filters/components/filter-search.vue.d.ts +0 -0
  505. /package/{dist/types → types}/modules/Filters/components/filter-select.vue.d.ts +0 -0
  506. /package/{dist/types → types}/modules/Filters/components/filter-table-fields.vue.d.ts +0 -0
  507. /package/{dist/types → types}/modules/ObjectPermissions/_internals/components/permissions-role-row.vue.d.ts +0 -0
  508. /package/{dist/types → types}/modules/ObjectPermissions/_internals/components/permissions-role-select.vue.d.ts +0 -0
  509. /package/{dist/types → types}/modules/ObjectPermissions/_internals/components/permissions-tab-role-popup.vue.d.ts +0 -0
  510. /package/{dist/types → types}/modules/ObjectPermissions/components/permissions-tab.vue.d.ts +0 -0
  511. /package/{dist/types → types}/modules/Userinfo/v2/enums/GlobalActions/GlobalActions.d.ts +0 -0
  512. /package/{dist/types → types}/modules/Userinfo/v2/enums/ScopeClass/ScopeClass.d.ts +0 -0
  513. /package/{dist/types → types}/modules/Userinfo/v2/enums/index.d.ts +0 -0
  514. /package/{dist/types → types}/modules/Userinfo/v2/mappings/mappings.d.ts +0 -0
  515. /package/{dist/types → types}/modules/Userinfo/v2/scripts/utils.d.ts +0 -0
  516. /package/{dist/types → types}/modules/Userinfo/v2/stores/accessStore.d.ts +0 -0
  517. /package/{dist/types → types}/modules/Userinfo/v2/stores/userinfoStore.d.ts +0 -0
  518. /package/{dist/types → types}/playground.vue.d.ts +0 -0
  519. /package/{dist/types → types}/scripts/compareSize.d.ts +0 -0
  520. /package/{dist/types → types}/scripts/normalizeDatetime.d.ts +0 -0
  521. /package/{dist/types → types}/the-app.vue.d.ts +0 -0
@@ -0,0 +1,2986 @@
1
+ declare const _default: import("vue-i18n").I18n<{
2
+ en: {
3
+ reusable: {
4
+ comment: string;
5
+ replace: string;
6
+ download: string;
7
+ history: string;
8
+ filter: ({ plural }: {
9
+ plural: any;
10
+ }) => any;
11
+ total: string;
12
+ ok: string;
13
+ object: string;
14
+ save: string;
15
+ saveAs: string;
16
+ saved: string;
17
+ send: string;
18
+ start: string;
19
+ close: string;
20
+ add: string;
21
+ cancel: string;
22
+ import: string;
23
+ export: string;
24
+ true: string;
25
+ title: string;
26
+ position: string;
27
+ delete: string;
28
+ search: string;
29
+ open: string;
30
+ name: string;
31
+ expand: string;
32
+ collapse: string;
33
+ generate: string;
34
+ lang: {
35
+ en: string;
36
+ es: string;
37
+ ru: string;
38
+ ua: string;
39
+ kz: string;
40
+ };
41
+ from: string;
42
+ to: string;
43
+ tts: string;
44
+ state: string;
45
+ refresh: string;
46
+ retry: string;
47
+ downloadAll: string;
48
+ warning: string;
49
+ doNotSave: string;
50
+ required: string;
51
+ copy: string;
52
+ new: string;
53
+ createdAt: string;
54
+ createdBy: string;
55
+ modifiedAt: string;
56
+ modifiedBy: string;
57
+ general: string;
58
+ generalInfo: string;
59
+ all: string;
60
+ upload: string;
61
+ edit: string;
62
+ back: string;
63
+ step: string;
64
+ more: string;
65
+ read: string;
66
+ create: string;
67
+ update: string;
68
+ draggable: string;
69
+ unassigned: string;
70
+ showUnassigned: string;
71
+ group: string;
72
+ updatedBy: () => string;
73
+ };
74
+ vocabulary: {
75
+ apply: string;
76
+ language: string;
77
+ voice: string;
78
+ format: string;
79
+ text: string;
80
+ yes: string;
81
+ no: string;
82
+ description: string;
83
+ login: string;
84
+ host: string;
85
+ time: string;
86
+ channel: string;
87
+ file: string;
88
+ logout: string;
89
+ priority: string;
90
+ color: string;
91
+ variables: string;
92
+ type: string;
93
+ tag: string;
94
+ output: string;
95
+ values: string;
96
+ keys: string;
97
+ duration: string;
98
+ reset: string;
99
+ errors: string;
100
+ labels: string;
101
+ permissions: string;
102
+ options: string;
103
+ emails: string;
104
+ phones: string;
105
+ messaging: string;
106
+ emptyResultSearch: string;
107
+ contact: string;
108
+ column: string;
109
+ notification: string;
110
+ };
111
+ date: {
112
+ sec: string;
113
+ timezone: string;
114
+ };
115
+ access: {
116
+ ObAC: string;
117
+ RbAC: string;
118
+ operations: string;
119
+ rbacDefault: string;
120
+ accessMode: {
121
+ 1: string;
122
+ 2: string;
123
+ 3: string;
124
+ };
125
+ };
126
+ objects: {
127
+ team: string;
128
+ supervisor: string;
129
+ auditor: string;
130
+ region: string;
131
+ communicationType: string;
132
+ grantee: string;
133
+ grantor: string;
134
+ role: string;
135
+ user: string;
136
+ list: string;
137
+ contact: string;
138
+ case: string;
139
+ calendar: string;
140
+ direction: string;
141
+ gateway: string;
142
+ hangupCause: string;
143
+ hasOption: string;
144
+ hasRecording: string;
145
+ amdResult: string;
146
+ ratedBy: string;
147
+ talkDuration: string;
148
+ totalDuration: string;
149
+ transcription: string;
150
+ attachment: string;
151
+ owner: string;
152
+ queue: {
153
+ queue: string;
154
+ type: {
155
+ 1: string;
156
+ 0: string;
157
+ 2: string;
158
+ 5: string;
159
+ 4: string;
160
+ 3: string;
161
+ 6: string;
162
+ 7: string;
163
+ 8: string;
164
+ };
165
+ };
166
+ agent: {
167
+ agent: string;
168
+ status: {
169
+ [x: number]: string;
170
+ online: string;
171
+ pause: string;
172
+ offline: string;
173
+ };
174
+ };
175
+ flow: {
176
+ name: string;
177
+ type: {
178
+ chat: string;
179
+ voice: string;
180
+ service: string;
181
+ processing: string;
182
+ };
183
+ };
184
+ messengers: {
185
+ telegram: string;
186
+ gotd: string;
187
+ messenger: string;
188
+ viber: string;
189
+ webchat: string;
190
+ infobip_whatsapp: string;
191
+ custom: string;
192
+ };
193
+ };
194
+ channel: {
195
+ state: {
196
+ [x: number]: string;
197
+ waiting: string;
198
+ distribute: string;
199
+ offering: string;
200
+ answered: string;
201
+ active: string;
202
+ bridged: string;
203
+ hold: string;
204
+ missed: string;
205
+ processing: string;
206
+ transfer: string;
207
+ };
208
+ type: {
209
+ call: string;
210
+ email: string;
211
+ chat: string;
212
+ task: string;
213
+ };
214
+ };
215
+ calls: {
216
+ direction: {
217
+ inbound: string;
218
+ outbound: string;
219
+ };
220
+ };
221
+ cases: {
222
+ status: string;
223
+ source: string;
224
+ author: string;
225
+ reporter: string;
226
+ impacted: string;
227
+ assignee: string;
228
+ groupPerformers: string;
229
+ reason: string;
230
+ rating: string;
231
+ service: string;
232
+ selectAService: string;
233
+ appliedSLA: string;
234
+ appliedCondition: string;
235
+ reactionTime: string;
236
+ resolutionTime: string;
237
+ actualReactionTime: string;
238
+ actualResolutionTime: string;
239
+ };
240
+ WebitelApplications: {
241
+ [x: number]: {
242
+ name: string;
243
+ sections?: undefined;
244
+ } | {
245
+ name: string;
246
+ sections: {
247
+ scorecards: string;
248
+ contacts?: undefined;
249
+ cases?: undefined;
250
+ priorities?: undefined;
251
+ "close-reason-groups"?: undefined;
252
+ statuses?: undefined;
253
+ slas?: undefined;
254
+ "service-catalogs"?: undefined;
255
+ sources?: undefined;
256
+ "contact-groups"?: undefined;
257
+ queues?: undefined;
258
+ agents?: undefined;
259
+ activeCalls?: undefined;
260
+ users?: undefined;
261
+ license?: undefined;
262
+ devices?: undefined;
263
+ flow?: undefined;
264
+ dialplan?: undefined;
265
+ gateways?: undefined;
266
+ chatplan?: undefined;
267
+ "chat-gateways"?: undefined;
268
+ skills?: undefined;
269
+ buckets?: undefined;
270
+ media?: undefined;
271
+ "shift-templates"?: undefined;
272
+ "pause-templates"?: undefined;
273
+ "working-conditions"?: undefined;
274
+ blacklist?: undefined;
275
+ calendars?: undefined;
276
+ regions?: undefined;
277
+ communications?: undefined;
278
+ "pause-cause"?: undefined;
279
+ teams?: undefined;
280
+ resources?: undefined;
281
+ "resource-groups"?: undefined;
282
+ storage?: undefined;
283
+ "storage-policies"?: undefined;
284
+ "cognitive-profiles"?: undefined;
285
+ "email-profiles"?: undefined;
286
+ "single-sign-on"?: undefined;
287
+ "import-csv"?: undefined;
288
+ triggers?: undefined;
289
+ roles?: undefined;
290
+ objects?: undefined;
291
+ changelogs?: undefined;
292
+ configuration?: undefined;
293
+ "global-variables"?: undefined;
294
+ "quick-replies"?: undefined;
295
+ };
296
+ } | {
297
+ name: string;
298
+ sections: {
299
+ contacts: string;
300
+ cases: string;
301
+ priorities: string;
302
+ "close-reason-groups": string;
303
+ statuses: string;
304
+ slas: string;
305
+ "service-catalogs": string;
306
+ sources: string;
307
+ "contact-groups": string;
308
+ scorecards?: undefined;
309
+ queues?: undefined;
310
+ agents?: undefined;
311
+ activeCalls?: undefined;
312
+ users?: undefined;
313
+ license?: undefined;
314
+ devices?: undefined;
315
+ flow?: undefined;
316
+ dialplan?: undefined;
317
+ gateways?: undefined;
318
+ chatplan?: undefined;
319
+ "chat-gateways"?: undefined;
320
+ skills?: undefined;
321
+ buckets?: undefined;
322
+ media?: undefined;
323
+ "shift-templates"?: undefined;
324
+ "pause-templates"?: undefined;
325
+ "working-conditions"?: undefined;
326
+ blacklist?: undefined;
327
+ calendars?: undefined;
328
+ regions?: undefined;
329
+ communications?: undefined;
330
+ "pause-cause"?: undefined;
331
+ teams?: undefined;
332
+ resources?: undefined;
333
+ "resource-groups"?: undefined;
334
+ storage?: undefined;
335
+ "storage-policies"?: undefined;
336
+ "cognitive-profiles"?: undefined;
337
+ "email-profiles"?: undefined;
338
+ "single-sign-on"?: undefined;
339
+ "import-csv"?: undefined;
340
+ triggers?: undefined;
341
+ roles?: undefined;
342
+ objects?: undefined;
343
+ changelogs?: undefined;
344
+ configuration?: undefined;
345
+ "global-variables"?: undefined;
346
+ "quick-replies"?: undefined;
347
+ };
348
+ } | {
349
+ name: string;
350
+ sections: {
351
+ queues: string;
352
+ agents: string;
353
+ activeCalls: string;
354
+ scorecards?: undefined;
355
+ contacts?: undefined;
356
+ cases?: undefined;
357
+ priorities?: undefined;
358
+ "close-reason-groups"?: undefined;
359
+ statuses?: undefined;
360
+ slas?: undefined;
361
+ "service-catalogs"?: undefined;
362
+ sources?: undefined;
363
+ "contact-groups"?: undefined;
364
+ users?: undefined;
365
+ license?: undefined;
366
+ devices?: undefined;
367
+ flow?: undefined;
368
+ dialplan?: undefined;
369
+ gateways?: undefined;
370
+ chatplan?: undefined;
371
+ "chat-gateways"?: undefined;
372
+ skills?: undefined;
373
+ buckets?: undefined;
374
+ media?: undefined;
375
+ "shift-templates"?: undefined;
376
+ "pause-templates"?: undefined;
377
+ "working-conditions"?: undefined;
378
+ blacklist?: undefined;
379
+ calendars?: undefined;
380
+ regions?: undefined;
381
+ communications?: undefined;
382
+ "pause-cause"?: undefined;
383
+ teams?: undefined;
384
+ resources?: undefined;
385
+ "resource-groups"?: undefined;
386
+ storage?: undefined;
387
+ "storage-policies"?: undefined;
388
+ "cognitive-profiles"?: undefined;
389
+ "email-profiles"?: undefined;
390
+ "single-sign-on"?: undefined;
391
+ "import-csv"?: undefined;
392
+ triggers?: undefined;
393
+ roles?: undefined;
394
+ objects?: undefined;
395
+ changelogs?: undefined;
396
+ configuration?: undefined;
397
+ "global-variables"?: undefined;
398
+ "quick-replies"?: undefined;
399
+ };
400
+ } | {
401
+ name: string;
402
+ sections: {
403
+ users: string;
404
+ license: string;
405
+ devices: string;
406
+ flow: string;
407
+ dialplan: string;
408
+ gateways: string;
409
+ chatplan: string;
410
+ "chat-gateways": string;
411
+ skills: string;
412
+ buckets: string;
413
+ media: string;
414
+ "shift-templates": string;
415
+ "pause-templates": string;
416
+ "working-conditions": string;
417
+ blacklist: string;
418
+ calendars: string;
419
+ regions: string;
420
+ communications: string;
421
+ "pause-cause": string;
422
+ agents: string;
423
+ teams: string;
424
+ resources: string;
425
+ "resource-groups": string;
426
+ queues: string;
427
+ storage: string;
428
+ "storage-policies": string;
429
+ "cognitive-profiles": string;
430
+ "email-profiles": string;
431
+ "single-sign-on": string;
432
+ "import-csv": string;
433
+ triggers: string;
434
+ roles: string;
435
+ objects: string;
436
+ changelogs: string;
437
+ configuration: string;
438
+ "global-variables": string;
439
+ "quick-replies": string;
440
+ scorecards?: undefined;
441
+ contacts?: undefined;
442
+ cases?: undefined;
443
+ priorities?: undefined;
444
+ "close-reason-groups"?: undefined;
445
+ statuses?: undefined;
446
+ slas?: undefined;
447
+ "service-catalogs"?: undefined;
448
+ sources?: undefined;
449
+ "contact-groups"?: undefined;
450
+ activeCalls?: undefined;
451
+ };
452
+ };
453
+ };
454
+ validation: {
455
+ required: string;
456
+ numeric: string;
457
+ email: string;
458
+ gatewayHostValidator: string;
459
+ sipAccountValidator: string;
460
+ ipValidator: string;
461
+ macValidator: string;
462
+ minValue: string;
463
+ maxValue: string;
464
+ maxLength: string;
465
+ sameAs: string;
466
+ requiredArrayValue: string;
467
+ minLength: ({ named }: {
468
+ named: any;
469
+ }) => string;
470
+ url: string;
471
+ websocketValidator: string;
472
+ isRegExpMatched: string;
473
+ regExpValidator: string;
474
+ domainValidator: string;
475
+ decimalValidator: string;
476
+ latinWithNumber: string;
477
+ integer: string;
478
+ nameAlreadyInUse: string;
479
+ };
480
+ webitelUI: {
481
+ searchBar: {
482
+ placeholder: string;
483
+ settingsHint: string;
484
+ variableSearchHint: string;
485
+ };
486
+ timepicker: {
487
+ day: string;
488
+ hour: string;
489
+ min: string;
490
+ sec: string;
491
+ };
492
+ datetimepicker: {
493
+ lastHour: string;
494
+ lastDay: string;
495
+ };
496
+ pagination: {
497
+ sizeText: string;
498
+ prev: string;
499
+ next: string;
500
+ };
501
+ appNavigator: {
502
+ title: string;
503
+ admin: string;
504
+ agent: string;
505
+ supervisor: string;
506
+ audit: string;
507
+ history: string;
508
+ grafana: string;
509
+ crm: string;
510
+ };
511
+ headerActions: {
512
+ account: string;
513
+ docs: string;
514
+ settings: string;
515
+ logout: string;
516
+ buildVersion: string;
517
+ };
518
+ tableActions: {
519
+ filterReset: string;
520
+ columnSelect: string;
521
+ refreshTable: string;
522
+ expandFilters: string;
523
+ };
524
+ tableColumnSelect: {
525
+ title: string;
526
+ };
527
+ statusSelect: {
528
+ online: string;
529
+ pause: string;
530
+ offline: string;
531
+ breakOut: string;
532
+ };
533
+ iconAction: {
534
+ hints: {
535
+ delete: ({ linked }: {
536
+ linked: any;
537
+ }) => any;
538
+ edit: ({ linked }: {
539
+ linked: any;
540
+ }) => any;
541
+ add: ({ linked }: {
542
+ linked: any;
543
+ }) => any;
544
+ history: ({ linked }: {
545
+ linked: any;
546
+ }) => any;
547
+ download: ({ linked }: {
548
+ linked: any;
549
+ }) => any;
550
+ filters: ({ linked }: {
551
+ linked: any;
552
+ }) => any;
553
+ columns: string;
554
+ variables: string;
555
+ refresh: ({ linked }: {
556
+ linked: any;
557
+ }) => any;
558
+ expand: ({ linked }: {
559
+ linked: any;
560
+ }) => any;
561
+ collapse: ({ linked }: {
562
+ linked: any;
563
+ }) => any;
564
+ close: ({ linked }: {
565
+ linked: any;
566
+ }) => any;
567
+ clear: ({ linked }: {
568
+ linked: any;
569
+ }) => any;
570
+ "add-filter": ({ linked }: {
571
+ linked: any;
572
+ }) => any;
573
+ save: ({ linked }: {
574
+ linked: any;
575
+ }) => any;
576
+ cancel: ({ linked }: {
577
+ linked: any;
578
+ }) => any;
579
+ "save-preset": ({ linked }: {
580
+ linked: any;
581
+ }) => string;
582
+ "apply-preset": ({ linked }: {
583
+ linked: any;
584
+ }) => string;
585
+ "add-contact": ({ linked }: {
586
+ linked: any;
587
+ }) => string;
588
+ };
589
+ };
590
+ errorPages: {
591
+ goBack: string;
592
+ page403: {
593
+ title: string;
594
+ text: string;
595
+ };
596
+ page404: {
597
+ title: string;
598
+ text: string;
599
+ };
600
+ };
601
+ copyAction: {
602
+ copy: string;
603
+ copied: string;
604
+ };
605
+ auditForm: {
606
+ question: string;
607
+ option: string;
608
+ score: string;
609
+ addQuestion: string;
610
+ answerType: string;
611
+ type: {
612
+ options: string;
613
+ score: string;
614
+ };
615
+ clearSelection: string;
616
+ };
617
+ deleteConfirmationPopup: {
618
+ title: string;
619
+ askingAlert: string;
620
+ tableAskingAlert: string;
621
+ deleteAll: string;
622
+ };
623
+ dummy: {
624
+ text: string;
625
+ };
626
+ empty: {
627
+ text: {
628
+ empty: string;
629
+ filters: string;
630
+ };
631
+ };
632
+ agentStatusSelect: {
633
+ pauseCausePopup: {
634
+ title: string;
635
+ min: string;
636
+ unlimited: string;
637
+ };
638
+ statusSelectErrorPopup: {
639
+ title: string;
640
+ message: string;
641
+ };
642
+ };
643
+ saveFailedPopup: {
644
+ title: string;
645
+ label: string;
646
+ exportToJson: string;
647
+ };
648
+ filters: {
649
+ datetime: {
650
+ rdt_today: string;
651
+ rdt_this_week: string;
652
+ rdt_this_month: string;
653
+ rdt_custom: string;
654
+ };
655
+ addFilter: ({ linked }: {
656
+ linked: any;
657
+ }) => string;
658
+ filterName: ({ linked }: {
659
+ linked: any;
660
+ }) => any;
661
+ filterValue: ({ linked }: {
662
+ linked: any;
663
+ }) => any;
664
+ filterValueFrom: ({ linked }: {
665
+ linked: any;
666
+ }) => string;
667
+ filterLabel: ({ linked }: {
668
+ linked: any;
669
+ }) => any;
670
+ actualReactionTime: ({ linked }: {
671
+ linked: any;
672
+ }) => any;
673
+ actualResolutionTime: ({ linked }: {
674
+ linked: any;
675
+ }) => any;
676
+ agent: ({ linked }: {
677
+ linked: any;
678
+ }) => any;
679
+ amdResult: ({ linked }: {
680
+ linked: any;
681
+ }) => any;
682
+ assignee: ({ linked }: {
683
+ linked: any;
684
+ }) => any;
685
+ author: ({ linked }: {
686
+ linked: any;
687
+ }) => any;
688
+ cause: ({ linked }: {
689
+ linked: any;
690
+ }) => any;
691
+ closeReasonGroups: ({ linked }: {
692
+ linked: any;
693
+ }) => any;
694
+ contact: ({ linked }: {
695
+ linked: any;
696
+ }) => any;
697
+ contactGroup: ({ linked }: {
698
+ linked: any;
699
+ }) => any;
700
+ createdAt: ({ linked }: {
701
+ linked: any;
702
+ }) => any;
703
+ createdAtFrom: ({ linked }: {
704
+ linked: any;
705
+ }) => any;
706
+ createdAtTo: ({ linked }: {
707
+ linked: any;
708
+ }) => any;
709
+ direction: ({ linked }: {
710
+ linked: any;
711
+ }) => any;
712
+ gateway: ({ linked }: {
713
+ linked: any;
714
+ }) => any;
715
+ grantee: ({ linked }: {
716
+ linked: any;
717
+ }) => any;
718
+ hasAttachment: ({ linked }: {
719
+ linked: any;
720
+ }) => any;
721
+ hasFile: ({ linked }: {
722
+ linked: any;
723
+ }) => any;
724
+ hasTranscription: ({ linked }: {
725
+ linked: any;
726
+ }) => any;
727
+ hasUser: ({ linked }: {
728
+ linked: any;
729
+ }) => any;
730
+ impacted: ({ linked }: {
731
+ linked: any;
732
+ }) => any;
733
+ contactLabel: ({ linked }: {
734
+ linked: any;
735
+ }) => any;
736
+ contactOwner: ({ linked }: {
737
+ linked: any;
738
+ }) => any;
739
+ priority: ({ linked }: {
740
+ linked: any;
741
+ }) => any;
742
+ queue: ({ linked }: {
743
+ linked: any;
744
+ }) => any;
745
+ rated: string;
746
+ ratedBy: ({ linked }: {
747
+ linked: any;
748
+ }) => any;
749
+ rating: ({ linked }: {
750
+ linked: any;
751
+ }) => any;
752
+ reactionTime: ({ linked }: {
753
+ linked: any;
754
+ }) => any;
755
+ reporter: ({ linked }: {
756
+ linked: any;
757
+ }) => any;
758
+ resolutionTime: ({ linked }: {
759
+ linked: any;
760
+ }) => any;
761
+ score: ({ linked }: {
762
+ linked: any;
763
+ }) => any;
764
+ service: ({ linked }: {
765
+ linked: any;
766
+ }) => any;
767
+ sla: ({ linked }: {
768
+ linked: any;
769
+ }) => any;
770
+ slaCondition: ({ linked }: {
771
+ linked: any;
772
+ }) => any;
773
+ source: ({ linked }: {
774
+ linked: any;
775
+ }) => any;
776
+ status: ({ linked }: {
777
+ linked: any;
778
+ }) => any;
779
+ tag: ({ linked }: {
780
+ linked: any;
781
+ }) => any;
782
+ talkDuration: ({ linked }: {
783
+ linked: any;
784
+ }) => any;
785
+ team: ({ linked }: {
786
+ linked: any;
787
+ }) => any;
788
+ totalDuration: ({ linked }: {
789
+ linked: any;
790
+ }) => any;
791
+ user: ({ linked }: {
792
+ linked: any;
793
+ }) => any;
794
+ variable: ({ linked }: {
795
+ linked: any;
796
+ }) => any;
797
+ presets: {
798
+ preset: string;
799
+ overwritePresetTitle: string;
800
+ overwritePresetText: string;
801
+ notifications: {
802
+ success: {
803
+ update: ({ linked }: {
804
+ linked: any;
805
+ }) => any;
806
+ create: ({ linked }: {
807
+ linked: any;
808
+ }) => any;
809
+ delete: ({ linked }: {
810
+ linked: any;
811
+ }) => any;
812
+ };
813
+ };
814
+ };
815
+ };
816
+ };
817
+ systemNotifications: {
818
+ success: {
819
+ update: ({ named }: {
820
+ named: any;
821
+ }) => string;
822
+ create: ({ named }: {
823
+ named: any;
824
+ }) => string;
825
+ delete: ({ named }: {
826
+ named: any;
827
+ }) => string;
828
+ };
829
+ };
830
+ errorNotifications: {
831
+ chatHistoryApi: string;
832
+ markChatProcessed: string;
833
+ };
834
+ };
835
+ es: {
836
+ reusable: {
837
+ total: string;
838
+ ok: string;
839
+ save: string;
840
+ close: string;
841
+ add: string;
842
+ cancel: string;
843
+ import: string;
844
+ export: string;
845
+ true: string;
846
+ delete: string;
847
+ search: string;
848
+ open: string;
849
+ name: string;
850
+ expand: string;
851
+ collapse: string;
852
+ generate: string;
853
+ lang: {
854
+ en: string;
855
+ es: string;
856
+ ru: string;
857
+ ua: string;
858
+ kz: string;
859
+ };
860
+ from: string;
861
+ to: string;
862
+ tts: string;
863
+ state: string;
864
+ refresh: string;
865
+ retry: string;
866
+ reset: string;
867
+ downloadAll: string;
868
+ warning: string;
869
+ doNotSave: string;
870
+ };
871
+ vocabulary: {
872
+ language: string;
873
+ voice: string;
874
+ format: string;
875
+ text: string;
876
+ yes: string;
877
+ no: string;
878
+ description: string;
879
+ login: string;
880
+ host: string;
881
+ time: string;
882
+ channel: string;
883
+ file: string;
884
+ logout: string;
885
+ priority: string;
886
+ variables: string;
887
+ type: string;
888
+ tag: string;
889
+ output: string;
890
+ values: string;
891
+ keys: string;
892
+ duration: string;
893
+ errors: string;
894
+ };
895
+ date: {
896
+ sec: string;
897
+ timezone: string;
898
+ };
899
+ objects: {
900
+ team: string;
901
+ supervisor: string;
902
+ auditor: string;
903
+ region: string;
904
+ queue: {
905
+ type: {
906
+ 1: string;
907
+ 0: string;
908
+ 2: string;
909
+ 5: string;
910
+ 4: string;
911
+ 3: string;
912
+ 6: string;
913
+ 7: string;
914
+ 8: string;
915
+ };
916
+ };
917
+ agent: {
918
+ status: {
919
+ [x: number]: string;
920
+ online: string;
921
+ pause: string;
922
+ offline: string;
923
+ };
924
+ };
925
+ flow: {
926
+ type: {
927
+ chat: string;
928
+ voice: string;
929
+ service: string;
930
+ processing: string;
931
+ };
932
+ };
933
+ };
934
+ channel: {
935
+ state: {
936
+ [x: number]: string;
937
+ waiting: string;
938
+ distribute: string;
939
+ offering: string;
940
+ answered: string;
941
+ active: string;
942
+ bridged: string;
943
+ hold: string;
944
+ missed: string;
945
+ processing: string;
946
+ transfer: string;
947
+ };
948
+ type: {
949
+ call: string;
950
+ email: string;
951
+ chat: string;
952
+ task: string;
953
+ };
954
+ };
955
+ calls: {
956
+ direction: {
957
+ inbound: string;
958
+ outbound: string;
959
+ };
960
+ };
961
+ WebitelApplications: {
962
+ [x: number]: {
963
+ name: string;
964
+ sections?: undefined;
965
+ } | {
966
+ name: string;
967
+ sections: {
968
+ [x: number]: string;
969
+ };
970
+ };
971
+ };
972
+ validation: {
973
+ required: string;
974
+ numeric: string;
975
+ email: string;
976
+ gatewayHostValidator: string;
977
+ sipAccountValidator: string;
978
+ ipValidator: string;
979
+ macValidator: string;
980
+ minValue: string;
981
+ maxValue: string;
982
+ sameAs: string;
983
+ requiredArrayValue: string;
984
+ minLength: string;
985
+ url: string;
986
+ };
987
+ webitelUI: {
988
+ searchBar: {
989
+ placeholder: string;
990
+ };
991
+ timepicker: {
992
+ hour: string;
993
+ min: string;
994
+ sec: string;
995
+ };
996
+ datetimepicker: {
997
+ lastHour: string;
998
+ lastDay: string;
999
+ };
1000
+ pagination: {
1001
+ sizeText: string;
1002
+ prev: string;
1003
+ next: string;
1004
+ };
1005
+ appNavigator: {
1006
+ title: string;
1007
+ admin: string;
1008
+ agent: string;
1009
+ supervisor: string;
1010
+ audit: string;
1011
+ history: string;
1012
+ grafana: string;
1013
+ };
1014
+ headerActions: {
1015
+ account: string;
1016
+ docs: string;
1017
+ settings: string;
1018
+ logout: string;
1019
+ buildVersion: string;
1020
+ };
1021
+ tableActions: {
1022
+ filterReset: string;
1023
+ columnSelect: string;
1024
+ refreshTable: string;
1025
+ expandFilters: string;
1026
+ };
1027
+ tableColumnSelect: {
1028
+ title: string;
1029
+ };
1030
+ statusSelect: {
1031
+ online: string;
1032
+ pause: string;
1033
+ offline: string;
1034
+ breakOut: string;
1035
+ };
1036
+ iconAction: {
1037
+ deleteActionHint: string;
1038
+ editActionHint: string;
1039
+ };
1040
+ errorPages: {
1041
+ goBack: string;
1042
+ page403: {
1043
+ title: string;
1044
+ text: string;
1045
+ };
1046
+ page404: {
1047
+ title: string;
1048
+ text: string;
1049
+ };
1050
+ };
1051
+ copyAction: {
1052
+ copy: string;
1053
+ copied: string;
1054
+ };
1055
+ };
1056
+ };
1057
+ ru: {
1058
+ reusable: {
1059
+ comment: string;
1060
+ replace: string;
1061
+ download: string;
1062
+ history: string;
1063
+ filter: string;
1064
+ total: string;
1065
+ ok: string;
1066
+ object: string;
1067
+ save: string;
1068
+ saveAs: string;
1069
+ saved: string;
1070
+ send: string;
1071
+ start: string;
1072
+ close: string;
1073
+ add: string;
1074
+ cancel: string;
1075
+ import: string;
1076
+ export: string;
1077
+ true: string;
1078
+ title: string;
1079
+ position: string;
1080
+ delete: string;
1081
+ search: string;
1082
+ open: string;
1083
+ name: string;
1084
+ expand: string;
1085
+ collapse: string;
1086
+ generate: string;
1087
+ lang: {
1088
+ en: string;
1089
+ es: string;
1090
+ ru: string;
1091
+ ua: string;
1092
+ kz: string;
1093
+ };
1094
+ from: string;
1095
+ to: string;
1096
+ tts: string;
1097
+ state: string;
1098
+ refresh: string;
1099
+ retry: string;
1100
+ downloadAll: string;
1101
+ warning: string;
1102
+ doNotSave: string;
1103
+ required: string;
1104
+ copy: string;
1105
+ new: string;
1106
+ createdAt: string;
1107
+ createdBy: string;
1108
+ modifiedAt: string;
1109
+ modifiedBy: string;
1110
+ general: string;
1111
+ generalInfo: string;
1112
+ all: string;
1113
+ upload: string;
1114
+ edit: string;
1115
+ back: string;
1116
+ step: string;
1117
+ more: string;
1118
+ read: string;
1119
+ create: string;
1120
+ update: string;
1121
+ draggable: string;
1122
+ unassigned: string;
1123
+ showUnassigned: string;
1124
+ group: string;
1125
+ updatedBy: () => string;
1126
+ };
1127
+ vocabulary: {
1128
+ apply: string;
1129
+ language: string;
1130
+ column: string;
1131
+ voice: string;
1132
+ format: string;
1133
+ text: string;
1134
+ yes: string;
1135
+ no: string;
1136
+ description: string;
1137
+ login: string;
1138
+ host: string;
1139
+ time: string;
1140
+ channel: string;
1141
+ file: string;
1142
+ logout: string;
1143
+ priority: string;
1144
+ color: string;
1145
+ variables: string;
1146
+ type: string;
1147
+ tag: string;
1148
+ output: string;
1149
+ values: string;
1150
+ keys: string;
1151
+ duration: string;
1152
+ reset: string;
1153
+ errors: string;
1154
+ labels: string;
1155
+ permissions: string;
1156
+ options: string;
1157
+ emails: string;
1158
+ phones: string;
1159
+ messaging: string;
1160
+ emptyResultSearch: string;
1161
+ contact: string;
1162
+ notification: string;
1163
+ };
1164
+ date: {
1165
+ sec: string;
1166
+ timezone: string;
1167
+ };
1168
+ access: {
1169
+ ObAC: string;
1170
+ RbAC: string;
1171
+ operations: string;
1172
+ rbacDefault: string;
1173
+ accessMode: {
1174
+ 1: string;
1175
+ 2: string;
1176
+ 3: string;
1177
+ };
1178
+ };
1179
+ objects: {
1180
+ team: string;
1181
+ supervisor: string;
1182
+ auditor: string;
1183
+ region: string;
1184
+ communicationType: string;
1185
+ grantee: string;
1186
+ grantor: string;
1187
+ user: string;
1188
+ list: string;
1189
+ contact: string;
1190
+ case: string;
1191
+ role: string;
1192
+ calendar: string;
1193
+ direction: string;
1194
+ gateway: string;
1195
+ hangupCause: string;
1196
+ hasOption: string;
1197
+ hasRecording: string;
1198
+ amdResult: string;
1199
+ ratedBy: string;
1200
+ talkDuration: string;
1201
+ totalDuration: string;
1202
+ transcription: string;
1203
+ attachment: string;
1204
+ owner: string;
1205
+ queue: {
1206
+ queue: string;
1207
+ type: {
1208
+ 1: string;
1209
+ 0: string;
1210
+ 2: string;
1211
+ 5: string;
1212
+ 4: string;
1213
+ 3: string;
1214
+ 6: string;
1215
+ 7: string;
1216
+ 8: string;
1217
+ };
1218
+ };
1219
+ agent: {
1220
+ agent: string;
1221
+ status: {
1222
+ [x: number]: string;
1223
+ online: string;
1224
+ pause: string;
1225
+ offline: string;
1226
+ };
1227
+ };
1228
+ flow: {
1229
+ name: string;
1230
+ type: {
1231
+ chat: string;
1232
+ voice: string;
1233
+ service: string;
1234
+ processing: string;
1235
+ };
1236
+ };
1237
+ messengers: {
1238
+ telegram: string;
1239
+ gotd: string;
1240
+ messenger: string;
1241
+ viber: string;
1242
+ webchat: string;
1243
+ infobip_whatsapp: string;
1244
+ custom: string;
1245
+ };
1246
+ };
1247
+ channel: {
1248
+ state: {
1249
+ [x: number]: string;
1250
+ waiting: string;
1251
+ distribute: string;
1252
+ offering: string;
1253
+ answered: string;
1254
+ active: string;
1255
+ bridged: string;
1256
+ hold: string;
1257
+ missed: string;
1258
+ processing: string;
1259
+ transfer: string;
1260
+ };
1261
+ type: {
1262
+ call: string;
1263
+ email: string;
1264
+ chat: string;
1265
+ task: string;
1266
+ };
1267
+ };
1268
+ cases: {
1269
+ status: string;
1270
+ source: string;
1271
+ author: string;
1272
+ reporter: string;
1273
+ impacted: string;
1274
+ assignee: string;
1275
+ groupPerformers: string;
1276
+ reason: string;
1277
+ rating: string;
1278
+ service: string;
1279
+ selectAService: string;
1280
+ appliedSLA: string;
1281
+ appliedCondition: string;
1282
+ reactionTime: string;
1283
+ resolutionTime: string;
1284
+ actualReactionTime: string;
1285
+ actualResolutionTime: string;
1286
+ };
1287
+ calls: {
1288
+ direction: {
1289
+ inbound: string;
1290
+ outbound: string;
1291
+ };
1292
+ };
1293
+ WebitelApplications: {
1294
+ [x: number]: {
1295
+ name: string;
1296
+ sections?: undefined;
1297
+ } | {
1298
+ name: string;
1299
+ sections: {
1300
+ scorecards: string;
1301
+ contacts?: undefined;
1302
+ cases?: undefined;
1303
+ priorities?: undefined;
1304
+ "close-reason-groups"?: undefined;
1305
+ statuses?: undefined;
1306
+ slas?: undefined;
1307
+ "service-catalogs"?: undefined;
1308
+ sources?: undefined;
1309
+ "contact-groups"?: undefined;
1310
+ queues?: undefined;
1311
+ agents?: undefined;
1312
+ activeCalls?: undefined;
1313
+ users?: undefined;
1314
+ license?: undefined;
1315
+ devices?: undefined;
1316
+ flow?: undefined;
1317
+ dialplan?: undefined;
1318
+ gateways?: undefined;
1319
+ chatplan?: undefined;
1320
+ "chat-gateways"?: undefined;
1321
+ skills?: undefined;
1322
+ buckets?: undefined;
1323
+ media?: undefined;
1324
+ "shift-templates"?: undefined;
1325
+ "pause-templates"?: undefined;
1326
+ "working-conditions"?: undefined;
1327
+ blacklist?: undefined;
1328
+ calendars?: undefined;
1329
+ communications?: undefined;
1330
+ regions?: undefined;
1331
+ "pause-cause"?: undefined;
1332
+ teams?: undefined;
1333
+ resources?: undefined;
1334
+ "resource-groups"?: undefined;
1335
+ storage?: undefined;
1336
+ "storage-policies"?: undefined;
1337
+ "cognitive-profiles"?: undefined;
1338
+ "email-profiles"?: undefined;
1339
+ "single-sign-on"?: undefined;
1340
+ "import-csv"?: undefined;
1341
+ triggers?: undefined;
1342
+ roles?: undefined;
1343
+ objects?: undefined;
1344
+ changelogs?: undefined;
1345
+ configuration?: undefined;
1346
+ "global-variables"?: undefined;
1347
+ "quick-replies"?: undefined;
1348
+ };
1349
+ } | {
1350
+ name: string;
1351
+ sections: {
1352
+ contacts: string;
1353
+ cases: string;
1354
+ priorities: string;
1355
+ "close-reason-groups": string;
1356
+ statuses: string;
1357
+ slas: string;
1358
+ "service-catalogs": string;
1359
+ sources: string;
1360
+ "contact-groups": string;
1361
+ scorecards?: undefined;
1362
+ queues?: undefined;
1363
+ agents?: undefined;
1364
+ activeCalls?: undefined;
1365
+ users?: undefined;
1366
+ license?: undefined;
1367
+ devices?: undefined;
1368
+ flow?: undefined;
1369
+ dialplan?: undefined;
1370
+ gateways?: undefined;
1371
+ chatplan?: undefined;
1372
+ "chat-gateways"?: undefined;
1373
+ skills?: undefined;
1374
+ buckets?: undefined;
1375
+ media?: undefined;
1376
+ "shift-templates"?: undefined;
1377
+ "pause-templates"?: undefined;
1378
+ "working-conditions"?: undefined;
1379
+ blacklist?: undefined;
1380
+ calendars?: undefined;
1381
+ communications?: undefined;
1382
+ regions?: undefined;
1383
+ "pause-cause"?: undefined;
1384
+ teams?: undefined;
1385
+ resources?: undefined;
1386
+ "resource-groups"?: undefined;
1387
+ storage?: undefined;
1388
+ "storage-policies"?: undefined;
1389
+ "cognitive-profiles"?: undefined;
1390
+ "email-profiles"?: undefined;
1391
+ "single-sign-on"?: undefined;
1392
+ "import-csv"?: undefined;
1393
+ triggers?: undefined;
1394
+ roles?: undefined;
1395
+ objects?: undefined;
1396
+ changelogs?: undefined;
1397
+ configuration?: undefined;
1398
+ "global-variables"?: undefined;
1399
+ "quick-replies"?: undefined;
1400
+ };
1401
+ } | {
1402
+ name: string;
1403
+ sections: {
1404
+ queues: string;
1405
+ agents: string;
1406
+ activeCalls: string;
1407
+ scorecards?: undefined;
1408
+ contacts?: undefined;
1409
+ cases?: undefined;
1410
+ priorities?: undefined;
1411
+ "close-reason-groups"?: undefined;
1412
+ statuses?: undefined;
1413
+ slas?: undefined;
1414
+ "service-catalogs"?: undefined;
1415
+ sources?: undefined;
1416
+ "contact-groups"?: undefined;
1417
+ users?: undefined;
1418
+ license?: undefined;
1419
+ devices?: undefined;
1420
+ flow?: undefined;
1421
+ dialplan?: undefined;
1422
+ gateways?: undefined;
1423
+ chatplan?: undefined;
1424
+ "chat-gateways"?: undefined;
1425
+ skills?: undefined;
1426
+ buckets?: undefined;
1427
+ media?: undefined;
1428
+ "shift-templates"?: undefined;
1429
+ "pause-templates"?: undefined;
1430
+ "working-conditions"?: undefined;
1431
+ blacklist?: undefined;
1432
+ calendars?: undefined;
1433
+ communications?: undefined;
1434
+ regions?: undefined;
1435
+ "pause-cause"?: undefined;
1436
+ teams?: undefined;
1437
+ resources?: undefined;
1438
+ "resource-groups"?: undefined;
1439
+ storage?: undefined;
1440
+ "storage-policies"?: undefined;
1441
+ "cognitive-profiles"?: undefined;
1442
+ "email-profiles"?: undefined;
1443
+ "single-sign-on"?: undefined;
1444
+ "import-csv"?: undefined;
1445
+ triggers?: undefined;
1446
+ roles?: undefined;
1447
+ objects?: undefined;
1448
+ changelogs?: undefined;
1449
+ configuration?: undefined;
1450
+ "global-variables"?: undefined;
1451
+ "quick-replies"?: undefined;
1452
+ };
1453
+ } | {
1454
+ name: string;
1455
+ sections: {
1456
+ users: string;
1457
+ license: string;
1458
+ devices: string;
1459
+ flow: string;
1460
+ dialplan: string;
1461
+ gateways: string;
1462
+ chatplan: string;
1463
+ "chat-gateways": string;
1464
+ skills: string;
1465
+ buckets: string;
1466
+ media: string;
1467
+ "shift-templates": string;
1468
+ "pause-templates": string;
1469
+ "working-conditions": string;
1470
+ blacklist: string;
1471
+ calendars: string;
1472
+ communications: string;
1473
+ regions: string;
1474
+ "pause-cause": string;
1475
+ agents: string;
1476
+ teams: string;
1477
+ resources: string;
1478
+ "resource-groups": string;
1479
+ queues: string;
1480
+ storage: string;
1481
+ "storage-policies": string;
1482
+ "cognitive-profiles": string;
1483
+ "email-profiles": string;
1484
+ "single-sign-on": string;
1485
+ "import-csv": string;
1486
+ triggers: string;
1487
+ roles: string;
1488
+ objects: string;
1489
+ changelogs: string;
1490
+ configuration: string;
1491
+ "global-variables": string;
1492
+ "quick-replies": string;
1493
+ scorecards?: undefined;
1494
+ contacts?: undefined;
1495
+ cases?: undefined;
1496
+ priorities?: undefined;
1497
+ "close-reason-groups"?: undefined;
1498
+ statuses?: undefined;
1499
+ slas?: undefined;
1500
+ "service-catalogs"?: undefined;
1501
+ sources?: undefined;
1502
+ "contact-groups"?: undefined;
1503
+ activeCalls?: undefined;
1504
+ };
1505
+ };
1506
+ };
1507
+ validation: {
1508
+ required: string;
1509
+ numeric: string;
1510
+ email: string;
1511
+ gatewayHostValidator: string;
1512
+ sipAccountValidator: string;
1513
+ ipValidator: string;
1514
+ macValidator: string;
1515
+ minValue: string;
1516
+ maxValue: string;
1517
+ maxLength: string;
1518
+ sameAs: string;
1519
+ requiredArrayValue: string;
1520
+ minLength: string;
1521
+ url: string;
1522
+ websocketValidator: string;
1523
+ isRegExpMatched: string;
1524
+ regExpValidator: string;
1525
+ domainValidator: string;
1526
+ decimalValidator: string;
1527
+ latinWithNumber: string;
1528
+ integer: string;
1529
+ nameAlreadyInUse: string;
1530
+ };
1531
+ webitelUI: {
1532
+ searchBar: {
1533
+ placeholder: string;
1534
+ settingsHint: string;
1535
+ variableSearchHint: string;
1536
+ };
1537
+ timepicker: {
1538
+ day: string;
1539
+ hour: string;
1540
+ min: string;
1541
+ sec: string;
1542
+ };
1543
+ datetimepicker: {
1544
+ lastHour: string;
1545
+ lastDay: string;
1546
+ };
1547
+ pagination: {
1548
+ sizeText: string;
1549
+ prev: string;
1550
+ next: string;
1551
+ };
1552
+ appNavigator: {
1553
+ title: string;
1554
+ admin: string;
1555
+ agent: string;
1556
+ supervisor: string;
1557
+ audit: string;
1558
+ history: string;
1559
+ grafana: string;
1560
+ crm: string;
1561
+ };
1562
+ headerActions: {
1563
+ account: string;
1564
+ docs: string;
1565
+ settings: string;
1566
+ logout: string;
1567
+ buildVersion: string;
1568
+ };
1569
+ tableActions: {
1570
+ filterReset: string;
1571
+ columnSelect: string;
1572
+ refreshTable: string;
1573
+ expandFilters: string;
1574
+ };
1575
+ tableColumnSelect: {
1576
+ title: string;
1577
+ };
1578
+ statusSelect: {
1579
+ online: string;
1580
+ pause: string;
1581
+ offline: string;
1582
+ breakOut: string;
1583
+ };
1584
+ iconAction: {
1585
+ hints: {
1586
+ delete: ({ linked }: {
1587
+ linked: any;
1588
+ }) => any;
1589
+ edit: ({ linked }: {
1590
+ linked: any;
1591
+ }) => any;
1592
+ add: ({ linked }: {
1593
+ linked: any;
1594
+ }) => any;
1595
+ history: ({ linked }: {
1596
+ linked: any;
1597
+ }) => any;
1598
+ download: ({ linked }: {
1599
+ linked: any;
1600
+ }) => any;
1601
+ filters: ({ linked }: {
1602
+ linked: any;
1603
+ }) => any;
1604
+ columns: string;
1605
+ variables: string;
1606
+ refresh: ({ linked }: {
1607
+ linked: any;
1608
+ }) => any;
1609
+ expand: ({ linked }: {
1610
+ linked: any;
1611
+ }) => any;
1612
+ collapse: ({ linked }: {
1613
+ linked: any;
1614
+ }) => any;
1615
+ close: ({ linked }: {
1616
+ linked: any;
1617
+ }) => any;
1618
+ clear: ({ linked }: {
1619
+ linked: any;
1620
+ }) => any;
1621
+ "add-filter": ({ linked }: {
1622
+ linked: any;
1623
+ }) => any;
1624
+ save: ({ linked }: {
1625
+ linked: any;
1626
+ }) => any;
1627
+ cancel: ({ linked }: {
1628
+ linked: any;
1629
+ }) => any;
1630
+ "save-preset": ({ linked }: {
1631
+ linked: any;
1632
+ }) => string;
1633
+ "apply-preset": ({ linked }: {
1634
+ linked: any;
1635
+ }) => string;
1636
+ "add-contact": ({ linked }: {
1637
+ linked: any;
1638
+ }) => string;
1639
+ };
1640
+ };
1641
+ errorPages: {
1642
+ goBack: string;
1643
+ page403: {
1644
+ title: string;
1645
+ text: string;
1646
+ };
1647
+ page404: {
1648
+ title: string;
1649
+ text: string;
1650
+ };
1651
+ };
1652
+ copyAction: {
1653
+ copy: string;
1654
+ copied: string;
1655
+ };
1656
+ auditForm: {
1657
+ question: string;
1658
+ option: string;
1659
+ score: string;
1660
+ addQuestion: string;
1661
+ answerType: string;
1662
+ type: {
1663
+ options: string;
1664
+ score: string;
1665
+ };
1666
+ clearSelection: string;
1667
+ };
1668
+ deleteConfirmationPopup: {
1669
+ title: string;
1670
+ askingAlert: string;
1671
+ tableAskingAlert: string;
1672
+ deleteAll: string;
1673
+ };
1674
+ dummy: {
1675
+ text: string;
1676
+ };
1677
+ empty: {
1678
+ text: {
1679
+ empty: string;
1680
+ filters: string;
1681
+ };
1682
+ };
1683
+ agentStatusSelect: {
1684
+ pauseCausePopup: {
1685
+ title: string;
1686
+ min: string;
1687
+ unlimited: string;
1688
+ };
1689
+ statusSelectErrorPopup: {
1690
+ title: string;
1691
+ message: string;
1692
+ };
1693
+ };
1694
+ saveFailedPopup: {
1695
+ title: string;
1696
+ label: string;
1697
+ exportToJson: string;
1698
+ };
1699
+ filters: {
1700
+ datetime: {
1701
+ rdt_today: string;
1702
+ rdt_this_week: string;
1703
+ rdt_this_month: string;
1704
+ rdt_custom: string;
1705
+ };
1706
+ addFilter: ({ linked }: {
1707
+ linked: any;
1708
+ }) => string;
1709
+ filterName: ({ linked }: {
1710
+ linked: any;
1711
+ }) => any;
1712
+ filterValue: ({ linked }: {
1713
+ linked: any;
1714
+ }) => any;
1715
+ filterValueFrom: ({ linked }: {
1716
+ linked: any;
1717
+ }) => string;
1718
+ filterLabel: ({ linked }: {
1719
+ linked: any;
1720
+ }) => any;
1721
+ actualReactionTime: ({ linked }: {
1722
+ linked: any;
1723
+ }) => any;
1724
+ actualResolutionTime: ({ linked }: {
1725
+ linked: any;
1726
+ }) => any;
1727
+ agent: ({ linked }: {
1728
+ linked: any;
1729
+ }) => any;
1730
+ amdResult: ({ linked }: {
1731
+ linked: any;
1732
+ }) => any;
1733
+ assignee: ({ linked }: {
1734
+ linked: any;
1735
+ }) => any;
1736
+ author: ({ linked }: {
1737
+ linked: any;
1738
+ }) => any;
1739
+ cause: ({ linked }: {
1740
+ linked: any;
1741
+ }) => any;
1742
+ closeReasonGroups: ({ linked }: {
1743
+ linked: any;
1744
+ }) => any;
1745
+ contact: ({ linked }: {
1746
+ linked: any;
1747
+ }) => any;
1748
+ contactGroup: ({ linked }: {
1749
+ linked: any;
1750
+ }) => any;
1751
+ createdAt: ({ linked }: {
1752
+ linked: any;
1753
+ }) => any;
1754
+ createdAtFrom: ({ linked }: {
1755
+ linked: any;
1756
+ }) => any;
1757
+ createdAtTo: ({ linked }: {
1758
+ linked: any;
1759
+ }) => any;
1760
+ direction: ({ linked }: {
1761
+ linked: any;
1762
+ }) => any;
1763
+ gateway: ({ linked }: {
1764
+ linked: any;
1765
+ }) => any;
1766
+ grantee: ({ linked }: {
1767
+ linked: any;
1768
+ }) => any;
1769
+ hasAttachment: ({ linked }: {
1770
+ linked: any;
1771
+ }) => any;
1772
+ hasFile: ({ linked }: {
1773
+ linked: any;
1774
+ }) => any;
1775
+ hasTranscription: ({ linked }: {
1776
+ linked: any;
1777
+ }) => any;
1778
+ hasUser: ({ linked }: {
1779
+ linked: any;
1780
+ }) => any;
1781
+ impacted: ({ linked }: {
1782
+ linked: any;
1783
+ }) => any;
1784
+ contactLabel: ({ linked }: {
1785
+ linked: any;
1786
+ }) => any;
1787
+ contactOwner: ({ linked }: {
1788
+ linked: any;
1789
+ }) => any;
1790
+ priority: ({ linked }: {
1791
+ linked: any;
1792
+ }) => any;
1793
+ queue: ({ linked }: {
1794
+ linked: any;
1795
+ }) => any;
1796
+ rated: string;
1797
+ ratedBy: ({ linked }: {
1798
+ linked: any;
1799
+ }) => any;
1800
+ rating: ({ linked }: {
1801
+ linked: any;
1802
+ }) => any;
1803
+ reactionTime: ({ linked }: {
1804
+ linked: any;
1805
+ }) => any;
1806
+ reporter: ({ linked }: {
1807
+ linked: any;
1808
+ }) => any;
1809
+ resolutionTime: ({ linked }: {
1810
+ linked: any;
1811
+ }) => any;
1812
+ score: ({ linked }: {
1813
+ linked: any;
1814
+ }) => any;
1815
+ service: ({ linked }: {
1816
+ linked: any;
1817
+ }) => any;
1818
+ sla: ({ linked }: {
1819
+ linked: any;
1820
+ }) => any;
1821
+ slaCondition: ({ linked }: {
1822
+ linked: any;
1823
+ }) => any;
1824
+ source: ({ linked }: {
1825
+ linked: any;
1826
+ }) => any;
1827
+ status: ({ linked }: {
1828
+ linked: any;
1829
+ }) => any;
1830
+ tag: ({ linked }: {
1831
+ linked: any;
1832
+ }) => any;
1833
+ talkDuration: ({ linked }: {
1834
+ linked: any;
1835
+ }) => any;
1836
+ team: ({ linked }: {
1837
+ linked: any;
1838
+ }) => any;
1839
+ totalDuration: ({ linked }: {
1840
+ linked: any;
1841
+ }) => any;
1842
+ user: ({ linked }: {
1843
+ linked: any;
1844
+ }) => any;
1845
+ variable: ({ linked }: {
1846
+ linked: any;
1847
+ }) => any;
1848
+ presets: {
1849
+ preset: string;
1850
+ overwritePresetTitle: string;
1851
+ overwritePresetText: string;
1852
+ notifications: {
1853
+ success: {
1854
+ update: ({ linked }: {
1855
+ linked: any;
1856
+ }) => any;
1857
+ create: ({ linked }: {
1858
+ linked: any;
1859
+ }) => any;
1860
+ delete: ({ linked }: {
1861
+ linked: any;
1862
+ }) => any;
1863
+ };
1864
+ };
1865
+ };
1866
+ };
1867
+ };
1868
+ systemNotifications: {
1869
+ success: {
1870
+ update: ({ named }: {
1871
+ named: any;
1872
+ }) => string;
1873
+ create: ({ named }: {
1874
+ named: any;
1875
+ }) => string;
1876
+ delete: ({ named }: {
1877
+ named: any;
1878
+ }) => string;
1879
+ };
1880
+ };
1881
+ errorNotifications: {
1882
+ chatHistoryApi: string;
1883
+ markChatProcessed: string;
1884
+ };
1885
+ };
1886
+ ua: {
1887
+ reusable: {
1888
+ comment: string;
1889
+ replace: string;
1890
+ download: string;
1891
+ history: string;
1892
+ filter: string;
1893
+ total: string;
1894
+ ok: string;
1895
+ object: string;
1896
+ save: string;
1897
+ saveAs: string;
1898
+ saved: string;
1899
+ send: string;
1900
+ start: string;
1901
+ close: string;
1902
+ add: string;
1903
+ cancel: string;
1904
+ import: string;
1905
+ export: string;
1906
+ true: string;
1907
+ title: string;
1908
+ position: string;
1909
+ delete: string;
1910
+ search: string;
1911
+ open: string;
1912
+ name: string;
1913
+ expand: string;
1914
+ collapse: string;
1915
+ generate: string;
1916
+ lang: {
1917
+ en: string;
1918
+ es: string;
1919
+ ru: string;
1920
+ ua: string;
1921
+ kz: string;
1922
+ };
1923
+ from: string;
1924
+ to: string;
1925
+ tts: string;
1926
+ state: string;
1927
+ refresh: string;
1928
+ retry: string;
1929
+ downloadAll: string;
1930
+ warning: string;
1931
+ doNotSave: string;
1932
+ required: string;
1933
+ copy: string;
1934
+ new: string;
1935
+ createdAt: string;
1936
+ createdBy: string;
1937
+ modifiedAt: string;
1938
+ modifiedBy: string;
1939
+ general: string;
1940
+ generalInfo: string;
1941
+ all: string;
1942
+ upload: string;
1943
+ edit: string;
1944
+ back: string;
1945
+ step: string;
1946
+ more: string;
1947
+ read: string;
1948
+ create: string;
1949
+ update: string;
1950
+ draggable: string;
1951
+ unassigned: string;
1952
+ showUnassigned: string;
1953
+ group: string;
1954
+ updatedBy: () => string;
1955
+ };
1956
+ vocabulary: {
1957
+ apply: string;
1958
+ language: string;
1959
+ voice: string;
1960
+ format: string;
1961
+ text: string;
1962
+ yes: string;
1963
+ column: string;
1964
+ no: string;
1965
+ description: string;
1966
+ login: string;
1967
+ host: string;
1968
+ time: string;
1969
+ channel: string;
1970
+ file: string;
1971
+ logout: string;
1972
+ priority: string;
1973
+ color: string;
1974
+ variables: string;
1975
+ type: string;
1976
+ tag: string;
1977
+ output: string;
1978
+ values: string;
1979
+ keys: string;
1980
+ duration: string;
1981
+ reset: string;
1982
+ errors: string;
1983
+ labels: string;
1984
+ permissions: string;
1985
+ options: string;
1986
+ emails: string;
1987
+ phones: string;
1988
+ messaging: string;
1989
+ emptyResultSearch: string;
1990
+ contact: string;
1991
+ notification: string;
1992
+ };
1993
+ date: {
1994
+ sec: string;
1995
+ timezone: string;
1996
+ };
1997
+ access: {
1998
+ ObAC: string;
1999
+ RbAC: string;
2000
+ operations: string;
2001
+ rbacDefault: string;
2002
+ accessMode: {
2003
+ 1: string;
2004
+ 2: string;
2005
+ 3: string;
2006
+ };
2007
+ };
2008
+ objects: {
2009
+ team: string;
2010
+ supervisor: string;
2011
+ auditor: string;
2012
+ region: string;
2013
+ communicationType: string;
2014
+ grantee: string;
2015
+ grantor: string;
2016
+ user: string;
2017
+ list: string;
2018
+ contact: string;
2019
+ case: string;
2020
+ role: string;
2021
+ calendar: string;
2022
+ direction: string;
2023
+ gateway: string;
2024
+ hangupCause: string;
2025
+ hasOption: string;
2026
+ hasRecording: string;
2027
+ amdResult: string;
2028
+ ratedBy: string;
2029
+ talkDuration: string;
2030
+ totalDuration: string;
2031
+ transcription: string;
2032
+ attachment: string;
2033
+ owner: string;
2034
+ queue: {
2035
+ queue: string;
2036
+ type: {
2037
+ 1: string;
2038
+ 0: string;
2039
+ 2: string;
2040
+ 5: string;
2041
+ 4: string;
2042
+ 3: string;
2043
+ 6: string;
2044
+ 7: string;
2045
+ 8: string;
2046
+ };
2047
+ };
2048
+ agent: {
2049
+ agent: string;
2050
+ status: {
2051
+ [x: number]: string;
2052
+ online: string;
2053
+ pause: string;
2054
+ offline: string;
2055
+ };
2056
+ };
2057
+ flow: {
2058
+ name: string;
2059
+ type: {
2060
+ chat: string;
2061
+ voice: string;
2062
+ service: string;
2063
+ processing: string;
2064
+ };
2065
+ };
2066
+ messengers: {
2067
+ telegram: string;
2068
+ gotd: string;
2069
+ messenger: string;
2070
+ viber: string;
2071
+ webchat: string;
2072
+ infobip_whatsapp: string;
2073
+ custom: string;
2074
+ };
2075
+ };
2076
+ channel: {
2077
+ state: {
2078
+ [x: number]: string;
2079
+ waiting: string;
2080
+ distribute: string;
2081
+ offering: string;
2082
+ answered: string;
2083
+ active: string;
2084
+ bridged: string;
2085
+ hold: string;
2086
+ missed: string;
2087
+ processing: string;
2088
+ transfer: string;
2089
+ };
2090
+ type: {
2091
+ call: string;
2092
+ email: string;
2093
+ chat: string;
2094
+ task: string;
2095
+ };
2096
+ };
2097
+ calls: {
2098
+ direction: {
2099
+ inbound: string;
2100
+ outbound: string;
2101
+ };
2102
+ };
2103
+ cases: {
2104
+ status: string;
2105
+ source: string;
2106
+ author: string;
2107
+ reporter: string;
2108
+ impacted: string;
2109
+ assignee: string;
2110
+ groupPerformers: string;
2111
+ reason: string;
2112
+ rating: string;
2113
+ service: string;
2114
+ selectAService: string;
2115
+ appliedSLA: string;
2116
+ appliedCondition: string;
2117
+ reactionTime: string;
2118
+ resolutionTime: string;
2119
+ actualReactionTime: string;
2120
+ actualResolutionTime: string;
2121
+ };
2122
+ WebitelApplications: {
2123
+ [x: number]: {
2124
+ name: string;
2125
+ sections?: undefined;
2126
+ } | {
2127
+ name: string;
2128
+ sections: {
2129
+ scorecards: string;
2130
+ contacts?: undefined;
2131
+ cases?: undefined;
2132
+ priorities?: undefined;
2133
+ "close-reason-groups"?: undefined;
2134
+ statuses?: undefined;
2135
+ slas?: undefined;
2136
+ "service-catalogs"?: undefined;
2137
+ sources?: undefined;
2138
+ "contact-groups"?: undefined;
2139
+ queues?: undefined;
2140
+ agents?: undefined;
2141
+ activeCalls?: undefined;
2142
+ users?: undefined;
2143
+ license?: undefined;
2144
+ devices?: undefined;
2145
+ flow?: undefined;
2146
+ dialplan?: undefined;
2147
+ gateways?: undefined;
2148
+ chatplan?: undefined;
2149
+ "chat-gateways"?: undefined;
2150
+ skills?: undefined;
2151
+ buckets?: undefined;
2152
+ media?: undefined;
2153
+ "shift-templates"?: undefined;
2154
+ "pause-templates"?: undefined;
2155
+ "working-conditions"?: undefined;
2156
+ blacklist?: undefined;
2157
+ calendars?: undefined;
2158
+ regions?: undefined;
2159
+ communications?: undefined;
2160
+ "pause-cause"?: undefined;
2161
+ teams?: undefined;
2162
+ resources?: undefined;
2163
+ "resource-groups"?: undefined;
2164
+ storage?: undefined;
2165
+ "storage-policies"?: undefined;
2166
+ "cognitive-profiles"?: undefined;
2167
+ "email-profiles"?: undefined;
2168
+ "single-sign-on"?: undefined;
2169
+ "import-csv"?: undefined;
2170
+ triggers?: undefined;
2171
+ roles?: undefined;
2172
+ objects?: undefined;
2173
+ changelogs?: undefined;
2174
+ configuration?: undefined;
2175
+ "global-variables"?: undefined;
2176
+ "quick-replies"?: undefined;
2177
+ };
2178
+ } | {
2179
+ name: string;
2180
+ sections: {
2181
+ contacts: string;
2182
+ cases: string;
2183
+ priorities: string;
2184
+ "close-reason-groups": string;
2185
+ statuses: string;
2186
+ slas: string;
2187
+ "service-catalogs": string;
2188
+ sources: string;
2189
+ "contact-groups": string;
2190
+ scorecards?: undefined;
2191
+ queues?: undefined;
2192
+ agents?: undefined;
2193
+ activeCalls?: undefined;
2194
+ users?: undefined;
2195
+ license?: undefined;
2196
+ devices?: undefined;
2197
+ flow?: undefined;
2198
+ dialplan?: undefined;
2199
+ gateways?: undefined;
2200
+ chatplan?: undefined;
2201
+ "chat-gateways"?: undefined;
2202
+ skills?: undefined;
2203
+ buckets?: undefined;
2204
+ media?: undefined;
2205
+ "shift-templates"?: undefined;
2206
+ "pause-templates"?: undefined;
2207
+ "working-conditions"?: undefined;
2208
+ blacklist?: undefined;
2209
+ calendars?: undefined;
2210
+ regions?: undefined;
2211
+ communications?: undefined;
2212
+ "pause-cause"?: undefined;
2213
+ teams?: undefined;
2214
+ resources?: undefined;
2215
+ "resource-groups"?: undefined;
2216
+ storage?: undefined;
2217
+ "storage-policies"?: undefined;
2218
+ "cognitive-profiles"?: undefined;
2219
+ "email-profiles"?: undefined;
2220
+ "single-sign-on"?: undefined;
2221
+ "import-csv"?: undefined;
2222
+ triggers?: undefined;
2223
+ roles?: undefined;
2224
+ objects?: undefined;
2225
+ changelogs?: undefined;
2226
+ configuration?: undefined;
2227
+ "global-variables"?: undefined;
2228
+ "quick-replies"?: undefined;
2229
+ };
2230
+ } | {
2231
+ name: string;
2232
+ sections: {
2233
+ queues: string;
2234
+ agents: string;
2235
+ activeCalls: string;
2236
+ scorecards?: undefined;
2237
+ contacts?: undefined;
2238
+ cases?: undefined;
2239
+ priorities?: undefined;
2240
+ "close-reason-groups"?: undefined;
2241
+ statuses?: undefined;
2242
+ slas?: undefined;
2243
+ "service-catalogs"?: undefined;
2244
+ sources?: undefined;
2245
+ "contact-groups"?: undefined;
2246
+ users?: undefined;
2247
+ license?: undefined;
2248
+ devices?: undefined;
2249
+ flow?: undefined;
2250
+ dialplan?: undefined;
2251
+ gateways?: undefined;
2252
+ chatplan?: undefined;
2253
+ "chat-gateways"?: undefined;
2254
+ skills?: undefined;
2255
+ buckets?: undefined;
2256
+ media?: undefined;
2257
+ "shift-templates"?: undefined;
2258
+ "pause-templates"?: undefined;
2259
+ "working-conditions"?: undefined;
2260
+ blacklist?: undefined;
2261
+ calendars?: undefined;
2262
+ regions?: undefined;
2263
+ communications?: undefined;
2264
+ "pause-cause"?: undefined;
2265
+ teams?: undefined;
2266
+ resources?: undefined;
2267
+ "resource-groups"?: undefined;
2268
+ storage?: undefined;
2269
+ "storage-policies"?: undefined;
2270
+ "cognitive-profiles"?: undefined;
2271
+ "email-profiles"?: undefined;
2272
+ "single-sign-on"?: undefined;
2273
+ "import-csv"?: undefined;
2274
+ triggers?: undefined;
2275
+ roles?: undefined;
2276
+ objects?: undefined;
2277
+ changelogs?: undefined;
2278
+ configuration?: undefined;
2279
+ "global-variables"?: undefined;
2280
+ "quick-replies"?: undefined;
2281
+ };
2282
+ } | {
2283
+ name: string;
2284
+ sections: {
2285
+ users: string;
2286
+ license: string;
2287
+ devices: string;
2288
+ flow: string;
2289
+ dialplan: string;
2290
+ gateways: string;
2291
+ chatplan: string;
2292
+ "chat-gateways": string;
2293
+ skills: string;
2294
+ buckets: string;
2295
+ media: string;
2296
+ "shift-templates": string;
2297
+ "pause-templates": string;
2298
+ "working-conditions": string;
2299
+ blacklist: string;
2300
+ calendars: string;
2301
+ regions: string;
2302
+ communications: string;
2303
+ "pause-cause": string;
2304
+ agents: string;
2305
+ teams: string;
2306
+ resources: string;
2307
+ "resource-groups": string;
2308
+ queues: string;
2309
+ storage: string;
2310
+ "storage-policies": string;
2311
+ "cognitive-profiles": string;
2312
+ "email-profiles": string;
2313
+ "single-sign-on": string;
2314
+ "import-csv": string;
2315
+ triggers: string;
2316
+ roles: string;
2317
+ objects: string;
2318
+ changelogs: string;
2319
+ configuration: string;
2320
+ "global-variables": string;
2321
+ "quick-replies": string;
2322
+ scorecards?: undefined;
2323
+ contacts?: undefined;
2324
+ cases?: undefined;
2325
+ priorities?: undefined;
2326
+ "close-reason-groups"?: undefined;
2327
+ statuses?: undefined;
2328
+ slas?: undefined;
2329
+ "service-catalogs"?: undefined;
2330
+ sources?: undefined;
2331
+ "contact-groups"?: undefined;
2332
+ activeCalls?: undefined;
2333
+ };
2334
+ };
2335
+ };
2336
+ validation: {
2337
+ required: string;
2338
+ numeric: string;
2339
+ email: string;
2340
+ gatewayHostValidator: string;
2341
+ sipAccountValidator: string;
2342
+ ipValidator: string;
2343
+ macValidator: string;
2344
+ minValue: string;
2345
+ maxValue: string;
2346
+ maxLength: string;
2347
+ sameAs: string;
2348
+ requiredArrayValue: string;
2349
+ minLength: string;
2350
+ url: string;
2351
+ websocketValidator: string;
2352
+ isRegExpMatched: string;
2353
+ regExpValidator: string;
2354
+ domainValidator: string;
2355
+ decimalValidator: string;
2356
+ latinWithNumber: string;
2357
+ integer: string;
2358
+ nameAlreadyInUse: string;
2359
+ };
2360
+ webitelUI: {
2361
+ searchBar: {
2362
+ placeholder: string;
2363
+ settingsHint: string;
2364
+ variableSearchHint: string;
2365
+ };
2366
+ timepicker: {
2367
+ day: string;
2368
+ hour: string;
2369
+ min: string;
2370
+ sec: string;
2371
+ };
2372
+ datetimepicker: {
2373
+ lastHour: string;
2374
+ lastDay: string;
2375
+ };
2376
+ pagination: {
2377
+ sizeText: string;
2378
+ prev: string;
2379
+ next: string;
2380
+ };
2381
+ appNavigator: {
2382
+ title: string;
2383
+ admin: string;
2384
+ agent: string;
2385
+ supervisor: string;
2386
+ audit: string;
2387
+ history: string;
2388
+ grafana: string;
2389
+ crm: string;
2390
+ };
2391
+ headerActions: {
2392
+ account: string;
2393
+ docs: string;
2394
+ settings: string;
2395
+ logout: string;
2396
+ buildVersion: string;
2397
+ };
2398
+ tableActions: {
2399
+ filterReset: string;
2400
+ columnSelect: string;
2401
+ refreshTable: string;
2402
+ expandFilters: string;
2403
+ };
2404
+ tableColumnSelect: {
2405
+ title: string;
2406
+ };
2407
+ statusSelect: {
2408
+ online: string;
2409
+ pause: string;
2410
+ offline: string;
2411
+ breakOut: string;
2412
+ };
2413
+ iconAction: {
2414
+ hints: {
2415
+ delete: ({ linked }: {
2416
+ linked: any;
2417
+ }) => any;
2418
+ edit: ({ linked }: {
2419
+ linked: any;
2420
+ }) => any;
2421
+ add: ({ linked }: {
2422
+ linked: any;
2423
+ }) => any;
2424
+ history: ({ linked }: {
2425
+ linked: any;
2426
+ }) => any;
2427
+ download: ({ linked }: {
2428
+ linked: any;
2429
+ }) => any;
2430
+ filters: ({ linked }: {
2431
+ linked: any;
2432
+ }) => any;
2433
+ columns: string;
2434
+ variables: string;
2435
+ refresh: ({ linked }: {
2436
+ linked: any;
2437
+ }) => any;
2438
+ expand: ({ linked }: {
2439
+ linked: any;
2440
+ }) => any;
2441
+ collapse: ({ linked }: {
2442
+ linked: any;
2443
+ }) => any;
2444
+ close: ({ linked }: {
2445
+ linked: any;
2446
+ }) => any;
2447
+ clear: ({ linked }: {
2448
+ linked: any;
2449
+ }) => any;
2450
+ "add-filter": ({ linked }: {
2451
+ linked: any;
2452
+ }) => any;
2453
+ save: ({ linked }: {
2454
+ linked: any;
2455
+ }) => any;
2456
+ cancel: ({ linked }: {
2457
+ linked: any;
2458
+ }) => any;
2459
+ "save-preset": ({ linked }: {
2460
+ linked: any;
2461
+ }) => string;
2462
+ "apply-preset": ({ linked }: {
2463
+ linked: any;
2464
+ }) => string;
2465
+ "add-contact": ({ linked }: {
2466
+ linked: any;
2467
+ }) => string;
2468
+ };
2469
+ };
2470
+ errorPages: {
2471
+ goBack: string;
2472
+ page403: {
2473
+ title: string;
2474
+ text: string;
2475
+ };
2476
+ page404: {
2477
+ title: string;
2478
+ text: string;
2479
+ };
2480
+ };
2481
+ copyAction: {
2482
+ copy: string;
2483
+ copied: string;
2484
+ };
2485
+ auditForm: {
2486
+ question: string;
2487
+ option: string;
2488
+ score: string;
2489
+ addQuestion: string;
2490
+ answerType: string;
2491
+ type: {
2492
+ options: string;
2493
+ score: string;
2494
+ };
2495
+ clearSelection: string;
2496
+ };
2497
+ deleteConfirmationPopup: {
2498
+ title: string;
2499
+ askingAlert: string;
2500
+ tableAskingAlert: string;
2501
+ deleteAll: string;
2502
+ };
2503
+ dummy: {
2504
+ text: string;
2505
+ };
2506
+ empty: {
2507
+ text: {
2508
+ empty: string;
2509
+ filters: string;
2510
+ };
2511
+ };
2512
+ agentStatusSelect: {
2513
+ pauseCausePopup: {
2514
+ title: string;
2515
+ min: string;
2516
+ unlimited: string;
2517
+ };
2518
+ statusSelectErrorPopup: {
2519
+ title: string;
2520
+ message: string;
2521
+ };
2522
+ };
2523
+ saveFailedPopup: {
2524
+ title: string;
2525
+ label: string;
2526
+ exportToJson: string;
2527
+ };
2528
+ filters: {
2529
+ datetime: {
2530
+ rdt_today: string;
2531
+ rdt_this_week: string;
2532
+ rdt_this_month: string;
2533
+ rdt_custom: string;
2534
+ };
2535
+ addFilter: ({ linked }: {
2536
+ linked: any;
2537
+ }) => string;
2538
+ filterName: ({ linked }: {
2539
+ linked: any;
2540
+ }) => any;
2541
+ filterValue: ({ linked }: {
2542
+ linked: any;
2543
+ }) => any;
2544
+ filterValueFrom: ({ linked }: {
2545
+ linked: any;
2546
+ }) => string;
2547
+ filterLabel: ({ linked }: {
2548
+ linked: any;
2549
+ }) => any;
2550
+ actualReactionTime: ({ linked }: {
2551
+ linked: any;
2552
+ }) => any;
2553
+ actualResolutionTime: ({ linked }: {
2554
+ linked: any;
2555
+ }) => any;
2556
+ agent: ({ linked }: {
2557
+ linked: any;
2558
+ }) => any;
2559
+ amdResult: ({ linked }: {
2560
+ linked: any;
2561
+ }) => any;
2562
+ assignee: ({ linked }: {
2563
+ linked: any;
2564
+ }) => any;
2565
+ author: ({ linked }: {
2566
+ linked: any;
2567
+ }) => any;
2568
+ cause: ({ linked }: {
2569
+ linked: any;
2570
+ }) => any;
2571
+ closeReasonGroups: ({ linked }: {
2572
+ linked: any;
2573
+ }) => any;
2574
+ contact: ({ linked }: {
2575
+ linked: any;
2576
+ }) => any;
2577
+ contactGroup: ({ linked }: {
2578
+ linked: any;
2579
+ }) => any;
2580
+ createdAt: ({ linked }: {
2581
+ linked: any;
2582
+ }) => any;
2583
+ createdAtFrom: ({ linked }: {
2584
+ linked: any;
2585
+ }) => any;
2586
+ createdAtTo: ({ linked }: {
2587
+ linked: any;
2588
+ }) => any;
2589
+ direction: ({ linked }: {
2590
+ linked: any;
2591
+ }) => any;
2592
+ gateway: ({ linked }: {
2593
+ linked: any;
2594
+ }) => any;
2595
+ grantee: ({ linked }: {
2596
+ linked: any;
2597
+ }) => any;
2598
+ hasAttachment: ({ linked }: {
2599
+ linked: any;
2600
+ }) => any;
2601
+ hasFile: ({ linked }: {
2602
+ linked: any;
2603
+ }) => any;
2604
+ hasTranscription: ({ linked }: {
2605
+ linked: any;
2606
+ }) => any;
2607
+ hasUser: ({ linked }: {
2608
+ linked: any;
2609
+ }) => any;
2610
+ impacted: ({ linked }: {
2611
+ linked: any;
2612
+ }) => any;
2613
+ contactLabel: ({ linked }: {
2614
+ linked: any;
2615
+ }) => any;
2616
+ contactOwner: ({ linked }: {
2617
+ linked: any;
2618
+ }) => any;
2619
+ priority: ({ linked }: {
2620
+ linked: any;
2621
+ }) => any;
2622
+ queue: ({ linked }: {
2623
+ linked: any;
2624
+ }) => any;
2625
+ rated: string;
2626
+ ratedBy: ({ linked }: {
2627
+ linked: any;
2628
+ }) => any;
2629
+ rating: ({ linked }: {
2630
+ linked: any;
2631
+ }) => any;
2632
+ reactionTime: ({ linked }: {
2633
+ linked: any;
2634
+ }) => any;
2635
+ reporter: ({ linked }: {
2636
+ linked: any;
2637
+ }) => any;
2638
+ resolutionTime: ({ linked }: {
2639
+ linked: any;
2640
+ }) => any;
2641
+ score: ({ linked }: {
2642
+ linked: any;
2643
+ }) => any;
2644
+ service: ({ linked }: {
2645
+ linked: any;
2646
+ }) => any;
2647
+ sla: ({ linked }: {
2648
+ linked: any;
2649
+ }) => any;
2650
+ slaCondition: ({ linked }: {
2651
+ linked: any;
2652
+ }) => any;
2653
+ source: ({ linked }: {
2654
+ linked: any;
2655
+ }) => any;
2656
+ status: ({ linked }: {
2657
+ linked: any;
2658
+ }) => any;
2659
+ tag: ({ linked }: {
2660
+ linked: any;
2661
+ }) => any;
2662
+ talkDuration: ({ linked }: {
2663
+ linked: any;
2664
+ }) => any;
2665
+ team: ({ linked }: {
2666
+ linked: any;
2667
+ }) => any;
2668
+ totalDuration: ({ linked }: {
2669
+ linked: any;
2670
+ }) => any;
2671
+ user: ({ linked }: {
2672
+ linked: any;
2673
+ }) => any;
2674
+ variable: ({ linked }: {
2675
+ linked: any;
2676
+ }) => any;
2677
+ presets: {
2678
+ preset: string;
2679
+ overwritePresetTitle: string;
2680
+ overwritePresetText: string;
2681
+ notifications: {
2682
+ success: {
2683
+ update: ({ linked }: {
2684
+ linked: any;
2685
+ }) => any;
2686
+ create: ({ linked }: {
2687
+ linked: any;
2688
+ }) => any;
2689
+ delete: ({ linked }: {
2690
+ linked: any;
2691
+ }) => any;
2692
+ };
2693
+ };
2694
+ };
2695
+ };
2696
+ };
2697
+ systemNotifications: {
2698
+ success: {
2699
+ update: ({ named }: {
2700
+ named: any;
2701
+ }) => string;
2702
+ create: ({ named }: {
2703
+ named: any;
2704
+ }) => string;
2705
+ delete: ({ named }: {
2706
+ named: any;
2707
+ }) => string;
2708
+ };
2709
+ };
2710
+ errorNotifications: {
2711
+ chatHistoryApi: string;
2712
+ markChatProcessed: string;
2713
+ };
2714
+ };
2715
+ kz: {
2716
+ reusable: {
2717
+ total: string;
2718
+ ok: string;
2719
+ save: string;
2720
+ saveAs: string;
2721
+ saved: string;
2722
+ send: string;
2723
+ start: string;
2724
+ close: string;
2725
+ add: string;
2726
+ cancel: string;
2727
+ import: string;
2728
+ export: string;
2729
+ true: string;
2730
+ delete: string;
2731
+ search: string;
2732
+ open: string;
2733
+ name: string;
2734
+ expand: string;
2735
+ collapse: string;
2736
+ generate: string;
2737
+ lang: {
2738
+ en: string;
2739
+ es: string;
2740
+ ru: string;
2741
+ ua: string;
2742
+ kz: string;
2743
+ };
2744
+ from: string;
2745
+ to: string;
2746
+ state: string;
2747
+ refresh: string;
2748
+ retry: string;
2749
+ downloadAll: string;
2750
+ warning: string;
2751
+ doNotSave: string;
2752
+ required: string;
2753
+ copy: string;
2754
+ new: string;
2755
+ createdAt: string;
2756
+ createdBy: string;
2757
+ modifiedAt: string;
2758
+ modifiedBy: string;
2759
+ general: string;
2760
+ generalInfo: string;
2761
+ all: string;
2762
+ upload: string;
2763
+ edit: string;
2764
+ back: string;
2765
+ step: string;
2766
+ };
2767
+ vocabulary: {
2768
+ language: string;
2769
+ voice: string;
2770
+ format: string;
2771
+ text: string;
2772
+ yes: string;
2773
+ no: string;
2774
+ description: string;
2775
+ login: string;
2776
+ host: string;
2777
+ time: string;
2778
+ channel: string;
2779
+ file: string;
2780
+ logout: string;
2781
+ priority: string;
2782
+ variables: string;
2783
+ type: string;
2784
+ tag: string;
2785
+ output: string;
2786
+ values: string;
2787
+ keys: string;
2788
+ duration: string;
2789
+ reset: string;
2790
+ errors: string;
2791
+ labels: string;
2792
+ permissions: string;
2793
+ options: string;
2794
+ emails: string;
2795
+ phones: string;
2796
+ messaging: string;
2797
+ };
2798
+ date: {
2799
+ sec: string;
2800
+ timezone: string;
2801
+ };
2802
+ objects: {
2803
+ team: string;
2804
+ supervisor: string;
2805
+ auditor: string;
2806
+ region: string;
2807
+ communicationType: string;
2808
+ queue: {
2809
+ type: {
2810
+ 1: string;
2811
+ 0: string;
2812
+ 2: string;
2813
+ 5: string;
2814
+ 4: string;
2815
+ 3: string;
2816
+ 6: string;
2817
+ 7: string;
2818
+ 8: string;
2819
+ };
2820
+ };
2821
+ agent: {
2822
+ status: {
2823
+ [x: number]: string;
2824
+ online: string;
2825
+ pause: string;
2826
+ offline: string;
2827
+ };
2828
+ };
2829
+ flow: {
2830
+ type: {
2831
+ chat: string;
2832
+ voice: string;
2833
+ service: string;
2834
+ processing: string;
2835
+ default: string;
2836
+ };
2837
+ };
2838
+ };
2839
+ channel: {
2840
+ state: {
2841
+ [x: number]: string;
2842
+ waiting: string;
2843
+ distribute: string;
2844
+ offering: string;
2845
+ answered: string;
2846
+ active: string;
2847
+ bridged: string;
2848
+ hold: string;
2849
+ missed: string;
2850
+ processing: string;
2851
+ transfer: string;
2852
+ };
2853
+ type: {
2854
+ call: string;
2855
+ email: string;
2856
+ chat: string;
2857
+ task: string;
2858
+ };
2859
+ };
2860
+ calls: {
2861
+ direction: {
2862
+ inbound: string;
2863
+ outbound: string;
2864
+ };
2865
+ };
2866
+ WebitelApplications: {
2867
+ [x: number]: {
2868
+ sections?: undefined;
2869
+ } | {
2870
+ sections: {
2871
+ [x: number]: string;
2872
+ };
2873
+ };
2874
+ };
2875
+ validation: {
2876
+ required: string;
2877
+ numeric: string;
2878
+ email: string;
2879
+ gatewayHostValidator: string;
2880
+ sipAccountValidator: string;
2881
+ ipValidator: string;
2882
+ macValidator: string;
2883
+ minValue: string;
2884
+ maxValue: string;
2885
+ sameAs: string;
2886
+ requiredArrayValue: string;
2887
+ minLength: string;
2888
+ url: string;
2889
+ regExpValidator: string;
2890
+ domainValidator: string;
2891
+ };
2892
+ webitelUI: {
2893
+ searchBar: {
2894
+ placeholder: string;
2895
+ };
2896
+ timepicker: {
2897
+ hour: string;
2898
+ min: string;
2899
+ sec: string;
2900
+ };
2901
+ datetimepicker: {
2902
+ lastHour: string;
2903
+ lastDay: string;
2904
+ };
2905
+ pagination: {
2906
+ sizeText: string;
2907
+ prev: string;
2908
+ next: string;
2909
+ };
2910
+ appNavigator: {
2911
+ title: string;
2912
+ };
2913
+ headerActions: {
2914
+ account: string;
2915
+ docs: string;
2916
+ settings: string;
2917
+ logout: string;
2918
+ buildVersion: string;
2919
+ };
2920
+ tableActions: {
2921
+ filterReset: string;
2922
+ columnSelect: string;
2923
+ refreshTable: string;
2924
+ expandFilters: string;
2925
+ };
2926
+ tableColumnSelect: {
2927
+ title: string;
2928
+ };
2929
+ statusSelect: {
2930
+ online: string;
2931
+ pause: string;
2932
+ offline: string;
2933
+ breakOut: string;
2934
+ };
2935
+ iconAction: {
2936
+ deleteActionHint: string;
2937
+ editActionHint: string;
2938
+ addActionHint: string;
2939
+ historyActionHint: string;
2940
+ downloadActionHint: string;
2941
+ };
2942
+ errorPages: {
2943
+ goBack: string;
2944
+ page403: {
2945
+ title: string;
2946
+ text: string;
2947
+ };
2948
+ page404: {
2949
+ title: string;
2950
+ text: string;
2951
+ };
2952
+ };
2953
+ copyAction: {
2954
+ copy: string;
2955
+ copied: string;
2956
+ };
2957
+ auditForm: {
2958
+ question: string;
2959
+ option: string;
2960
+ addQuestion: string;
2961
+ answerType: string;
2962
+ type: {
2963
+ options: string;
2964
+ score: string;
2965
+ };
2966
+ };
2967
+ deleteConfirmationPopup: {
2968
+ title: string;
2969
+ askingAlert: string;
2970
+ undoneActionAlert: string;
2971
+ deleteAll: string;
2972
+ };
2973
+ dummy: {
2974
+ text: string;
2975
+ };
2976
+ agentStatusSelect: {
2977
+ pauseCausePopup: {
2978
+ title: string;
2979
+ min: string;
2980
+ unlimited: string;
2981
+ };
2982
+ };
2983
+ };
2984
+ };
2985
+ }, {}, {}, string, true>;
2986
+ export default _default;