@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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.8.
|
|
3
|
+
"version": "25.8.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "npm run docs:dev",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"lint:fix": "eslint --fix ./src && prettier --write --check ./src",
|
|
14
14
|
"lint:fix-staged": "npx lint-staged",
|
|
15
15
|
"lint:package": "publint",
|
|
16
|
+
"lint:types": "npx --yes @arethetypeswrong/cli --pack . --ignore-rules false-cjs cjs-resolves-to-esm",
|
|
16
17
|
"utils:link": "npm link",
|
|
17
18
|
"utils:update-node": "nvm install --lts && nvm alias default node",
|
|
18
19
|
"utils:i": "npm install"
|
|
@@ -22,45 +23,9 @@
|
|
|
22
23
|
],
|
|
23
24
|
"main": "./dist/ui-sdk.js",
|
|
24
25
|
"type": "module",
|
|
25
|
-
"types": "./dist/types",
|
|
26
|
-
"exports": {
|
|
27
|
-
".": "./dist/ui-sdk.js",
|
|
28
|
-
"./store": "./src/store/new/index",
|
|
29
|
-
"./store*": "./src/store*",
|
|
30
|
-
"./src/store*": "./src/store*",
|
|
31
|
-
"./enums": "./src/enums/index",
|
|
32
|
-
"./enums*": "./src/enums*",
|
|
33
|
-
"./src/enums*": "./src/enums*",
|
|
34
|
-
"./components": "./src/components/index",
|
|
35
|
-
"./components*": "./src/components*",
|
|
36
|
-
"./src/components*": "./src/components*",
|
|
37
|
-
"./scripts": "./src/scripts/index",
|
|
38
|
-
"./scripts*": "./src/scripts*",
|
|
39
|
-
"./src/scripts*": "./src/scripts*",
|
|
40
|
-
"./api*": "./src/api*",
|
|
41
|
-
"./src/api*": "./src/api*",
|
|
42
|
-
"./locale*": "./src/locale*",
|
|
43
|
-
"./src/locale*": "./src/locale*",
|
|
44
|
-
"./composables*": "./src/composables*",
|
|
45
|
-
"./src/composables*": "./src/composables*",
|
|
46
|
-
"./css*": "./src/css*",
|
|
47
|
-
"./src/css*": "./src/css*",
|
|
48
|
-
"./directives*": "./src/directives*",
|
|
49
|
-
"./src/directives*": "./src/directives*",
|
|
50
|
-
"./mixins*": "./src/mixins*",
|
|
51
|
-
"./src/mixins*": "./src/mixins*",
|
|
52
|
-
"./validators*": "./src/validators*",
|
|
53
|
-
"./src/validators*": "./src/validators*",
|
|
54
|
-
"./modules*": "./src/modules*",
|
|
55
|
-
"./src/modules*": "./src/modules*",
|
|
56
|
-
"./plugins*": "./src/plugins*",
|
|
57
|
-
"./src/plugins*": "./src/plugins*",
|
|
58
|
-
"./tests*": "./src/tests*",
|
|
59
|
-
"./src/tests*": "./src/tests*",
|
|
60
|
-
"./dist*": "./dist*"
|
|
61
|
-
},
|
|
62
26
|
"files": [
|
|
63
27
|
"dist/*",
|
|
28
|
+
"types/*",
|
|
64
29
|
"src/api/*",
|
|
65
30
|
"src/assets/*",
|
|
66
31
|
"src/locale/*",
|
|
@@ -71,7 +36,7 @@
|
|
|
71
36
|
"src/enums/*",
|
|
72
37
|
"src/mixins/*",
|
|
73
38
|
"src/scripts/*",
|
|
74
|
-
"src/validators/*",
|
|
39
|
+
"src/validations/vuelidate/validators/*",
|
|
75
40
|
"src/modules/*",
|
|
76
41
|
"src/plugins/*",
|
|
77
42
|
"src/store/*",
|
|
@@ -88,7 +53,7 @@
|
|
|
88
53
|
"@vuelidate/validators": "^2.0.4",
|
|
89
54
|
"@vuepic/vue-datepicker": "^4.5.1",
|
|
90
55
|
"@vueuse/components": "^13.0.0",
|
|
91
|
-
"@webitel/api-services": "^0.0.
|
|
56
|
+
"@webitel/api-services": "^0.0.22",
|
|
92
57
|
"@webitel/styleguide": "^24.12.26",
|
|
93
58
|
"autosize": "^6.0.1",
|
|
94
59
|
"axios": "^1.8.3",
|
|
@@ -176,5 +141,144 @@
|
|
|
176
141
|
"engines": {
|
|
177
142
|
"npm": "10",
|
|
178
143
|
"node": "v22"
|
|
144
|
+
},
|
|
145
|
+
"exports": {
|
|
146
|
+
".": {
|
|
147
|
+
"types": "./types/install.d.ts",
|
|
148
|
+
"import": "./dist/ui-sdk.js"
|
|
149
|
+
},
|
|
150
|
+
"./store": {
|
|
151
|
+
"types": "./types/store/new/index.d.ts",
|
|
152
|
+
"import": "./src/store/new/index.js"
|
|
153
|
+
},
|
|
154
|
+
"./store*": {
|
|
155
|
+
"types": "./types/store*",
|
|
156
|
+
"import": "./src/store*"
|
|
157
|
+
},
|
|
158
|
+
"./src/store*": {
|
|
159
|
+
"types": "./types/store*",
|
|
160
|
+
"import": "./src/store*"
|
|
161
|
+
},
|
|
162
|
+
"./enums": {
|
|
163
|
+
"types": "./types/enums/index.d.ts",
|
|
164
|
+
"import": "./src/enums/index.js"
|
|
165
|
+
},
|
|
166
|
+
"./enums*": {
|
|
167
|
+
"types": "./types/enums*",
|
|
168
|
+
"import": "./src/enums*"
|
|
169
|
+
},
|
|
170
|
+
"./src/enums*": {
|
|
171
|
+
"types": "./types/enums*",
|
|
172
|
+
"import": "./src/enums*"
|
|
173
|
+
},
|
|
174
|
+
"./components": {
|
|
175
|
+
"types": "./types/components/index.d.ts",
|
|
176
|
+
"import": "./src/components/index.js"
|
|
177
|
+
},
|
|
178
|
+
"./components*": {
|
|
179
|
+
"types": "./types/components*",
|
|
180
|
+
"import": "./src/components*"
|
|
181
|
+
},
|
|
182
|
+
"./src/components*": {
|
|
183
|
+
"types": "./types/components*",
|
|
184
|
+
"import": "./src/components*"
|
|
185
|
+
},
|
|
186
|
+
"./scripts": {
|
|
187
|
+
"types": "./types/scripts/index.d.ts",
|
|
188
|
+
"import": "./src/scripts/index.js"
|
|
189
|
+
},
|
|
190
|
+
"./scripts*": {
|
|
191
|
+
"types": "./types/scripts*",
|
|
192
|
+
"import": "./src/scripts*"
|
|
193
|
+
},
|
|
194
|
+
"./src/scripts*": {
|
|
195
|
+
"types": "./types/scripts*",
|
|
196
|
+
"import": "./src/scripts*"
|
|
197
|
+
},
|
|
198
|
+
"./api*": {
|
|
199
|
+
"types": "./types/api*",
|
|
200
|
+
"import": "./src/api*"
|
|
201
|
+
},
|
|
202
|
+
"./src/api*": {
|
|
203
|
+
"types": "./types/api*",
|
|
204
|
+
"import": "./src/api*"
|
|
205
|
+
},
|
|
206
|
+
"./locale*": {
|
|
207
|
+
"types": "./types/locale*",
|
|
208
|
+
"import": "./src/locale*"
|
|
209
|
+
},
|
|
210
|
+
"./src/locale*": {
|
|
211
|
+
"types": "./types/locale*",
|
|
212
|
+
"import": "./src/locale*"
|
|
213
|
+
},
|
|
214
|
+
"./composables*": {
|
|
215
|
+
"types": "./types/composables*",
|
|
216
|
+
"import": "./src/composables*"
|
|
217
|
+
},
|
|
218
|
+
"./src/composables*": {
|
|
219
|
+
"types": "./types/composables*",
|
|
220
|
+
"import": "./src/composables*"
|
|
221
|
+
},
|
|
222
|
+
"./css*": {
|
|
223
|
+
"import": "./src/css*"
|
|
224
|
+
},
|
|
225
|
+
"./src/css*": {
|
|
226
|
+
"import": "./src/css*"
|
|
227
|
+
},
|
|
228
|
+
"./directives*": {
|
|
229
|
+
"types": "./types/directives*",
|
|
230
|
+
"import": "./src/directives*"
|
|
231
|
+
},
|
|
232
|
+
"./src/directives*": {
|
|
233
|
+
"types": "./types/directives*",
|
|
234
|
+
"import": "./src/directives*"
|
|
235
|
+
},
|
|
236
|
+
"./mixins*": {
|
|
237
|
+
"types": "./types/mixins*",
|
|
238
|
+
"import": "./src/mixins*"
|
|
239
|
+
},
|
|
240
|
+
"./src/mixins*": {
|
|
241
|
+
"types": "./types/mixins*",
|
|
242
|
+
"import": "./src/mixins*"
|
|
243
|
+
},
|
|
244
|
+
"./validations": {
|
|
245
|
+
"types": "./types/validations/index.d.ts",
|
|
246
|
+
"import": "./src/validations/index.ts"
|
|
247
|
+
},
|
|
248
|
+
"./validators*": {
|
|
249
|
+
"types": "./types/validations/vuelidate/validators*",
|
|
250
|
+
"import": "./src/validations/vuelidate/validators*"
|
|
251
|
+
},
|
|
252
|
+
"./src/validators*": {
|
|
253
|
+
"types": "./types/validations/vuelidate/validators*",
|
|
254
|
+
"import": "./src/validations/vuelidate/validators*"
|
|
255
|
+
},
|
|
256
|
+
"./modules*": {
|
|
257
|
+
"types": "./types/modules*",
|
|
258
|
+
"import": "./src/modules*"
|
|
259
|
+
},
|
|
260
|
+
"./src/modules*": {
|
|
261
|
+
"types": "./types/modules*",
|
|
262
|
+
"import": "./src/modules*"
|
|
263
|
+
},
|
|
264
|
+
"./plugins*": {
|
|
265
|
+
"types": "./types/plugins*",
|
|
266
|
+
"import": "./src/plugins*"
|
|
267
|
+
},
|
|
268
|
+
"./src/plugins*": {
|
|
269
|
+
"types": "./types/plugins*",
|
|
270
|
+
"import": "./src/plugins*"
|
|
271
|
+
},
|
|
272
|
+
"./tests*": {
|
|
273
|
+
"types": "./types/tests*",
|
|
274
|
+
"import": "./src/tests*"
|
|
275
|
+
},
|
|
276
|
+
"./src/tests*": {
|
|
277
|
+
"types": "./types/tests*",
|
|
278
|
+
"import": "./src/tests*"
|
|
279
|
+
},
|
|
280
|
+
"./dist*": {
|
|
281
|
+
"import": "./dist*"
|
|
282
|
+
}
|
|
179
283
|
}
|
|
180
284
|
}
|
package/src/api/clients/index.js
CHANGED
|
@@ -29,6 +29,7 @@ import users from './users/users';
|
|
|
29
29
|
import sysTypes from './wtTypes/sysTypes/sysTypes';
|
|
30
30
|
import typeExtensions from './wtTypes/typeExtensions/typeExtensions';
|
|
31
31
|
import { contactChatMessagesHistory, contacts } from './сontacts/index';
|
|
32
|
+
import quickReplies from './quickReplies/quickReplies';
|
|
32
33
|
|
|
33
34
|
export {
|
|
34
35
|
agentChats,
|
|
@@ -63,4 +64,5 @@ export {
|
|
|
63
64
|
teams,
|
|
64
65
|
typeExtensions,
|
|
65
66
|
users,
|
|
67
|
+
quickReplies,
|
|
66
68
|
};
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { getQuickRepliesService } from '@webitel/api-services/gen';
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
getDefaultGetListResponse,
|
|
5
|
+
getDefaultGetParams,
|
|
6
|
+
} from '../../defaults/index';
|
|
7
|
+
import applyTransform, {
|
|
8
|
+
camelToSnake,
|
|
9
|
+
merge,
|
|
10
|
+
notify,
|
|
11
|
+
sanitize,
|
|
12
|
+
snakeToCamel,
|
|
13
|
+
} from '../../transformers/index';
|
|
14
|
+
|
|
15
|
+
const quickReplyService = getQuickRepliesService();
|
|
16
|
+
|
|
17
|
+
const fieldsToSend = [
|
|
18
|
+
'name',
|
|
19
|
+
'queues',
|
|
20
|
+
'article',
|
|
21
|
+
'teams',
|
|
22
|
+
'text',
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
const getQuickRepliesList = async (params) => {
|
|
26
|
+
const fieldsToSend = ['page', 'size', 'q', 'sort', 'fields', 'id'];
|
|
27
|
+
|
|
28
|
+
const { page, size, fields, sort, id, q } = applyTransform(params, [
|
|
29
|
+
merge(getDefaultGetParams()),
|
|
30
|
+
(params) => ({ ...params, q: params.search }),
|
|
31
|
+
sanitize(fieldsToSend),
|
|
32
|
+
camelToSnake(),
|
|
33
|
+
]);
|
|
34
|
+
|
|
35
|
+
try {
|
|
36
|
+
const response = await quickReplyService.searchQuickReplies({
|
|
37
|
+
page,
|
|
38
|
+
size,
|
|
39
|
+
fields,
|
|
40
|
+
sort,
|
|
41
|
+
id,
|
|
42
|
+
q,
|
|
43
|
+
});
|
|
44
|
+
const { items, next } = applyTransform(response.data, [
|
|
45
|
+
merge(getDefaultGetListResponse()),
|
|
46
|
+
]);
|
|
47
|
+
return {
|
|
48
|
+
items: applyTransform(items, [snakeToCamel()]),
|
|
49
|
+
next,
|
|
50
|
+
};
|
|
51
|
+
} catch (err) {
|
|
52
|
+
throw applyTransform(err, [notify]);
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const getQuickReply = async ({ itemId: id }) => {
|
|
57
|
+
|
|
58
|
+
try {
|
|
59
|
+
const response = await quickReplyService.readQuickReply(id);
|
|
60
|
+
return applyTransform(response.data, [snakeToCamel()]);
|
|
61
|
+
} catch (err) {
|
|
62
|
+
throw applyTransform(err, [notify]);
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
const addQuickReply= async ({ itemInstance }) => {
|
|
67
|
+
const item = applyTransform(itemInstance, [
|
|
68
|
+
sanitize(fieldsToSend),
|
|
69
|
+
camelToSnake(),
|
|
70
|
+
]);
|
|
71
|
+
try {
|
|
72
|
+
const response = await quickReplyService.createQuickReply(item);
|
|
73
|
+
return applyTransform(response.data, [snakeToCamel()]);
|
|
74
|
+
} catch (err) {
|
|
75
|
+
throw applyTransform(err, [notify]);
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
const updateQuickReply = async ({ itemInstance, itemId: id }) => {
|
|
81
|
+
const item = applyTransform(itemInstance, [
|
|
82
|
+
camelToSnake(),
|
|
83
|
+
sanitize(fieldsToSend),
|
|
84
|
+
]);
|
|
85
|
+
|
|
86
|
+
try {
|
|
87
|
+
const response = await quickReplyService.updateQuickReply(id, item);
|
|
88
|
+
return applyTransform(response.data, [snakeToCamel()]);
|
|
89
|
+
} catch (err) {
|
|
90
|
+
throw applyTransform(err, [notify]);
|
|
91
|
+
}
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
const deleteQuickReply= async ({ id }) => {
|
|
95
|
+
try {
|
|
96
|
+
const response = await quickReplyService.deleteQuickReply(id);
|
|
97
|
+
return applyTransform(response.data, []);
|
|
98
|
+
} catch (err) {
|
|
99
|
+
throw applyTransform(err, [notify]);
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
const getLookup = (params) =>
|
|
104
|
+
getQuickRepliesList({
|
|
105
|
+
...params,
|
|
106
|
+
fields: params.fields || ['id', 'name'],
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
const QuickRepliesApi = {
|
|
110
|
+
getList: getQuickRepliesList,
|
|
111
|
+
get: getQuickReply,
|
|
112
|
+
add: addQuickReply,
|
|
113
|
+
update: updateQuickReply,
|
|
114
|
+
delete: deleteQuickReply,
|
|
115
|
+
getLookup,
|
|
116
|
+
}
|
|
117
|
+
export default QuickRepliesApi;
|
|
@@ -35,7 +35,7 @@ import { computed, onMounted, toRefs } from 'vue';
|
|
|
35
35
|
import WtIconBtn from '../../../../../components/wt-icon-btn/wt-icon-btn.vue';
|
|
36
36
|
import WtInput from '../../../../../components/wt-input/wt-input.vue';
|
|
37
37
|
import WtTooltip from '../../../../../components/wt-tooltip/wt-tooltip.vue';
|
|
38
|
-
import decimalValidator from '../../../../../validators/decimalValidator.js';
|
|
38
|
+
import decimalValidator from '../../../../../validations/vuelidate/validators/decimalValidator.js';
|
|
39
39
|
|
|
40
40
|
const props = defineProps({
|
|
41
41
|
option: {
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export function generatePermissionsApi(baseUrl: any): {
|
|
2
|
+
getPermissionsList: ({ parentId, ...params }: {
|
|
3
|
+
[x: string]: any;
|
|
4
|
+
parentId: any;
|
|
5
|
+
}) => Promise<{
|
|
6
|
+
items: any;
|
|
7
|
+
next: any;
|
|
8
|
+
}>;
|
|
9
|
+
patchPermissions: ({ changes, id }: {
|
|
10
|
+
changes: any;
|
|
11
|
+
id: any;
|
|
12
|
+
}) => Promise<any>;
|
|
13
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export default AgentChatsAPI;
|
|
2
|
+
declare namespace AgentChatsAPI {
|
|
3
|
+
export { getChatsList as getList };
|
|
4
|
+
export { markChatProcessed };
|
|
5
|
+
}
|
|
6
|
+
declare function getChatsList(params: any): Promise<{
|
|
7
|
+
items: any;
|
|
8
|
+
next: any;
|
|
9
|
+
}>;
|
|
10
|
+
declare function markChatProcessed(chatId: any): Promise<any>;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export default AgentsAPI;
|
|
2
|
+
declare namespace AgentsAPI {
|
|
3
|
+
export { getAgentsList as getList };
|
|
4
|
+
export { getAgent as get };
|
|
5
|
+
export { addAgent as add };
|
|
6
|
+
export { patchAgent as patch };
|
|
7
|
+
export { updateAgent as update };
|
|
8
|
+
export { deleteAgent as delete };
|
|
9
|
+
export { getAgentsLookup as getLookup };
|
|
10
|
+
export { getAgentHistory };
|
|
11
|
+
export { getRegularAgentsOptions };
|
|
12
|
+
export { getAgentUsersOptions };
|
|
13
|
+
export { getSupervisorOptions };
|
|
14
|
+
}
|
|
15
|
+
declare function getAgentsList(params: any): Promise<{
|
|
16
|
+
items: any;
|
|
17
|
+
next: any;
|
|
18
|
+
}>;
|
|
19
|
+
declare function getAgent({ itemId: id }: {
|
|
20
|
+
itemId: any;
|
|
21
|
+
}): Promise<any>;
|
|
22
|
+
declare function addAgent({ itemInstance }: {
|
|
23
|
+
itemInstance: any;
|
|
24
|
+
}): Promise<any>;
|
|
25
|
+
declare function patchAgent({ changes, id }: {
|
|
26
|
+
changes: any;
|
|
27
|
+
id: any;
|
|
28
|
+
}): Promise<any>;
|
|
29
|
+
declare function updateAgent({ itemInstance, itemId: id }: {
|
|
30
|
+
itemInstance: any;
|
|
31
|
+
itemId: any;
|
|
32
|
+
}): Promise<any>;
|
|
33
|
+
declare function deleteAgent({ id }: {
|
|
34
|
+
id: any;
|
|
35
|
+
}): Promise<any>;
|
|
36
|
+
declare function getAgentsLookup(params: any): Promise<{
|
|
37
|
+
items: any;
|
|
38
|
+
next: any;
|
|
39
|
+
}>;
|
|
40
|
+
declare function getAgentHistory(params: any): Promise<{
|
|
41
|
+
items: any;
|
|
42
|
+
next: any;
|
|
43
|
+
}>;
|
|
44
|
+
declare function getRegularAgentsOptions(params: any): Promise<{
|
|
45
|
+
items: any;
|
|
46
|
+
next: any;
|
|
47
|
+
}>;
|
|
48
|
+
declare function getAgentUsersOptions(params: any): Promise<{
|
|
49
|
+
items: any;
|
|
50
|
+
next: any;
|
|
51
|
+
}>;
|
|
52
|
+
declare function getSupervisorOptions(params: any): Promise<{
|
|
53
|
+
items: any;
|
|
54
|
+
next: any;
|
|
55
|
+
}>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export default BucketsAPI;
|
|
2
|
+
declare namespace BucketsAPI {
|
|
3
|
+
export { getBucketsList as getList };
|
|
4
|
+
export { getBucket as get };
|
|
5
|
+
export { addBucket as add };
|
|
6
|
+
export { updateBucket as update };
|
|
7
|
+
export { deleteBucket as delete };
|
|
8
|
+
export { getBucketsLookup as getLookup };
|
|
9
|
+
}
|
|
10
|
+
declare function getBucketsList(params: any): Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>;
|
|
14
|
+
declare function getBucket({ itemId: id }: {
|
|
15
|
+
itemId: any;
|
|
16
|
+
}): Promise<any>;
|
|
17
|
+
declare function addBucket({ itemInstance }: {
|
|
18
|
+
itemInstance: any;
|
|
19
|
+
}): Promise<any>;
|
|
20
|
+
declare function updateBucket({ itemInstance, itemId: id }: {
|
|
21
|
+
itemInstance: any;
|
|
22
|
+
itemId: any;
|
|
23
|
+
}): Promise<any>;
|
|
24
|
+
declare function deleteBucket({ id }: {
|
|
25
|
+
id: any;
|
|
26
|
+
}): Promise<any>;
|
|
27
|
+
declare function getBucketsLookup(params: any): Promise<{
|
|
28
|
+
items: any;
|
|
29
|
+
next: any;
|
|
30
|
+
}>;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export default CalendarsAPI;
|
|
2
|
+
declare namespace CalendarsAPI {
|
|
3
|
+
export { getCalendarList as getList };
|
|
4
|
+
export { getCalendar as get };
|
|
5
|
+
export { addCalendar as add };
|
|
6
|
+
export { updateCalendar as update };
|
|
7
|
+
export { deleteCalendar as delete };
|
|
8
|
+
export { getCalendarsLookup as getLookup };
|
|
9
|
+
export { getTimezonesLookup };
|
|
10
|
+
}
|
|
11
|
+
declare function getCalendarList(params: any): Promise<{
|
|
12
|
+
items: any;
|
|
13
|
+
next: any;
|
|
14
|
+
}>;
|
|
15
|
+
declare function getCalendar({ itemId: id }: {
|
|
16
|
+
itemId: any;
|
|
17
|
+
}): Promise<any>;
|
|
18
|
+
declare function addCalendar({ itemInstance }: {
|
|
19
|
+
itemInstance: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function updateCalendar({ itemInstance, itemId: id }: {
|
|
22
|
+
itemInstance: any;
|
|
23
|
+
itemId: any;
|
|
24
|
+
}): Promise<any>;
|
|
25
|
+
declare function deleteCalendar({ id }: {
|
|
26
|
+
id: any;
|
|
27
|
+
}): Promise<any>;
|
|
28
|
+
declare function getCalendarsLookup(params: any): Promise<{
|
|
29
|
+
items: any;
|
|
30
|
+
next: any;
|
|
31
|
+
}>;
|
|
32
|
+
declare function getTimezonesLookup(params: any): Promise<{
|
|
33
|
+
items: any;
|
|
34
|
+
next: any;
|
|
35
|
+
}>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export default CaseCloseReasonGroupsAPI;
|
|
2
|
+
declare namespace CaseCloseReasonGroupsAPI {
|
|
3
|
+
export { getCloseReasonGroupsList as getList };
|
|
4
|
+
export { getCloseReasonGroups as get };
|
|
5
|
+
export { addCloseReasonGroups as add };
|
|
6
|
+
export { updateCloseReasonGroups as update };
|
|
7
|
+
export { deleteCloseReasonGroups as delete };
|
|
8
|
+
export { getCloseReasonGroupsLookup as getLookup };
|
|
9
|
+
}
|
|
10
|
+
declare function getCloseReasonGroupsList(params: any): Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>;
|
|
14
|
+
declare function getCloseReasonGroups({ itemId: id }: {
|
|
15
|
+
itemId: any;
|
|
16
|
+
}): Promise<any>;
|
|
17
|
+
declare function addCloseReasonGroups({ itemInstance }: {
|
|
18
|
+
itemInstance: any;
|
|
19
|
+
}): Promise<any>;
|
|
20
|
+
declare function updateCloseReasonGroups({ itemInstance, itemId: id }: {
|
|
21
|
+
itemInstance: any;
|
|
22
|
+
itemId: any;
|
|
23
|
+
}): Promise<any>;
|
|
24
|
+
declare function deleteCloseReasonGroups({ id }: {
|
|
25
|
+
id: any;
|
|
26
|
+
}): Promise<any>;
|
|
27
|
+
declare function getCloseReasonGroupsLookup(params: any): Promise<{
|
|
28
|
+
items: any;
|
|
29
|
+
next: any;
|
|
30
|
+
}>;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export default CaseCloseReasonsAPI;
|
|
2
|
+
declare namespace CaseCloseReasonsAPI {
|
|
3
|
+
export { getCloseReasonsList as getList };
|
|
4
|
+
export { getCloseReasonLookup as getLookup };
|
|
5
|
+
export { getCloseReason as get };
|
|
6
|
+
export { addCloseReason as add };
|
|
7
|
+
export { updateCloseReason as update };
|
|
8
|
+
export { deleteCloseReason as delete };
|
|
9
|
+
}
|
|
10
|
+
declare function getCloseReasonsList({ parentId, ...rest }: {
|
|
11
|
+
[x: string]: any;
|
|
12
|
+
parentId: any;
|
|
13
|
+
}): Promise<{
|
|
14
|
+
items: any;
|
|
15
|
+
next: any;
|
|
16
|
+
}>;
|
|
17
|
+
declare function getCloseReasonLookup(params: any): Promise<{
|
|
18
|
+
items: any;
|
|
19
|
+
next: any;
|
|
20
|
+
}>;
|
|
21
|
+
declare function getCloseReason({ parentId, itemId: id }: {
|
|
22
|
+
parentId: any;
|
|
23
|
+
itemId: any;
|
|
24
|
+
}): Promise<any>;
|
|
25
|
+
declare function addCloseReason({ itemInstance, parentId }: {
|
|
26
|
+
itemInstance: any;
|
|
27
|
+
parentId: any;
|
|
28
|
+
}): Promise<any>;
|
|
29
|
+
declare function updateCloseReason({ itemInstance, itemId: id }: {
|
|
30
|
+
itemInstance: any;
|
|
31
|
+
itemId: any;
|
|
32
|
+
}): Promise<any>;
|
|
33
|
+
declare function deleteCloseReason({ id, parentId }: {
|
|
34
|
+
id: any;
|
|
35
|
+
parentId: any;
|
|
36
|
+
}): Promise<any>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export default CasePrioritiesAPI;
|
|
2
|
+
declare namespace CasePrioritiesAPI {
|
|
3
|
+
export { getPrioritiesList as getList };
|
|
4
|
+
export { getPriority as get };
|
|
5
|
+
export { updatePriority as update };
|
|
6
|
+
export { getConditionsLookup as getLookup };
|
|
7
|
+
export { deletePriority as delete };
|
|
8
|
+
export { addPriority as add };
|
|
9
|
+
}
|
|
10
|
+
declare function getPrioritiesList(params: any): Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>;
|
|
14
|
+
declare function getPriority({ itemId: id }: {
|
|
15
|
+
itemId: any;
|
|
16
|
+
}): Promise<any>;
|
|
17
|
+
declare function updatePriority({ itemInstance, itemId: id }: {
|
|
18
|
+
itemInstance: any;
|
|
19
|
+
itemId: any;
|
|
20
|
+
}): Promise<any>;
|
|
21
|
+
declare function getConditionsLookup(params: any): Promise<{
|
|
22
|
+
items: any;
|
|
23
|
+
next: any;
|
|
24
|
+
}>;
|
|
25
|
+
declare function deletePriority({ id }: {
|
|
26
|
+
id: any;
|
|
27
|
+
}): Promise<any>;
|
|
28
|
+
declare function addPriority({ itemInstance }: {
|
|
29
|
+
itemInstance: any;
|
|
30
|
+
}): Promise<any>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export default ServiceCatalogsAPI;
|
|
2
|
+
declare namespace ServiceCatalogsAPI {
|
|
3
|
+
export { getCatalogsList as getList };
|
|
4
|
+
export { getCatalog as get };
|
|
5
|
+
export { addCatalog as add };
|
|
6
|
+
export { updateCatalog as update };
|
|
7
|
+
export { patchCatalog as patch };
|
|
8
|
+
export { deleteCatalog as delete };
|
|
9
|
+
}
|
|
10
|
+
declare function getCatalogsList(params: any): Promise<{
|
|
11
|
+
items: any;
|
|
12
|
+
next: any;
|
|
13
|
+
}>;
|
|
14
|
+
declare function getCatalog({ itemId: id }: {
|
|
15
|
+
itemId: any;
|
|
16
|
+
}): Promise<any>;
|
|
17
|
+
declare function addCatalog({ itemInstance }: {
|
|
18
|
+
itemInstance: any;
|
|
19
|
+
}): Promise<any>;
|
|
20
|
+
declare function updateCatalog({ itemInstance, itemId: id }: {
|
|
21
|
+
itemInstance: any;
|
|
22
|
+
itemId: any;
|
|
23
|
+
}): Promise<any>;
|
|
24
|
+
declare function patchCatalog({ itemInstance, itemId: id }: {
|
|
25
|
+
itemInstance: any;
|
|
26
|
+
itemId: any;
|
|
27
|
+
}): Promise<any>;
|
|
28
|
+
declare function deleteCatalog({ id }: {
|
|
29
|
+
id: any;
|
|
30
|
+
}): Promise<any>;
|