@webitel/api-services 0.0.24 → 0.0.27
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 +15 -10
- package/src/api/axios/generateInstance.ts +35 -0
- package/src/api/axios/index.ts +2 -0
- package/src/api/clients/_shared/generatePermissionsApi.ts +97 -0
- package/src/api/clients/agents/agentChats.ts +71 -0
- package/src/api/clients/agents/agents.ts +263 -0
- package/src/api/clients/buckets/buckets.ts +110 -0
- package/src/api/clients/calendars/calendars.ts +208 -0
- package/src/api/clients/caseCloseReasonGroups/caseCloseReasonGroups.ts +126 -0
- package/src/api/clients/caseCloseReasons/caseCloseReasons.ts +122 -0
- package/src/api/clients/casePriorities/casePriorities.ts +137 -0
- package/src/api/clients/caseServiceCatalogs/serviceCatalogs.ts +196 -0
- package/src/api/clients/caseServices/services.ts +179 -0
- package/src/api/clients/caseSources/caseSources.ts +116 -0
- package/src/api/clients/caseStatusConditions/caseStatusConditions.ts +163 -0
- package/src/api/clients/caseStatuses/caseStatuses.ts +117 -0
- package/src/api/clients/catalog/catalog.ts +39 -0
- package/src/api/clients/chatGateways/chatGateways.ts +303 -0
- package/src/api/clients/chatGateways/defaults/defaultChatGateway.ts +20 -0
- package/src/api/clients/chatGateways/defaults/webChatGateway.ts +75 -0
- package/src/api/clients/chatGateways/enums/WebchatAlternativeChannel.enum.ts +12 -0
- package/src/api/clients/chatGateways/scripts/generateUri.ts +13 -0
- package/src/api/clients/communications/communications.ts +139 -0
- package/src/api/clients/configurations/configurations.ts +142 -0
- package/src/api/clients/contactGroups/contactGroups.ts +184 -0
- package/src/api/clients/flows/flow.ts +219 -0
- package/src/api/clients/gateways/defaults/defaultGateway.ts +9 -0
- package/src/api/clients/gateways/defaults/registerGateway.ts +12 -0
- package/src/api/clients/gateways/defaults/trunkingGateway.ts +16 -0
- package/src/api/clients/gateways/gateways.ts +173 -0
- package/src/api/clients/index.ts +68 -0
- package/src/api/clients/labels/labels.ts +53 -0
- package/src/api/clients/lists/blacklists.ts +116 -0
- package/src/api/clients/media/media.ts +114 -0
- package/src/api/clients/object/object.ts +112 -0
- package/src/api/clients/queues/defaults/processing.ts +14 -0
- package/src/api/clients/queues/queues.ts +232 -0
- package/src/api/clients/quickReplies/quickReplies.ts +108 -0
- package/src/api/clients/roles/roles.ts +200 -0
- package/src/api/clients/skills/skills.ts +110 -0
- package/src/api/clients/slaConditions/slaConditions.ts +163 -0
- package/src/api/clients/slas/slas.ts +116 -0
- package/src/api/clients/teams/teams.ts +142 -0
- package/src/api/clients/users/__tests__/users.spec.ts +265 -0
- package/src/api/clients/users/users.ts +228 -0
- package/src/api/clients/wtTypes/_shared/utils/sortDynamicFields.ts +21 -0
- package/src/api/clients/wtTypes/sysTypes/sysTypes.ts +60 -0
- package/src/api/clients/wtTypes/typeExtensions/typeExtensions.ts +114 -0
- package/src/api/clients//321/201ontacts/contactChatMessagesHistory.ts +98 -0
- package/src/api/clients//321/201ontacts/contacts.ts +337 -0
- package/src/api/clients//321/201ontacts/enums/ContactsSearchMode.ts +9 -0
- package/src/api/clients//321/201ontacts/index.ts +5 -0
- package/src/api/defaults/getDefaultGetListResponse/getDefaultGetListResponse.ts +8 -0
- package/src/api/defaults/getDefaultGetParams/getDefaultGetParams.ts +11 -0
- package/src/api/defaults/getDefaultInstance/getDefaultInstance.ts +21 -0
- package/src/api/defaults/getDefaultOpenAPIConfig/getDefaultOpenAPIConfig.ts +12 -0
- package/src/api/defaults/index.ts +11 -0
- package/src/api/index.ts +6 -0
- package/src/api/interceptors/index.ts +3 -0
- package/src/api/interceptors/request/index.ts +2 -0
- package/src/api/interceptors/request/updateToken.interceptor.ts +11 -0
- package/src/api/interceptors/response/handleUnauthorized.interceptor.ts +14 -0
- package/src/api/interceptors/response/index.ts +2 -0
- package/src/api/transformers/addQueryParamsToUrl/addQueryParamsToUrl.transformer.ts +19 -0
- package/src/api/transformers/applyTransform.ts +24 -0
- package/src/api/transformers/camelToSnake/camelToSnake.transformer.ts +5 -0
- package/src/api/transformers/generateUrl/generateUrl.transformer.ts +13 -0
- package/src/api/transformers/index.ts +27 -0
- package/src/api/transformers/log/log.transformer.ts +6 -0
- package/src/api/transformers/merge/merge.transformer.ts +8 -0
- package/src/api/transformers/mergeEach/mergeEach.transformer.ts +8 -0
- package/src/api/transformers/notify/notify.transformer.ts +39 -0
- package/src/api/transformers/sanitize/sanitize.transformer.ts +12 -0
- package/src/api/transformers/skipIf/skipIf.ts +11 -0
- package/src/api/transformers/snakeToCamel/snakeToCamel.transformer.ts +5 -0
- package/src/api/transformers/starToSearch/starToSearch.transformer.ts +15 -0
- package/src/gen/_docs/html/assets/navigation.js +1 -1
- package/src/gen/_docs/html/assets/search.js +1 -1
- package/src/gen/_docs/html/interfaces/_models_webitelCasesInputSource.WebitelCasesInputSource.html +0 -1
- package/src/gen/_docs/html/interfaces/_models_webitelCasesSource.WebitelCasesSource.html +5 -6
- package/src/gen/_docs/html/modules/index.html +1 -1
- package/src/gen/_docs/html/modules/sources_sources.zod.gen.html +7 -7
- package/src/gen/_docs/html/types/_models_createCaseParams.CreateCaseParams.html +9 -3
- package/src/gen/_docs/html/types/_models_updateCase2Params.UpdateCase2Params.html +8 -3
- package/src/gen/_docs/html/types/_models_updateCaseParams.UpdateCaseParams.html +8 -3
- package/src/gen/_docs/html/variables/cases_cases.zod.gen.createCaseQueryParams.html +1 -1
- package/src/gen/_docs/html/variables/cases_cases.zod.gen.updateCase2QueryParams.html +1 -1
- package/src/gen/_docs/html/variables/cases_cases.zod.gen.updateCaseQueryParams.html +1 -1
- package/src/gen/_models/agentAbsenceServiceUpdateAgentAbsenceBodyItem.ts +2 -1
- package/src/gen/_models/agentWorkingScheduleServiceCreateAgentsWorkingScheduleShiftsBody.ts +3 -2
- package/src/gen/_models/apiAccessStoreToggleDefaultAccessBody.ts +2 -1
- package/src/gen/_models/apiCustomer.ts +3 -2
- package/src/gen/_models/apiDevice.ts +2 -1
- package/src/gen/_models/apiLDAPCatalog.ts +5 -4
- package/src/gen/_models/apiLDAPUpdateLDAPCatalogBodyCatalog.ts +5 -4
- package/src/gen/_models/apiLDAProcess.ts +3 -2
- package/src/gen/_models/apiLicenseV1.ts +2 -1
- package/src/gen/_models/apiRole.ts +4 -3
- package/src/gen/_models/apiRolesUpdateRoleBodyRole.ts +4 -3
- package/src/gen/_models/apiUser.ts +2 -1
- package/src/gen/_models/apiUsersUpdateUserBodyUser.ts +2 -1
- package/src/gen/_models/contactsUpdateContactBody.ts +2 -1
- package/src/gen/_models/createCaseParams.ts +8 -0
- package/src/gen/_models/engineActiveCall.ts +3 -2
- package/src/gen/_models/engineAgent.ts +2 -1
- package/src/gen/_models/engineAgentInQueueStatistics.ts +2 -1
- package/src/gen/_models/engineAggregateHistoryCallRequest.ts +2 -1
- package/src/gen/_models/engineAttempt.ts +2 -1
- package/src/gen/_models/engineAttemptHistory.ts +2 -1
- package/src/gen/_models/engineAuditFormServicePatchAuditFormBody.ts +2 -1
- package/src/gen/_models/engineAuditFormServiceUpdateAuditFormBody.ts +2 -1
- package/src/gen/_models/engineAuditRate.ts +3 -2
- package/src/gen/_models/engineCreateAuditFormRequest.ts +2 -1
- package/src/gen/_models/engineCreateCallRequest.ts +2 -1
- package/src/gen/_models/engineCreateMemberBulkItem.ts +2 -1
- package/src/gen/_models/engineCreateOutboundResourceRequest.ts +3 -2
- package/src/gen/_models/engineCreateQueueRequest.ts +3 -2
- package/src/gen/_models/engineCreateRoutingSchemaRequest.ts +2 -1
- package/src/gen/_models/engineCreateTriggerRequest.ts +3 -2
- package/src/gen/_models/engineDeleteAllMembersRequest.ts +2 -1
- package/src/gen/_models/engineHistoryCall.ts +7 -6
- package/src/gen/_models/engineListReportGeneral.ts +2 -1
- package/src/gen/_models/engineOutboundResource.ts +2 -1
- package/src/gen/_models/engineOutboundResourceServicePatchOutboundResourceBody.ts +2 -1
- package/src/gen/_models/engineOutboundResourceServiceUpdateOutboundResourceBody.ts +2 -1
- package/src/gen/_models/engineQuestion.ts +2 -1
- package/src/gen/_models/engineQueue.ts +3 -2
- package/src/gen/_models/engineQueueReportGeneral.ts +2 -1
- package/src/gen/_models/engineQueueServicePatchQueueBody.ts +3 -2
- package/src/gen/_models/engineQueueServiceUpdateQueueBody.ts +3 -2
- package/src/gen/_models/engineRoutingSchema.ts +3 -2
- package/src/gen/_models/engineRoutingSchemaServicePatchRoutingSchemaBody.ts +2 -1
- package/src/gen/_models/engineRoutingSchemaServiceUpdateRoutingSchemaBody.ts +2 -1
- package/src/gen/_models/engineTeamHook.ts +2 -1
- package/src/gen/_models/engineTeamHookServiceCreateTeamHookBody.ts +2 -1
- package/src/gen/_models/engineTeamHookServicePatchTeamHookBody.ts +2 -1
- package/src/gen/_models/engineTeamHookServiceUpdateTeamHookBody.ts +2 -1
- package/src/gen/_models/engineTrigger.ts +2 -1
- package/src/gen/_models/engineTriggerJob.ts +2 -1
- package/src/gen/_models/engineTriggerServicePatchTriggerBody.ts +2 -1
- package/src/gen/_models/engineTriggerServiceUpdateTriggerBody.ts +2 -1
- package/src/gen/_models/index.ts +26 -26
- package/src/gen/_models/pauseTemplateServiceUpdatePauseTemplateBodyItem.ts +2 -1
- package/src/gen/_models/storageCreateImportTemplateRequest.ts +2 -1
- package/src/gen/_models/storageFile.ts +3 -2
- package/src/gen/_models/storageFilePolicy.ts +2 -1
- package/src/gen/_models/storageImportTemplate.ts +3 -2
- package/src/gen/_models/storageSafeUploadFileResponseMetadata.ts +2 -1
- package/src/gen/_models/storageUpdateCognitiveProfileRequest.ts +3 -2
- package/src/gen/_models/storageUpdateImportTemplateRequest.ts +2 -1
- package/src/gen/_models/storageUploadFileResponse.ts +2 -1
- package/src/gen/_models/storageUploadFileUrlResponse.ts +2 -1
- package/src/gen/_models/updateCase2Params.ts +8 -0
- package/src/gen/_models/updateCaseParams.ts +8 -0
- package/src/gen/_models/updateRelatedCase2Body.ts +2 -1
- package/src/gen/_models/updateRelatedCaseBody.ts +2 -1
- package/src/gen/_models/updateRelatedCaseInputBody.ts +2 -1
- package/src/gen/_models/usersUpdateUser2Body.ts +2 -1
- package/src/gen/_models/usersUpdateUserBody.ts +2 -1
- package/src/gen/_models/usersUpdateUserUserBody.ts +2 -1
- package/src/gen/_models/webitelCasesCallEvent.ts +2 -1
- package/src/gen/_models/webitelCasesCase.ts +2 -1
- package/src/gen/_models/webitelCasesChatEvent.ts +2 -1
- package/src/gen/_models/webitelCasesEmailEvent.ts +2 -1
- package/src/gen/_models/webitelCasesInputCreateService.ts +2 -1
- package/src/gen/_models/webitelCasesInputService.ts +2 -1
- package/src/gen/_models/webitelCasesInputSource.ts +0 -1
- package/src/gen/_models/webitelCasesService.ts +2 -1
- package/src/gen/_models/webitelCasesSource.ts +5 -6
- package/src/gen/_models/webitelChatAgentChat.ts +2 -1
- package/src/gen/_models/webitelChatBroadcastMessageRequest.ts +2 -1
- package/src/gen/_models/webitelChatChatMessage.ts +3 -2
- package/src/gen/_models/webitelChatContactChat.ts +2 -1
- package/src/gen/_models/webitelChatDialog.ts +2 -1
- package/src/gen/_models/webitelChatGetContactChatHistoryResponse.ts +3 -2
- package/src/gen/_models/webitelContactsComment.ts +2 -1
- package/src/gen/_models/webitelProtoDataStruct.ts +2 -1
- package/src/gen/_models/wfmAbsence.ts +2 -1
- package/src/gen/_models/wfmAgentScheduleShift.ts +3 -2
- package/src/gen/_models/wfmAgentWorkingSchedule.ts +2 -1
- package/src/gen/_models/wfmPauseTemplate.ts +2 -1
- package/src/gen/_models/wfmSearchAgentsWorkingScheduleResponse.ts +2 -1
- package/src/gen/access-store/access-store.msw.api.gen.ts +1 -1
- package/src/gen/access-store/access-store.zod.gen.ts +2 -2
- package/src/gen/agent-absence-service/agent-absence-service.msw.api.gen.ts +2 -3
- package/src/gen/agent-chat-service/agent-chat-service.msw.api.gen.ts +2 -3
- package/src/gen/agent-pause-cause-service/agent-pause-cause-service.msw.api.gen.ts +1 -1
- package/src/gen/agent-service/agent-service.msw.api.gen.ts +1 -1
- package/src/gen/agent-skill-service/agent-skill-service.msw.api.gen.ts +1 -1
- package/src/gen/agent-team-service/agent-team-service.msw.api.gen.ts +1 -1
- package/src/gen/agent-working-conditions-service/agent-working-conditions-service.msw.api.gen.ts +1 -1
- package/src/gen/agent-working-schedule-service/agent-working-schedule-service.msw.api.gen.ts +2 -3
- package/src/gen/articles/articles.api.gen.ts +1 -1
- package/src/gen/articles/articles.msw.api.gen.ts +1 -1
- package/src/gen/audit-form-service/audit-form-service.msw.api.gen.ts +2 -3
- package/src/gen/auth/auth.msw.api.gen.ts +1 -1
- package/src/gen/auth/auth.zod.gen.ts +1 -1
- package/src/gen/backend-profile-service/backend-profile-service.msw.api.gen.ts +1 -1
- package/src/gen/bucket-service/bucket-service.msw.api.gen.ts +1 -1
- package/src/gen/calendar-service/calendar-service.msw.api.gen.ts +1 -1
- package/src/gen/call-service/call-service.msw.api.gen.ts +5 -6
- package/src/gen/call-service/call-service.zod.gen.ts +1 -1
- package/src/gen/case-comments/case-comments.msw.api.gen.ts +1 -1
- package/src/gen/case-communications/case-communications.msw.api.gen.ts +1 -1
- package/src/gen/case-files/case-files.msw.api.gen.ts +1 -1
- package/src/gen/case-links/case-links.msw.api.gen.ts +1 -1
- package/src/gen/case-timeline/case-timeline.msw.api.gen.ts +2 -3
- package/src/gen/cases/cases.msw.api.gen.ts +2 -3
- package/src/gen/cases/cases.zod.gen.ts +18 -0
- package/src/gen/cases-chat-catalog/cases-chat-catalog.msw.api.gen.ts +2 -3
- package/src/gen/cases-chat-catalog/cases-chat-catalog.zod.gen.ts +1 -1
- package/src/gen/catalog/catalog.msw.api.gen.ts +2 -3
- package/src/gen/catalog/catalog.zod.gen.ts +3 -3
- package/src/gen/catalogs/catalogs.msw.api.gen.ts +1 -1
- package/src/gen/catalogs/catalogs.zod.gen.ts +4 -4
- package/src/gen/classes/classes.msw.api.gen.ts +1 -1
- package/src/gen/classes/classes.zod.gen.ts +1 -1
- package/src/gen/close-reason-groups/close-reason-groups.msw.api.gen.ts +1 -1
- package/src/gen/close-reasons/close-reasons.msw.api.gen.ts +1 -1
- package/src/gen/cognitive-profile-service/cognitive-profile-service.msw.api.gen.ts +2 -3
- package/src/gen/communication-type-service/communication-type-service.msw.api.gen.ts +2 -3
- package/src/gen/config-service/config-service.msw.api.gen.ts +1 -1
- package/src/gen/contact-groups/contact-groups.msw.api.gen.ts +1 -1
- package/src/gen/contact-linking-service/contact-linking-service.msw.api.gen.ts +1 -1
- package/src/gen/contacts/contacts.msw.api.gen.ts +1 -1
- package/src/gen/contacts/contacts.zod.gen.ts +2 -2
- package/src/gen/contacts-chat-catalog/contacts-chat-catalog.msw.api.gen.ts +2 -3
- package/src/gen/contacts-chat-catalog/contacts-chat-catalog.zod.gen.ts +2 -2
- package/src/gen/customers/customers.msw.api.gen.ts +1 -1
- package/src/gen/customers/customers.zod.gen.ts +4 -4
- package/src/gen/devices/devices.msw.api.gen.ts +1 -1
- package/src/gen/devices/devices.zod.gen.ts +1 -1
- package/src/gen/dictionaries/dictionaries.msw.api.gen.ts +2 -3
- package/src/gen/dictionaries/dictionaries.zod.gen.ts +16 -16
- package/src/gen/domains/domains.msw.api.gen.ts +1 -1
- package/src/gen/dynamic-conditions/dynamic-conditions.msw.api.gen.ts +1 -1
- package/src/gen/dynamic-groups/dynamic-groups.msw.api.gen.ts +1 -1
- package/src/gen/email-profile-service/email-profile-service.msw.api.gen.ts +2 -3
- package/src/gen/emails/emails.msw.api.gen.ts +1 -1
- package/src/gen/extensions/extensions.msw.api.gen.ts +2 -3
- package/src/gen/extensions/extensions.zod.gen.ts +10 -10
- package/src/gen/file-policies-service/file-policies-service.msw.api.gen.ts +2 -3
- package/src/gen/file-service/file-service.msw.api.gen.ts +2 -3
- package/src/gen/file-transcript-service/file-transcript-service.msw.api.gen.ts +1 -1
- package/src/gen/forecast-calculation-service/forecast-calculation-service.msw.api.gen.ts +1 -1
- package/src/gen/ftsservice/ftsservice.msw.api.gen.ts +1 -1
- package/src/gen/groups/groups.msw.api.gen.ts +2 -3
- package/src/gen/imclients/imclients.msw.api.gen.ts +1 -1
- package/src/gen/import-template-service/import-template-service.msw.api.gen.ts +2 -3
- package/src/gen/index.ts +249 -249
- package/src/gen/knowledgebase-search/knowledgebase-search.msw.api.gen.ts +1 -1
- package/src/gen/labels/labels.msw.api.gen.ts +1 -1
- package/src/gen/ldap/ldap.api.gen.ts +4 -4
- package/src/gen/ldap/ldap.msw.api.gen.ts +3 -3
- package/src/gen/ldap/ldap.zod.gen.ts +6 -6
- package/src/gen/list-service/list-service.msw.api.gen.ts +1 -1
- package/src/gen/logger-service/logger-service.msw.api.gen.ts +1 -1
- package/src/gen/managers/managers.msw.api.gen.ts +1 -1
- package/src/gen/media-file-service/media-file-service.msw.api.gen.ts +1 -1
- package/src/gen/member-service/member-service.msw.api.gen.ts +1 -1
- package/src/gen/member-service/member-service.zod.gen.ts +1 -1
- package/src/gen/messages-service/messages-service.msw.api.gen.ts +1 -1
- package/src/gen/oauth2-federation/oauth2-federation.msw.api.gen.ts +1 -1
- package/src/gen/oauth2-federation/oauth2-federation.zod.gen.ts +2 -2
- package/src/gen/outbound-resource-group-service/outbound-resource-group-service.msw.api.gen.ts +1 -1
- package/src/gen/outbound-resource-service/outbound-resource-service.msw.api.gen.ts +1 -1
- package/src/gen/pause-template-service/pause-template-service.msw.api.gen.ts +1 -1
- package/src/gen/permissions/permissions.msw.api.gen.ts +1 -1
- package/src/gen/permissions/permissions.zod.gen.ts +1 -1
- package/src/gen/phones/phones.msw.api.gen.ts +1 -1
- package/src/gen/presence/presence.msw.api.gen.ts +1 -1
- package/src/gen/preset-query-service/preset-query-service.msw.api.gen.ts +1 -1
- package/src/gen/priorities/priorities.msw.api.gen.ts +1 -1
- package/src/gen/queue-bucket-service/queue-bucket-service.msw.api.gen.ts +1 -1
- package/src/gen/queue-hook-service/queue-hook-service.msw.api.gen.ts +1 -1
- package/src/gen/queue-resources-service/queue-resources-service.msw.api.gen.ts +1 -1
- package/src/gen/queue-service/queue-service.msw.api.gen.ts +1 -1
- package/src/gen/queue-skill-service/queue-skill-service.msw.api.gen.ts +1 -1
- package/src/gen/quick-replies-service/quick-replies-service.msw.api.gen.ts +1 -1
- package/src/gen/region-service/region-service.msw.api.gen.ts +1 -1
- package/src/gen/related-cases/related-cases.msw.api.gen.ts +2 -3
- package/src/gen/routing-chat-plan-service/routing-chat-plan-service.msw.api.gen.ts +1 -1
- package/src/gen/routing-outbound-call-service/routing-outbound-call-service.msw.api.gen.ts +1 -1
- package/src/gen/routing-schema-service/routing-schema-service.msw.api.gen.ts +2 -3
- package/src/gen/routing-variable-service/routing-variable-service.msw.api.gen.ts +1 -1
- package/src/gen/schema-variables-service/schema-variables-service.msw.api.gen.ts +1 -1
- package/src/gen/schema-version-service/schema-version-service.msw.api.gen.ts +1 -1
- package/src/gen/services/services.msw.api.gen.ts +1 -1
- package/src/gen/shift-template-service/shift-template-service.msw.api.gen.ts +1 -1
- package/src/gen/skill-service/skill-service.msw.api.gen.ts +1 -1
- package/src/gen/slaconditions/slaconditions.msw.api.gen.ts +1 -1
- package/src/gen/slas/slas.msw.api.gen.ts +1 -1
- package/src/gen/sources/sources.msw.api.gen.ts +8 -9
- package/src/gen/sources/sources.zod.gen.ts +0 -27
- package/src/gen/spaces/spaces.msw.api.gen.ts +1 -1
- package/src/gen/spaces/spaces.zod.gen.ts +1 -1
- package/src/gen/status-conditions/status-conditions.msw.api.gen.ts +1 -1
- package/src/gen/statuses/statuses.msw.api.gen.ts +1 -1
- package/src/gen/system-setting-service/system-setting-service.msw.api.gen.ts +2 -3
- package/src/gen/tags/tags.msw.api.gen.ts +1 -1
- package/src/gen/team-hook-service/team-hook-service.msw.api.gen.ts +2 -3
- package/src/gen/team-trigger-service/team-trigger-service.msw.api.gen.ts +1 -1
- package/src/gen/timeline/timeline.msw.api.gen.ts +2 -3
- package/src/gen/timezones/timezones.msw.api.gen.ts +1 -1
- package/src/gen/trigger-service/trigger-service.msw.api.gen.ts +7 -8
- package/src/gen/two-factor-authentication/two-factor-authentication.msw.api.gen.ts +1 -1
- package/src/gen/types/types.msw.api.gen.ts +2 -3
- package/src/gen/types/types.zod.gen.ts +4 -4
- package/src/gen/user-access-tokens/user-access-tokens.msw.api.gen.ts +1 -1
- package/src/gen/user-helper-service/user-helper-service.msw.api.gen.ts +1 -1
- package/src/gen/users/users.msw.api.gen.ts +1 -1
- package/src/gen/users/users.zod.gen.ts +12 -12
- package/src/gen/variables/variables.msw.api.gen.ts +1 -1
- package/src/gen/web-hook-service/web-hook-service.msw.api.gen.ts +1 -1
- package/src/gen/working-condition-service/working-condition-service.msw.api.gen.ts +1 -1
- package/src/gen/working-schedule-service/working-schedule-service.msw.api.gen.ts +2 -3
- package/src/utils/gen/index.ts +35 -33
- package/src/utils/index.ts +11 -6
- package/src/validations/caseSource/caseSource.validations.ts +3 -5
- package/types/api/axios/generateInstance.d.ts +9 -0
- package/types/api/axios/index.d.ts +1 -0
- package/types/api/clients/_shared/generatePermissionsApi.d.ts +13 -0
- package/types/api/clients/agents/agentChats.d.ts +7 -0
- package/types/api/clients/agents/agents.d.ts +43 -0
- package/types/api/clients/buckets/buckets.d.ts +23 -0
- package/types/api/clients/calendars/calendars.d.ts +27 -0
- package/types/api/clients/caseCloseReasonGroups/caseCloseReasonGroups.d.ts +23 -0
- package/types/api/clients/caseCloseReasons/caseCloseReasons.d.ts +29 -0
- package/types/api/clients/casePriorities/casePriorities.d.ts +23 -0
- package/types/api/clients/caseServiceCatalogs/serviceCatalogs.d.ts +23 -0
- package/types/api/clients/caseServices/services.d.ts +34 -0
- package/types/api/clients/caseSources/caseSources.d.ts +23 -0
- package/types/api/clients/caseStatusConditions/caseStatusConditions.d.ts +35 -0
- package/types/api/clients/caseStatuses/caseStatuses.d.ts +23 -0
- package/types/api/clients/catalog/catalog.d.ts +8 -0
- package/types/api/clients/chatGateways/chatGateways.d.ts +30 -0
- package/types/api/clients/chatGateways/defaults/defaultChatGateway.d.ts +18 -0
- package/types/api/clients/chatGateways/defaults/webChatGateway.d.ts +68 -0
- package/types/api/clients/chatGateways/enums/WebchatAlternativeChannel.enum.d.ts +12 -0
- package/types/api/clients/chatGateways/scripts/generateUri.d.ts +5 -0
- package/types/api/clients/communications/communications.d.ts +27 -0
- package/types/api/clients/configurations/configurations.d.ts +27 -0
- package/types/api/clients/contactGroups/contactGroups.d.ts +46 -0
- package/types/api/clients/flows/flow.d.ts +27 -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 +27 -0
- package/types/api/clients/index.d.ts +33 -0
- package/types/api/clients/labels/labels.d.ts +10 -0
- package/types/api/clients/lists/blacklists.d.ts +23 -0
- package/types/api/clients/media/media.d.ts +18 -0
- package/types/api/clients/object/object.d.ts +10 -0
- package/types/api/clients/queues/defaults/processing.d.ts +7 -0
- package/types/api/clients/queues/queues.d.ts +31 -0
- package/types/api/clients/quickReplies/quickReplies.d.ts +23 -0
- package/types/api/clients/roles/roles.d.ts +31 -0
- package/types/api/clients/skills/skills.d.ts +23 -0
- package/types/api/clients/slaConditions/slaConditions.d.ts +29 -0
- package/types/api/clients/slas/slas.d.ts +23 -0
- package/types/api/clients/teams/teams.d.ts +23 -0
- package/types/api/clients/users/users.d.ts +45 -0
- package/types/api/clients/wtTypes/_shared/utils/sortDynamicFields.d.ts +2 -0
- package/types/api/clients/wtTypes/sysTypes/sysTypes.d.ts +15 -0
- package/types/api/clients/wtTypes/typeExtensions/typeExtensions.d.ts +16 -0
- package/types/api/clients//321/201ontacts/contactChatMessagesHistory.d.ts +13 -0
- package/types/api/clients//321/201ontacts/contacts.d.ts +22 -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 +8 -0
- package/types/api/defaults/getDefaultGetParams/getDefaultGetParams.d.ts +14 -0
- package/types/api/defaults/getDefaultInstance/getDefaultInstance.d.ts +5 -0
- package/types/api/defaults/getDefaultOpenAPIConfig/getDefaultOpenAPIConfig.d.ts +6 -0
- package/types/api/defaults/index.d.ts +5 -0
- package/types/api/index.d.ts +5 -0
- package/types/api/interceptors/index.d.ts +2 -0
- package/types/api/interceptors/request/index.d.ts +1 -0
- package/types/api/interceptors/request/updateToken.interceptor.d.ts +4 -0
- package/types/api/interceptors/response/handleUnauthorized.interceptor.d.ts +5 -0
- package/types/api/interceptors/response/index.d.ts +1 -0
- package/types/api/transformers/addQueryParamsToUrl/addQueryParamsToUrl.transformer.d.ts +2 -0
- package/types/api/transformers/applyTransform.d.ts +13 -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 +13 -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/skipIf/skipIf.d.ts +1 -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/gen/_models/engineTriggerObjectType.d.ts +0 -1
- package/types/gen/_models/fileServiceSearchFilesChannelItem.d.ts +0 -2
- package/types/gen/_models/googleRpcStatus.d.ts +12 -0
- package/types/gen/_models/storageUploadFileChannel.d.ts +0 -2
- package/types/gen/_models/webitelCasesStatus.d.ts +16 -0
- package/types/gen/file-policies-service/file-policies-service.zod.gen.d.ts +0 -18
- package/types/gen/file-service/file-service.api.gen.d.ts +1 -3
- package/types/gen/file-service/file-service.msw.api.gen.d.ts +1 -3
- package/types/gen/file-service/file-service.zod.gen.d.ts +0 -18
- package/types/gen/trigger-service/trigger-service.zod.gen.d.ts +0 -9
- package/src/defaults/index.ts +0 -2
- package/src/gen/_docs/.nojekyll +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.createSourceBodyNameRegExp.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.createSourceResponseNameRegExp.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.deleteSourceResponseNameRegExp.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.listSourcesResponseItemsItemNameRegExp.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.locateSourceResponseSourceNameRegExp.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.updateSource2BodyNameRegExp.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.updateSource2ResponseNameRegExp.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.updateSourceBodyNameRegExp.html +0 -1
- package/src/gen/_docs/html/variables/sources_sources.zod.gen.updateSourceResponseNameRegExp.html +0 -1
- package/types/gen/_models/casesCaseCustom.d.ts +0 -12
- package/types/gen/_models/casesInputCaseCustom.d.ts +0 -12
- package/types/gen/_models/casesInputCreateCaseCustom.d.ts +0 -12
- package/types/gen/_models/protobufNullValue.d.ts +0 -18
package/src/gen/_models/index.ts
CHANGED
|
@@ -74,6 +74,9 @@ export * from './apiLDAPObjentry';
|
|
|
74
74
|
export * from './apiLDAPObjentryEntry';
|
|
75
75
|
export * from './apiLDAPObjentryObject';
|
|
76
76
|
export * from './apiLDAPResyncLDAPCatalogBody';
|
|
77
|
+
export * from './apiLDAProcess';
|
|
78
|
+
export * from './apiLDAProcessOptions';
|
|
79
|
+
export * from './apiLDAProcessResponse';
|
|
77
80
|
export * from './apiLDAPSearchRequest';
|
|
78
81
|
export * from './apiLDAPSearchRequestTLSConfig';
|
|
79
82
|
export * from './apiLDAPSearchResponse';
|
|
@@ -95,9 +98,6 @@ export * from './apiLDAPUpdateLDAPTemplateBodyTemplateCatalog';
|
|
|
95
98
|
export * from './apiLDAPUpdateLDAPTemplateBodyTemplateDevice';
|
|
96
99
|
export * from './apiLDAPUpdateLDAPTemplateBodyTemplateRole';
|
|
97
100
|
export * from './apiLDAPUpdateLDAPTemplateBodyTemplateUser';
|
|
98
|
-
export * from './apiLDAProcess';
|
|
99
|
-
export * from './apiLDAProcessOptions';
|
|
100
|
-
export * from './apiLDAProcessResponse';
|
|
101
101
|
export * from './apiLicenseUsageResponse';
|
|
102
102
|
export * from './apiLicenseUser';
|
|
103
103
|
export * from './apiLicenseUsersResponse';
|
|
@@ -165,17 +165,17 @@ export * from './apiUser';
|
|
|
165
165
|
export * from './apiUserAccessToken';
|
|
166
166
|
export * from './apiUserAccessTokenList';
|
|
167
167
|
export * from './apiUserId';
|
|
168
|
+
export * from './apiUserinfo';
|
|
168
169
|
export * from './apiUserPresence';
|
|
169
170
|
export * from './apiUserProfile';
|
|
170
171
|
export * from './apiUserSetting';
|
|
171
|
-
export * from './apiUserinfo';
|
|
172
172
|
export * from './apiUsersLogoutUserBody';
|
|
173
173
|
export * from './apiUsersUpdateUserBody';
|
|
174
174
|
export * from './apiUsersUpdateUserBodyUser';
|
|
175
175
|
export * from './apiUsersUpdateUserBodyUserProfile';
|
|
176
176
|
export * from './apiVerification';
|
|
177
|
-
export * from './articlesArticleVersionsListParams';
|
|
178
177
|
export * from './articlesArticlesAttachmentListParams';
|
|
178
|
+
export * from './articlesArticleVersionsListParams';
|
|
179
179
|
export * from './articlesCreateArticleParams';
|
|
180
180
|
export * from './articlesDeleteArticleParams';
|
|
181
181
|
export * from './articlesListArticles2Params';
|
|
@@ -235,9 +235,9 @@ export * from './createCloseReasonParams';
|
|
|
235
235
|
export * from './createLinkParams';
|
|
236
236
|
export * from './createPriorityParams';
|
|
237
237
|
export * from './createRelatedCaseParams';
|
|
238
|
+
export * from './createServiceParams';
|
|
238
239
|
export * from './createSLAConditionParams';
|
|
239
240
|
export * from './createSLAParams';
|
|
240
|
-
export * from './createServiceParams';
|
|
241
241
|
export * from './createSourceParams';
|
|
242
242
|
export * from './createStatusConditionParams';
|
|
243
243
|
export * from './createStatusParams';
|
|
@@ -296,11 +296,11 @@ export * from './dictionariesLocateData200';
|
|
|
296
296
|
export * from './dictionariesLocateDataParams';
|
|
297
297
|
export * from './dictionariesSearchDataParams';
|
|
298
298
|
export * from './dictionariesSearchTypeParams';
|
|
299
|
-
export * from './dictionariesUpdateData200';
|
|
300
|
-
export * from './dictionariesUpdateData2200';
|
|
301
299
|
export * from './dictionariesUpdateData2Body';
|
|
302
300
|
export * from './dictionariesUpdateData2Params';
|
|
303
301
|
export * from './dictionariesUpdateData2RecordBody';
|
|
302
|
+
export * from './dictionariesUpdateData200';
|
|
303
|
+
export * from './dictionariesUpdateData2200';
|
|
304
304
|
export * from './dictionariesUpdateDataBody';
|
|
305
305
|
export * from './dictionariesUpdateDataParams';
|
|
306
306
|
export * from './dictionariesUpdateTypeParams';
|
|
@@ -724,20 +724,20 @@ export * from './grpcGatewayRuntimeStreamError';
|
|
|
724
724
|
export * from './iMClientsListIMClientsParams';
|
|
725
725
|
export * from './importTemplateServiceSearchImportTemplateParams';
|
|
726
726
|
export * from './knowledgebaseSearchSpacesArticlesSearchParams';
|
|
727
|
+
export * from './labelsDeleteLabelsParams';
|
|
728
|
+
export * from './labelsGetLabelsParams';
|
|
729
|
+
export * from './labelsListLabelsParams';
|
|
730
|
+
export * from './labelsMergeLabelsParams';
|
|
731
|
+
export * from './labelsResetLabelsParams';
|
|
727
732
|
export * from './lDAPDeleteLDAPCatalogParams';
|
|
728
733
|
export * from './lDAPLDAPSearch2Params';
|
|
729
734
|
export * from './lDAPLDAPSearch4Params';
|
|
730
735
|
export * from './lDAPLocateLDAPCatalogParams';
|
|
731
|
-
export * from './lDAPLocateLDAPTemplateParams';
|
|
732
736
|
export * from './lDAPLocateLDAProcessParams';
|
|
737
|
+
export * from './lDAPLocateLDAPTemplateParams';
|
|
733
738
|
export * from './lDAPSearchLDAPCatalogParams';
|
|
734
|
-
export * from './lDAPSearchLDAPTemplateParams';
|
|
735
739
|
export * from './lDAPSearchLDAProcessParams';
|
|
736
|
-
export * from './
|
|
737
|
-
export * from './labelsGetLabelsParams';
|
|
738
|
-
export * from './labelsListLabelsParams';
|
|
739
|
-
export * from './labelsMergeLabelsParams';
|
|
740
|
-
export * from './labelsResetLabelsParams';
|
|
740
|
+
export * from './lDAPSearchLDAPTemplateParams';
|
|
741
741
|
export * from './linkCommunicationParams';
|
|
742
742
|
export * from './listCatalogsParams';
|
|
743
743
|
export * from './listCloseReasonGroupsParams';
|
|
@@ -748,9 +748,9 @@ export * from './listFilesParams';
|
|
|
748
748
|
export * from './listLinksParams';
|
|
749
749
|
export * from './listPrioritiesParams';
|
|
750
750
|
export * from './listRelatedCasesParams';
|
|
751
|
+
export * from './listServicesParams';
|
|
751
752
|
export * from './listSLAConditionsParams';
|
|
752
753
|
export * from './listSLAsParams';
|
|
753
|
-
export * from './listServicesParams';
|
|
754
754
|
export * from './listSourcesParams';
|
|
755
755
|
export * from './listSourcesTypeItem';
|
|
756
756
|
export * from './listStatusConditionsParams';
|
|
@@ -763,9 +763,9 @@ export * from './locateCommentParams';
|
|
|
763
763
|
export * from './locateLinkParams';
|
|
764
764
|
export * from './locatePriorityParams';
|
|
765
765
|
export * from './locateRelatedCaseParams';
|
|
766
|
+
export * from './locateServiceParams';
|
|
766
767
|
export * from './locateSLAConditionParams';
|
|
767
768
|
export * from './locateSLAParams';
|
|
768
|
-
export * from './locateServiceParams';
|
|
769
769
|
export * from './locateSourceParams';
|
|
770
770
|
export * from './locateStatusConditionParams';
|
|
771
771
|
export * from './locateStatusParams';
|
|
@@ -939,10 +939,10 @@ export * from './storageCreateCognitiveProfileRequestProperties';
|
|
|
939
939
|
export * from './storageCreateFilePolicyRequest';
|
|
940
940
|
export * from './storageCreateImportTemplateRequest';
|
|
941
941
|
export * from './storageCreateImportTemplateRequestParameters';
|
|
942
|
-
export * from './storageDeleteFileTranscriptRequest';
|
|
943
|
-
export * from './storageDeleteFileTranscriptResponse';
|
|
944
942
|
export * from './storageDeleteFilesRequest';
|
|
945
943
|
export * from './storageDeleteFilesResponse';
|
|
944
|
+
export * from './storageDeleteFileTranscriptRequest';
|
|
945
|
+
export * from './storageDeleteFileTranscriptResponse';
|
|
946
946
|
export * from './storageFile';
|
|
947
947
|
export * from './storageFilePolicy';
|
|
948
948
|
export * from './storageFilePolicyApplyRequest';
|
|
@@ -1054,12 +1054,12 @@ export * from './updateRelatedCaseBodyPrimaryCase';
|
|
|
1054
1054
|
export * from './updateRelatedCaseInputBody';
|
|
1055
1055
|
export * from './updateRelatedCaseInputBodyPrimaryCase';
|
|
1056
1056
|
export * from './updateRelatedCaseParams';
|
|
1057
|
+
export * from './updateService2Params';
|
|
1058
|
+
export * from './updateServiceParams';
|
|
1057
1059
|
export * from './updateSLA2Params';
|
|
1058
1060
|
export * from './updateSLACondition2Params';
|
|
1059
1061
|
export * from './updateSLAConditionParams';
|
|
1060
1062
|
export * from './updateSLAParams';
|
|
1061
|
-
export * from './updateService2Params';
|
|
1062
|
-
export * from './updateServiceParams';
|
|
1063
1063
|
export * from './updateSource2Params';
|
|
1064
1064
|
export * from './updateSourceParams';
|
|
1065
1065
|
export * from './updateStatus2Params';
|
|
@@ -1150,12 +1150,12 @@ export * from './webitelCasesInputCreateStatusCondition';
|
|
|
1150
1150
|
export * from './webitelCasesInputPriority';
|
|
1151
1151
|
export * from './webitelCasesInputPriorityBody';
|
|
1152
1152
|
export * from './webitelCasesInputRelatedCase';
|
|
1153
|
+
export * from './webitelCasesInputService';
|
|
1154
|
+
export * from './webitelCasesInputServiceBody';
|
|
1153
1155
|
export * from './webitelCasesInputSLA';
|
|
1154
1156
|
export * from './webitelCasesInputSLABody';
|
|
1155
1157
|
export * from './webitelCasesInputSLACondition';
|
|
1156
1158
|
export * from './webitelCasesInputSLAConditionBody';
|
|
1157
|
-
export * from './webitelCasesInputService';
|
|
1158
|
-
export * from './webitelCasesInputServiceBody';
|
|
1159
1159
|
export * from './webitelCasesInputSource';
|
|
1160
1160
|
export * from './webitelCasesInputSourceBody';
|
|
1161
1161
|
export * from './webitelCasesInputStatus';
|
|
@@ -1168,9 +1168,9 @@ export * from './webitelCasesLocateCatalogResponse';
|
|
|
1168
1168
|
export * from './webitelCasesLocateCloseReasonGroupResponse';
|
|
1169
1169
|
export * from './webitelCasesLocateCloseReasonResponse';
|
|
1170
1170
|
export * from './webitelCasesLocatePriorityResponse';
|
|
1171
|
+
export * from './webitelCasesLocateServiceResponse';
|
|
1171
1172
|
export * from './webitelCasesLocateSLAConditionResponse';
|
|
1172
1173
|
export * from './webitelCasesLocateSLAResponse';
|
|
1173
|
-
export * from './webitelCasesLocateServiceResponse';
|
|
1174
1174
|
export * from './webitelCasesLocateSourceResponse';
|
|
1175
1175
|
export * from './webitelCasesLocateStatusConditionResponse';
|
|
1176
1176
|
export * from './webitelCasesLocateStatusResponse';
|
|
@@ -1180,12 +1180,12 @@ export * from './webitelCasesRelatedCase';
|
|
|
1180
1180
|
export * from './webitelCasesRelatedCaseList';
|
|
1181
1181
|
export * from './webitelCasesRelatedCaseLookup';
|
|
1182
1182
|
export * from './webitelCasesRelationType';
|
|
1183
|
+
export * from './webitelCasesService';
|
|
1184
|
+
export * from './webitelCasesServiceList';
|
|
1183
1185
|
export * from './webitelCasesSLA';
|
|
1184
1186
|
export * from './webitelCasesSLACondition';
|
|
1185
1187
|
export * from './webitelCasesSLAConditionList';
|
|
1186
1188
|
export * from './webitelCasesSLAList';
|
|
1187
|
-
export * from './webitelCasesService';
|
|
1188
|
-
export * from './webitelCasesServiceList';
|
|
1189
1189
|
export * from './webitelCasesSource';
|
|
1190
1190
|
export * from './webitelCasesSourceList';
|
|
1191
1191
|
export * from './webitelCasesSourceType';
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { WfmLookupEntity } from './wfmLookupEntity';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { WfmLookupEntity } from './wfmLookupEntity';
|
|
8
9
|
import type { WfmPauseTemplateCause } from './wfmPauseTemplateCause';
|
|
9
10
|
|
|
10
11
|
export type PauseTemplateServiceUpdatePauseTemplateBodyItem = {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { EngineLookup } from './engineLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { EngineLookup } from './engineLookup';
|
|
8
9
|
import type { StorageCreateImportTemplateRequestParameters } from './storageCreateImportTemplateRequestParameters';
|
|
9
10
|
import type { StorageImportSourceType } from './storageImportSourceType';
|
|
10
11
|
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import type { EngineLookup } from './engineLookup';
|
|
2
|
-
import type { StorageThumbnail } from './storageThumbnail';
|
|
3
1
|
/**
|
|
4
2
|
* Generated by orval v7.10.0 🍺
|
|
5
3
|
* Do not edit manually.
|
|
6
4
|
* Webitel API
|
|
7
5
|
* OpenAPI spec version: 24.04.0
|
|
8
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { EngineLookup } from './engineLookup';
|
|
9
|
+
import type { StorageThumbnail } from './storageThumbnail';
|
|
9
10
|
import type { StorageUploadFileChannel } from './storageUploadFileChannel';
|
|
10
11
|
|
|
11
12
|
export interface StorageFile {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { EngineLookup } from './engineLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { EngineLookup } from './engineLookup';
|
|
8
9
|
import type { StorageUploadFileChannel } from './storageUploadFileChannel';
|
|
9
10
|
|
|
10
11
|
export interface StorageFilePolicy {
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import type { EngineLookup } from './engineLookup';
|
|
2
|
-
import type { StorageImportSourceType } from './storageImportSourceType';
|
|
3
1
|
/**
|
|
4
2
|
* Generated by orval v7.10.0 🍺
|
|
5
3
|
* Do not edit manually.
|
|
6
4
|
* Webitel API
|
|
7
5
|
* OpenAPI spec version: 24.04.0
|
|
8
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { EngineLookup } from './engineLookup';
|
|
9
|
+
import type { StorageImportSourceType } from './storageImportSourceType';
|
|
9
10
|
import type { StorageImportTemplateParameters } from './storageImportTemplateParameters';
|
|
10
11
|
|
|
11
12
|
export interface StorageImportTemplate {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { StorageThumbnail } from './storageThumbnail';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { StorageThumbnail } from './storageThumbnail';
|
|
8
9
|
import type { StorageUploadStatusCode } from './storageUploadStatusCode';
|
|
9
10
|
|
|
10
11
|
export interface StorageSafeUploadFileResponseMetadata {
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import type { StorageProviderType } from './storageProviderType';
|
|
2
|
-
import type { StorageServiceType } from './storageServiceType';
|
|
3
1
|
/**
|
|
4
2
|
* Generated by orval v7.10.0 🍺
|
|
5
3
|
* Do not edit manually.
|
|
6
4
|
* Webitel API
|
|
7
5
|
* OpenAPI spec version: 24.04.0
|
|
8
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { StorageProviderType } from './storageProviderType';
|
|
9
|
+
import type { StorageServiceType } from './storageServiceType';
|
|
9
10
|
import type { StorageUpdateCognitiveProfileRequestProperties } from './storageUpdateCognitiveProfileRequestProperties';
|
|
10
11
|
|
|
11
12
|
export interface StorageUpdateCognitiveProfileRequest {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { EngineLookup } from './engineLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { EngineLookup } from './engineLookup';
|
|
8
9
|
import type { StorageUpdateImportTemplateRequestParameters } from './storageUpdateImportTemplateRequestParameters';
|
|
9
10
|
|
|
10
11
|
/**
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { StorageThumbnail } from './storageThumbnail';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { StorageThumbnail } from './storageThumbnail';
|
|
8
9
|
import type { StorageUploadStatusCode } from './storageUploadStatusCode';
|
|
9
10
|
|
|
10
11
|
export interface StorageUploadFileResponse {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { StorageThumbnail } from './storageThumbnail';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { StorageThumbnail } from './storageThumbnail';
|
|
8
9
|
import type { StorageUploadStatusCode } from './storageUploadStatusCode';
|
|
9
10
|
|
|
10
11
|
export interface StorageUploadFileUrlResponse {
|
|
@@ -14,4 +14,12 @@ export type UpdateCase2Params = {
|
|
|
14
14
|
* List of fields to include in the response.
|
|
15
15
|
*/
|
|
16
16
|
fields?: string[];
|
|
17
|
+
/**
|
|
18
|
+
* Indicates whether to disable the trigger after the application execution.
|
|
19
|
+
Default is false (trigger **will** be executed).
|
|
20
|
+
Set to true to explicitly prevent the trigger from running (e.g., when called from another trigger or internal flow).
|
|
21
|
+
|
|
22
|
+
[WTEL-7055]
|
|
23
|
+
*/
|
|
24
|
+
disableTrigger?: boolean;
|
|
17
25
|
};
|
|
@@ -14,4 +14,12 @@ export type UpdateCaseParams = {
|
|
|
14
14
|
* List of fields to include in the response.
|
|
15
15
|
*/
|
|
16
16
|
fields?: string[];
|
|
17
|
+
/**
|
|
18
|
+
* Indicates whether to disable the trigger after the application execution.
|
|
19
|
+
Default is false (trigger **will** be executed).
|
|
20
|
+
Set to true to explicitly prevent the trigger from running (e.g., when called from another trigger or internal flow).
|
|
21
|
+
|
|
22
|
+
[WTEL-7055]
|
|
23
|
+
*/
|
|
24
|
+
disableTrigger?: boolean;
|
|
17
25
|
};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralLookup } from './generalLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralLookup } from './generalLookup';
|
|
8
9
|
import type { UpdateRelatedCase2BodyPrimaryCase } from './updateRelatedCase2BodyPrimaryCase';
|
|
9
10
|
import type { WebitelCasesRelationType } from './webitelCasesRelationType';
|
|
10
11
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralLookup } from './generalLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralLookup } from './generalLookup';
|
|
8
9
|
import type { UpdateRelatedCaseBodyPrimaryCase } from './updateRelatedCaseBodyPrimaryCase';
|
|
9
10
|
import type { WebitelCasesRelationType } from './webitelCasesRelationType';
|
|
10
11
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralLookup } from './generalLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralLookup } from './generalLookup';
|
|
8
9
|
import type { UpdateRelatedCaseInputBodyPrimaryCase } from './updateRelatedCaseInputBodyPrimaryCase';
|
|
9
10
|
import type { WebitelCasesRelationType } from './webitelCasesRelationType';
|
|
10
11
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { ApiLicenseUser } from './apiLicenseUser';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { ApiLicenseUser } from './apiLicenseUser';
|
|
8
9
|
import type { ApiObjectId } from './apiObjectId';
|
|
9
10
|
import type { ApiPermission } from './apiPermission';
|
|
10
11
|
import type { ApiUserId } from './apiUserId';
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { ApiLicenseUser } from './apiLicenseUser';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { ApiLicenseUser } from './apiLicenseUser';
|
|
8
9
|
import type { ApiObjectId } from './apiObjectId';
|
|
9
10
|
import type { ApiPermission } from './apiPermission';
|
|
10
11
|
import type { ApiUserId } from './apiUserId';
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { ApiLicenseUser } from './apiLicenseUser';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { ApiLicenseUser } from './apiLicenseUser';
|
|
8
9
|
import type { ApiObjectId } from './apiObjectId';
|
|
9
10
|
import type { ApiPermission } from './apiPermission';
|
|
10
11
|
import type { ApiUserId } from './apiUserId';
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralLookup } from './generalLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralLookup } from './generalLookup';
|
|
8
9
|
import type { WebitelCasesCallFile } from './webitelCasesCallFile';
|
|
9
10
|
import type { WebitelCasesTranscriptLookup } from './webitelCasesTranscriptLookup';
|
|
10
11
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
8
9
|
import type { GeneralLookup } from './generalLookup';
|
|
9
10
|
import type { WebitelCasesCaseCommentList } from './webitelCasesCaseCommentList';
|
|
10
11
|
import type { WebitelCasesCaseCustom } from './webitelCasesCaseCustom';
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
8
9
|
import type { GeneralLookup } from './generalLookup';
|
|
9
10
|
|
|
10
11
|
export interface WebitelCasesChatEvent {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralLookup } from './generalLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralLookup } from './generalLookup';
|
|
8
9
|
import type { WebitelCasesAttachment } from './webitelCasesAttachment';
|
|
9
10
|
|
|
10
11
|
export interface WebitelCasesEmailEvent {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
8
9
|
import type { GeneralLookup } from './generalLookup';
|
|
9
10
|
|
|
10
11
|
export interface WebitelCasesInputCreateService {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
8
9
|
import type { GeneralLookup } from './generalLookup';
|
|
9
10
|
|
|
10
11
|
export interface WebitelCasesInputService {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { GeneralExtendedLookup } from './generalExtendedLookup';
|
|
8
9
|
import type { GeneralLookup } from './generalLookup';
|
|
9
10
|
|
|
10
11
|
export interface WebitelCasesService {
|
|
@@ -12,27 +12,26 @@ import type { WebitelCasesSourceType } from './webitelCasesSourceType';
|
|
|
12
12
|
*/
|
|
13
13
|
export interface WebitelCasesSource {
|
|
14
14
|
/** Unix timestamp representing when the source was created. */
|
|
15
|
-
|
|
15
|
+
createdAt: string;
|
|
16
16
|
/** Reference to the user who originally created this source. */
|
|
17
|
-
|
|
17
|
+
createdBy: GeneralLookup;
|
|
18
18
|
/**
|
|
19
19
|
* An optional longer explanation of the source's purpose.
|
|
20
20
|
* @maxLength 500
|
|
21
21
|
*/
|
|
22
22
|
description?: string;
|
|
23
23
|
/** Unique identifier for the source, generated automatically. */
|
|
24
|
-
|
|
24
|
+
id: string;
|
|
25
25
|
/**
|
|
26
26
|
* A unique, descriptive name for the source.
|
|
27
27
|
* @minLength 3
|
|
28
28
|
* @maxLength 100
|
|
29
|
-
* @pattern ^[a-zA-Z0-9_\-\s]+$
|
|
30
29
|
*/
|
|
31
30
|
name: string;
|
|
32
31
|
/** The type of data source represented by this entry. */
|
|
33
32
|
type: WebitelCasesSourceType;
|
|
34
33
|
/** Unix timestamp representing the most recent update. */
|
|
35
|
-
|
|
34
|
+
updatedAt: string;
|
|
36
35
|
/** Reference to the user who most recently modified this source. */
|
|
37
|
-
|
|
36
|
+
updatedBy: GeneralLookup;
|
|
38
37
|
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { WebitelChatMessage } from './webitelChatMessage';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { WebitelChatMessage } from './webitelChatMessage';
|
|
8
9
|
import type { WebitelChatPeer } from './webitelChatPeer';
|
|
9
10
|
|
|
10
11
|
export interface WebitelChatAgentChat {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { WebitelChatBroadcastMessageRequestVariables } from './webitelChatBroadcastMessageRequestVariables';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { WebitelChatBroadcastMessageRequestVariables } from './webitelChatBroadcastMessageRequestVariables';
|
|
8
9
|
import type { WebitelChatInputMessage } from './webitelChatInputMessage';
|
|
9
10
|
import type { WebitelChatInputPeer } from './webitelChatInputPeer';
|
|
10
11
|
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import type { WebitelChatChatMessageContext } from './webitelChatChatMessageContext';
|
|
2
|
-
import type { WebitelChatChatPeer } from './webitelChatChatPeer';
|
|
3
1
|
/**
|
|
4
2
|
* Generated by orval v7.10.0 🍺
|
|
5
3
|
* Do not edit manually.
|
|
6
4
|
* Webitel API
|
|
7
5
|
* OpenAPI spec version: 24.04.0
|
|
8
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { WebitelChatChatMessageContext } from './webitelChatChatMessageContext';
|
|
9
|
+
import type { WebitelChatChatPeer } from './webitelChatChatPeer';
|
|
9
10
|
import type { WebitelChatContactChat } from './webitelChatContactChat';
|
|
10
11
|
import type { WebitelChatMessageFile } from './webitelChatMessageFile';
|
|
11
12
|
import type { WebitelChatMessagePostback } from './webitelChatMessagePostback';
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { WebitelChatChatPeer } from './webitelChatChatPeer';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { WebitelChatChatPeer } from './webitelChatChatPeer';
|
|
8
9
|
import type { WebitelChatContactChatContext } from './webitelChatContactChatContext';
|
|
9
10
|
import type { WebitelChatContactChatInvite } from './webitelChatContactChatInvite';
|
|
10
11
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import type { WebitelChatChat } from './webitelChatChat';
|
|
2
1
|
/**
|
|
3
2
|
* Generated by orval v7.10.0 🍺
|
|
4
3
|
* Do not edit manually.
|
|
5
4
|
* Webitel API
|
|
6
5
|
* OpenAPI spec version: 24.04.0
|
|
7
6
|
*/
|
|
7
|
+
|
|
8
|
+
import type { WebitelChatChat } from './webitelChatChat';
|
|
8
9
|
import type { WebitelChatDialogContext } from './webitelChatDialogContext';
|
|
9
10
|
import type { WebitelChatMessage } from './webitelChatMessage';
|
|
10
11
|
import type { WebitelChatPeer } from './webitelChatPeer';
|