@webitel/ui-sdk 25.8.4 → 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.
- package/package.json +144 -40
- package/src/api/clients/index.js +2 -0
- package/src/api/clients/quickReplies/quickReplies.ts +117 -0
- package/src/modules/AuditForm/components/form-questions/options/audit-form-question-options-write-row.vue +1 -1
- package/types/api/axios/generateInstance.d.ts +2 -0
- package/types/api/clients/_shared/generatePermissionsApi.d.ts +13 -0
- package/types/api/clients/agents/agentChats.d.ts +10 -0
- package/types/api/clients/agents/agents.d.ts +55 -0
- package/types/api/clients/buckets/buckets.d.ts +30 -0
- package/types/api/clients/calendars/calendars.d.ts +35 -0
- package/types/api/clients/caseCloseReasonGroups/caseCloseReasonGroups.d.ts +30 -0
- package/types/api/clients/caseCloseReasons/caseCloseReasons.d.ts +36 -0
- package/types/api/clients/casePriorities/casePriorities.d.ts +30 -0
- package/types/api/clients/caseServiceCatalogs/serviceCatalogs.d.ts +30 -0
- package/types/api/clients/caseServices/services.d.ts +42 -0
- package/types/api/clients/caseStatusConditions/caseStatusConditions.d.ts +43 -0
- package/types/api/clients/caseStatuses/caseStatuses.d.ts +30 -0
- package/types/api/clients/catalog/catalog.d.ts +10 -0
- package/types/api/clients/chatGateways/chatGateways.d.ts +35 -0
- package/types/api/clients/chatGateways/defaults/defaultChatGateway.d.ts +15 -0
- package/types/api/clients/chatGateways/defaults/webChatGateway.d.ts +64 -0
- package/types/api/clients/chatGateways/enums/WebchatAlternativeChannel.enum.d.ts +8 -0
- package/types/api/clients/chatGateways/scripts/generateUri.d.ts +2 -0
- package/types/api/clients/communications/communications.d.ts +35 -0
- package/types/api/clients/configurations/configurations.d.ts +35 -0
- package/types/api/clients/contactGroups/contactGroups.d.ts +47 -0
- package/types/api/clients/flows/flow.d.ts +35 -0
- package/types/api/clients/gateways/defaults/defaultGateway.d.ts +8 -0
- package/types/api/clients/gateways/defaults/registerGateway.d.ts +13 -0
- package/types/api/clients/gateways/defaults/trunkingGateway.d.ts +11 -0
- package/types/api/clients/gateways/gateways.d.ts +35 -0
- package/types/api/clients/index.d.ts +34 -0
- package/types/api/clients/labels/labels.d.ts +13 -0
- package/types/api/clients/lists/blacklists.d.ts +30 -0
- package/types/api/clients/media/media.d.ts +24 -0
- package/types/api/clients/object/object.d.ts +13 -0
- package/types/api/clients/queues/defaults/processing.d.ts +2 -0
- package/types/api/clients/queues/queues.d.ts +40 -0
- package/types/api/clients/quickReplies/quickReplies.d.ts +24 -0
- package/types/api/clients/roles/roles.d.ts +40 -0
- package/types/api/clients/skills/skills.d.ts +30 -0
- package/types/api/clients/slaConditions/slaConditions.d.ts +36 -0
- package/types/api/clients/slas/slas.d.ts +30 -0
- package/types/api/clients/teams/teams.d.ts +30 -0
- package/types/api/clients/users/users.d.ts +46 -0
- package/types/api/clients//321/201ontacts/contactChatMessagesHistory.d.ts +16 -0
- package/types/api/clients//321/201ontacts/contacts.d.ts +29 -0
- package/types/api/clients//321/201ontacts/enums/ContactsSearchMode.d.ts +8 -0
- package/types/api/clients//321/201ontacts/index.d.ts +4 -0
- package/types/api/defaults/getDefaultGetListResponse/getDefaultGetListResponse.d.ts +5 -0
- package/types/api/defaults/getDefaultGetParams/getDefaultGetParams.d.ts +8 -0
- package/types/api/defaults/getDefaultInstance/getDefaultInstance.d.ts +2 -0
- package/types/api/defaults/getDefaultOpenAPIConfig/getDefaultOpenAPIConfig.d.ts +3 -0
- package/types/api/defaults/index.d.ts +5 -0
- package/types/api/history/index.d.ts +2 -0
- package/types/api/history/transcript/callTranscript.d.ts +15 -0
- package/types/api/interceptors/request/updateToken.interceptor.d.ts +2 -0
- package/types/api/interceptors/response/handleUnauthorized.interceptor.d.ts +2 -0
- package/types/api/transformers/addQueryParamsToUrl/addQueryParamsToUrl.transformer.d.ts +2 -0
- package/types/api/transformers/applyTransform.d.ts +5 -0
- package/types/api/transformers/camelToSnake/camelToSnake.transformer.d.ts +2 -0
- package/types/api/transformers/generateUrl/generateUrl.transformer.d.ts +2 -0
- package/types/api/transformers/index.d.ts +14 -0
- package/types/api/transformers/log/log.transformer.d.ts +2 -0
- package/types/api/transformers/merge/merge.transformer.d.ts +2 -0
- package/types/api/transformers/mergeEach/mergeEach.transformer.d.ts +2 -0
- package/types/api/transformers/notify/notify.transformer.d.ts +2 -0
- package/types/api/transformers/sanitize/sanitize.transformer.d.ts +2 -0
- package/types/api/transformers/snakeToCamel/snakeToCamel.transformer.d.ts +2 -0
- package/types/api/transformers/starToSearch/starToSearch.transformer.d.ts +2 -0
- package/types/api/websocket/WebSocketClientController.d.ts +19 -0
- package/types/api/websocket/config.d.ts +2 -0
- package/types/api/websocket/websocketErrorEventHandler.d.ts +2 -0
- package/types/assets/icons/sprite/index.d.ts +2 -0
- package/types/components/index.d.ts +145 -0
- package/types/components/on-demand/wt-cc-agent-status-timers/__tests__/wt-cc-agent-status-timers.spec.d.ts +1 -0
- package/types/components/on-demand/wt-save-failed-popup/__tests__/WtPopup.spec.d.ts +1 -0
- package/{dist/types → types}/components/on-demand/wt-save-failed-popup/wt-save-failed-popup.vue.d.ts +3 -3
- package/{dist/types → types}/components/on-demand/wt-selection-popup/wt-selection-popup.vue.d.ts +3 -3
- package/types/components/transitions/__tests__/ExpandTransition.spec.d.ts +1 -0
- package/types/components/wt-action-bar/WtActionBarActionsOrder.d.ts +2 -0
- package/types/components/wt-action-bar/__tests__/wt-action-bar.spec.d.ts +1 -0
- package/types/components/wt-action-bar/wt-action-bar.vue.d.ts +78 -0
- package/types/components/wt-app-header/__tests__/WtAppHeader.spec.d.ts +1 -0
- package/types/components/wt-app-header/__tests__/WtAppNavigator.spec.d.ts +1 -0
- package/types/components/wt-app-header/__tests__/WtHeaderActions.spec.d.ts +1 -0
- package/types/components/wt-avatar/__tests__/wt-avatar.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-avatar/wt-avatar.vue.d.ts +4 -4
- package/types/components/wt-badge/__tests__/wt-badge.spec.d.ts +1 -0
- package/types/components/wt-button/__tests__/WtButton.spec.d.ts +1 -0
- package/types/components/wt-button-select/__tests__/WtButtonSelect.spec.d.ts +1 -0
- package/types/components/wt-checkbox/__tests__/WtCheckbox.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-checkbox/wt-checkbox.vue.d.ts +3 -3
- package/types/components/wt-chip/__tests__/WtChip.spec.d.ts +1 -0
- package/types/components/wt-context-menu/__tests__/WtContextMenu.spec.d.ts +1 -0
- package/types/components/wt-copy-action/__tests__/WtCopyAction.spec.d.ts +1 -0
- package/types/components/wt-datepicker/__tests__/WtDatepicker.spec.d.ts +1 -0
- package/types/components/wt-divider/__tests__/WtDivider.spec.d.ts +1 -0
- package/types/components/wt-dual-panel/__tests__/WtDualPanel.d.ts +1 -0
- package/types/components/wt-dummy/__tests__/WtDummy.spec.d.ts +1 -0
- package/types/components/wt-empty/__tests__/wt-empty.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-empty/wt-empty.vue.d.ts +1 -1
- package/types/components/wt-error-page/__tests__/wt-error-page.spec.d.ts +1 -0
- package/types/components/wt-expansion-panel/__tests__/WtExpansionPanel.spec.d.ts +1 -0
- package/types/components/wt-filters-panel-wrapper/__tests__/WtFiltersPanelWrapper.spec.d.ts +1 -0
- package/types/components/wt-headline/__tests__/WtHeadline.spec.d.ts +1 -0
- package/types/components/wt-headline-nav/__tests__/wt-headline-nav.spec.d.ts +1 -0
- package/types/components/wt-hint/__tests__/WtHint.spec.d.ts +1 -0
- package/types/components/wt-icon/__tests__/WtIcon.spec.d.ts +1 -0
- package/types/components/wt-icon-action/__tests__/WtIconAction.spec.d.ts +1 -0
- package/types/components/wt-icon-action/iconMappings.d.ts +21 -0
- package/types/components/wt-icon-btn/__tests__/WtIconBtn.spec.d.ts +1 -0
- package/types/components/wt-image/__tests__/wt-image.spec.d.ts +1 -0
- package/types/components/wt-indicator/__tests__/WtIndicator.spec.d.ts +1 -0
- package/types/components/wt-input/__tests__/WtInput.spec.d.ts +1 -0
- package/types/components/wt-input-info/__tests__/WtInputInfo.spec.d.ts +1 -0
- package/types/components/wt-intersection-observer/__tests__/WtIntersectionObserver.spec.d.ts +1 -0
- package/types/components/wt-item-link/__tests__/WtItemLink.spec.d.ts +1 -0
- package/types/components/wt-label/__tests__/WtLabel.spec.d.ts +1 -0
- package/types/components/wt-label/mixins/labelUsageMixin.d.ts +19 -0
- package/types/components/wt-load-bar/__tests__/WtLoadBar.spec.d.ts +1 -0
- package/types/components/wt-loader/__tests__/WtLoader.spec.d.ts +1 -0
- package/types/components/wt-logo/__tests__/wt-logo.spec.d.ts +1 -0
- package/types/components/wt-navigation-bar/__tests__/WtNavigationBar.spec.d.ts +1 -0
- package/types/components/wt-notification/__tests__/WtNotification.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-notification/wt-notification.vue.d.ts +1 -1
- package/types/components/wt-notifications-bar/__tests__/WtNotificationsBar.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-notifications-bar/wt-notifications-bar.vue.d.ts +5 -1
- package/types/components/wt-page-header/__tests__/wt-page-header.spec.d.ts +1 -0
- package/types/components/wt-page-wrapper/__tests__/WtPageWrapper.spec.d.ts +1 -0
- package/types/components/wt-pagination/__tests__/WtPagination.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-pagination/wt-pagination.vue.d.ts +1 -1
- package/types/components/wt-player/__tests__/WtPlayer.spec.d.ts +1 -0
- package/types/components/wt-popup/__tests__/WtPopup.spec.d.ts +1 -0
- package/types/components/wt-progress-bar/__tests__/WtProgressBar.spec.d.ts +1 -0
- package/types/components/wt-radio/__tests__/WtRadio.spec.d.ts +1 -0
- package/types/components/wt-rounded-action/__tests__/WtRoundedAction.spec.d.ts +1 -0
- package/types/components/wt-search-bar/__tests__/WtSearchBar.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-search-bar/wt-search-bar.vue.d.ts +1 -1
- package/types/components/wt-select/__tests__/WtSelect.spec.d.ts +1 -0
- package/types/components/wt-select/mixins/__tests__/multiselectMixin.spec.d.ts +1 -0
- package/types/components/wt-select/mixins/multiselectMixin.d.ts +128 -0
- package/{dist/types → types}/components/wt-select/wt-select-v2.vue.d.ts +1 -1
- package/types/components/wt-select/wt-select.vue.d.ts +202 -0
- package/types/components/wt-slider/__tests__/WtSlider.spec.d.ts +1 -0
- package/types/components/wt-status-select/__tests__/WtStatusSelect.spec.d.ts +1 -0
- package/types/components/wt-status-select/_internals/StatusOptions.lookup.d.ts +18 -0
- package/{dist/types → types}/components/wt-status-select/wt-status-select.vue.d.ts +6 -6
- package/types/components/wt-stepper/__tests__/WtStepper.spec.vue.d.ts +1 -0
- package/types/components/wt-switcher/__tests__/WtSwitcher.spec.d.ts +1 -0
- package/types/components/wt-table/__tests__/WtTable.spec.d.ts +1 -0
- package/types/components/wt-table-actions/__tests__/WtTableActions.spec.d.ts +1 -0
- package/types/components/wt-table-column-select/__tests__/WtTableColumnSelect.spec.d.ts +1 -0
- package/types/components/wt-tabs/__tests__/WtTabs.spec.d.ts +1 -0
- package/types/components/wt-tags-input/__tests__/WtTagsInput.spec.d.ts +1 -0
- package/types/components/wt-tags-input/mixin/__tests__/taggableMixin.spec.d.ts +1 -0
- package/types/components/wt-tags-input/mixin/taggableMixin.d.ts +7 -0
- package/types/components/wt-tags-input/wt-tags-input.vue.d.ts +182 -0
- package/types/components/wt-textarea/__tests__/WtTextarea.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-textarea/wt-textarea.vue.d.ts +32 -3
- package/types/components/wt-time-input/__tests__/WtTimeInput.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-time-input/wt-time-input.vue.d.ts +31 -3
- package/types/components/wt-timepicker/__tests__/WtTimepicker.spec.d.ts +1 -0
- package/{dist/types → types}/components/wt-timepicker/wt-timepicker.vue.d.ts +24 -9
- package/types/components/wt-tooltip/__tests__/WtTooltip.spec.d.ts +1 -0
- package/types/components/wt-tooltip/_internals/useTooltipTriggerSubscriptions.d.ts +6 -0
- package/types/components/wt-tree/__tests__/WtTree.spec.d.ts +1 -0
- package/types/composables/useAccessControl/useAccessControl.d.ts +8 -0
- package/types/composables/useCachedInterval/__tests__/useCachedInterval.spec.d.ts +1 -0
- package/types/composables/useCachedInterval/useCachedInterval.d.ts +6 -0
- package/types/composables/useCachedItemInstanceName/useCachedItemInstanceName.d.ts +5 -0
- package/types/composables/useCard/useCardComponent.d.ts +12 -0
- package/types/composables/useCard/useCardTabs.d.ts +4 -0
- package/types/composables/useClose/useClose.d.ts +3 -0
- package/types/composables/useDestroyableSortable/useDestroyableSortable.d.ts +20 -0
- package/types/composables/useRepresentableAgentPauseCause/__tests__/useRepresentableAgentPauseCause.spec.d.ts +1 -0
- package/types/composables/useRepresentableAgentPauseCause/useRepresentableAgentPauseCause.d.ts +3 -0
- package/types/composables/useValidate/useValidate.d.ts +4 -0
- package/types/directives/clickaway/clickaway.d.ts +2 -0
- package/types/directives/index.d.ts +5 -0
- package/types/enums/AbstractUserStatus/AbstractUserStatus.enum.d.ts +9 -0
- package/types/enums/AgentStatus/AgentStatus.enum.d.ts +7 -0
- package/types/enums/ChatGatewayProvider/ChatGatewayProvider.enum.d.ts +11 -0
- package/types/enums/ChatGatewayProvider/ProviderIconType.enum.d.ts +10 -0
- package/types/enums/IconAction/IconAction.enum.d.ts +25 -0
- package/types/enums/QueueType/QueueType.enum.d.ts +12 -0
- package/types/enums/TypesExportedSettings/TypesExportedSettings.enum.d.ts +5 -0
- package/types/enums/WebitelApplications/AdminSections.enum.d.ts +2 -0
- package/types/enums/WebitelApplications/AuditorSections.enum.d.ts +2 -0
- package/types/enums/WebitelApplications/CrmSections.enum.d.ts +2 -0
- package/types/enums/WebitelApplications/SupervisorSections.enum.d.ts +2 -0
- package/types/enums/WebitelApplications/WebitelApplications.enum.d.ts +2 -0
- package/{dist/types → types}/install.d.ts +1 -1
- package/types/locale/en/en.d.ts +915 -0
- package/types/locale/es/es.d.ts +245 -0
- package/types/locale/i18n.d.ts +2986 -0
- package/types/locale/kz/kz.d.ts +301 -0
- package/types/locale/ru/ru.d.ts +911 -0
- package/types/locale/ua/ua.d.ts +911 -0
- package/types/main.d.ts +1 -0
- package/types/mixins/dataFilterMixins/__tests__/apiFilterMixin.spec.d.ts +1 -0
- package/types/mixins/dataFilterMixins/__tests__/enumFilterMixin.spec.d.ts +1 -0
- package/types/mixins/dataFilterMixins/__tests__/paginationFilterMixin.spec.d.ts +1 -0
- package/types/mixins/dataFilterMixins/__tests__/sortFilterMixin.spec.d.ts +1 -0
- package/types/mixins/dataFilterMixins/__tests__/urlControllerMixin.spec.d.ts +1 -0
- package/types/mixins/dataFilterMixins/_urlControllerMixin/_urlControllerMixin.d.ts +17 -0
- package/types/mixins/dataFilterMixins/apiFilterMixin.d.ts +45 -0
- package/types/mixins/dataFilterMixins/baseFilterMixin/baseFilterMixin.d.ts +33 -0
- package/types/mixins/dataFilterMixins/enumFilterMixin.d.ts +47 -0
- package/types/mixins/dataFilterMixins/paginationFilterMixin.d.ts +62 -0
- package/types/mixins/dataFilterMixins/sortFilterMixin.d.ts +46 -0
- package/types/mixins/validationMixin/__tests__/validationMixin.spec.d.ts +1 -0
- package/types/mixins/validationMixin/validationMixin.d.ts +19 -0
- package/types/modules/AgentStatusSelect/api/agent-status.d.ts +13 -0
- package/types/modules/AgentStatusSelect/api/pause-cause.d.ts +12 -0
- package/types/modules/AgentStatusSelect/components/__tests__/wt-cc-agent-status-select.spec.d.ts +1 -0
- package/types/modules/AgentStatusSelect/components/__tests__/wt-cc-pause-cause-popup.spec.d.ts +1 -0
- package/{dist/types → types}/modules/AgentStatusSelect/components/_internals/wt-cc-pause-cause-popup.vue.d.ts +1 -1
- package/{dist/types → types}/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue.d.ts +2 -2
- package/types/modules/Appearance/components/__tests__/wt-dark-mode-switcher.spec.d.ts +1 -0
- package/types/modules/Appearance/store/AppearanceStoreModule.d.ts +15 -0
- package/types/modules/Appearance/store/__tests__/AppearanceStoreModule.spec.d.ts +1 -0
- package/types/modules/AuditForm/components/form-questions/options/__tests__/audit-form-question-options-write-row.spec.d.ts +1 -0
- package/types/modules/AuditForm/components/form-questions/options/__tests__/audit-form-question-options.spec.d.ts +1 -0
- package/types/modules/AuditForm/components/form-questions/score/__tests__/audit-form-question-score.spec.d.ts +1 -0
- package/types/modules/AuditForm/schemas/AuditFormQuestionOptionsSchema.d.ts +12 -0
- package/types/modules/AuditForm/schemas/AuditFormQuestionSchema.d.ts +9 -0
- package/types/modules/AuditForm/schemas/AuditFormQuestionScoreSchema.d.ts +6 -0
- package/types/modules/CSVExport/CSVExport.d.ts +20 -0
- package/types/modules/CSVExport/XLSExport.d.ts +19 -0
- package/types/modules/CSVExport/__tests__/CSVExport.spec.d.ts +1 -0
- package/types/modules/CSVExport/mixins/exportCSVMixin.d.ts +16 -0
- package/types/modules/CSVExport/mixins/exportXLSMixin.d.ts +16 -0
- package/types/modules/CardStoreModule/composables/useCardStore.d.ts +12 -0
- package/types/modules/CardStoreModule/store/CardStoreModule.d.ts +45 -0
- package/types/modules/DeleteConfirmationPopup/__tests__/delete-confirmation-popup.spec.d.ts +1 -0
- package/types/modules/DeleteConfirmationPopup/composables/useDeleteConfirmationPopup.d.ts +10 -0
- package/types/modules/FilesExport/FilesExport.d.ts +28 -0
- package/types/modules/FilesExport/__tests__/FilesExport.spec.d.ts +1 -0
- package/types/modules/FilesExport/mixins/exportFilesMixin.d.ts +16 -0
- package/types/modules/FilesExport/scripts/generateMediaURL.d.ts +2 -0
- package/types/modules/Filters/classes/BaseFilterSchema.d.ts +17 -0
- package/types/modules/Filters/components/__tests__/filter-pagination.spec.d.ts +1 -0
- package/types/modules/Filters/components/__tests__/filter-table-fields.spec.d.ts +1 -0
- package/types/modules/Filters/composables/useTableFilters.d.ts +8 -0
- package/types/modules/Filters/enums/FilterEvent.enum.d.ts +6 -0
- package/types/modules/Filters/scripts/getters/index.d.ts +4 -0
- package/types/modules/Filters/scripts/getters/localStorageGetter.d.ts +2 -0
- package/types/modules/Filters/scripts/getters/queryGetter.d.ts +2 -0
- package/types/modules/Filters/scripts/getters/valueGetter.d.ts +2 -0
- package/types/modules/Filters/scripts/restores/index.d.ts +3 -0
- package/types/modules/Filters/scripts/restores/localStorageRestore.d.ts +2 -0
- package/types/modules/Filters/scripts/restores/queryRestore.d.ts +2 -0
- package/types/modules/Filters/scripts/setters/index.d.ts +4 -0
- package/types/modules/Filters/scripts/setters/localStorageSetter.d.ts +2 -0
- package/types/modules/Filters/scripts/setters/querySetter.d.ts +2 -0
- package/types/modules/Filters/scripts/setters/valueSetter.d.ts +2 -0
- package/types/modules/Filters/scripts/utils/changeRouteQuery.d.ts +5 -0
- package/types/modules/Filters/store/FiltersStoreModule.d.ts +40 -0
- package/types/modules/Filters/store/__tests__/FiltersStoreModule.spec.d.ts +1 -0
- package/types/modules/Notifications/assets/audio/triggerSound.d.ts +8 -0
- package/types/modules/Notifications/store/NotificationsStoreModule.d.ts +54 -0
- package/types/modules/Notifications/store/__tests__/NotificationsStoreModule.actions.spec.d.ts +1 -0
- package/types/modules/Notifications/store/__tests__/NotificationsStoreModule.mutations.spec.d.ts +1 -0
- package/types/modules/ObjectPermissions/_internals/enums/AccessMode.enum.d.ts +5 -0
- package/types/modules/ObjectPermissions/_internals/modules/filters/store/filters.store.d.ts +14 -0
- package/types/modules/ObjectPermissions/_internals/store/helpers/createObjectPermissionsStoreModule.d.ts +1 -0
- package/types/modules/ObjectPermissions/_internals/store/modules/headers.d.ts +7 -0
- package/types/modules/ObjectPermissions/_internals/store/modules/objectPermissionsStoreModule.d.ts +39 -0
- package/types/modules/ObjectPermissions/store/index.d.ts +2 -0
- package/types/modules/QueryFilters/api/__tests__/defaults.spec.d.ts +1 -0
- package/types/modules/QueryFilters/api/defaults.d.ts +10 -0
- package/types/modules/QueryFilters/classes/ApiFilterSchema.d.ts +11 -0
- package/types/modules/QueryFilters/classes/BaseFilterSchema.d.ts +8 -0
- package/types/modules/QueryFilters/classes/EnumFilterSchema.d.ts +9 -0
- package/types/modules/QueryFilters/classes/__tests__/ApiFilterSchema.spec.d.ts +1 -0
- package/types/modules/QueryFilters/components/__tests__/abstract-api-filter.spec.d.ts +1 -0
- package/types/modules/QueryFilters/components/__tests__/abstract-enum-filter.spec.d.ts +1 -0
- package/types/modules/QueryFilters/components/__tests__/filter-datetime.spec.d.ts +1 -0
- package/types/modules/QueryFilters/components/__tests__/filter-from-to.spec.d.ts +1 -0
- package/types/modules/QueryFilters/components/__tests__/filter-search.spec.d.ts +1 -0
- package/types/modules/QueryFilters/components/abstract-api-filter.vue.d.ts +62 -0
- package/types/modules/QueryFilters/components/abstract-enum-filter.vue.d.ts +66 -0
- package/types/modules/QueryFilters/components/filter-datetime.vue.d.ts +55 -0
- package/types/modules/QueryFilters/components/filter-from-to.vue.d.ts +64 -0
- package/types/modules/QueryFilters/components/filter-search.vue.d.ts +50 -0
- package/{dist/types → types}/modules/QueryFilters/components/filter-table-fields.vue.d.ts +35 -1
- package/types/modules/QueryFilters/mixins/__tests__/apiFilterMixin.spec.d.ts +1 -0
- package/types/modules/QueryFilters/mixins/__tests__/enumFilterMixin.spec.d.ts +1 -0
- package/types/modules/QueryFilters/mixins/__tests__/paginationFilterMixin.spec.d.ts +1 -0
- package/types/modules/QueryFilters/mixins/__tests__/sortFilterMixin.spec.d.ts +1 -0
- package/types/modules/QueryFilters/mixins/__tests__/urlControllerMixin.spec.d.ts +1 -0
- package/types/modules/QueryFilters/mixins/_urlControllerMixin/_urlControllerMixin.d.ts +17 -0
- package/types/modules/QueryFilters/mixins/apiFilterMixin.d.ts +49 -0
- package/types/modules/QueryFilters/mixins/baseFilterMixin/baseFilterMixin.d.ts +36 -0
- package/types/modules/QueryFilters/mixins/enumFilterMixin.d.ts +57 -0
- package/types/modules/QueryFilters/mixins/paginationFilterMixin.d.ts +57 -0
- package/types/modules/QueryFilters/mixins/sortFilterMixin.d.ts +49 -0
- package/types/modules/QueryFilters/store/QueryFiltersStoreModule.d.ts +27 -0
- package/types/modules/QueryFilters/store/__tests__/QueryFiltersStoreModule.spec.d.ts +1 -0
- package/types/modules/QueryFilters/store/queryFilters.d.ts +14 -0
- package/types/modules/TableComponentModule/composables/useTableEmpty.d.ts +14 -0
- package/types/modules/TableStoreModule/composables/useTableStore.d.ts +15 -0
- package/types/modules/TableStoreModule/store/TableStoreModule.d.ts +60 -0
- package/types/modules/TableStoreModule/store/__tests__/TableStoreModule.spec.d.ts +1 -0
- package/types/modules/Userinfo/api/userinfo.d.ts +15 -0
- package/types/modules/Userinfo/classes/ApplicationsAccess.d.ts +11 -0
- package/types/modules/Userinfo/enums/Permissions.enum.d.ts +8 -0
- package/types/modules/Userinfo/store/UserinfoStoreModule.d.ts +60 -0
- package/{dist/types → types}/modules/Userinfo/v2/api/UserinfoAPI.d.ts +1 -1
- package/types/modules/Userinfo/v2/index.d.ts +1 -0
- package/types/plugins/breakpoint/breakpoint.plugin.d.ts +1 -0
- package/types/plugins/primevue/primevue.plugin.d.ts +2 -0
- package/types/plugins/primevue/theme/components/autocomplete/autocomplete.d.ts +33 -0
- package/types/plugins/primevue/theme/components/button/button.d.ts +137 -0
- package/types/plugins/primevue/theme/components/components.d.ts +11 -0
- package/types/plugins/primevue/theme/components/popover/popover.d.ts +10 -0
- package/types/plugins/primevue/theme/components/tooltip/tooltip.d.ts +8 -0
- package/types/plugins/primevue/theme/extend/extend.d.ts +5 -0
- package/types/plugins/primevue/theme/extend/spacings/spacings.d.ts +13 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/color-schema.d.ts +1189 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/dark-color.d.ts +162 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/light-color.d.ts +162 -0
- package/types/plugins/primevue/theme/semantic/color-scheme/palette.d.ts +435 -0
- package/types/plugins/primevue/theme/semantic/semantic.d.ts +5 -0
- package/types/plugins/primevue/theme/webitel-theme.d.ts +2 -0
- package/types/router/index.d.ts +2 -0
- package/types/scripts/__tests__/caseConverters.spec.d.ts +1 -0
- package/types/scripts/__tests__/convertDuration.spec.d.ts +1 -0
- package/types/scripts/__tests__/debounce.spec.d.ts +1 -0
- package/types/scripts/__tests__/editProxy.spec.d.ts +1 -0
- package/types/scripts/__tests__/isEmpty.spec.d.ts +1 -0
- package/types/scripts/__tests__/prettifyFileSize.spec.d.ts +1 -0
- package/types/scripts/__tests__/prettifyTime.spec.d.ts +1 -0
- package/types/scripts/__tests__/preventHiddenPageCallsDecorator.spec.d.ts +1 -0
- package/types/scripts/__tests__/sortQueryAdapters.spec.d.ts +1 -0
- package/types/scripts/__tests__/updateObject.spec.d.ts +1 -0
- package/types/scripts/caseConverters.d.ts +9 -0
- package/types/scripts/convertDuration.d.ts +2 -0
- package/types/scripts/convertDurationWithMinutes.d.ts +2 -0
- package/types/scripts/debounce.d.ts +2 -0
- package/types/scripts/editProxy.d.ts +2 -0
- package/types/scripts/eventBus.d.ts +6 -0
- package/types/scripts/index.d.ts +29 -0
- package/types/scripts/isEmpty.d.ts +2 -0
- package/types/scripts/logger.d.ts +12 -0
- package/types/scripts/prettifyFileSize.d.ts +2 -0
- package/types/scripts/prettifyTime.d.ts +2 -0
- package/types/scripts/preventHiddenPageCallsDecorator.d.ts +2 -0
- package/types/scripts/saveAsJSON.d.ts +2 -0
- package/types/scripts/sortQueryAdapters.d.ts +8 -0
- package/types/scripts/updateObject.d.ts +6 -0
- package/types/store/BaseStoreModules/ApiStoreModule.d.ts +4 -0
- package/types/store/BaseStoreModules/BaseStoreModule.d.ts +31 -0
- package/types/store/BaseStoreModules/__tests__/BaseStoreModule.spec.d.ts +1 -0
- package/types/store/ReactiveNowStoreModule/ReactiveNowStoreModule.d.ts +13 -0
- package/types/store/helpers/__tests__/getNamespacedState.spec.d.ts +1 -0
- package/types/store/helpers/getNamespacedState.d.ts +2 -0
- package/types/store/new/helpers/createApiStoreModule.d.ts +1 -0
- package/types/store/new/helpers/createBaseStoreModule.d.ts +1 -0
- package/types/store/new/helpers/createCardStoreModule.d.ts +1 -0
- package/types/store/new/helpers/createStoreModule.d.ts +1 -0
- package/types/store/new/helpers/createTableStoreModule.d.ts +1 -0
- package/types/store/new/index.d.ts +7 -0
- package/types/store/new/modules/apiStoreModule/apiStoreModule.d.ts +45 -0
- package/types/store/new/modules/baseStoreModule/baseStoreModule.d.ts +13 -0
- package/types/store/new/modules/cardStoreModule/cardStoreModule.d.ts +31 -0
- package/types/store/new/modules/cardStoreModule/useCardStore.d.ts +12 -0
- package/types/store/new/modules/tableStoreModule/__tests__/tableStoreModule.spec.d.ts +1 -0
- package/types/store/new/modules/tableStoreModule/tableStoreModule.d.ts +62 -0
- package/types/store/new/modules/tableStoreModule/useTableStore.d.ts +15 -0
- package/types/tests/mocks/axiosMock.d.ts +2 -0
- package/types/tests/mocks/contextMock.d.ts +9 -0
- package/types/validations/config/errors/customZodErrorsHandler.d.ts +3 -0
- package/types/validations/config/index.d.ts +6 -0
- package/types/validations/index.d.ts +1 -0
- package/types/validations/vuelidate/validators/decimalValidator.d.ts +2 -0
- package/types/validations/vuelidate/validators/domainValidator.d.ts +2 -0
- package/types/validations/vuelidate/validators/variableSearchValidator/__tests__/variableSearchValidator.spec.d.ts +1 -0
- package/types/validations/vuelidate/validators/variableSearchValidator/variableSearchValidator.d.ts +1 -0
- package/types/validations/vuelidate/validators/websocketValidator/__tests__/websocketValidator.spec.d.ts +1 -0
- package/types/validations/vuelidate/validators/websocketValidator/websocketValidator.d.ts +2 -0
- package/dist/types/components/wt-action-bar/wt-action-bar.vue.d.ts +0 -26
- package/dist/types/components/wt-select/wt-select.vue.d.ts +0 -89
- package/dist/types/components/wt-tags-input/wt-tags-input.vue.d.ts +0 -54
- package/dist/types/modules/QueryFilters/components/abstract-api-filter.vue.d.ts +0 -15
- package/dist/types/modules/QueryFilters/components/abstract-enum-filter.vue.d.ts +0 -12
- package/dist/types/modules/QueryFilters/components/filter-datetime.vue.d.ts +0 -21
- package/dist/types/modules/QueryFilters/components/filter-from-to.vue.d.ts +0 -30
- package/dist/types/modules/QueryFilters/components/filter-search.vue.d.ts +0 -16
- package/src/{validators → validations/vuelidate/validators}/decimalValidator.js +0 -0
- package/src/{validators → validations/vuelidate/validators}/domainValidator.js +0 -0
- package/src/{validators → validations/vuelidate/validators}/variableSearchValidator/__tests__/variableSearchValidator.spec.js +0 -0
- package/src/{validators → validations/vuelidate/validators}/variableSearchValidator/variableSearchValidator.js +0 -0
- package/src/{validators → validations/vuelidate/validators}/websocketValidator/__tests__/websocketValidator.spec.js +0 -0
- package/src/{validators → validations/vuelidate/validators}/websocketValidator/websocketValidator.js +0 -0
- package/{dist/types → types}/api/clients/caseSources/caseSources.d.ts +0 -0
- package/{dist/types/modules/Userinfo/v2/index.d.ts → types/api/clients/users/__tests__/users.spec.d.ts} +0 -0
- package/{dist/types → types}/api/clients/wtTypes/_shared/utils/sortDynamicFields.d.ts +0 -0
- package/{dist/types → types}/api/clients/wtTypes/sysTypes/sysTypes.d.ts +0 -0
- package/{dist/types → types}/api/clients/wtTypes/typeExtensions/typeExtensions.d.ts +0 -0
- package/{dist/types → types}/api/transformers/skipIf/skipIf.d.ts +0 -0
- package/{dist/types → types}/components/on-demand/wt-cc-agent-status-timers/wt-cc-agent-status-timers.vue.d.ts +0 -0
- package/{dist/types → types}/components/on-demand/wt-navigation-menu/components/_internals/nav-menu-lvl-1.vue.d.ts +4 -4
- package/{dist/types → types}/components/on-demand/wt-navigation-menu/components/_internals/nav-menu-lvl-2.vue.d.ts +0 -0
- package/{dist/types → types}/components/on-demand/wt-navigation-menu/components/wt-navigation-menu.vue.d.ts +2 -2
- package/{dist/types → types}/components/on-demand/wt-route-transition/wt-route-transition.vue.d.ts +0 -0
- package/{dist/types → types}/components/on-demand/wt-start-page/components/start-page-card.vue.d.ts +0 -0
- package/{dist/types → types}/components/on-demand/wt-start-page/components/start-page-logo.vue.d.ts +0 -0
- package/{dist/types → types}/components/on-demand/wt-start-page/components/wt-start-page.vue.d.ts +0 -0
- package/{dist/types → types}/components/on-demand/wt-table-transition/wt-table-transition.vue.d.ts +0 -0
- package/{dist/types → types}/components/on-demand/wt-type-extension-value-input/wt-type-extension-value-input.vue.d.ts +0 -0
- package/{dist/types → types}/components/transitions/cases/wt-replace-transition.vue.d.ts +2 -2
- package/{dist/types → types}/components/transitions/wt-expand-transition.vue.d.ts +0 -0
- package/{dist/types → types}/components/transitions/wt-transition.vue.d.ts +2 -2
- package/{dist/types → types}/components/wt-app-header/wt-app-header.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-app-header/wt-app-navigator.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-app-header/wt-header-actions.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-badge/wt-badge.vue.d.ts +1 -1
- package/{dist/types → types}/components/wt-button/wt-button.vue.d.ts +1 -1
- package/{dist/types → types}/components/wt-button-select/wt-button-select.vue.d.ts +4 -4
- package/{dist/types → types}/components/wt-chip/wt-chip.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-confirm-dialog/wt-confirm-dialog.vue.d.ts +2 -2
- package/{dist/types → types}/components/wt-context-menu/wt-context-menu.vue.d.ts +4 -4
- package/{dist/types → types}/components/wt-copy-action/wt-copy-action.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-datepicker/wt-datepicker.vue.d.ts +8 -8
- package/{dist/types → types}/components/wt-divider/wt-divider.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-dual-panel/wt-dual-panel.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-dummy/wt-dummy.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-error-page/wt-error-page.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-expansion-panel/wt-expansion-panel.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-filters-panel-wrapper/wt-filters-panel-wrapper.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-headline/wt-headline.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-headline-nav/wt-headline-nav.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-hint/wt-hint.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-icon/wt-icon.vue.d.ts +4 -4
- package/{dist/types → types}/components/wt-icon-action/wt-icon-action.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-icon-btn/wt-icon-btn.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-image/wt-image.vue.d.ts +2 -2
- package/{dist/types → types}/components/wt-indicator/wt-indicator.vue.d.ts +1 -1
- package/{dist/types → types}/components/wt-input/wt-input.vue.d.ts +2 -2
- package/{dist/types → types}/components/wt-input-info/wt-input-info.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-intersection-observer/wt-intersection-observer.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-item-link/wt-item-link.vue.d.ts +4 -4
- package/{dist/types → types}/components/wt-label/wt-label.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-load-bar/wt-load-bar.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-loader/_internals/wt-loader--md.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-loader/_internals/wt-loader--sm.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-loader/wt-loader.vue.d.ts +1 -1
- package/{dist/types → types}/components/wt-logo/wt-logo.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-navigation-bar/wt-navigation-bar.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-page-header/wt-page-header.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-page-wrapper/wt-page-wrapper.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-player/wt-player.vue.d.ts +2 -2
- package/{dist/types → types}/components/wt-popover/wt-popover.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-popup/wt-popup.vue.d.ts +1 -1
- package/{dist/types → types}/components/wt-progress-bar/wt-progress-bar.vue.d.ts +1 -1
- package/{dist/types → types}/components/wt-radio/wt-radio.vue.d.ts +2 -2
- package/{dist/types → types}/components/wt-rounded-action/wt-rounded-action.vue.d.ts +4 -4
- package/{dist/types → types}/components/wt-slider/wt-slider.vue.d.ts +2 -2
- package/{dist/types → types}/components/wt-stepper/wt-stepper.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-switcher/wt-switcher.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-table/wt-table.vue.d.ts +1 -1
- package/{dist/types → types}/components/wt-table-actions/wt-table-actions.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-table-column-select/wt-table-column-select.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-tabs/wt-tabs.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-tooltip/_internals/wt-tooltip-floating.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-tooltip/wt-tooltip.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-tree/types/WtTreeMode.d.ts +0 -0
- package/{dist/types → types}/components/wt-tree/wt-tree.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-tree-line/types/wt-tree-nested-icons.d.ts +0 -0
- package/{dist/types → types}/components/wt-tree-line/wt-tree-line.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-tree-table/wt-tree-table.vue.d.ts +0 -0
- package/{dist/types → types}/components/wt-tree-table-row/wt-tree-table-row.vue.d.ts +0 -0
- package/{dist/types → types}/composables/useAccessControl/v2/createUserAccessControl.d.ts +0 -0
- package/{dist/types → types}/composables/useWtTable/useWtTable.d.ts +0 -0
- package/{dist/types → types}/enums/ButtonColor/ButtonColor.d.ts +0 -0
- package/{dist/types → types}/enums/ComponentSize/ComponentSize.d.ts +0 -0
- package/{dist/types → types}/enums/CrudAction/CrudAction.d.ts +0 -0
- package/{dist/types → types}/enums/RelativeDatetimeValue/RelativeDatetimeValue.d.ts +0 -0
- package/{dist/types → types}/enums/WebitelApplications/AdminSections.d.ts +0 -0
- package/{dist/types → types}/enums/WebitelApplications/AuditorSections.d.ts +0 -0
- package/{dist/types → types}/enums/WebitelApplications/CrmSections.d.ts +0 -0
- package/{dist/types → types}/enums/WebitelApplications/SupervisorSections.d.ts +0 -0
- package/{dist/types → types}/enums/WebitelApplications/WtApplication.d.ts +0 -0
- package/{dist/types → types}/enums/WtObject/WtObject.d.ts +0 -0
- package/{dist/types → types}/enums/WtTypeExtensionFieldKind/WtTypeExtensionFieldKind.d.ts +0 -0
- package/{dist/types → types}/enums/index.d.ts +0 -0
- package/{dist/types → types}/mixins/validationMixin/regle/useRegleValidation.d.ts +0 -0
- package/{dist/types → types}/mixins/validationMixin/useValidation.d.ts +0 -0
- package/{dist/types → types}/mixins/validationMixin/vuelidate/useVuelidateValidation.d.ts +0 -0
- package/{dist/types → types}/modules/AgentStatusSelect/components/_internals/wt-cc-status-select-error-popup.vue.d.ts +0 -0
- package/{dist/types → types}/modules/Appearance/components/wt-dark-mode-switcher.vue.d.ts +0 -0
- package/{dist/types → types}/modules/AuditForm/components/audit-form-question-read-wrapper.vue.d.ts +0 -0
- package/{dist/types → types}/modules/AuditForm/components/audit-form-question-write-wrapper.vue.d.ts +0 -0
- package/{dist/types → types}/modules/AuditForm/components/audit-form-question.vue.d.ts +0 -0
- package/{dist/types → types}/modules/AuditForm/components/audit-form.vue.d.ts +0 -0
- package/{dist/types → types}/modules/AuditForm/components/form/form-footer/audit-form-footer.vue.d.ts +0 -0
- package/{dist/types → types}/modules/AuditForm/components/form-answers/answer-editing-info/audit-form-answer-editing-info.vue.d.ts +0 -0
- package/{dist/types → types}/modules/AuditForm/components/form-questions/options/audit-form-question-options-write-row.vue.d.ts +0 -0
- package/{dist/types → types}/modules/AuditForm/components/form-questions/options/audit-form-question-options.vue.d.ts +0 -0
- package/{dist/types → types}/modules/AuditForm/components/form-questions/score/audit-form-question-score.vue.d.ts +0 -0
- package/{dist/types → types}/modules/DeleteConfirmationPopup/components/delete-confirmation-popup.vue.d.ts +0 -0
- package/{dist/types → types}/modules/Filters/components/filter-datetime.vue.d.ts +0 -0
- package/{dist/types → types}/modules/Filters/components/filter-pagination.vue.d.ts +2 -2
- /package/{dist/types → types}/modules/Filters/components/filter-search.vue.d.ts +0 -0
- /package/{dist/types → types}/modules/Filters/components/filter-select.vue.d.ts +0 -0
- /package/{dist/types → types}/modules/Filters/components/filter-table-fields.vue.d.ts +0 -0
- /package/{dist/types → types}/modules/ObjectPermissions/_internals/components/permissions-role-row.vue.d.ts +0 -0
- /package/{dist/types → types}/modules/ObjectPermissions/_internals/components/permissions-role-select.vue.d.ts +0 -0
- /package/{dist/types → types}/modules/ObjectPermissions/_internals/components/permissions-tab-role-popup.vue.d.ts +0 -0
- /package/{dist/types → types}/modules/ObjectPermissions/components/permissions-tab.vue.d.ts +0 -0
- /package/{dist/types → types}/modules/Userinfo/v2/enums/GlobalActions/GlobalActions.d.ts +0 -0
- /package/{dist/types → types}/modules/Userinfo/v2/enums/ScopeClass/ScopeClass.d.ts +0 -0
- /package/{dist/types → types}/modules/Userinfo/v2/enums/index.d.ts +0 -0
- /package/{dist/types → types}/modules/Userinfo/v2/mappings/mappings.d.ts +0 -0
- /package/{dist/types → types}/modules/Userinfo/v2/scripts/utils.d.ts +0 -0
- /package/{dist/types → types}/modules/Userinfo/v2/stores/accessStore.d.ts +0 -0
- /package/{dist/types → types}/modules/Userinfo/v2/stores/userinfoStore.d.ts +0 -0
- /package/{dist/types → types}/playground.vue.d.ts +0 -0
- /package/{dist/types → types}/scripts/compareSize.d.ts +0 -0
- /package/{dist/types → types}/scripts/normalizeDatetime.d.ts +0 -0
- /package/{dist/types → types}/the-app.vue.d.ts +0 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export default ServicesAPI;
|
|
2
|
+
declare namespace ServicesAPI {
|
|
3
|
+
export { getServicesList as getList };
|
|
4
|
+
export { getService as get };
|
|
5
|
+
export { addService as add };
|
|
6
|
+
export { updateService as update };
|
|
7
|
+
export { patchService as patch };
|
|
8
|
+
export { deleteService as delete };
|
|
9
|
+
export { getServicesLookup as getLookup };
|
|
10
|
+
}
|
|
11
|
+
declare function getServicesList({ rootId, ...rest }: {
|
|
12
|
+
[x: string]: any;
|
|
13
|
+
rootId: any;
|
|
14
|
+
}): Promise<{
|
|
15
|
+
items: any;
|
|
16
|
+
next: any;
|
|
17
|
+
}>;
|
|
18
|
+
declare function getService({ itemId: id }: {
|
|
19
|
+
itemId: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function addService({ itemInstance, rootId, catalogId }: {
|
|
22
|
+
itemInstance: any;
|
|
23
|
+
rootId: any;
|
|
24
|
+
catalogId: any;
|
|
25
|
+
}): Promise<any>;
|
|
26
|
+
declare function updateService({ itemInstance, itemId: id, rootId, catalogId, }: {
|
|
27
|
+
itemInstance: any;
|
|
28
|
+
itemId: any;
|
|
29
|
+
rootId: any;
|
|
30
|
+
catalogId: any;
|
|
31
|
+
}): Promise<any>;
|
|
32
|
+
declare function patchService({ changes, id }: {
|
|
33
|
+
changes: any;
|
|
34
|
+
id: any;
|
|
35
|
+
}): Promise<any>;
|
|
36
|
+
declare function deleteService({ id }: {
|
|
37
|
+
id: any;
|
|
38
|
+
}): Promise<any>;
|
|
39
|
+
declare function getServicesLookup(params: any): Promise<{
|
|
40
|
+
items: any;
|
|
41
|
+
next: any;
|
|
42
|
+
}>;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export default CaseStatusConditionsAPI;
|
|
2
|
+
declare namespace CaseStatusConditionsAPI {
|
|
3
|
+
export { getStatusConditionsList as getList };
|
|
4
|
+
export { getStatusesLookup as getLookup };
|
|
5
|
+
export { getStatusCondition as get };
|
|
6
|
+
export { updateStatusCondition as update };
|
|
7
|
+
export { patchStatusCondition as patch };
|
|
8
|
+
export { deleteStatusCondition as delete };
|
|
9
|
+
export { addStatusCondition as add };
|
|
10
|
+
}
|
|
11
|
+
declare function getStatusConditionsList({ parentId, ...rest }: {
|
|
12
|
+
[x: string]: any;
|
|
13
|
+
parentId: any;
|
|
14
|
+
}): Promise<{
|
|
15
|
+
items: any;
|
|
16
|
+
next: any;
|
|
17
|
+
}>;
|
|
18
|
+
declare function getStatusesLookup(params: any): Promise<{
|
|
19
|
+
items: any;
|
|
20
|
+
next: any;
|
|
21
|
+
}>;
|
|
22
|
+
declare function getStatusCondition({ parentId, itemId: id }: {
|
|
23
|
+
parentId: any;
|
|
24
|
+
itemId: any;
|
|
25
|
+
}): Promise<any>;
|
|
26
|
+
declare function updateStatusCondition({ itemInstance, itemId: id, parentId, }: {
|
|
27
|
+
itemInstance: any;
|
|
28
|
+
itemId: any;
|
|
29
|
+
parentId: any;
|
|
30
|
+
}): Promise<any>;
|
|
31
|
+
declare function patchStatusCondition({ id, parentId, changes }: {
|
|
32
|
+
id: any;
|
|
33
|
+
parentId: any;
|
|
34
|
+
changes: any;
|
|
35
|
+
}): Promise<any>;
|
|
36
|
+
declare function deleteStatusCondition({ id, parentId }: {
|
|
37
|
+
id: any;
|
|
38
|
+
parentId: any;
|
|
39
|
+
}): Promise<any>;
|
|
40
|
+
declare function addStatusCondition({ itemInstance, parentId }: {
|
|
41
|
+
itemInstance: any;
|
|
42
|
+
parentId: any;
|
|
43
|
+
}): Promise<any>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export default CaseStatusesApi;
|
|
2
|
+
declare namespace CaseStatusesApi {
|
|
3
|
+
export { getStatusesList as getList };
|
|
4
|
+
export { getStatus as get };
|
|
5
|
+
export { updateStatus as update };
|
|
6
|
+
export { getStatusesLookup as getLookup };
|
|
7
|
+
export { deleteStatus as delete };
|
|
8
|
+
export { addStatus as add };
|
|
9
|
+
}
|
|
10
|
+
declare function getStatusesList(params: any): Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>;
|
|
14
|
+
declare function getStatus({ itemId: id }: {
|
|
15
|
+
itemId: any;
|
|
16
|
+
}): Promise<any>;
|
|
17
|
+
declare function updateStatus({ itemInstance, itemId: id }: {
|
|
18
|
+
itemInstance: any;
|
|
19
|
+
itemId: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function getStatusesLookup(params: any): Promise<{
|
|
22
|
+
items: any;
|
|
23
|
+
next: any;
|
|
24
|
+
}>;
|
|
25
|
+
declare function deleteStatus({ id }: {
|
|
26
|
+
id: any;
|
|
27
|
+
}): Promise<any>;
|
|
28
|
+
declare function addStatus({ itemInstance }: {
|
|
29
|
+
itemInstance: any;
|
|
30
|
+
}): Promise<any>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export default ChatGatewaysAPI;
|
|
2
|
+
declare namespace ChatGatewaysAPI {
|
|
3
|
+
export { getChatGatewayList as getList };
|
|
4
|
+
export { getChatGateway as get };
|
|
5
|
+
export { addChatGateway as add };
|
|
6
|
+
export { patchChatGateway as patch };
|
|
7
|
+
export { updateChatGateway as update };
|
|
8
|
+
export { deleteChatGateway as delete };
|
|
9
|
+
export { getLookup };
|
|
10
|
+
}
|
|
11
|
+
declare function getChatGatewayList(params: any): Promise<{
|
|
12
|
+
items: any;
|
|
13
|
+
next: any;
|
|
14
|
+
}>;
|
|
15
|
+
declare function getChatGateway({ itemId: id }: {
|
|
16
|
+
itemId: any;
|
|
17
|
+
}): Promise<any>;
|
|
18
|
+
declare function addChatGateway({ itemInstance }: {
|
|
19
|
+
itemInstance: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function patchChatGateway({ changes, id }: {
|
|
22
|
+
changes: any;
|
|
23
|
+
id: any;
|
|
24
|
+
}): Promise<any>;
|
|
25
|
+
declare function updateChatGateway({ itemInstance, itemId: id }: {
|
|
26
|
+
itemInstance: any;
|
|
27
|
+
itemId: any;
|
|
28
|
+
}): Promise<any>;
|
|
29
|
+
declare function deleteChatGateway({ id }: {
|
|
30
|
+
id: any;
|
|
31
|
+
}): Promise<any>;
|
|
32
|
+
declare function getLookup(params: any): Promise<{
|
|
33
|
+
items: any;
|
|
34
|
+
next: any;
|
|
35
|
+
}>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export default defaultChatGateway;
|
|
2
|
+
declare function defaultChatGateway(): {
|
|
3
|
+
name: string;
|
|
4
|
+
uri: string;
|
|
5
|
+
flow: {};
|
|
6
|
+
enabled: boolean;
|
|
7
|
+
provider: string;
|
|
8
|
+
metadata: {};
|
|
9
|
+
updates: {
|
|
10
|
+
title: string;
|
|
11
|
+
close: string;
|
|
12
|
+
join: string;
|
|
13
|
+
left: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
export default webChatGateway;
|
|
2
|
+
declare function webChatGateway(_btnCodeDirty?: boolean): {
|
|
3
|
+
provider: "webchat";
|
|
4
|
+
metadata: {
|
|
5
|
+
allowOrigin: any[];
|
|
6
|
+
readTimeout: string;
|
|
7
|
+
writeTimeout: string;
|
|
8
|
+
handshakeTimeout: string;
|
|
9
|
+
mediaMaxSize: string;
|
|
10
|
+
_btnCodeDirty: boolean;
|
|
11
|
+
view: {
|
|
12
|
+
borderRadiusStyle: string;
|
|
13
|
+
lang: string;
|
|
14
|
+
btnOpacity: string;
|
|
15
|
+
logoUrl: string;
|
|
16
|
+
accentColor: string;
|
|
17
|
+
position: string;
|
|
18
|
+
};
|
|
19
|
+
captcha: {
|
|
20
|
+
enabled: boolean;
|
|
21
|
+
sitekey: string;
|
|
22
|
+
secret: string;
|
|
23
|
+
threshold: number;
|
|
24
|
+
showFlag: boolean;
|
|
25
|
+
};
|
|
26
|
+
chat: {
|
|
27
|
+
enabled: boolean;
|
|
28
|
+
timeoutIsActive: boolean;
|
|
29
|
+
openTimeout: string;
|
|
30
|
+
url: string;
|
|
31
|
+
};
|
|
32
|
+
appointment: {
|
|
33
|
+
enabled: boolean;
|
|
34
|
+
url: string;
|
|
35
|
+
queue: {};
|
|
36
|
+
communicationType: {};
|
|
37
|
+
duration: string;
|
|
38
|
+
days: number;
|
|
39
|
+
availableAgents: number;
|
|
40
|
+
successTitle: string;
|
|
41
|
+
successSubtitle: string;
|
|
42
|
+
showDefaultHeading: boolean;
|
|
43
|
+
showEmailField: boolean;
|
|
44
|
+
showMessageField: boolean;
|
|
45
|
+
};
|
|
46
|
+
call: {
|
|
47
|
+
enabled: boolean;
|
|
48
|
+
url: string;
|
|
49
|
+
flow: {};
|
|
50
|
+
id: string;
|
|
51
|
+
};
|
|
52
|
+
alternativeChannels: {};
|
|
53
|
+
};
|
|
54
|
+
name: string;
|
|
55
|
+
uri: string;
|
|
56
|
+
flow: {};
|
|
57
|
+
enabled: boolean;
|
|
58
|
+
updates: {
|
|
59
|
+
title: string;
|
|
60
|
+
close: string;
|
|
61
|
+
join: string;
|
|
62
|
+
left: string;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export default CommunicationsAPI;
|
|
2
|
+
declare namespace CommunicationsAPI {
|
|
3
|
+
export { getCommunicationsList as getList };
|
|
4
|
+
export { getCommunication as get };
|
|
5
|
+
export { addCommunication as add };
|
|
6
|
+
export { patchCommunication as patch };
|
|
7
|
+
export { updateCommunication as update };
|
|
8
|
+
export { deleteCommunication as delete };
|
|
9
|
+
export { getCommunicationsLookup as getLookup };
|
|
10
|
+
}
|
|
11
|
+
declare function getCommunicationsList(params: any): Promise<{
|
|
12
|
+
items: any;
|
|
13
|
+
next: any;
|
|
14
|
+
}>;
|
|
15
|
+
declare function getCommunication({ itemId: id }: {
|
|
16
|
+
itemId: any;
|
|
17
|
+
}): Promise<any>;
|
|
18
|
+
declare function addCommunication({ itemInstance }: {
|
|
19
|
+
itemInstance: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function patchCommunication({ changes, id }: {
|
|
22
|
+
changes: any;
|
|
23
|
+
id: any;
|
|
24
|
+
}): Promise<any>;
|
|
25
|
+
declare function updateCommunication({ itemInstance, itemId: id }: {
|
|
26
|
+
itemInstance: any;
|
|
27
|
+
itemId: any;
|
|
28
|
+
}): Promise<any>;
|
|
29
|
+
declare function deleteCommunication({ id }: {
|
|
30
|
+
id: any;
|
|
31
|
+
}): Promise<any>;
|
|
32
|
+
declare function getCommunicationsLookup(params: any): Promise<{
|
|
33
|
+
items: any;
|
|
34
|
+
next: any;
|
|
35
|
+
}>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export default ConfigurationsAPI;
|
|
2
|
+
declare namespace ConfigurationsAPI {
|
|
3
|
+
export { getList };
|
|
4
|
+
export { get };
|
|
5
|
+
export { add };
|
|
6
|
+
export { update };
|
|
7
|
+
export { deleteItem as delete };
|
|
8
|
+
export { getLookup };
|
|
9
|
+
export { getObjectsList };
|
|
10
|
+
}
|
|
11
|
+
declare function getList(params: any): Promise<{
|
|
12
|
+
items: any;
|
|
13
|
+
next: any;
|
|
14
|
+
}>;
|
|
15
|
+
declare function get({ itemId: id }: {
|
|
16
|
+
itemId: any;
|
|
17
|
+
}): Promise<any>;
|
|
18
|
+
declare function add({ itemInstance }: {
|
|
19
|
+
itemInstance: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function update({ itemInstance, itemId: id }: {
|
|
22
|
+
itemInstance: any;
|
|
23
|
+
itemId: any;
|
|
24
|
+
}): Promise<any>;
|
|
25
|
+
declare function deleteItem({ id }: {
|
|
26
|
+
id: any;
|
|
27
|
+
}): Promise<any>;
|
|
28
|
+
declare function getLookup(params: any): Promise<{
|
|
29
|
+
items: any;
|
|
30
|
+
next: any;
|
|
31
|
+
}>;
|
|
32
|
+
declare function getObjectsList(params: any): Promise<{
|
|
33
|
+
items: any;
|
|
34
|
+
next: any;
|
|
35
|
+
}>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export default ContactGroupsAPI;
|
|
2
|
+
declare const ContactGroupsAPI: {
|
|
3
|
+
getPermissionsList: ({ parentId, ...params }: {
|
|
4
|
+
[x: string]: any;
|
|
5
|
+
parentId: any;
|
|
6
|
+
}) => Promise<{
|
|
7
|
+
items: any;
|
|
8
|
+
next: any;
|
|
9
|
+
}>;
|
|
10
|
+
patchPermissions: ({ changes, id }: {
|
|
11
|
+
changes: any;
|
|
12
|
+
id: any;
|
|
13
|
+
}) => Promise<any>;
|
|
14
|
+
getList: (params: any) => Promise<{
|
|
15
|
+
items: any;
|
|
16
|
+
next: any;
|
|
17
|
+
}>;
|
|
18
|
+
get: ({ itemId: id }: {
|
|
19
|
+
itemId: any;
|
|
20
|
+
}) => Promise<any>;
|
|
21
|
+
add: ({ itemInstance }: {
|
|
22
|
+
itemInstance: any;
|
|
23
|
+
}) => Promise<any>;
|
|
24
|
+
update: ({ itemInstance, itemId: id }: {
|
|
25
|
+
itemInstance: any;
|
|
26
|
+
itemId: any;
|
|
27
|
+
}) => Promise<any>;
|
|
28
|
+
patch: ({ id, changes }: {
|
|
29
|
+
id: any;
|
|
30
|
+
changes: any;
|
|
31
|
+
}) => Promise<any>;
|
|
32
|
+
delete: ({ id }: {
|
|
33
|
+
id: any;
|
|
34
|
+
}) => Promise<any>;
|
|
35
|
+
getLookup: (params: any) => Promise<{
|
|
36
|
+
items: any;
|
|
37
|
+
next: any;
|
|
38
|
+
}>;
|
|
39
|
+
addContactsToGroups: ({ contactIds, groupIds }: {
|
|
40
|
+
contactIds: any;
|
|
41
|
+
groupIds: any;
|
|
42
|
+
}) => Promise<any>;
|
|
43
|
+
removeContactsFromGroup: ({ id, contactIds }: {
|
|
44
|
+
id: any;
|
|
45
|
+
contactIds: any;
|
|
46
|
+
}) => Promise<any>;
|
|
47
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export default FlowsAPI;
|
|
2
|
+
declare namespace FlowsAPI {
|
|
3
|
+
export { getFlowList as getList };
|
|
4
|
+
export { getFlow as get };
|
|
5
|
+
export { addFlow as add };
|
|
6
|
+
export { updateFlow as update };
|
|
7
|
+
export { deleteFlow as delete };
|
|
8
|
+
export { getFlowsLookup as getLookup };
|
|
9
|
+
export { getFlowTags };
|
|
10
|
+
}
|
|
11
|
+
declare function getFlowList(params: any): Promise<{
|
|
12
|
+
items: any;
|
|
13
|
+
next: any;
|
|
14
|
+
}>;
|
|
15
|
+
declare function getFlow({ itemId: id }: {
|
|
16
|
+
itemId: any;
|
|
17
|
+
}): Promise<any>;
|
|
18
|
+
declare function addFlow({ itemInstance }: {
|
|
19
|
+
itemInstance: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function updateFlow({ itemInstance, itemId: id }: {
|
|
22
|
+
itemInstance: any;
|
|
23
|
+
itemId: any;
|
|
24
|
+
}): Promise<any>;
|
|
25
|
+
declare function deleteFlow({ id }: {
|
|
26
|
+
id: any;
|
|
27
|
+
}): Promise<any>;
|
|
28
|
+
declare function getFlowsLookup(params: any): Promise<{
|
|
29
|
+
items: any;
|
|
30
|
+
next: any;
|
|
31
|
+
}>;
|
|
32
|
+
declare function getFlowTags(params: any): Promise<{
|
|
33
|
+
items: any;
|
|
34
|
+
next: any;
|
|
35
|
+
}>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export default registerGateway;
|
|
2
|
+
declare function registerGateway(): {
|
|
3
|
+
register: boolean;
|
|
4
|
+
account: string;
|
|
5
|
+
username: string;
|
|
6
|
+
expires: number;
|
|
7
|
+
password: string;
|
|
8
|
+
name: string;
|
|
9
|
+
usage: string;
|
|
10
|
+
proxy: string;
|
|
11
|
+
schema: {};
|
|
12
|
+
enable: boolean;
|
|
13
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export default GatewaysAPI;
|
|
2
|
+
declare namespace GatewaysAPI {
|
|
3
|
+
export { getGatewayList as getList };
|
|
4
|
+
export { getGateway as get };
|
|
5
|
+
export { addGateway as add };
|
|
6
|
+
export { patchGateway as patch };
|
|
7
|
+
export { updateGateway as update };
|
|
8
|
+
export { deleteGateway as delete };
|
|
9
|
+
export { getGatewaysLookup as getLookup };
|
|
10
|
+
}
|
|
11
|
+
declare function getGatewayList(params: any): Promise<{
|
|
12
|
+
items: any;
|
|
13
|
+
next: any;
|
|
14
|
+
}>;
|
|
15
|
+
declare function getGateway({ itemId: id }: {
|
|
16
|
+
itemId: any;
|
|
17
|
+
}): Promise<any>;
|
|
18
|
+
declare function addGateway({ itemInstance }: {
|
|
19
|
+
itemInstance: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function patchGateway({ changes, id }: {
|
|
22
|
+
changes: any;
|
|
23
|
+
id: any;
|
|
24
|
+
}): Promise<any>;
|
|
25
|
+
declare function updateGateway({ itemInstance, itemId: id }: {
|
|
26
|
+
itemInstance: any;
|
|
27
|
+
itemId: any;
|
|
28
|
+
}): Promise<any>;
|
|
29
|
+
declare function deleteGateway({ id }: {
|
|
30
|
+
id: any;
|
|
31
|
+
}): Promise<any>;
|
|
32
|
+
declare function getGatewaysLookup(params: any): Promise<{
|
|
33
|
+
items: any;
|
|
34
|
+
next: any;
|
|
35
|
+
}>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import agentChats from './agents/agentChats';
|
|
2
|
+
import agents from './agents/agents';
|
|
3
|
+
import buckets from './buckets/buckets';
|
|
4
|
+
import calendars from './calendars/calendars';
|
|
5
|
+
import caseCloseReasonGroups from './caseCloseReasonGroups/caseCloseReasonGroups';
|
|
6
|
+
import caseCloseReasons from './caseCloseReasons/caseCloseReasons';
|
|
7
|
+
import casePriorities from './casePriorities/casePriorities';
|
|
8
|
+
import caseServiceCatalogs from './caseServiceCatalogs/serviceCatalogs';
|
|
9
|
+
import caseSources from './caseSources/caseSources';
|
|
10
|
+
import caseStatusConditions from './caseStatusConditions/caseStatusConditions';
|
|
11
|
+
import caseStatuses from './caseStatuses/caseStatuses';
|
|
12
|
+
import catalog from './catalog/catalog';
|
|
13
|
+
import chatGateways from './chatGateways/chatGateways';
|
|
14
|
+
import communications from './communications/communications';
|
|
15
|
+
import configurations from './configurations/configurations';
|
|
16
|
+
import { contactChatMessagesHistory } from './сontacts/index';
|
|
17
|
+
import contactGroups from './contactGroups/contactGroups';
|
|
18
|
+
import { contacts } from './сontacts/index';
|
|
19
|
+
import flows from './flows/flow';
|
|
20
|
+
import gateways from './gateways/gateways';
|
|
21
|
+
import labels from './labels/labels';
|
|
22
|
+
import lists from './lists/blacklists';
|
|
23
|
+
import media from './media/media';
|
|
24
|
+
import object from './object/object';
|
|
25
|
+
import queues from './queues/queues';
|
|
26
|
+
import roles from './roles/roles';
|
|
27
|
+
import skills from './skills/skills';
|
|
28
|
+
import slas from './slas/slas';
|
|
29
|
+
import sysTypes from './wtTypes/sysTypes/sysTypes';
|
|
30
|
+
import teams from './teams/teams';
|
|
31
|
+
import typeExtensions from './wtTypes/typeExtensions/typeExtensions';
|
|
32
|
+
import users from './users/users';
|
|
33
|
+
import quickReplies from './quickReplies/quickReplies';
|
|
34
|
+
export { agentChats, agents, buckets, calendars, caseCloseReasonGroups, caseCloseReasons, casePriorities, caseServiceCatalogs, caseSources, caseStatusConditions, caseStatuses, catalog, chatGateways, communications, configurations, contactChatMessagesHistory, contactGroups, contacts, flows, gateways, labels, lists, media, object, queues, roles, skills, slas, sysTypes, teams, typeExtensions, users, quickReplies };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export { getList };
|
|
3
|
+
export { getLabelsLookup as getLookup };
|
|
4
|
+
}
|
|
5
|
+
export default _default;
|
|
6
|
+
declare function getList(params: any): Promise<{
|
|
7
|
+
items: any;
|
|
8
|
+
next: any;
|
|
9
|
+
}>;
|
|
10
|
+
declare function getLabelsLookup(params: any): Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export default BlacklistsAPI;
|
|
2
|
+
declare namespace BlacklistsAPI {
|
|
3
|
+
export { getBlacklistList as getList };
|
|
4
|
+
export { getBlacklist as get };
|
|
5
|
+
export { addBlacklist as add };
|
|
6
|
+
export { updateBlacklist as update };
|
|
7
|
+
export { deleteBlacklist as delete };
|
|
8
|
+
export { getBlacklistsLookup as getLookup };
|
|
9
|
+
}
|
|
10
|
+
declare function getBlacklistList(params: any): Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>;
|
|
14
|
+
declare function getBlacklist({ itemId: id }: {
|
|
15
|
+
itemId: any;
|
|
16
|
+
}): Promise<any>;
|
|
17
|
+
declare function addBlacklist({ itemInstance }: {
|
|
18
|
+
itemInstance: any;
|
|
19
|
+
}): Promise<any>;
|
|
20
|
+
declare function updateBlacklist({ itemInstance, itemId: id }: {
|
|
21
|
+
itemInstance: any;
|
|
22
|
+
itemId: any;
|
|
23
|
+
}): Promise<any>;
|
|
24
|
+
declare function deleteBlacklist({ id }: {
|
|
25
|
+
id: any;
|
|
26
|
+
}): Promise<any>;
|
|
27
|
+
declare function getBlacklistsLookup(params: any): Promise<{
|
|
28
|
+
items: any;
|
|
29
|
+
next: any;
|
|
30
|
+
}>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export function downloadMedia(id: any): Promise<import("axios").AxiosResponse<any, any>>;
|
|
2
|
+
export default MediaAPI;
|
|
3
|
+
declare namespace MediaAPI {
|
|
4
|
+
export { getMediaList as getList };
|
|
5
|
+
export { getMedia as get };
|
|
6
|
+
export { addMedia as add };
|
|
7
|
+
export { deleteMedia as delete };
|
|
8
|
+
export { getMediaLookup as getLookup };
|
|
9
|
+
}
|
|
10
|
+
declare function getMediaList(params: any): Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>;
|
|
14
|
+
declare function getMedia({ itemId }: {
|
|
15
|
+
itemId: any;
|
|
16
|
+
}): Promise<import("axios").AxiosResponse<any, any>>;
|
|
17
|
+
declare function addMedia(params: any): Promise<import("axios").AxiosResponse<any, any>>;
|
|
18
|
+
declare function deleteMedia({ id }: {
|
|
19
|
+
id: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function getMediaLookup(params: any): Promise<{
|
|
22
|
+
items: any;
|
|
23
|
+
next: any;
|
|
24
|
+
}>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export default ObjectsApi;
|
|
2
|
+
declare namespace ObjectsApi {
|
|
3
|
+
export { getObjectList as getList };
|
|
4
|
+
export { getObjectLookup as getLookup };
|
|
5
|
+
}
|
|
6
|
+
declare function getObjectList(params: any): Promise<{
|
|
7
|
+
items: any;
|
|
8
|
+
next: any;
|
|
9
|
+
}>;
|
|
10
|
+
declare function getObjectLookup(params: any): Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export default QueuesAPI;
|
|
2
|
+
declare namespace QueuesAPI {
|
|
3
|
+
export { getQueuesList as getList };
|
|
4
|
+
export { getQueue as get };
|
|
5
|
+
export { addQueue as add };
|
|
6
|
+
export { patchQueue as patch };
|
|
7
|
+
export { updateQueue as update };
|
|
8
|
+
export { deleteQueue as delete };
|
|
9
|
+
export { getQueuesLookup as getLookup };
|
|
10
|
+
export { getQueuesTags };
|
|
11
|
+
}
|
|
12
|
+
declare function getQueuesList(params: any): Promise<{
|
|
13
|
+
items: any;
|
|
14
|
+
next: any;
|
|
15
|
+
}>;
|
|
16
|
+
declare function getQueue({ itemId: id }: {
|
|
17
|
+
itemId: any;
|
|
18
|
+
}): Promise<any>;
|
|
19
|
+
declare function addQueue({ itemInstance }: {
|
|
20
|
+
itemInstance: any;
|
|
21
|
+
}): Promise<any>;
|
|
22
|
+
declare function patchQueue({ id, changes }: {
|
|
23
|
+
id: any;
|
|
24
|
+
changes: any;
|
|
25
|
+
}): Promise<any>;
|
|
26
|
+
declare function updateQueue({ itemInstance, itemId: id }: {
|
|
27
|
+
itemInstance: any;
|
|
28
|
+
itemId: any;
|
|
29
|
+
}): Promise<any>;
|
|
30
|
+
declare function deleteQueue({ id }: {
|
|
31
|
+
id: any;
|
|
32
|
+
}): Promise<any>;
|
|
33
|
+
declare function getQueuesLookup(params: any): Promise<{
|
|
34
|
+
items: any;
|
|
35
|
+
next: any;
|
|
36
|
+
}>;
|
|
37
|
+
declare function getQueuesTags(params: any): Promise<{
|
|
38
|
+
items: any;
|
|
39
|
+
next: any;
|
|
40
|
+
}>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const QuickRepliesApi: {
|
|
2
|
+
getList: (params: any) => Promise<{
|
|
3
|
+
items: any;
|
|
4
|
+
next: any;
|
|
5
|
+
}>;
|
|
6
|
+
get: ({ itemId: id }: {
|
|
7
|
+
itemId: any;
|
|
8
|
+
}) => Promise<any>;
|
|
9
|
+
add: ({ itemInstance }: {
|
|
10
|
+
itemInstance: any;
|
|
11
|
+
}) => Promise<any>;
|
|
12
|
+
update: ({ itemInstance, itemId: id }: {
|
|
13
|
+
itemInstance: any;
|
|
14
|
+
itemId: any;
|
|
15
|
+
}) => Promise<any>;
|
|
16
|
+
delete: ({ id }: {
|
|
17
|
+
id: any;
|
|
18
|
+
}) => Promise<any>;
|
|
19
|
+
getLookup: (params: any) => Promise<{
|
|
20
|
+
items: any;
|
|
21
|
+
next: any;
|
|
22
|
+
}>;
|
|
23
|
+
};
|
|
24
|
+
export default QuickRepliesApi;
|