@webitel/ui-sdk 25.4.86 → 25.5.1
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/CHANGELOG.md +149 -0
- package/dist/img/sprite/index.js +4 -1
- package/dist/img/sprite/portal.svg +3 -0
- package/dist/types/api/clients/caseSources/caseSources.d.ts +24 -0
- package/dist/types/components/on-demand/wt-type-extension-value-input/wt-type-extension-value-input.vue.d.ts +0 -3
- package/dist/types/components/wt-avatar/wt-avatar.vue.d.ts +2 -2
- package/dist/types/components/wt-button-select/wt-button-select.vue.d.ts +2 -2
- package/dist/types/components/wt-confirm-dialog/wt-confirm-dialog.vue.d.ts +2 -2
- package/dist/types/components/wt-context-menu/wt-context-menu.vue.d.ts +2 -2
- package/dist/types/components/wt-datepicker/wt-datepicker.vue.d.ts +2 -2
- package/dist/types/components/wt-empty/wt-empty.vue.d.ts +2 -2
- package/dist/types/components/wt-player/wt-player.vue.d.ts +1 -1
- package/dist/types/components/wt-popover/wt-popover.vue.d.ts +56 -0
- package/dist/types/components/wt-select/wt-select-v2.vue.d.ts +20 -0
- package/dist/types/components/wt-select/wt-select.vue.d.ts +3 -1
- package/dist/types/components/wt-slider/wt-slider.vue.d.ts +1 -1
- package/dist/types/components/wt-status-select/wt-status-select.vue.d.ts +1 -1
- package/dist/types/components/wt-tags-input/wt-tags-input.vue.d.ts +1 -1
- package/dist/types/components/wt-textarea/wt-textarea.vue.d.ts +34 -0
- package/dist/types/components/wt-timepicker/wt-timepicker.vue.d.ts +1 -1
- package/dist/types/components/wt-tree-table-row/wt-tree-table-row.vue.d.ts +7 -7
- package/dist/types/enums/ButtonColor/ButtonColor.d.ts +10 -0
- package/dist/types/enums/WebitelApplications/AdminSections.d.ts +1 -0
- package/dist/types/enums/WtObject/WtObject.d.ts +1 -0
- package/dist/types/enums/index.d.ts +2 -1
- package/dist/types/install.d.ts +1 -0
- package/dist/types/modules/Userinfo/v2/enums/GlobalActions/GlobalActions.d.ts +12 -9
- package/dist/types/modules/Userinfo/v2/stores/userinfoStore.d.ts +4 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +26208 -17053
- package/dist/ui-sdk.umd.cjs +1631 -19
- package/package.json +12 -5
- package/src/api/axios/generateInstance.js +2 -1
- package/src/api/clients/caseSources/{caseSources.js → caseSources.ts} +23 -27
- package/src/api/clients/contactGroups/contactGroups.js +5 -5
- package/src/api/clients/index.js +30 -30
- package/src/api/defaults/getDefaultInstance/getDefaultInstance.js +4 -0
- package/src/api/transformers/addQueryParamsToUrl/addQueryParamsToUrl.transformer.js +19 -0
- package/src/api/transformers/index.js +2 -0
- package/src/assets/icons/sprite/index.js +4 -1
- package/src/assets/icons/sprite/portal.svg +3 -0
- package/src/components/index.js +3 -0
- package/src/components/on-demand/wt-type-extension-value-input/wt-type-extension-value-input.vue +2 -7
- package/src/components/wt-action-bar/WtActionBarActionsOrder.js +1 -1
- package/src/components/wt-popover/wt-popover.vue +45 -0
- package/src/components/wt-select/wt-select-v2.vue +278 -0
- package/src/components/wt-select/wt-select.vue +10 -5
- package/src/components/wt-textarea/wt-textarea.vue +18 -1
- package/src/components/wt-tree-table-row/wt-tree-table-row.vue +0 -7
- package/src/css/main.scss +1 -0
- package/src/css/tailwind.css +1 -0
- package/src/enums/ButtonColor/ButtonColor.js +9 -0
- package/src/enums/ButtonColor/ButtonColor.ts +11 -0
- package/src/enums/ChatGatewayProvider/ChatGatewayProvider.enum.js +1 -0
- package/src/enums/WebitelApplications/AdminSections.ts +1 -0
- package/src/enums/WtObject/WtObject.ts +1 -0
- package/src/enums/index.js +2 -0
- package/src/enums/index.ts +2 -0
- package/src/install.ts +3 -0
- package/src/locale/en/en.js +2 -0
- package/src/locale/ru/ru.js +2 -0
- package/src/locale/ua/ua.js +3 -1
- package/src/modules/Userinfo/classes/ApplicationsAccess.js +4 -0
- package/src/modules/Userinfo/v2/enums/GlobalActions/GlobalActions.ts +12 -9
- package/src/modules/Userinfo/v2/mappings/mappings.ts +1 -0
- package/src/modules/Userinfo/v2/stores/accessStore.ts +6 -0
- package/src/modules/Userinfo/v2/stores/userinfoStore.ts +2 -0
- package/src/modules/Userinfo/v2/types/UserAccess.d.ts +2 -0
- package/src/plugins/primevue/primevue.plugin.js +34 -0
- package/src/plugins/primevue/theme/components/autocomplete/autocomplete.js +35 -0
- package/src/plugins/primevue/theme/components/button/button.js +175 -0
- package/src/plugins/primevue/theme/components/components.js +13 -0
- package/src/plugins/primevue/theme/components/popover/popover.js +11 -0
- package/src/plugins/primevue/theme/components/tooltip/tooltip.js +9 -0
- package/src/plugins/primevue/theme/extend/extend.js +7 -0
- package/src/plugins/primevue/theme/extend/spacings/spacings.js +15 -0
- package/src/plugins/primevue/theme/semantic/color-scheme/color-schema.js +16 -0
- package/src/plugins/primevue/theme/semantic/color-scheme/dark-color.js +198 -0
- package/src/plugins/primevue/theme/semantic/color-scheme/light-color.js +198 -0
- package/src/plugins/primevue/theme/semantic/color-scheme/palette.js +516 -0
- package/src/plugins/primevue/theme/semantic/semantic.js +7 -0
- package/src/plugins/primevue/theme/webitel-theme.js +16 -0
- package/dist/types/api/orval/_zod/agent-pause-cause-service/agent-pause-cause-service.d.ts +0 -529
- package/dist/types/api/orval/_zod/agent-service/agent-service.d.ts +0 -2955
- package/dist/types/api/orval/_zod/agent-skill-service/agent-skill-service.d.ts +0 -966
- package/dist/types/api/orval/_zod/agent-team-service/agent-team-service.d.ts +0 -596
- package/dist/types/api/orval/_zod/audit-form-service/audit-form-service.d.ts +0 -2555
- package/dist/types/api/orval/_zod/bucket-service/bucket-service.d.ts +0 -133
- package/dist/types/api/orval/_zod/calendar-service/calendar-service.d.ts +0 -1328
- package/dist/types/api/orval/_zod/call-service/call-service.d.ts +0 -4554
- package/dist/types/api/orval/_zod/communication-type-service/communication-type-service.d.ts +0 -272
- package/dist/types/api/orval/_zod/email-profile-service/email-profile-service.d.ts +0 -1369
- package/dist/types/api/orval/_zod/list-service/list-service.d.ts +0 -563
- package/dist/types/api/orval/_zod/member-service/member-service.d.ts +0 -5471
- package/dist/types/api/orval/_zod/outbound-resource-group-service/outbound-resource-group-service.d.ts +0 -966
- package/dist/types/api/orval/_zod/outbound-resource-service/outbound-resource-service.d.ts +0 -1294
- package/dist/types/api/orval/_zod/preset-query-service/preset-query-service.d.ts +0 -239
- package/dist/types/api/orval/_zod/queue-bucket-service/queue-bucket-service.d.ts +0 -364
- package/dist/types/api/orval/_zod/queue-hook-service/queue-hook-service.d.ts +0 -349
- package/dist/types/api/orval/_zod/queue-resources-service/queue-resources-service.d.ts +0 -325
- package/dist/types/api/orval/_zod/queue-service/queue-service.d.ts +0 -3225
- package/dist/types/api/orval/_zod/queue-skill-service/queue-skill-service.d.ts +0 -548
- package/dist/types/api/orval/_zod/quick-replies-service/quick-replies-service.d.ts +0 -923
- package/dist/types/api/orval/_zod/region-service/region-service.d.ts +0 -311
- package/dist/types/api/orval/_zod/routing-chat-plan-service/routing-chat-plan-service.d.ts +0 -340
- package/dist/types/api/orval/_zod/routing-outbound-call-service/routing-outbound-call-service.d.ts +0 -654
- package/dist/types/api/orval/_zod/routing-schema-service/routing-schema-service.d.ts +0 -742
- package/dist/types/api/orval/_zod/routing-variable-service/routing-variable-service.d.ts +0 -147
- package/dist/types/api/orval/_zod/schema-variables-service/schema-variables-service.d.ts +0 -170
- package/dist/types/api/orval/_zod/schema-version-service/schema-version-service.d.ts +0 -83
- package/dist/types/api/orval/_zod/skill-service/skill-service.d.ts +0 -938
- package/dist/types/api/orval/_zod/system-setting-service/system-setting-service.d.ts +0 -162
- package/dist/types/api/orval/_zod/team-hook-service/team-hook-service.d.ts +0 -358
- package/dist/types/api/orval/_zod/team-trigger-service/team-trigger-service.d.ts +0 -427
- package/dist/types/api/orval/_zod/trigger-service/trigger-service.d.ts +0 -865
- package/dist/types/api/orval/_zod/user-helper-service/user-helper-service.d.ts +0 -169
- package/dist/types/api/orval/_zod/web-hook-service/web-hook-service.d.ts +0 -708
- package/dist/types/api/orval/agent-pause-cause-service/agent-pause-cause-service.d.ts +0 -16
- package/dist/types/api/orval/agent-service/agent-service.d.ts +0 -44
- package/dist/types/api/orval/agent-skill-service/agent-skill-service.d.ts +0 -24
- package/dist/types/api/orval/agent-team-service/agent-team-service.d.ts +0 -14
- package/dist/types/api/orval/audit-form-service/audit-form-service.d.ts +0 -26
- package/dist/types/api/orval/bucket-service/bucket-service.d.ts +0 -14
- package/dist/types/api/orval/calendar-service/calendar-service.d.ts +0 -16
- package/dist/types/api/orval/call-service/call-service.d.ts +0 -42
- package/dist/types/api/orval/communication-type-service/communication-type-service.d.ts +0 -16
- package/dist/types/api/orval/email-profile-service/email-profile-service.d.ts +0 -22
- package/dist/types/api/orval/list-service/list-service.d.ts +0 -24
- package/dist/types/api/orval/member-service/member-service.d.ts +0 -44
- package/dist/types/api/orval/outbound-resource-group-service/outbound-resource-group-service.d.ts +0 -24
- package/dist/types/api/orval/outbound-resource-service/outbound-resource-service.d.ts +0 -30
- package/dist/types/api/orval/preset-query-service/preset-query-service.d.ts +0 -16
- package/dist/types/api/orval/queue-bucket-service/queue-bucket-service.d.ts +0 -16
- package/dist/types/api/orval/queue-hook-service/queue-hook-service.d.ts +0 -16
- package/dist/types/api/orval/queue-resources-service/queue-resources-service.d.ts +0 -14
- package/dist/types/api/orval/queue-service/queue-service.d.ts +0 -20
- package/dist/types/api/orval/queue-skill-service/queue-skill-service.d.ts +0 -16
- package/dist/types/api/orval/quick-replies-service/quick-replies-service.d.ts +0 -16
- package/dist/types/api/orval/region-service/region-service.d.ts +0 -16
- package/dist/types/api/orval/routing-chat-plan-service/routing-chat-plan-service.d.ts +0 -16
- package/dist/types/api/orval/routing-outbound-call-service/routing-outbound-call-service.d.ts +0 -18
- package/dist/types/api/orval/routing-schema-service/routing-schema-service.d.ts +0 -18
- package/dist/types/api/orval/routing-variable-service/routing-variable-service.d.ts +0 -14
- package/dist/types/api/orval/schema-variables-service/schema-variables-service.d.ts +0 -16
- package/dist/types/api/orval/schema-version-service/schema-version-service.d.ts +0 -6
- package/dist/types/api/orval/skill-service/skill-service.d.ts +0 -22
- package/dist/types/api/orval/system-setting-service/system-setting-service.d.ts +0 -18
- package/dist/types/api/orval/team-hook-service/team-hook-service.d.ts +0 -16
- package/dist/types/api/orval/team-trigger-service/team-trigger-service.d.ts +0 -20
- package/dist/types/api/orval/trigger-service/trigger-service.d.ts +0 -20
- package/dist/types/api/orval/user-helper-service/user-helper-service.d.ts +0 -8
- package/dist/types/api/orval/web-hook-service/web-hook-service.d.ts +0 -16
- package/dist/types/api/orval/webitelAPI.schemas.d.ts +0 -3921
- package/src/api/orval/_docs-html/.nojekyll +0 -1
- package/src/api/orval/_docs-html/functions/agent-pause-cause-service_agent-pause-cause-service.getAgentPauseCauseService.html +0 -165
- package/src/api/orval/_docs-html/functions/agent-service_agent-service.getAgentService.html +0 -543
- package/src/api/orval/_docs-html/functions/agent-skill-service_agent-skill-service.getAgentSkillService.html +0 -307
- package/src/api/orval/_docs-html/functions/agent-team-service_agent-team-service.getAgentTeamService.html +0 -143
- package/src/api/orval/_docs-html/functions/audit-form-service_audit-form-service.getAuditFormService.html +0 -293
- package/src/api/orval/_docs-html/functions/bucket-service_bucket-service.getBucketService.html +0 -143
- package/src/api/orval/_docs-html/functions/calendar-service_calendar-service.getCalendarService.html +0 -167
- package/src/api/orval/_docs-html/functions/call-service_call-service.getCallService.html +0 -523
- package/src/api/orval/_docs-html/functions/communication-type-service_communication-type-service.getCommunicationTypeService.html +0 -171
- package/src/api/orval/_docs-html/functions/email-profile-service_email-profile-service.getEmailProfileService.html +0 -235
- package/src/api/orval/_docs-html/functions/list-service_list-service.getListService.html +0 -295
- package/src/api/orval/_docs-html/functions/member-service_member-service.getMemberService.html +0 -583
- package/src/api/orval/_docs-html/functions/outbound-resource-group-service_outbound-resource-group-service.getOutboundResourceGroupService.html +0 -295
- package/src/api/orval/_docs-html/functions/outbound-resource-service_outbound-resource-service.getOutboundResourceService.html +0 -379
- package/src/api/orval/_docs-html/functions/preset-query-service_preset-query-service.getPresetQueryService.html +0 -165
- package/src/api/orval/_docs-html/functions/queue-bucket-service_queue-bucket-service.getQueueBucketService.html +0 -187
- package/src/api/orval/_docs-html/functions/queue-hook-service_queue-hook-service.getQueueHookService.html +0 -189
- package/src/api/orval/_docs-html/functions/queue-resources-service_queue-resources-service.getQueueResourcesService.html +0 -163
- package/src/api/orval/_docs-html/functions/queue-service_queue-service.getQueueService.html +0 -219
- package/src/api/orval/_docs-html/functions/queue-skill-service_queue-skill-service.getQueueSkillService.html +0 -189
- package/src/api/orval/_docs-html/functions/quick-replies-service_quick-replies-service.getQuickRepliesService.html +0 -165
- package/src/api/orval/_docs-html/functions/region-service_region-service.getRegionService.html +0 -165
- package/src/api/orval/_docs-html/functions/routing-chat-plan-service_routing-chat-plan-service.getRoutingChatPlanService.html +0 -165
- package/src/api/orval/_docs-html/functions/routing-outbound-call-service_routing-outbound-call-service.getRoutingOutboundCallService.html +0 -203
- package/src/api/orval/_docs-html/functions/routing-schema-service_routing-schema-service.getRoutingSchemaService.html +0 -195
- package/src/api/orval/_docs-html/functions/routing-variable-service_routing-variable-service.getRoutingVariableService.html +0 -143
- package/src/api/orval/_docs-html/functions/schema-variables-service_schema-variables-service.getSchemaVariablesService.html +0 -165
- package/src/api/orval/_docs-html/functions/schema-version-service_schema-version-service.getSchemaVersionService.html +0 -41
- package/src/api/orval/_docs-html/functions/skill-service_skill-service.getSkillService.html +0 -255
- package/src/api/orval/_docs-html/functions/system-setting-service_system-setting-service.getSystemSettingService.html +0 -189
- package/src/api/orval/_docs-html/functions/team-hook-service_team-hook-service.getTeamHookService.html +0 -189
- package/src/api/orval/_docs-html/functions/team-trigger-service_team-trigger-service.getTeamTriggerService.html +0 -241
- package/src/api/orval/_docs-html/functions/trigger-service_trigger-service.getTriggerService.html +0 -219
- package/src/api/orval/_docs-html/functions/user-helper-service_user-helper-service.getUserHelperService.html +0 -61
- package/src/api/orval/_docs-html/functions/web-hook-service_web-hook-service.getWebHookService.html +0 -163
- package/src/api/orval/_docs-html/hierarchy.html +0 -7
- package/src/api/orval/_docs-html/index.html +0 -78
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.AgentInQueueAgentsInQueue.html +0 -48
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.AgentInQueueStatisticsAgentInQueueStatisticsItem.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.AggregateRequestGroup.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.CreateCallRequestCallSettings.html +0 -79
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.DefaultDeviceConfigResponseSipDeviceConfig.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.DefaultDeviceConfigResponseWebRTCDeviceConfig.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EmailProfileParamsOAuth2.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAcceptOfDay.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineActiveCall.html +0 -223
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineActivityWorkspaceWidgetResponse.html +0 -163
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgent.html +0 -137
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentCallStatistics.html +0 -103
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentCallStatisticsList.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentChannel.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentInQueue.html +0 -67
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentInQueueStatistics.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentInQueueStatisticsList.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentInTeam.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentPauseCause.html +0 -73
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentSetStateRequest.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentSetStateResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentSkill.html +0 -67
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentSkillItem.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentState.html +0 -61
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentStatsStatistic.html +0 -157
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentStatusRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentStatusStatisticItem.html +0 -121
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentTeam.html +0 -91
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentTodayStatisticsResponse.html +0 -163
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAgentUser.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAggregateHistoryCallRequest.html +0 -211
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAggregateRequest.html +0 -61
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAggregateResult.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineApiError.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAttempt.html +0 -151
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAttemptCallbackRequest.html +0 -73
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAttemptHistory.html +0 -145
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAttemptRenewalResultRequest.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAttemptRenewalResultResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAttemptResultRequest.html +0 -97
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAttemptResultResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAuditForm.html +0 -73
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAuditRate.html +0 -91
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineAvailableSystemSetting.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineBlindTransferCallRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineBlindTransferCallResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineBucket.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCalendar.html +0 -91
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCallAnnotation.html +0 -61
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCallFile.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCallHold.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineChatPlan.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCommunicationType.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCommunicationTypeRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineConfirmPushResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAgentPauseCauseRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAgentRequest.html +0 -85
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAgentSkillBulkItem.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAgentSkillRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAgentSkillsRequest.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAgentSkillsResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAgentTeamRequest.html +0 -79
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAttemptRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAttemptResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAuditFormRateRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateAuditFormRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateBucketRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateCalendarRequest.html +0 -61
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateCallAnnotationRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateCallRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateCallRequestEndpointRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateCallResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateChatPlanRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateEmailProfileRequest.html +0 -97
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateListCommunicationRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateListRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateMemberBulkItem.html +0 -67
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateMemberBulkRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateMemberRequest.html +0 -79
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateOutboundResourceDisplayBulkRequest.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateOutboundResourceDisplayRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateOutboundResourceGroupRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateOutboundResourceInGroupRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateOutboundResourceRequest.html +0 -91
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreatePresetQueryRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateQuestionAnswerRequest.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateQueueBucketRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateQueueHookRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateQueueRequest.html +0 -163
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateQueueResourceGroupRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateQueueSkillRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateQuickReplyRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateRegionRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateRoutingOutboundCallRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateRoutingSchemaRequest.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateRoutingVariableRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateSchemaVariableRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateSkillAgentRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateSkillAgentResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateSkillRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateSystemSettingRequest.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateTeamHookRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateTeamTriggerRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateTriggerJobRequest.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateTriggerRequest.html +0 -73
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineCreateWebHookRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineDefaultDeviceConfigResponse.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineDeleteAllMembersRequest.html +0 -109
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineDeleteMembersRequest.html +0 -115
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineDeleteSkillAgentRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineDeleteSkillAgentResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineDtmfCallRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineDtmfCallResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineEavesdropCallRequest.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineEavesdropCallRequestEndpointRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineEmailProfile.html +0 -151
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineEmailProfileParams.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineEmptyResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineEndpoint.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineExceptDate.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineFilterBetween.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineForAgentPauseCause.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineForAgentPauseCauseList.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineHangupCallRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineHangupCallResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineHistoryCall.html +0 -427
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineHistoryFileJob.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineHoldCallResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineList.html +0 -61
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAgent.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAgentInQueue.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAgentInTeam.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAgentPauseCause.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAgentSkill.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAgentStateHistory.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAgentStatsStatistic.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAgentTeam.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAgentUser.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAggregate.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAttempt.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAuditForm.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAuditRate.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListAvailableSystemSetting.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListBucket.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListCalendar.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListCall.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListChatPlan.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListCommunication.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListCommunicationType.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListEmailProfile.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListHistoryAttempt.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListHistoryCall.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListMember.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListMemberAttempt.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListOfList.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListOfListCommunication.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListOutboundResource.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListOutboundResourceDisplay.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListOutboundResourceGroup.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListOutboundResourceInGroup.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListPresetQuery.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListQueue.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListQueueBucket.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListQueueHook.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListQueueResourceGroup.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListQueueSkill.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListQuickReplies.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListRegion.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListReportGeneral.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListResourceDisplay.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListRoutingOutboundCall.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListRoutingSchema.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListRoutingSchemaTags.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListRoutingVariable.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListSchemaVariable.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListSkill.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListSkillAgent.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListSystemSetting.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListTags.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListTeamHook.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListTeamTrigger.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListTimezoneResponse.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListTrigger.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListTriggerJob.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListUserStatus.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineListWebHook.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineLoginEmailProfileResponse.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineLogoutEmailProfileResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineLookup.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineMemberAttempt.html +0 -121
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineMemberBulkResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineMemberCommunication.html +0 -85
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineMemberCommunicationCreateRequest.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineMemberInQueue.html +0 -109
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineMovePositionRoutingOutboundCallRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineMovePositionRoutingOutboundCallResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineOutboundResource.html +0 -145
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineOutboundResourceGroup.html +0 -73
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineOutboundResourceInGroup.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineOutboundResourceParameters.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineOutboundResourceTimeRange.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineOutboundResourceViewGroup.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchAgentPauseCauseRequest.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchAgentRequest.html +0 -85
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchAgentSkillRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchAgentSkillsRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchAuditFormRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchChatPlanRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchCommunicationTypeRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchEmailProfileRequest.html +0 -97
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchHistoryCallRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchMemberOneRequest.html +0 -97
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchMemberRequest.html +0 -103
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchOutboundResourceRequest.html +0 -103
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchPresetQueryRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchQueueBucketRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchQueueHookRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchQueueRequest.html +0 -175
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchQueueSkillRequest.html +0 -61
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchQuickReplyRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchRegionRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchRoutingOutboundCallRequest.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchRoutingSchemaRequest.html +0 -73
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchSchemaVariableRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchSkillAgentRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchSkillAgentResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchSystemSettingRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchTeamHookRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchTeamTriggerRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchTriggerRequest.html +0 -85
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePatchWebHookRequest.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EnginePresetQuery.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQuestion.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQuestionAnswer.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQueue.html +0 -211
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQueueBucket.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQueueHook.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQueueReportGeneral.html +0 -115
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQueueReportGeneralAgentStatus.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQueueResourceGroup.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQueueSkill.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineQuickReply.html +0 -67
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineRedialCallRequest.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineRegion.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineResetActiveAttemptsRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineResetActiveAttemptsResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineResetMembersRequest.html +0 -67
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineResetMembersResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineResourceDisplay.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineRoutingOutboundCall.html +0 -73
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineRoutingOutboundCallCompact.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineRoutingSchema.html +0 -85
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineRoutingSchemaTag.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineRoutingVariable.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineRunTeamTriggerRequest.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineRunTeamTriggerResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSchemaTag.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSchemaVariable.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSchemaVersion.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSearchHistoryCallRequest.html +0 -289
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSearchSchemaVersionResponse.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSendPushResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSetVariablesCallRequest.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSetVariablesCallResponse.html +0 -11
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSkill.html +0 -67
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSkillAgentItem.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineSystemSetting.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineTag.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineTaskProcessing.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineTeamHook.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineTeamTrigger.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineTestEmailProfileResponse.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineTimezone.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineTranscriptLookup.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineTrigger.html +0 -79
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineTriggerJob.html +0 -61
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateAgentPauseCauseRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateAgentRequest.html +0 -91
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateAgentSkillRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateAgentTeamRequest.html +0 -85
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateAuditFormRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateAuditRateRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateBucketRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateCalendarRequest.html +0 -67
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateCallAnnotationRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateChatPlanRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateCommunicationTypeRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateEmailProfileRequest.html +0 -103
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateListCommunicationRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateListRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateMemberRequest.html +0 -91
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateOutboundResourceDisplayRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateOutboundResourceGroupRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateOutboundResourceInGroupRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateOutboundResourceRequest.html +0 -97
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdatePresetQueryRequest.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateQuestionAnswerRequest.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateQueueBucketRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateQueueHookRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateQueueRequest.html +0 -169
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateQueueResourceGroupRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateQueueSkillRequest.html +0 -55
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateQuickReplyRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateRegionRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateRoutingOutboundCallRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateRoutingSchemaRequest.html +0 -67
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateRoutingVariableRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateSchemaVariableRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateSkillRequest.html +0 -31
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateSystemSettingRequest.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateTeamHookRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateTeamTriggerRequest.html +0 -43
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateTriggerRequest.html +0 -79
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUpdateWebHookRequest.html +0 -49
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUserCallRequest.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineUserStatus.html +0 -37
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.EngineWebHook.html +0 -79
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.HistoryCallBlindTransfer.html +0 -25
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.ListSkillAgentListSkillAgg.html +0 -13
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.QuestionOption.html +0 -19
- package/src/api/orval/_docs-html/interfaces/webitelAPI.schemas.UserStatusUserPresence.html +0 -13
- package/src/api/orval/_docs-html/modules/agent-pause-cause-service_agent-pause-cause-service.html +0 -20
- package/src/api/orval/_docs-html/modules/agent-service_agent-service.html +0 -34
- package/src/api/orval/_docs-html/modules/agent-skill-service_agent-skill-service.html +0 -24
- package/src/api/orval/_docs-html/modules/agent-team-service_agent-team-service.html +0 -19
- package/src/api/orval/_docs-html/modules/audit-form-service_audit-form-service.html +0 -25
- package/src/api/orval/_docs-html/modules/bucket-service_bucket-service.html +0 -19
- package/src/api/orval/_docs-html/modules/calendar-service_calendar-service.html +0 -20
- package/src/api/orval/_docs-html/modules/call-service_call-service.html +0 -33
- package/src/api/orval/_docs-html/modules/communication-type-service_communication-type-service.html +0 -20
- package/src/api/orval/_docs-html/modules/email-profile-service_email-profile-service.html +0 -23
- package/src/api/orval/_docs-html/modules/list-service_list-service.html +0 -24
- package/src/api/orval/_docs-html/modules/member-service_member-service.html +0 -34
- package/src/api/orval/_docs-html/modules/outbound-resource-group-service_outbound-resource-group-service.html +0 -24
- package/src/api/orval/_docs-html/modules/outbound-resource-service_outbound-resource-service.html +0 -27
- package/src/api/orval/_docs-html/modules/preset-query-service_preset-query-service.html +0 -20
- package/src/api/orval/_docs-html/modules/queue-bucket-service_queue-bucket-service.html +0 -20
- package/src/api/orval/_docs-html/modules/queue-hook-service_queue-hook-service.html +0 -20
- package/src/api/orval/_docs-html/modules/queue-resources-service_queue-resources-service.html +0 -19
- package/src/api/orval/_docs-html/modules/queue-service_queue-service.html +0 -22
- package/src/api/orval/_docs-html/modules/queue-skill-service_queue-skill-service.html +0 -20
- package/src/api/orval/_docs-html/modules/quick-replies-service_quick-replies-service.html +0 -20
- package/src/api/orval/_docs-html/modules/region-service_region-service.html +0 -20
- package/src/api/orval/_docs-html/modules/routing-chat-plan-service_routing-chat-plan-service.html +0 -20
- package/src/api/orval/_docs-html/modules/routing-outbound-call-service_routing-outbound-call-service.html +0 -21
- package/src/api/orval/_docs-html/modules/routing-schema-service_routing-schema-service.html +0 -21
- package/src/api/orval/_docs-html/modules/routing-variable-service_routing-variable-service.html +0 -19
- package/src/api/orval/_docs-html/modules/schema-variables-service_schema-variables-service.html +0 -20
- package/src/api/orval/_docs-html/modules/schema-version-service_schema-version-service.html +0 -15
- package/src/api/orval/_docs-html/modules/skill-service_skill-service.html +0 -23
- package/src/api/orval/_docs-html/modules/system-setting-service_system-setting-service.html +0 -21
- package/src/api/orval/_docs-html/modules/team-hook-service_team-hook-service.html +0 -20
- package/src/api/orval/_docs-html/modules/team-trigger-service_team-trigger-service.html +0 -22
- package/src/api/orval/_docs-html/modules/trigger-service_trigger-service.html +0 -22
- package/src/api/orval/_docs-html/modules/user-helper-service_user-helper-service.html +0 -16
- package/src/api/orval/_docs-html/modules/web-hook-service_web-hook-service.html +0 -20
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-1.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-10.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-11.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-12.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-13.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-14.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-15.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-16.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-17.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-18.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-19.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-2.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-20.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-21.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-22.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-23.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-24.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-25.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-26.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-27.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-28.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-29.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-3.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-30.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-31.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-32.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-33.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-34.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-4.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-5.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-6.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-7.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-8.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas-9.html +0 -3091
- package/src/api/orval/_docs-html/modules/webitelAPI.schemas.html +0 -549
- package/src/api/orval/_docs-html/types/agent-pause-cause-service_agent-pause-cause-service.CreateAgentPauseCauseResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-pause-cause-service_agent-pause-cause-service.DeleteAgentPauseCauseResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-pause-cause-service_agent-pause-cause-service.PatchAgentPauseCauseResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-pause-cause-service_agent-pause-cause-service.ReadAgentPauseCauseResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-pause-cause-service_agent-pause-cause-service.SearchAgentPauseCauseResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-pause-cause-service_agent-pause-cause-service.UpdateAgentPauseCauseResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.AgentSetStateResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.AgentStateHistoryResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.AgentTodayStatisticsResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.CreateAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.DeleteAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.PatchAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.ReadAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchAgentCallStatisticsResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchAgentInQueueResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchAgentInQueueStatisticsResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchAgentInTeamResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchAgentStateHistoryResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchAgentStatusStatisticItemResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchAgentStatusStatisticResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchLookupUsersAgentNotExistsResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchPauseCauseForAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.SearchUserStatusResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.UpdateAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-service_agent-service.UpdateAgentStatusResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.CreateAgentSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.CreateAgentSkillsResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.DeleteAgentSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.DeleteAgentSkillsResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.PatchAgentSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.PatchAgentSkillsResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.ReadAgentSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.SearchAgentSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.SearchLookupAgentNotExistsSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-skill-service_agent-skill-service.UpdateAgentSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-team-service_agent-team-service.CreateAgentTeamResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-team-service_agent-team-service.DeleteAgentTeamResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-team-service_agent-team-service.ReadAgentTeamResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-team-service_agent-team-service.SearchAgentTeamResult.html +0 -9
- package/src/api/orval/_docs-html/types/agent-team-service_agent-team-service.UpdateAgentTeamResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.CreateAuditFormRateResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.CreateAuditFormResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.DeleteAuditFormResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.DeleteAuditRateResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.PatchAuditFormResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.ReadAuditFormResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.ReadAuditRateResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.SearchAuditFormResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.SearchAuditRateResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.UpdateAuditFormResult.html +0 -9
- package/src/api/orval/_docs-html/types/audit-form-service_audit-form-service.UpdateAuditRateResult.html +0 -9
- package/src/api/orval/_docs-html/types/bucket-service_bucket-service.CreateBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/bucket-service_bucket-service.DeleteBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/bucket-service_bucket-service.ReadBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/bucket-service_bucket-service.SearchBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/bucket-service_bucket-service.UpdateBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/calendar-service_calendar-service.CreateCalendarResult.html +0 -9
- package/src/api/orval/_docs-html/types/calendar-service_calendar-service.DeleteCalendarResult.html +0 -9
- package/src/api/orval/_docs-html/types/calendar-service_calendar-service.ReadCalendarResult.html +0 -9
- package/src/api/orval/_docs-html/types/calendar-service_calendar-service.SearchCalendarResult.html +0 -9
- package/src/api/orval/_docs-html/types/calendar-service_calendar-service.SearchTimezonesResult.html +0 -9
- package/src/api/orval/_docs-html/types/calendar-service_calendar-service.UpdateCalendarResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.AggregateHistoryCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.BlindTransferCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.ConfirmPushResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.CreateCallAnnotationResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.CreateCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.DeleteCallAnnotationResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.DtmfCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.EavesdropCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.HangupCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.HoldCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.PatchHistoryCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.ReadCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.RedialCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.SearchActiveCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.SearchHistoryCallPostResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.SearchHistoryCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.SetVariablesCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.UnHoldCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/call-service_call-service.UpdateCallAnnotationResult.html +0 -9
- package/src/api/orval/_docs-html/types/communication-type-service_communication-type-service.CreateCommunicationTypeResult.html +0 -9
- package/src/api/orval/_docs-html/types/communication-type-service_communication-type-service.DeleteCommunicationTypeResult.html +0 -9
- package/src/api/orval/_docs-html/types/communication-type-service_communication-type-service.PatchCommunicationTypeResult.html +0 -9
- package/src/api/orval/_docs-html/types/communication-type-service_communication-type-service.ReadCommunicationTypeResult.html +0 -9
- package/src/api/orval/_docs-html/types/communication-type-service_communication-type-service.SearchCommunicationTypeResult.html +0 -9
- package/src/api/orval/_docs-html/types/communication-type-service_communication-type-service.UpdateCommunicationTypeResult.html +0 -9
- package/src/api/orval/_docs-html/types/email-profile-service_email-profile-service.CreateEmailProfileResult.html +0 -9
- package/src/api/orval/_docs-html/types/email-profile-service_email-profile-service.DeleteEmailProfileResult.html +0 -9
- package/src/api/orval/_docs-html/types/email-profile-service_email-profile-service.LoginEmailProfileResult.html +0 -9
- package/src/api/orval/_docs-html/types/email-profile-service_email-profile-service.LogoutEmailProfileResult.html +0 -9
- package/src/api/orval/_docs-html/types/email-profile-service_email-profile-service.PatchEmailProfileResult.html +0 -9
- package/src/api/orval/_docs-html/types/email-profile-service_email-profile-service.ReadEmailProfileResult.html +0 -9
- package/src/api/orval/_docs-html/types/email-profile-service_email-profile-service.SearchEmailProfileResult.html +0 -9
- package/src/api/orval/_docs-html/types/email-profile-service_email-profile-service.TestEmailProfileResult.html +0 -9
- package/src/api/orval/_docs-html/types/email-profile-service_email-profile-service.UpdateEmailProfileResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.CreateListCommunicationResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.CreateListResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.DeleteListCommunicationResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.DeleteListResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.ReadListCommunicationResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.ReadListResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.SearchListCommunicationResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.SearchListResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.UpdateListCommunicationResult.html +0 -9
- package/src/api/orval/_docs-html/types/list-service_list-service.UpdateListResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.AttemptCallbackResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.AttemptResultResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.AttemptsRenewalResultResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.CreateAttemptResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.CreateMemberBulkResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.CreateMemberResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.DeleteAllMembersResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.DeleteMemberResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.DeleteMembersResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.PatchMemberOneResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.PatchMemberResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.ReadMemberResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.ResetActiveAttemptsResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.ResetMembersResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.SearchAttemptsHistoryResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.SearchAttemptsResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.SearchMemberAttemptsResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.SearchMemberInQueueResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.SearchMembersResult.html +0 -9
- package/src/api/orval/_docs-html/types/member-service_member-service.UpdateMemberResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.CreateOutboundResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.CreateOutboundResourceInGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.DeleteOutboundResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.DeleteOutboundResourceInGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.ReadOutboundResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.ReadOutboundResourceInGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.SearchOutboundResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.SearchOutboundResourceInGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.UpdateOutboundResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-group-service_outbound-resource-group-service.UpdateOutboundResourceInGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.CreateOutboundResourceDisplayBulkResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.CreateOutboundResourceDisplayResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.CreateOutboundResourceResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.DeleteOutboundResourceDisplayResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.DeleteOutboundResourceDisplaysResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.DeleteOutboundResourceResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.PatchOutboundResourceResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.ReadOutboundResourceDisplayResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.ReadOutboundResourceResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.SearchOutboundResourceDisplayResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.SearchOutboundResourceResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.UpdateOutboundResourceDisplayResult.html +0 -9
- package/src/api/orval/_docs-html/types/outbound-resource-service_outbound-resource-service.UpdateOutboundResourceResult.html +0 -9
- package/src/api/orval/_docs-html/types/preset-query-service_preset-query-service.CreatePresetQueryResult.html +0 -9
- package/src/api/orval/_docs-html/types/preset-query-service_preset-query-service.DeletePresetQueryResult.html +0 -9
- package/src/api/orval/_docs-html/types/preset-query-service_preset-query-service.PatchPresetQueryResult.html +0 -9
- package/src/api/orval/_docs-html/types/preset-query-service_preset-query-service.ReadPresetQueryResult.html +0 -9
- package/src/api/orval/_docs-html/types/preset-query-service_preset-query-service.SearchPresetQueryResult.html +0 -9
- package/src/api/orval/_docs-html/types/preset-query-service_preset-query-service.UpdatePresetQueryResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-bucket-service_queue-bucket-service.CreateQueueBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-bucket-service_queue-bucket-service.DeleteQueueBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-bucket-service_queue-bucket-service.PatchQueueBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-bucket-service_queue-bucket-service.ReadQueueBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-bucket-service_queue-bucket-service.SearchQueueBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-bucket-service_queue-bucket-service.UpdateQueueBucketResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-hook-service_queue-hook-service.CreateQueueHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-hook-service_queue-hook-service.DeleteQueueHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-hook-service_queue-hook-service.PatchQueueHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-hook-service_queue-hook-service.ReadQueueHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-hook-service_queue-hook-service.SearchQueueHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-hook-service_queue-hook-service.UpdateQueueHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-resources-service_queue-resources-service.CreateQueueResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-resources-service_queue-resources-service.DeleteQueueResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-resources-service_queue-resources-service.ReadQueueResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-resources-service_queue-resources-service.SearchQueueResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-resources-service_queue-resources-service.UpdateQueueResourceGroupResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-service_queue-service.CreateQueueResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-service_queue-service.DeleteQueueResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-service_queue-service.PatchQueueResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-service_queue-service.ReadQueueResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-service_queue-service.SearchQueueReportGeneralResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-service_queue-service.SearchQueueResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-service_queue-service.SearchQueueTagsResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-service_queue-service.UpdateQueueResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-skill-service_queue-skill-service.CreateQueueSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-skill-service_queue-skill-service.DeleteQueueSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-skill-service_queue-skill-service.PatchQueueSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-skill-service_queue-skill-service.ReadQueueSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-skill-service_queue-skill-service.SearchQueueSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/queue-skill-service_queue-skill-service.UpdateQueueSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/quick-replies-service_quick-replies-service.CreateQuickReplyResult.html +0 -9
- package/src/api/orval/_docs-html/types/quick-replies-service_quick-replies-service.DeleteQuickReplyResult.html +0 -9
- package/src/api/orval/_docs-html/types/quick-replies-service_quick-replies-service.PatchQuickReplyResult.html +0 -9
- package/src/api/orval/_docs-html/types/quick-replies-service_quick-replies-service.ReadQuickReplyResult.html +0 -9
- package/src/api/orval/_docs-html/types/quick-replies-service_quick-replies-service.SearchQuickRepliesResult.html +0 -9
- package/src/api/orval/_docs-html/types/quick-replies-service_quick-replies-service.UpdateQuickReplyResult.html +0 -9
- package/src/api/orval/_docs-html/types/region-service_region-service.CreateRegionResult.html +0 -9
- package/src/api/orval/_docs-html/types/region-service_region-service.DeleteRegionResult.html +0 -9
- package/src/api/orval/_docs-html/types/region-service_region-service.PatchRegionResult.html +0 -9
- package/src/api/orval/_docs-html/types/region-service_region-service.ReadRegionResult.html +0 -9
- package/src/api/orval/_docs-html/types/region-service_region-service.SearchRegionResult.html +0 -9
- package/src/api/orval/_docs-html/types/region-service_region-service.UpdateRegionResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-chat-plan-service_routing-chat-plan-service.CreateChatPlanResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-chat-plan-service_routing-chat-plan-service.DeleteChatPlanResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-chat-plan-service_routing-chat-plan-service.PatchChatPlanResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-chat-plan-service_routing-chat-plan-service.ReadChatPlanResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-chat-plan-service_routing-chat-plan-service.SearchChatPlanResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-chat-plan-service_routing-chat-plan-service.UpdateChatPlanResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-outbound-call-service_routing-outbound-call-service.CreateRoutingOutboundCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-outbound-call-service_routing-outbound-call-service.DeleteRoutingOutboundCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-outbound-call-service_routing-outbound-call-service.MovePositionRoutingOutboundCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-outbound-call-service_routing-outbound-call-service.PatchRoutingOutboundCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-outbound-call-service_routing-outbound-call-service.ReadRoutingOutboundCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-outbound-call-service_routing-outbound-call-service.SearchRoutingOutboundCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-outbound-call-service_routing-outbound-call-service.UpdateRoutingOutboundCallResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-schema-service_routing-schema-service.CreateRoutingSchemaResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-schema-service_routing-schema-service.DeleteRoutingSchemaResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-schema-service_routing-schema-service.PatchRoutingSchemaResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-schema-service_routing-schema-service.ReadRoutingSchemaResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-schema-service_routing-schema-service.SearchRoutingSchemaResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-schema-service_routing-schema-service.SearchRoutingSchemaTagsResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-schema-service_routing-schema-service.UpdateRoutingSchemaResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-variable-service_routing-variable-service.CreateRoutingVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-variable-service_routing-variable-service.DeleteRoutingVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-variable-service_routing-variable-service.ReadRoutingVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-variable-service_routing-variable-service.SearchRoutingVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/routing-variable-service_routing-variable-service.UpdateRoutingVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/schema-variables-service_schema-variables-service.CreateSchemaVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/schema-variables-service_schema-variables-service.DeleteSchemaVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/schema-variables-service_schema-variables-service.PatchSchemaVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/schema-variables-service_schema-variables-service.ReadSchemaVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/schema-variables-service_schema-variables-service.SearchSchemaVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/schema-variables-service_schema-variables-service.UpdateSchemaVariableResult.html +0 -9
- package/src/api/orval/_docs-html/types/schema-version-service_schema-version-service.SearchSchemaVersionResult.html +0 -9
- package/src/api/orval/_docs-html/types/skill-service_skill-service.CreateSkillAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/skill-service_skill-service.CreateSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/skill-service_skill-service.DeleteSkillAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/skill-service_skill-service.DeleteSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/skill-service_skill-service.PatchSkillAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/skill-service_skill-service.ReadSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/skill-service_skill-service.SearchSkillAgentResult.html +0 -9
- package/src/api/orval/_docs-html/types/skill-service_skill-service.SearchSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/skill-service_skill-service.UpdateSkillResult.html +0 -9
- package/src/api/orval/_docs-html/types/system-setting-service_system-setting-service.CreateSystemSettingResult.html +0 -9
- package/src/api/orval/_docs-html/types/system-setting-service_system-setting-service.DeleteSystemSettingResult.html +0 -9
- package/src/api/orval/_docs-html/types/system-setting-service_system-setting-service.PatchSystemSettingResult.html +0 -9
- package/src/api/orval/_docs-html/types/system-setting-service_system-setting-service.ReadSystemSettingResult.html +0 -9
- package/src/api/orval/_docs-html/types/system-setting-service_system-setting-service.SearchAvailableSystemSettingResult.html +0 -9
- package/src/api/orval/_docs-html/types/system-setting-service_system-setting-service.SearchSystemSettingResult.html +0 -9
- package/src/api/orval/_docs-html/types/system-setting-service_system-setting-service.UpdateSystemSettingResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-hook-service_team-hook-service.CreateTeamHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-hook-service_team-hook-service.DeleteTeamHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-hook-service_team-hook-service.PatchTeamHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-hook-service_team-hook-service.ReadTeamHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-hook-service_team-hook-service.SearchTeamHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-hook-service_team-hook-service.UpdateTeamHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-trigger-service_team-trigger-service.CreateTeamTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-trigger-service_team-trigger-service.DeleteTeamTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-trigger-service_team-trigger-service.PatchTeamTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-trigger-service_team-trigger-service.ReadTeamTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-trigger-service_team-trigger-service.RunTeamTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-trigger-service_team-trigger-service.SearchAgentTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-trigger-service_team-trigger-service.SearchTeamTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/team-trigger-service_team-trigger-service.UpdateTeamTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/trigger-service_trigger-service.CreateTriggerJobResult.html +0 -9
- package/src/api/orval/_docs-html/types/trigger-service_trigger-service.CreateTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/trigger-service_trigger-service.DeleteTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/trigger-service_trigger-service.PatchTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/trigger-service_trigger-service.ReadTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/trigger-service_trigger-service.SearchTriggerJobResult.html +0 -9
- package/src/api/orval/_docs-html/types/trigger-service_trigger-service.SearchTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/trigger-service_trigger-service.UpdateTriggerResult.html +0 -9
- package/src/api/orval/_docs-html/types/user-helper-service_user-helper-service.ActivityWorkspaceWidgetResult.html +0 -9
- package/src/api/orval/_docs-html/types/user-helper-service_user-helper-service.DefaultDeviceConfigResult.html +0 -9
- package/src/api/orval/_docs-html/types/web-hook-service_web-hook-service.CreateWebHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/web-hook-service_web-hook-service.DeleteWebHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/web-hook-service_web-hook-service.PatchWebHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/web-hook-service_web-hook-service.ReadWebHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/web-hook-service_web-hook-service.SearchWebHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/web-hook-service_web-hook-service.UpdateWebHookResult.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ActivityWorkspaceWidgetParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.AgentStateHistoryParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.AgentTodayStatisticsParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.CreateCallRequestCallSettingsVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteAgentParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteAgentSkillParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteAgentSkillsParams.html +0 -21
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteAgentTeamParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteBucketParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteCalendarParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteCommunicationTypeParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteListCommunicationParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteListParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteMemberParams.html +0 -21
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteOutboundResourceDisplayParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteOutboundResourceDisplaysParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteOutboundResourceGroupParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteOutboundResourceInGroupParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteOutboundResourceParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteQueueParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteQueueResourceGroupParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteRoutingOutboundCallParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteRoutingSchemaParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteRoutingVariableParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.DeleteSkillParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineActiveCallVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineAggregateHistoryCallRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineAggregateResultData.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineAttemptCallbackRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineAttemptHistoryVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineAttemptResultRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineAttemptVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineAuditQuestionType.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCommunicationChannels.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateMemberBulkItemVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateMemberRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateOutboundResourceRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreatePresetQueryRequestPreset.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateQueueRequestPayload.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateQueueRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateRoutingSchemaRequestPayload.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateRoutingSchemaRequestSchema.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateSchemaVariableRequestValue.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateSystemSettingRequestValue.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateTriggerJobRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineCreateTriggerRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineDeleteAllMembersRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineDeleteMembersRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineEmailAuthType.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineHistoryCallFormFields.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineHistoryCallVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineLoginEmailProfileResponseCookie.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineMemberAttemptLogs.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineMemberInQueueVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineOutboundResourceVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchHistoryCallRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchMemberOneRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchMemberRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchOutboundResourceRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchPresetQueryRequestPreset.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchQueueRequestPayload.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchQueueRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchRoutingSchemaRequestPayload.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchRoutingSchemaRequestSchema.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchSchemaVariableRequestValue.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchSystemSettingRequestValue.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePatchTriggerRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EnginePresetQueryPreset.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineQueuePayload.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineQueueVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineResetMembersRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineRoutingSchemaPayload.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineRoutingSchemaSchema.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineRoutingSchemaType.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineRunTeamTriggerRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineSchemaVariableValue.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineSchemaVersionPayload.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineSchemaVersionSchema.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineSearchHistoryCallRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineSetVariablesCallRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineSystemSettingName.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineSystemSettingValue.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineTeamHookEvent.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineTriggerEventType.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineTriggerJobParameters.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineTriggerJobResult.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineTriggerJobState.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineTriggerObjectType.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineTriggerType.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineTriggerVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdateMemberRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdateOutboundResourceRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdatePresetQueryRequestPreset.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdateQueueRequestPayload.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdateQueueRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdateRoutingSchemaRequestPayload.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdateRoutingSchemaRequestSchema.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdateSchemaVariableRequestValue.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdateSystemSettingRequestValue.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUpdateTriggerRequestVariables.html +0 -13
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.EngineUserCallRequestBody.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.HistoryFileJobHistoryFileJobAction.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.HistoryFileJobHistoryFileJobState.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ProtobufNullValue.html +0 -16
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadAgentParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadAgentSkillParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadAgentTeamParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadBucketParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadCalendarParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadCallParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadCommunicationTypeParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadListCommunicationParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadListParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadMemberParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadOutboundResourceDisplayParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadOutboundResourceGroupParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadOutboundResourceInGroupParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadOutboundResourceParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadQueueParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadQueueResourceGroupParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadRoutingOutboundCallParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadRoutingSchemaParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadRoutingVariableParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.ReadSkillParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchActiveCallParams.html +0 -183
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentCallStatisticsParams.html +0 -63
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentInQueueParams.html +0 -39
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentInQueueStatisticsParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentInTeamParams.html +0 -33
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentParams.html +0 -123
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentPauseCauseParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentSkillParams.html +0 -51
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentStateHistoryParams.html +0 -57
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentStatusStatisticItemParams.html +0 -21
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentStatusStatisticParams.html +0 -117
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentTeamParams.html +0 -57
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAgentTriggerParams.html +0 -63
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAttemptsHistoryParams.html +0 -129
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAttemptsParams.html +0 -129
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAuditFormParams.html +0 -71
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAuditRateParams.html +0 -69
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchAvailableSystemSettingParams.html +0 -39
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchBucketParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchCalendarParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchChatPlanParams.html +0 -57
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchCommunicationTypeChannelItem.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchCommunicationTypeParams.html +0 -57
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchEmailProfileParams.html +0 -39
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchHistoryCallParams.html +0 -327
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchListCommunicationParams.html +0 -57
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchListParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchLookupAgentNotExistsSkillParams.html +0 -33
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchLookupUsersAgentNotExistsParams.html +0 -33
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchMemberAttemptsParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchMemberInQueueParams.html +0 -123
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchMembersParams.html +0 -129
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchOutboundResourceDisplayParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchOutboundResourceGroupParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchOutboundResourceInGroupParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchOutboundResourceParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchPauseCauseForAgentParams.html +0 -15
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchPresetQueryParams.html +0 -51
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchQueueBucketParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchQueueHookParams.html +0 -57
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchQueueParams.html +0 -69
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchQueueReportGeneralParams.html +0 -75
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchQueueResourceGroupParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchQueueSkillParams.html +0 -81
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchQueueTagsParams.html +0 -39
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchQuickRepliesParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchRegionParams.html +0 -63
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchRoutingOutboundCallParams.html +0 -69
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchRoutingSchemaParams.html +0 -69
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchRoutingSchemaTagsParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchRoutingSchemaTagsTypeItem.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchRoutingSchemaTypeItem.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchRoutingVariableParams.html +0 -27
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchSchemaVariableParams.html +0 -39
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchSchemaVersionParams.html +0 -39
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchSkillAgentParams.html +0 -51
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchSkillParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchSystemSettingNameItem.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchSystemSettingParams.html +0 -47
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchTeamHookEventItem.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchTeamHookParams.html +0 -57
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchTeamTriggerParams.html +0 -57
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchTimezonesParams.html +0 -45
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchTriggerJobParams.html +0 -81
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchTriggerJobStateItem.html +0 -9
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchTriggerParams.html +0 -51
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchUserStatusParams.html +0 -39
- package/src/api/orval/_docs-html/types/webitelAPI.schemas.SearchWebHookParams.html +0 -45
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineAuditQuestionType.html +0 -27
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineCommunicationChannels.html +0 -27
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineEmailAuthType.html +0 -23
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineRoutingSchemaType.html +0 -31
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineSystemSettingName.html +0 -107
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineTeamHookEvent.html +0 -19
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineTriggerEventType.html +0 -31
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineTriggerJobState.html +0 -27
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineTriggerObjectType.html +0 -19
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.EngineTriggerType.html +0 -23
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.HistoryFileJobHistoryFileJobAction.html +0 -23
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.HistoryFileJobHistoryFileJobState.html +0 -27
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.ProtobufNullValue.html +0 -15
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.SearchCommunicationTypeChannelItem.html +0 -27
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.SearchRoutingSchemaTagsTypeItem.html +0 -31
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.SearchRoutingSchemaTypeItem.html +0 -31
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.SearchSystemSettingNameItem.html +0 -107
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.SearchTeamHookEventItem.html +0 -19
- package/src/api/orval/_docs-html/variables/webitelAPI.schemas.SearchTriggerJobStateItem.html +0 -27
- package/src/api/orval/_zod/agent-pause-cause-service/agent-pause-cause-service.ts +0 -164
- package/src/api/orval/_zod/agent-service/agent-service.ts +0 -752
- package/src/api/orval/_zod/agent-skill-service/agent-skill-service.ts +0 -277
- package/src/api/orval/_zod/agent-team-service/agent-team-service.ts +0 -187
- package/src/api/orval/_zod/audit-form-service/audit-form-service.ts +0 -593
- package/src/api/orval/_zod/bucket-service/bucket-service.ts +0 -72
- package/src/api/orval/_zod/calendar-service/calendar-service.ts +0 -328
- package/src/api/orval/_zod/call-service/call-service.ts +0 -1029
- package/src/api/orval/_zod/communication-type-service/communication-type-service.ts +0 -134
- package/src/api/orval/_zod/email-profile-service/email-profile-service.ts +0 -392
- package/src/api/orval/_zod/list-service/list-service.ts +0 -205
- package/src/api/orval/_zod/member-service/member-service.ts +0 -1178
- package/src/api/orval/_zod/outbound-resource-group-service/outbound-resource-group-service.ts +0 -290
- package/src/api/orval/_zod/outbound-resource-service/outbound-resource-service.ts +0 -411
- package/src/api/orval/_zod/preset-query-service/preset-query-service.ts +0 -116
- package/src/api/orval/_zod/queue-bucket-service/queue-bucket-service.ts +0 -131
- package/src/api/orval/_zod/queue-hook-service/queue-hook-service.ts +0 -116
- package/src/api/orval/_zod/queue-resources-service/queue-resources-service.ts +0 -108
- package/src/api/orval/_zod/queue-service/queue-service.ts +0 -784
- package/src/api/orval/_zod/queue-skill-service/queue-skill-service.ts +0 -161
- package/src/api/orval/_zod/quick-replies-service/quick-replies-service.ts +0 -236
- package/src/api/orval/_zod/region-service/region-service.ts +0 -104
- package/src/api/orval/_zod/routing-chat-plan-service/routing-chat-plan-service.ts +0 -113
- package/src/api/orval/_zod/routing-outbound-call-service/routing-outbound-call-service.ts +0 -213
- package/src/api/orval/_zod/routing-schema-service/routing-schema-service.ts +0 -285
- package/src/api/orval/_zod/routing-variable-service/routing-variable-service.ts +0 -76
- package/src/api/orval/_zod/schema-variables-service/schema-variables-service.ts +0 -95
- package/src/api/orval/_zod/schema-version-service/schema-version-service.ts +0 -32
- package/src/api/orval/_zod/skill-service/skill-service.ts +0 -254
- package/src/api/orval/_zod/system-setting-service/system-setting-service.ts +0 -105
- package/src/api/orval/_zod/team-hook-service/team-hook-service.ts +0 -134
- package/src/api/orval/_zod/team-trigger-service/team-trigger-service.ts +0 -139
- package/src/api/orval/_zod/trigger-service/trigger-service.ts +0 -286
- package/src/api/orval/_zod/user-helper-service/user-helper-service.ts +0 -59
- package/src/api/orval/_zod/web-hook-service/web-hook-service.ts +0 -215
- package/src/api/orval/agent-pause-cause-service/agent-pause-cause-service.ts +0 -101
- package/src/api/orval/agent-service/agent-service.ts +0 -313
- package/src/api/orval/agent-skill-service/agent-skill-service.ts +0 -181
- package/src/api/orval/agent-team-service/agent-team-service.ts +0 -113
- package/src/api/orval/audit-form-service/audit-form-service.ts +0 -152
- package/src/api/orval/bucket-service/bucket-service.ts +0 -113
- package/src/api/orval/calendar-service/calendar-service.ts +0 -128
- package/src/api/orval/call-service/call-service.ts +0 -267
- package/src/api/orval/communication-type-service/communication-type-service.ts +0 -124
- package/src/api/orval/email-profile-service/email-profile-service.ts +0 -146
- package/src/api/orval/list-service/list-service.ts +0 -191
- package/src/api/orval/member-service/member-service.ts +0 -326
- package/src/api/orval/outbound-resource-group-service/outbound-resource-group-service.ts +0 -191
- package/src/api/orval/outbound-resource-service/outbound-resource-service.ts +0 -236
- package/src/api/orval/preset-query-service/preset-query-service.ts +0 -101
- package/src/api/orval/queue-bucket-service/queue-bucket-service.ts +0 -122
- package/src/api/orval/queue-hook-service/queue-hook-service.ts +0 -107
- package/src/api/orval/queue-resources-service/queue-resources-service.ts +0 -118
- package/src/api/orval/queue-service/queue-service.ts +0 -154
- package/src/api/orval/queue-skill-service/queue-skill-service.ts +0 -107
- package/src/api/orval/quick-replies-service/quick-replies-service.ts +0 -101
- package/src/api/orval/region-service/region-service.ts +0 -101
- package/src/api/orval/routing-chat-plan-service/routing-chat-plan-service.ts +0 -101
- package/src/api/orval/routing-outbound-call-service/routing-outbound-call-service.ts +0 -143
- package/src/api/orval/routing-schema-service/routing-schema-service.ts +0 -142
- package/src/api/orval/routing-variable-service/routing-variable-service.ts +0 -113
- package/src/api/orval/schema-variables-service/schema-variables-service.ts +0 -101
- package/src/api/orval/schema-version-service/schema-version-service.ts +0 -53
- package/src/api/orval/skill-service/skill-service.ts +0 -166
- package/src/api/orval/system-setting-service/system-setting-service.ts +0 -113
- package/src/api/orval/team-hook-service/team-hook-service.ts +0 -107
- package/src/api/orval/team-trigger-service/team-trigger-service.ts +0 -130
- package/src/api/orval/trigger-service/trigger-service.ts +0 -141
- package/src/api/orval/user-helper-service/user-helper-service.ts +0 -61
- package/src/api/orval/web-hook-service/web-hook-service.ts +0 -119
- package/src/api/orval/webitelAPI.schemas.ts +0 -4340
|
@@ -1,3921 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated by orval v7.8.0 🍺
|
|
3
|
-
* Do not edit manually.
|
|
4
|
-
* Webitel API
|
|
5
|
-
* OpenAPI spec version: 24.04.0
|
|
6
|
-
*/
|
|
7
|
-
export interface AgentInQueueAgentsInQueue {
|
|
8
|
-
online?: number;
|
|
9
|
-
pause?: number;
|
|
10
|
-
offline?: number;
|
|
11
|
-
free?: number;
|
|
12
|
-
total?: number;
|
|
13
|
-
allow_pause?: number;
|
|
14
|
-
}
|
|
15
|
-
export interface AgentInQueueStatisticsAgentInQueueStatisticsItem {
|
|
16
|
-
bucket?: EngineLookup;
|
|
17
|
-
skill?: EngineLookup;
|
|
18
|
-
member_waiting?: number;
|
|
19
|
-
}
|
|
20
|
-
export interface AggregateRequestGroup {
|
|
21
|
-
id?: string;
|
|
22
|
-
interval?: string;
|
|
23
|
-
aggregate?: string;
|
|
24
|
-
field?: string;
|
|
25
|
-
top?: number;
|
|
26
|
-
desc?: boolean;
|
|
27
|
-
}
|
|
28
|
-
export type CreateCallRequestCallSettingsVariables = {
|
|
29
|
-
[key: string]: string;
|
|
30
|
-
};
|
|
31
|
-
export interface CreateCallRequestCallSettings {
|
|
32
|
-
timeout?: number;
|
|
33
|
-
audio?: boolean;
|
|
34
|
-
video?: boolean;
|
|
35
|
-
screen?: boolean;
|
|
36
|
-
record?: boolean;
|
|
37
|
-
variables?: CreateCallRequestCallSettingsVariables;
|
|
38
|
-
display?: string;
|
|
39
|
-
disable_stun?: boolean;
|
|
40
|
-
cancel_distribute?: boolean;
|
|
41
|
-
is_online?: boolean;
|
|
42
|
-
disable_auto_answer?: boolean;
|
|
43
|
-
hide_number?: boolean;
|
|
44
|
-
}
|
|
45
|
-
export interface DefaultDeviceConfigResponseSipDeviceConfig {
|
|
46
|
-
auth?: string;
|
|
47
|
-
domain?: string;
|
|
48
|
-
extension?: string;
|
|
49
|
-
password?: string;
|
|
50
|
-
proxy?: string;
|
|
51
|
-
}
|
|
52
|
-
export interface DefaultDeviceConfigResponseWebRTCDeviceConfig {
|
|
53
|
-
authorization_user?: string;
|
|
54
|
-
display_name?: string;
|
|
55
|
-
extension?: string;
|
|
56
|
-
ha1?: string;
|
|
57
|
-
realm?: string;
|
|
58
|
-
server?: string;
|
|
59
|
-
uri?: string;
|
|
60
|
-
}
|
|
61
|
-
export interface EmailProfileParamsOAuth2 {
|
|
62
|
-
client_id?: string;
|
|
63
|
-
client_secret?: string;
|
|
64
|
-
redirect_url?: string;
|
|
65
|
-
}
|
|
66
|
-
export interface HistoryCallBlindTransfer {
|
|
67
|
-
number?: string;
|
|
68
|
-
time?: string;
|
|
69
|
-
user?: EngineLookup;
|
|
70
|
-
}
|
|
71
|
-
export type HistoryFileJobHistoryFileJobAction = typeof HistoryFileJobHistoryFileJobAction[keyof typeof HistoryFileJobHistoryFileJobAction];
|
|
72
|
-
export declare const HistoryFileJobHistoryFileJobAction: {
|
|
73
|
-
readonly undefined: "undefined";
|
|
74
|
-
readonly STT: "STT";
|
|
75
|
-
readonly delete: "delete";
|
|
76
|
-
};
|
|
77
|
-
export type HistoryFileJobHistoryFileJobState = typeof HistoryFileJobHistoryFileJobState[keyof typeof HistoryFileJobHistoryFileJobState];
|
|
78
|
-
export declare const HistoryFileJobHistoryFileJobState: {
|
|
79
|
-
readonly idle: "idle";
|
|
80
|
-
readonly active: "active";
|
|
81
|
-
readonly finished: "finished";
|
|
82
|
-
readonly error: "error";
|
|
83
|
-
};
|
|
84
|
-
export interface ListSkillAgentListSkillAgg {
|
|
85
|
-
enabled?: boolean;
|
|
86
|
-
}
|
|
87
|
-
export interface QuestionOption {
|
|
88
|
-
name?: string;
|
|
89
|
-
score?: number;
|
|
90
|
-
}
|
|
91
|
-
export interface UserStatusUserPresence {
|
|
92
|
-
status?: string;
|
|
93
|
-
}
|
|
94
|
-
export interface EngineAcceptOfDay {
|
|
95
|
-
day?: number;
|
|
96
|
-
start_time_of_day?: number;
|
|
97
|
-
end_time_of_day?: number;
|
|
98
|
-
disabled?: boolean;
|
|
99
|
-
}
|
|
100
|
-
export type EngineActiveCallVariables = {
|
|
101
|
-
[key: string]: string;
|
|
102
|
-
};
|
|
103
|
-
export interface EngineActiveCall {
|
|
104
|
-
id?: string;
|
|
105
|
-
app_id?: string;
|
|
106
|
-
state?: string;
|
|
107
|
-
timestamp?: string;
|
|
108
|
-
type?: string;
|
|
109
|
-
parent_id?: string;
|
|
110
|
-
user?: EngineLookup;
|
|
111
|
-
extension?: string;
|
|
112
|
-
gateway?: EngineLookup;
|
|
113
|
-
direction?: string;
|
|
114
|
-
destination?: string;
|
|
115
|
-
from?: EngineEndpoint;
|
|
116
|
-
to?: EngineEndpoint;
|
|
117
|
-
variables?: EngineActiveCallVariables;
|
|
118
|
-
created_at?: string;
|
|
119
|
-
answered_at?: string;
|
|
120
|
-
bridged_at?: string;
|
|
121
|
-
duration?: number;
|
|
122
|
-
hold_sec?: number;
|
|
123
|
-
wait_sec?: number;
|
|
124
|
-
bill_sec?: number;
|
|
125
|
-
queue?: EngineLookup;
|
|
126
|
-
member?: EngineLookup;
|
|
127
|
-
team?: EngineLookup;
|
|
128
|
-
agent?: EngineLookup;
|
|
129
|
-
joined_at?: string;
|
|
130
|
-
leaving_at?: string;
|
|
131
|
-
reporting_at?: string;
|
|
132
|
-
queue_bridged_at?: string;
|
|
133
|
-
queue_wait_sec?: number;
|
|
134
|
-
queue_duration_sec?: number;
|
|
135
|
-
reporting_sec?: number;
|
|
136
|
-
display?: string;
|
|
137
|
-
supervisor?: EngineLookup[];
|
|
138
|
-
blind_transfer?: string;
|
|
139
|
-
bridged_id?: string;
|
|
140
|
-
}
|
|
141
|
-
export interface EngineActivityWorkspaceWidgetResponse {
|
|
142
|
-
utilization?: number;
|
|
143
|
-
occupancy?: number;
|
|
144
|
-
call_abandoned?: number;
|
|
145
|
-
call_handled?: number;
|
|
146
|
-
avg_talk_sec?: number;
|
|
147
|
-
avg_hold_sec?: number;
|
|
148
|
-
chat_accepts?: number;
|
|
149
|
-
chat_aht?: number;
|
|
150
|
-
call_missed?: number;
|
|
151
|
-
call_inbound?: number;
|
|
152
|
-
score_required_avg?: number;
|
|
153
|
-
score_optional_avg?: number;
|
|
154
|
-
score_count?: string;
|
|
155
|
-
score_required_sum?: number;
|
|
156
|
-
score_optional_sum?: number;
|
|
157
|
-
sum_talk_sec?: string;
|
|
158
|
-
voice_mail?: number;
|
|
159
|
-
available?: number;
|
|
160
|
-
online?: number;
|
|
161
|
-
processing?: number;
|
|
162
|
-
task_accepts?: number;
|
|
163
|
-
queue_talk_sec?: number;
|
|
164
|
-
call_queue_missed?: number;
|
|
165
|
-
call_inbound_queue?: number;
|
|
166
|
-
call_dialer_queue?: number;
|
|
167
|
-
call_manual?: number;
|
|
168
|
-
}
|
|
169
|
-
export interface EngineAgent {
|
|
170
|
-
id?: string;
|
|
171
|
-
user?: EngineLookup;
|
|
172
|
-
status?: string;
|
|
173
|
-
description?: string;
|
|
174
|
-
last_status_change?: string;
|
|
175
|
-
/**
|
|
176
|
-
* progressive_count desc
|
|
177
|
-
* @minimum 1
|
|
178
|
-
* @maximum 100
|
|
179
|
-
*/
|
|
180
|
-
progressive_count?: number;
|
|
181
|
-
name?: string;
|
|
182
|
-
channel?: EngineAgentChannel[];
|
|
183
|
-
status_duration?: string;
|
|
184
|
-
greeting_media?: EngineLookup;
|
|
185
|
-
allow_channels?: string[];
|
|
186
|
-
chat_count?: number;
|
|
187
|
-
supervisor?: EngineLookup[];
|
|
188
|
-
team?: EngineLookup;
|
|
189
|
-
region?: EngineLookup;
|
|
190
|
-
auditor?: EngineLookup[];
|
|
191
|
-
is_supervisor?: boolean;
|
|
192
|
-
skills?: EngineLookup[];
|
|
193
|
-
extension?: string;
|
|
194
|
-
task_count?: number;
|
|
195
|
-
}
|
|
196
|
-
export interface EngineAgentCallStatistics {
|
|
197
|
-
name?: string;
|
|
198
|
-
count?: number;
|
|
199
|
-
abandoned?: number;
|
|
200
|
-
handles?: number;
|
|
201
|
-
sum_talk_sec?: number;
|
|
202
|
-
avg_talk_sec?: number;
|
|
203
|
-
min_talk_sec?: number;
|
|
204
|
-
max_talk_sec?: number;
|
|
205
|
-
sum_hold_sec?: number;
|
|
206
|
-
avg_hold_sec?: number;
|
|
207
|
-
min_hold_sec?: number;
|
|
208
|
-
max_hold_sec?: number;
|
|
209
|
-
utilization?: number;
|
|
210
|
-
occupancy?: number;
|
|
211
|
-
chat_accepts?: number;
|
|
212
|
-
chat_aht?: number;
|
|
213
|
-
}
|
|
214
|
-
export interface EngineAgentCallStatisticsList {
|
|
215
|
-
next?: boolean;
|
|
216
|
-
items?: EngineAgentCallStatistics[];
|
|
217
|
-
}
|
|
218
|
-
export interface EngineAgentChannel {
|
|
219
|
-
channel?: string;
|
|
220
|
-
state?: string;
|
|
221
|
-
joined_at?: string;
|
|
222
|
-
timeout?: string;
|
|
223
|
-
}
|
|
224
|
-
export interface EngineAgentInQueue {
|
|
225
|
-
queue?: EngineLookup;
|
|
226
|
-
priority?: number;
|
|
227
|
-
type?: number;
|
|
228
|
-
strategy?: string;
|
|
229
|
-
enabled?: boolean;
|
|
230
|
-
count_members?: number;
|
|
231
|
-
waiting_members?: number;
|
|
232
|
-
active_members?: number;
|
|
233
|
-
agents?: AgentInQueueAgentsInQueue;
|
|
234
|
-
max_member_limit?: number;
|
|
235
|
-
}
|
|
236
|
-
export interface EngineAgentInQueueStatistics {
|
|
237
|
-
queue?: EngineLookup;
|
|
238
|
-
statistics?: AgentInQueueStatisticsAgentInQueueStatisticsItem[];
|
|
239
|
-
}
|
|
240
|
-
export interface EngineAgentInQueueStatisticsList {
|
|
241
|
-
items?: EngineAgentInQueueStatistics[];
|
|
242
|
-
}
|
|
243
|
-
export interface EngineAgentInTeam {
|
|
244
|
-
team?: EngineLookup;
|
|
245
|
-
strategy?: string;
|
|
246
|
-
}
|
|
247
|
-
export interface EngineAgentPauseCause {
|
|
248
|
-
id?: number;
|
|
249
|
-
created_at?: string;
|
|
250
|
-
created_by?: EngineLookup;
|
|
251
|
-
updated_at?: string;
|
|
252
|
-
updated_by?: EngineLookup;
|
|
253
|
-
name?: string;
|
|
254
|
-
limit_min?: number;
|
|
255
|
-
allow_supervisor?: boolean;
|
|
256
|
-
allow_agent?: boolean;
|
|
257
|
-
allow_admin?: boolean;
|
|
258
|
-
description?: string;
|
|
259
|
-
}
|
|
260
|
-
export interface EngineAgentSetStateRequest {
|
|
261
|
-
agent_id?: number;
|
|
262
|
-
}
|
|
263
|
-
export interface EngineAgentSetStateResponse {
|
|
264
|
-
[key: string]: unknown;
|
|
265
|
-
}
|
|
266
|
-
export interface EngineAgentSkill {
|
|
267
|
-
id?: string;
|
|
268
|
-
domain_id?: string;
|
|
269
|
-
created_at?: string;
|
|
270
|
-
created_by?: EngineLookup;
|
|
271
|
-
updated_at?: string;
|
|
272
|
-
updated_by?: EngineLookup;
|
|
273
|
-
agent?: EngineLookup;
|
|
274
|
-
skill?: EngineLookup;
|
|
275
|
-
capacity?: number;
|
|
276
|
-
enabled?: boolean;
|
|
277
|
-
}
|
|
278
|
-
export interface EngineAgentSkillItem {
|
|
279
|
-
id?: string;
|
|
280
|
-
skill?: EngineLookup;
|
|
281
|
-
capacity?: number;
|
|
282
|
-
enabled?: boolean;
|
|
283
|
-
}
|
|
284
|
-
export interface EngineAgentState {
|
|
285
|
-
id?: string;
|
|
286
|
-
channel?: string;
|
|
287
|
-
joined_at?: string;
|
|
288
|
-
state?: string;
|
|
289
|
-
payload?: string;
|
|
290
|
-
duration?: string;
|
|
291
|
-
queue?: EngineLookup;
|
|
292
|
-
agent?: EngineLookup;
|
|
293
|
-
pause_cause?: string;
|
|
294
|
-
}
|
|
295
|
-
export interface EngineAgentStatsStatistic {
|
|
296
|
-
agent_id?: number;
|
|
297
|
-
name?: string;
|
|
298
|
-
status?: string;
|
|
299
|
-
status_duration?: string;
|
|
300
|
-
user?: EngineLookup;
|
|
301
|
-
extension?: string;
|
|
302
|
-
team?: EngineLookup;
|
|
303
|
-
queues?: EngineLookup[];
|
|
304
|
-
online?: string;
|
|
305
|
-
offline?: string;
|
|
306
|
-
pause?: string;
|
|
307
|
-
utilization?: number;
|
|
308
|
-
call_time?: string;
|
|
309
|
-
handles?: number;
|
|
310
|
-
missed?: number;
|
|
311
|
-
chat_count?: number;
|
|
312
|
-
max_bridged_at?: string;
|
|
313
|
-
max_offering_at?: string;
|
|
314
|
-
active_call_id?: string;
|
|
315
|
-
transferred?: number;
|
|
316
|
-
skills?: EngineLookup[];
|
|
317
|
-
supervisor?: EngineLookup[];
|
|
318
|
-
auditor?: EngineLookup[];
|
|
319
|
-
pause_cause?: string;
|
|
320
|
-
occupancy?: number;
|
|
321
|
-
}
|
|
322
|
-
export interface EngineAgentStatusRequest {
|
|
323
|
-
id?: string;
|
|
324
|
-
status?: string;
|
|
325
|
-
on_demand?: boolean;
|
|
326
|
-
channels?: string[];
|
|
327
|
-
payload?: string;
|
|
328
|
-
domain_id?: string;
|
|
329
|
-
}
|
|
330
|
-
export interface EngineAgentStatusStatisticItem {
|
|
331
|
-
agent_id?: number;
|
|
332
|
-
name?: string;
|
|
333
|
-
status?: string;
|
|
334
|
-
status_duration?: string;
|
|
335
|
-
user?: EngineLookup;
|
|
336
|
-
extension?: string;
|
|
337
|
-
team?: EngineLookup;
|
|
338
|
-
supervisor?: EngineLookup[];
|
|
339
|
-
auditor?: EngineLookup[];
|
|
340
|
-
region?: EngineLookup;
|
|
341
|
-
progressive_count?: number;
|
|
342
|
-
chat_count?: number;
|
|
343
|
-
pause_cause?: string;
|
|
344
|
-
online?: string;
|
|
345
|
-
offline?: string;
|
|
346
|
-
pause?: string;
|
|
347
|
-
score_required_avg?: number;
|
|
348
|
-
score_optional_avg?: number;
|
|
349
|
-
score_count?: string;
|
|
350
|
-
}
|
|
351
|
-
export interface EngineAgentTeam {
|
|
352
|
-
id?: string;
|
|
353
|
-
domain_id?: string;
|
|
354
|
-
name?: string;
|
|
355
|
-
description?: string;
|
|
356
|
-
strategy?: string;
|
|
357
|
-
max_no_answer?: number;
|
|
358
|
-
no_answer_delay_time?: number;
|
|
359
|
-
wrap_up_time?: number;
|
|
360
|
-
call_timeout?: number;
|
|
361
|
-
updated_at?: string;
|
|
362
|
-
admin?: EngineLookup[];
|
|
363
|
-
invite_chat_timeout?: number;
|
|
364
|
-
task_accept_timeout?: number;
|
|
365
|
-
forecast_calculation?: EngineLookup;
|
|
366
|
-
}
|
|
367
|
-
export interface EngineAgentTodayStatisticsResponse {
|
|
368
|
-
utilization?: number;
|
|
369
|
-
occupancy?: number;
|
|
370
|
-
call_abandoned?: number;
|
|
371
|
-
call_handled?: number;
|
|
372
|
-
avg_talk_sec?: number;
|
|
373
|
-
avg_hold_sec?: number;
|
|
374
|
-
chat_accepts?: number;
|
|
375
|
-
chat_aht?: number;
|
|
376
|
-
call_missed?: number;
|
|
377
|
-
call_inbound?: number;
|
|
378
|
-
score_required_avg?: number;
|
|
379
|
-
score_optional_avg?: number;
|
|
380
|
-
score_count?: string;
|
|
381
|
-
score_required_sum?: number;
|
|
382
|
-
score_optional_sum?: number;
|
|
383
|
-
sum_talk_sec?: string;
|
|
384
|
-
voice_mail?: number;
|
|
385
|
-
available?: number;
|
|
386
|
-
online?: number;
|
|
387
|
-
processing?: number;
|
|
388
|
-
task_accepts?: number;
|
|
389
|
-
queue_talk_sec?: number;
|
|
390
|
-
call_queue_missed?: number;
|
|
391
|
-
call_inbound_queue?: number;
|
|
392
|
-
call_dialer_queue?: number;
|
|
393
|
-
call_manual?: number;
|
|
394
|
-
}
|
|
395
|
-
export interface EngineAgentUser {
|
|
396
|
-
id?: string;
|
|
397
|
-
name?: string;
|
|
398
|
-
}
|
|
399
|
-
export type EngineAggregateHistoryCallRequestVariables = {
|
|
400
|
-
[key: string]: string;
|
|
401
|
-
};
|
|
402
|
-
export interface EngineAggregateHistoryCallRequest {
|
|
403
|
-
page?: number;
|
|
404
|
-
size?: number;
|
|
405
|
-
q?: string;
|
|
406
|
-
aggs?: EngineAggregateRequest[];
|
|
407
|
-
created_at?: EngineFilterBetween;
|
|
408
|
-
user_id?: string[];
|
|
409
|
-
agent_id?: string[];
|
|
410
|
-
queue_id?: string[];
|
|
411
|
-
team_id?: string[];
|
|
412
|
-
member_id?: string[];
|
|
413
|
-
gateway_id?: string[];
|
|
414
|
-
duration?: EngineFilterBetween;
|
|
415
|
-
skip_parent?: boolean;
|
|
416
|
-
parent_id?: string;
|
|
417
|
-
cause?: string[];
|
|
418
|
-
has_file?: boolean;
|
|
419
|
-
domain_id?: string;
|
|
420
|
-
number?: string;
|
|
421
|
-
direction?: string;
|
|
422
|
-
answered_at?: EngineFilterBetween;
|
|
423
|
-
missed?: boolean;
|
|
424
|
-
stored_at?: EngineFilterBetween;
|
|
425
|
-
id?: string[];
|
|
426
|
-
transfer_from?: string[];
|
|
427
|
-
transfer_to?: string[];
|
|
428
|
-
dependency_id?: string;
|
|
429
|
-
tags?: string[];
|
|
430
|
-
variables?: EngineAggregateHistoryCallRequestVariables;
|
|
431
|
-
amd_result?: string[];
|
|
432
|
-
fts?: string;
|
|
433
|
-
directions?: string[];
|
|
434
|
-
has_transcript?: boolean;
|
|
435
|
-
agent_description?: string;
|
|
436
|
-
contact_id?: string[];
|
|
437
|
-
}
|
|
438
|
-
export interface EngineAggregateRequest {
|
|
439
|
-
name?: string;
|
|
440
|
-
group?: AggregateRequestGroup[];
|
|
441
|
-
min?: string[];
|
|
442
|
-
max?: string[];
|
|
443
|
-
sum?: string[];
|
|
444
|
-
avg?: string[];
|
|
445
|
-
count?: string[];
|
|
446
|
-
sort?: string[];
|
|
447
|
-
limit?: number;
|
|
448
|
-
}
|
|
449
|
-
export type EngineAggregateResultData = {
|
|
450
|
-
[key: string]: unknown;
|
|
451
|
-
};
|
|
452
|
-
export interface EngineAggregateResult {
|
|
453
|
-
name?: string;
|
|
454
|
-
data?: EngineAggregateResultData;
|
|
455
|
-
}
|
|
456
|
-
export interface EngineApiError {
|
|
457
|
-
code?: number;
|
|
458
|
-
detail?: string;
|
|
459
|
-
id?: string;
|
|
460
|
-
status?: string;
|
|
461
|
-
}
|
|
462
|
-
export type EngineAttemptVariables = {
|
|
463
|
-
[key: string]: string;
|
|
464
|
-
};
|
|
465
|
-
export interface EngineAttempt {
|
|
466
|
-
id?: string;
|
|
467
|
-
state?: string;
|
|
468
|
-
last_state_change?: string;
|
|
469
|
-
joined_at?: string;
|
|
470
|
-
offering_at?: string;
|
|
471
|
-
bridged_at?: string;
|
|
472
|
-
reporting_at?: string;
|
|
473
|
-
timeout?: string;
|
|
474
|
-
leaving_at?: string;
|
|
475
|
-
channel?: string;
|
|
476
|
-
queue?: EngineLookup;
|
|
477
|
-
member?: EngineLookup;
|
|
478
|
-
member_call_id?: string;
|
|
479
|
-
variables?: EngineAttemptVariables;
|
|
480
|
-
agent?: EngineLookup;
|
|
481
|
-
agent_call_id?: string;
|
|
482
|
-
position?: number;
|
|
483
|
-
resource?: EngineLookup;
|
|
484
|
-
bucket?: EngineLookup;
|
|
485
|
-
list?: EngineLookup;
|
|
486
|
-
display?: string;
|
|
487
|
-
destination?: EngineMemberCommunication;
|
|
488
|
-
result?: string;
|
|
489
|
-
attempts?: number;
|
|
490
|
-
}
|
|
491
|
-
export type EngineAttemptCallbackRequestVariables = {
|
|
492
|
-
[key: string]: string;
|
|
493
|
-
};
|
|
494
|
-
export interface EngineAttemptCallbackRequest {
|
|
495
|
-
attempt_id?: string;
|
|
496
|
-
status?: string;
|
|
497
|
-
min_offering_at?: string;
|
|
498
|
-
expire_at?: string;
|
|
499
|
-
variables?: EngineAttemptCallbackRequestVariables;
|
|
500
|
-
display?: boolean;
|
|
501
|
-
description?: string;
|
|
502
|
-
agent_id?: number;
|
|
503
|
-
exclude_current_communication?: boolean;
|
|
504
|
-
wait_between_retries?: number;
|
|
505
|
-
only_current_communication?: boolean;
|
|
506
|
-
}
|
|
507
|
-
export type EngineAttemptHistoryVariables = {
|
|
508
|
-
[key: string]: string;
|
|
509
|
-
};
|
|
510
|
-
export interface EngineAttemptHistory {
|
|
511
|
-
id?: string;
|
|
512
|
-
joined_at?: string;
|
|
513
|
-
offering_at?: string;
|
|
514
|
-
bridged_at?: string;
|
|
515
|
-
reporting_at?: string;
|
|
516
|
-
leaving_at?: string;
|
|
517
|
-
channel?: string;
|
|
518
|
-
queue?: EngineLookup;
|
|
519
|
-
member?: EngineLookup;
|
|
520
|
-
member_call_id?: string;
|
|
521
|
-
variables?: EngineAttemptHistoryVariables;
|
|
522
|
-
agent?: EngineLookup;
|
|
523
|
-
agent_call_id?: string;
|
|
524
|
-
position?: number;
|
|
525
|
-
resource?: EngineLookup;
|
|
526
|
-
bucket?: EngineLookup;
|
|
527
|
-
list?: EngineLookup;
|
|
528
|
-
display?: string;
|
|
529
|
-
destination?: EngineMemberCommunication;
|
|
530
|
-
result?: string;
|
|
531
|
-
amd_result?: string;
|
|
532
|
-
attempts?: number;
|
|
533
|
-
offered_agents?: EngineLookup[];
|
|
534
|
-
}
|
|
535
|
-
export interface EngineAttemptRenewalResultRequest {
|
|
536
|
-
attempt_id?: string;
|
|
537
|
-
renewal?: number;
|
|
538
|
-
}
|
|
539
|
-
export interface EngineAttemptRenewalResultResponse {
|
|
540
|
-
[key: string]: unknown;
|
|
541
|
-
}
|
|
542
|
-
export type EngineAttemptResultRequestVariables = {
|
|
543
|
-
[key: string]: string;
|
|
544
|
-
};
|
|
545
|
-
export interface EngineAttemptResultRequest {
|
|
546
|
-
queue_id?: number;
|
|
547
|
-
member_id?: string;
|
|
548
|
-
attempt_id?: string;
|
|
549
|
-
status?: string;
|
|
550
|
-
min_offering_at?: string;
|
|
551
|
-
expire_at?: string;
|
|
552
|
-
variables?: EngineAttemptResultRequestVariables;
|
|
553
|
-
display?: boolean;
|
|
554
|
-
description?: string;
|
|
555
|
-
transfer_queue_id?: string;
|
|
556
|
-
next_member_id?: string;
|
|
557
|
-
agent_id?: number;
|
|
558
|
-
exclude_current_communication?: boolean;
|
|
559
|
-
wait_between_retries?: number;
|
|
560
|
-
only_current_communication?: boolean;
|
|
561
|
-
}
|
|
562
|
-
export interface EngineAttemptResultResponse {
|
|
563
|
-
status?: string;
|
|
564
|
-
}
|
|
565
|
-
export interface EngineAuditForm {
|
|
566
|
-
id?: number;
|
|
567
|
-
created_at?: string;
|
|
568
|
-
created_by?: EngineLookup;
|
|
569
|
-
updated_at?: string;
|
|
570
|
-
updated_by?: EngineLookup;
|
|
571
|
-
name?: string;
|
|
572
|
-
description?: string;
|
|
573
|
-
enabled?: boolean;
|
|
574
|
-
questions?: EngineQuestion[];
|
|
575
|
-
teams?: EngineLookup[];
|
|
576
|
-
editable?: boolean;
|
|
577
|
-
}
|
|
578
|
-
export type EngineAuditQuestionType = typeof EngineAuditQuestionType[keyof typeof EngineAuditQuestionType];
|
|
579
|
-
export declare const EngineAuditQuestionType: {
|
|
580
|
-
readonly question_default: "question_default";
|
|
581
|
-
readonly question_score: "question_score";
|
|
582
|
-
readonly question_option: "question_option";
|
|
583
|
-
readonly question_yes: "question_yes";
|
|
584
|
-
};
|
|
585
|
-
export interface EngineAuditRate {
|
|
586
|
-
id?: string;
|
|
587
|
-
created_at?: string;
|
|
588
|
-
created_by?: EngineLookup;
|
|
589
|
-
updated_at?: string;
|
|
590
|
-
updated_by?: EngineLookup;
|
|
591
|
-
form?: EngineLookup;
|
|
592
|
-
questions?: EngineQuestion[];
|
|
593
|
-
answers?: EngineQuestionAnswer[];
|
|
594
|
-
score_required?: number;
|
|
595
|
-
score_optional?: number;
|
|
596
|
-
comment?: string;
|
|
597
|
-
rated_user?: EngineLookup;
|
|
598
|
-
select_yes_count?: string;
|
|
599
|
-
critical_count?: string;
|
|
600
|
-
}
|
|
601
|
-
export interface EngineAvailableSystemSetting {
|
|
602
|
-
name?: string;
|
|
603
|
-
}
|
|
604
|
-
export interface EngineBlindTransferCallRequest {
|
|
605
|
-
id?: string;
|
|
606
|
-
app_id?: string;
|
|
607
|
-
destination?: string;
|
|
608
|
-
domain_id?: string;
|
|
609
|
-
}
|
|
610
|
-
export interface EngineBlindTransferCallResponse {
|
|
611
|
-
[key: string]: unknown;
|
|
612
|
-
}
|
|
613
|
-
export interface EngineBucket {
|
|
614
|
-
id?: string;
|
|
615
|
-
name?: string;
|
|
616
|
-
description?: string;
|
|
617
|
-
}
|
|
618
|
-
export interface EngineCalendar {
|
|
619
|
-
id?: string;
|
|
620
|
-
domain_id?: string;
|
|
621
|
-
created_at?: string;
|
|
622
|
-
created_by?: EngineLookup;
|
|
623
|
-
updated_at?: string;
|
|
624
|
-
updated_by?: EngineLookup;
|
|
625
|
-
name?: string;
|
|
626
|
-
start_at?: string;
|
|
627
|
-
end_at?: string;
|
|
628
|
-
timezone?: EngineLookup;
|
|
629
|
-
description?: string;
|
|
630
|
-
accepts?: EngineAcceptOfDay[];
|
|
631
|
-
excepts?: EngineExceptDate[];
|
|
632
|
-
specials?: EngineAcceptOfDay[];
|
|
633
|
-
}
|
|
634
|
-
export interface EngineCallAnnotation {
|
|
635
|
-
id?: string;
|
|
636
|
-
call_id?: string;
|
|
637
|
-
created_by?: EngineLookup;
|
|
638
|
-
created_at?: string;
|
|
639
|
-
updated_by?: EngineLookup;
|
|
640
|
-
updated_at?: string;
|
|
641
|
-
note?: string;
|
|
642
|
-
start_sec?: number;
|
|
643
|
-
end_sec?: number;
|
|
644
|
-
}
|
|
645
|
-
export interface EngineCallFile {
|
|
646
|
-
id?: string;
|
|
647
|
-
name?: string;
|
|
648
|
-
size?: string;
|
|
649
|
-
mime_type?: string;
|
|
650
|
-
start_at?: string;
|
|
651
|
-
stop_at?: string;
|
|
652
|
-
}
|
|
653
|
-
export interface EngineCallHold {
|
|
654
|
-
start?: string;
|
|
655
|
-
stop?: string;
|
|
656
|
-
sec?: number;
|
|
657
|
-
}
|
|
658
|
-
export interface EngineChatPlan {
|
|
659
|
-
id?: number;
|
|
660
|
-
name?: string;
|
|
661
|
-
description?: string;
|
|
662
|
-
schema?: EngineLookup;
|
|
663
|
-
enabled?: boolean;
|
|
664
|
-
}
|
|
665
|
-
export type EngineCommunicationChannels = typeof EngineCommunicationChannels[keyof typeof EngineCommunicationChannels];
|
|
666
|
-
export declare const EngineCommunicationChannels: {
|
|
667
|
-
readonly Undefined: "Undefined";
|
|
668
|
-
readonly Phone: "Phone";
|
|
669
|
-
readonly Email: "Email";
|
|
670
|
-
readonly Messaging: "Messaging";
|
|
671
|
-
};
|
|
672
|
-
export interface EngineCommunicationType {
|
|
673
|
-
id?: string;
|
|
674
|
-
domain_id?: string;
|
|
675
|
-
name?: string;
|
|
676
|
-
code?: string;
|
|
677
|
-
channel?: EngineCommunicationChannels;
|
|
678
|
-
description?: string;
|
|
679
|
-
default?: boolean;
|
|
680
|
-
}
|
|
681
|
-
export interface EngineCommunicationTypeRequest {
|
|
682
|
-
name?: string;
|
|
683
|
-
code?: string;
|
|
684
|
-
channel?: EngineCommunicationChannels;
|
|
685
|
-
description?: string;
|
|
686
|
-
default?: boolean;
|
|
687
|
-
}
|
|
688
|
-
export interface EngineConfirmPushResponse {
|
|
689
|
-
[key: string]: unknown;
|
|
690
|
-
}
|
|
691
|
-
export interface EngineCreateAgentPauseCauseRequest {
|
|
692
|
-
name?: string;
|
|
693
|
-
limit_min?: number;
|
|
694
|
-
allow_supervisor?: boolean;
|
|
695
|
-
allow_agent?: boolean;
|
|
696
|
-
allow_admin?: boolean;
|
|
697
|
-
description?: string;
|
|
698
|
-
}
|
|
699
|
-
export interface EngineCreateAgentRequest {
|
|
700
|
-
user?: EngineLookup;
|
|
701
|
-
description?: string;
|
|
702
|
-
progressive_count?: number;
|
|
703
|
-
greeting_media?: EngineLookup;
|
|
704
|
-
domain_id?: string;
|
|
705
|
-
allow_channels?: string[];
|
|
706
|
-
chat_count?: number;
|
|
707
|
-
supervisor?: EngineLookup[];
|
|
708
|
-
team?: EngineLookup;
|
|
709
|
-
region?: EngineLookup;
|
|
710
|
-
auditor?: EngineLookup[];
|
|
711
|
-
is_supervisor?: boolean;
|
|
712
|
-
task_count?: number;
|
|
713
|
-
}
|
|
714
|
-
export interface EngineCreateAgentSkillBulkItem {
|
|
715
|
-
skill?: EngineLookup;
|
|
716
|
-
capacity?: number;
|
|
717
|
-
domain_id?: string;
|
|
718
|
-
enabled?: boolean;
|
|
719
|
-
}
|
|
720
|
-
export interface EngineCreateAgentSkillRequest {
|
|
721
|
-
agent_id?: string;
|
|
722
|
-
skill?: EngineLookup;
|
|
723
|
-
capacity?: number;
|
|
724
|
-
domain_id?: string;
|
|
725
|
-
enabled?: boolean;
|
|
726
|
-
}
|
|
727
|
-
export interface EngineCreateAgentSkillsRequest {
|
|
728
|
-
agent_id?: string;
|
|
729
|
-
items?: EngineCreateAgentSkillBulkItem[];
|
|
730
|
-
}
|
|
731
|
-
export interface EngineCreateAgentSkillsResponse {
|
|
732
|
-
ids?: string[];
|
|
733
|
-
}
|
|
734
|
-
export interface EngineCreateAgentTeamRequest {
|
|
735
|
-
name?: string;
|
|
736
|
-
description?: string;
|
|
737
|
-
strategy?: string;
|
|
738
|
-
max_no_answer?: number;
|
|
739
|
-
no_answer_delay_time?: number;
|
|
740
|
-
wrap_up_time?: number;
|
|
741
|
-
call_timeout?: number;
|
|
742
|
-
admin?: EngineLookup[];
|
|
743
|
-
domain_id?: string;
|
|
744
|
-
invite_chat_timeout?: number;
|
|
745
|
-
task_accept_timeout?: number;
|
|
746
|
-
forecast_calculation?: EngineLookup;
|
|
747
|
-
}
|
|
748
|
-
export interface EngineCreateAttemptRequest {
|
|
749
|
-
queue_id?: string;
|
|
750
|
-
member_id?: string;
|
|
751
|
-
agent_id?: string;
|
|
752
|
-
domain_id?: string;
|
|
753
|
-
}
|
|
754
|
-
export interface EngineCreateAttemptResponse {
|
|
755
|
-
attempt_id?: string;
|
|
756
|
-
}
|
|
757
|
-
export interface EngineCreateAuditFormRateRequest {
|
|
758
|
-
form?: EngineLookup;
|
|
759
|
-
answers?: EngineCreateQuestionAnswerRequest[];
|
|
760
|
-
comment?: string;
|
|
761
|
-
call_id?: string;
|
|
762
|
-
}
|
|
763
|
-
export interface EngineCreateAuditFormRequest {
|
|
764
|
-
name?: string;
|
|
765
|
-
description?: string;
|
|
766
|
-
enabled?: boolean;
|
|
767
|
-
questions?: EngineQuestion[];
|
|
768
|
-
teams?: EngineLookup[];
|
|
769
|
-
}
|
|
770
|
-
export interface EngineCreateBucketRequest {
|
|
771
|
-
name?: string;
|
|
772
|
-
description?: string;
|
|
773
|
-
domain_id?: string;
|
|
774
|
-
}
|
|
775
|
-
export interface EngineCreateCalendarRequest {
|
|
776
|
-
name?: string;
|
|
777
|
-
start_at?: string;
|
|
778
|
-
end_at?: string;
|
|
779
|
-
timezone?: EngineLookup;
|
|
780
|
-
description?: string;
|
|
781
|
-
accepts?: EngineAcceptOfDay[];
|
|
782
|
-
excepts?: EngineExceptDate[];
|
|
783
|
-
domain_id?: string;
|
|
784
|
-
specials?: EngineAcceptOfDay[];
|
|
785
|
-
}
|
|
786
|
-
export interface EngineCreateCallAnnotationRequest {
|
|
787
|
-
call_id?: string;
|
|
788
|
-
note?: string;
|
|
789
|
-
start_sec?: number;
|
|
790
|
-
end_sec?: number;
|
|
791
|
-
}
|
|
792
|
-
export interface EngineCreateCallRequest {
|
|
793
|
-
from?: EngineCreateCallRequestEndpointRequest;
|
|
794
|
-
to?: EngineCreateCallRequestEndpointRequest;
|
|
795
|
-
destination?: string;
|
|
796
|
-
params?: CreateCallRequestCallSettings;
|
|
797
|
-
domain_id?: string;
|
|
798
|
-
}
|
|
799
|
-
export interface EngineCreateCallRequestEndpointRequest {
|
|
800
|
-
app_id?: string;
|
|
801
|
-
type?: string;
|
|
802
|
-
id?: string;
|
|
803
|
-
extension?: string;
|
|
804
|
-
}
|
|
805
|
-
export interface EngineCreateCallResponse {
|
|
806
|
-
id?: string;
|
|
807
|
-
}
|
|
808
|
-
export interface EngineCreateChatPlanRequest {
|
|
809
|
-
name?: string;
|
|
810
|
-
description?: string;
|
|
811
|
-
schema?: EngineLookup;
|
|
812
|
-
enabled?: boolean;
|
|
813
|
-
}
|
|
814
|
-
export interface EngineCreateEmailProfileRequest {
|
|
815
|
-
name?: string;
|
|
816
|
-
description?: string;
|
|
817
|
-
schema?: EngineLookup;
|
|
818
|
-
enabled?: boolean;
|
|
819
|
-
smtp_host?: string;
|
|
820
|
-
login?: string;
|
|
821
|
-
password?: string;
|
|
822
|
-
mailbox?: string;
|
|
823
|
-
smtp_port?: number;
|
|
824
|
-
imap_port?: number;
|
|
825
|
-
imap_host?: string;
|
|
826
|
-
fetch_interval?: number;
|
|
827
|
-
auth_type?: EngineEmailAuthType;
|
|
828
|
-
listen?: boolean;
|
|
829
|
-
params?: EngineEmailProfileParams;
|
|
830
|
-
}
|
|
831
|
-
export interface EngineCreateListCommunicationRequest {
|
|
832
|
-
number?: string;
|
|
833
|
-
description?: string;
|
|
834
|
-
list_id?: string;
|
|
835
|
-
expire_at?: string;
|
|
836
|
-
}
|
|
837
|
-
export interface EngineCreateListRequest {
|
|
838
|
-
name?: string;
|
|
839
|
-
description?: string;
|
|
840
|
-
domain_id?: string;
|
|
841
|
-
}
|
|
842
|
-
export type EngineCreateMemberBulkItemVariables = {
|
|
843
|
-
[key: string]: string;
|
|
844
|
-
};
|
|
845
|
-
export interface EngineCreateMemberBulkItem {
|
|
846
|
-
priority?: number;
|
|
847
|
-
expire_at?: string;
|
|
848
|
-
variables?: EngineCreateMemberBulkItemVariables;
|
|
849
|
-
name?: string;
|
|
850
|
-
timezone?: EngineLookup;
|
|
851
|
-
communications?: EngineMemberCommunicationCreateRequest[];
|
|
852
|
-
bucket?: EngineLookup;
|
|
853
|
-
min_offering_at?: string;
|
|
854
|
-
agent?: EngineLookup;
|
|
855
|
-
skill?: EngineLookup;
|
|
856
|
-
}
|
|
857
|
-
export interface EngineCreateMemberBulkRequest {
|
|
858
|
-
queue_id?: string;
|
|
859
|
-
items?: EngineCreateMemberBulkItem[];
|
|
860
|
-
file_name?: string;
|
|
861
|
-
}
|
|
862
|
-
export type EngineCreateMemberRequestVariables = {
|
|
863
|
-
[key: string]: string;
|
|
864
|
-
};
|
|
865
|
-
export interface EngineCreateMemberRequest {
|
|
866
|
-
queue_id?: string;
|
|
867
|
-
priority?: number;
|
|
868
|
-
expire_at?: string;
|
|
869
|
-
variables?: EngineCreateMemberRequestVariables;
|
|
870
|
-
name?: string;
|
|
871
|
-
timezone?: EngineLookup;
|
|
872
|
-
communications?: EngineMemberCommunicationCreateRequest[];
|
|
873
|
-
bucket?: EngineLookup;
|
|
874
|
-
min_offering_at?: string;
|
|
875
|
-
domain_id?: string;
|
|
876
|
-
agent?: EngineLookup;
|
|
877
|
-
skill?: EngineLookup;
|
|
878
|
-
}
|
|
879
|
-
export interface EngineCreateOutboundResourceDisplayBulkRequest {
|
|
880
|
-
resource_id?: string;
|
|
881
|
-
items?: EngineCreateOutboundResourceDisplayRequest[];
|
|
882
|
-
}
|
|
883
|
-
export interface EngineCreateOutboundResourceDisplayRequest {
|
|
884
|
-
resource_id?: string;
|
|
885
|
-
display?: string;
|
|
886
|
-
domain_id?: string;
|
|
887
|
-
}
|
|
888
|
-
export interface EngineCreateOutboundResourceGroupRequest {
|
|
889
|
-
name?: string;
|
|
890
|
-
strategy?: string;
|
|
891
|
-
description?: string;
|
|
892
|
-
communication?: EngineLookup;
|
|
893
|
-
time?: EngineOutboundResourceTimeRange[];
|
|
894
|
-
domain_id?: string;
|
|
895
|
-
}
|
|
896
|
-
export interface EngineCreateOutboundResourceInGroupRequest {
|
|
897
|
-
group_id?: string;
|
|
898
|
-
resource?: EngineLookup;
|
|
899
|
-
reserve_resource?: EngineLookup;
|
|
900
|
-
priority?: number;
|
|
901
|
-
}
|
|
902
|
-
export type EngineCreateOutboundResourceRequestVariables = {
|
|
903
|
-
[key: string]: string;
|
|
904
|
-
};
|
|
905
|
-
export interface EngineCreateOutboundResourceRequest {
|
|
906
|
-
limit?: number;
|
|
907
|
-
enabled?: boolean;
|
|
908
|
-
rps?: number;
|
|
909
|
-
reserve?: boolean;
|
|
910
|
-
variables?: EngineCreateOutboundResourceRequestVariables;
|
|
911
|
-
number?: string;
|
|
912
|
-
max_successively_errors?: number;
|
|
913
|
-
name?: string;
|
|
914
|
-
error_ids?: string[];
|
|
915
|
-
gateway?: EngineLookup;
|
|
916
|
-
description?: string;
|
|
917
|
-
patterns?: string[];
|
|
918
|
-
failure_dial_delay?: number;
|
|
919
|
-
parameters?: EngineOutboundResourceParameters;
|
|
920
|
-
}
|
|
921
|
-
export type EngineCreatePresetQueryRequestPreset = {
|
|
922
|
-
[key: string]: unknown;
|
|
923
|
-
};
|
|
924
|
-
export interface EngineCreatePresetQueryRequest {
|
|
925
|
-
name?: string;
|
|
926
|
-
description?: string;
|
|
927
|
-
preset?: EngineCreatePresetQueryRequestPreset;
|
|
928
|
-
section?: string;
|
|
929
|
-
}
|
|
930
|
-
export interface EngineCreateQuestionAnswerRequest {
|
|
931
|
-
score?: number;
|
|
932
|
-
}
|
|
933
|
-
export interface EngineCreateQueueBucketRequest {
|
|
934
|
-
queue_id?: string;
|
|
935
|
-
ratio?: number;
|
|
936
|
-
bucket?: EngineLookup;
|
|
937
|
-
disabled?: boolean;
|
|
938
|
-
priority?: number;
|
|
939
|
-
}
|
|
940
|
-
export interface EngineCreateQueueHookRequest {
|
|
941
|
-
queue_id?: number;
|
|
942
|
-
schema?: EngineLookup;
|
|
943
|
-
event?: string;
|
|
944
|
-
enabled?: boolean;
|
|
945
|
-
properties?: string[];
|
|
946
|
-
}
|
|
947
|
-
export type EngineCreateQueueRequestPayload = {
|
|
948
|
-
[key: string]: unknown;
|
|
949
|
-
};
|
|
950
|
-
export type EngineCreateQueueRequestVariables = {
|
|
951
|
-
[key: string]: string;
|
|
952
|
-
};
|
|
953
|
-
export interface EngineCreateQueueRequest {
|
|
954
|
-
strategy?: string;
|
|
955
|
-
enabled?: boolean;
|
|
956
|
-
payload?: EngineCreateQueueRequestPayload;
|
|
957
|
-
calendar?: EngineLookup;
|
|
958
|
-
priority?: number;
|
|
959
|
-
name?: string;
|
|
960
|
-
variables?: EngineCreateQueueRequestVariables;
|
|
961
|
-
timeout?: number;
|
|
962
|
-
dnc_list?: EngineLookup;
|
|
963
|
-
sec_locate_agent?: number;
|
|
964
|
-
type?: number;
|
|
965
|
-
team?: EngineLookup;
|
|
966
|
-
description?: string;
|
|
967
|
-
schema?: EngineLookup;
|
|
968
|
-
ringtone?: EngineLookup;
|
|
969
|
-
domain_id?: string;
|
|
970
|
-
do_schema?: EngineLookup;
|
|
971
|
-
after_schema?: EngineLookup;
|
|
972
|
-
sticky_agent?: boolean;
|
|
973
|
-
processing?: boolean;
|
|
974
|
-
processing_sec?: number;
|
|
975
|
-
processing_renewal_sec?: number;
|
|
976
|
-
form_schema?: EngineLookup;
|
|
977
|
-
task_processing?: EngineTaskProcessing;
|
|
978
|
-
grantee?: EngineLookup;
|
|
979
|
-
tags?: EngineTag[];
|
|
980
|
-
}
|
|
981
|
-
export interface EngineCreateQueueResourceGroupRequest {
|
|
982
|
-
queue_id?: string;
|
|
983
|
-
resource_group?: EngineLookup;
|
|
984
|
-
domain_id?: string;
|
|
985
|
-
}
|
|
986
|
-
export interface EngineCreateQueueSkillRequest {
|
|
987
|
-
queue_id?: number;
|
|
988
|
-
skill?: EngineLookup;
|
|
989
|
-
buckets?: EngineLookup[];
|
|
990
|
-
lvl?: number;
|
|
991
|
-
min_capacity?: number;
|
|
992
|
-
max_capacity?: number;
|
|
993
|
-
enabled?: boolean;
|
|
994
|
-
}
|
|
995
|
-
export interface EngineCreateQuickReplyRequest {
|
|
996
|
-
name?: string;
|
|
997
|
-
text?: string;
|
|
998
|
-
queues?: EngineLookup[];
|
|
999
|
-
teams?: EngineLookup[];
|
|
1000
|
-
article?: EngineLookup;
|
|
1001
|
-
}
|
|
1002
|
-
export interface EngineCreateRegionRequest {
|
|
1003
|
-
name?: string;
|
|
1004
|
-
description?: string;
|
|
1005
|
-
timezone?: EngineLookup;
|
|
1006
|
-
}
|
|
1007
|
-
export interface EngineCreateRoutingOutboundCallRequest {
|
|
1008
|
-
name?: string;
|
|
1009
|
-
description?: string;
|
|
1010
|
-
schema?: EngineLookup;
|
|
1011
|
-
pattern?: string;
|
|
1012
|
-
disabled?: boolean;
|
|
1013
|
-
domain_id?: string;
|
|
1014
|
-
}
|
|
1015
|
-
export type EngineCreateRoutingSchemaRequestSchema = {
|
|
1016
|
-
[key: string]: unknown;
|
|
1017
|
-
};
|
|
1018
|
-
export type EngineCreateRoutingSchemaRequestPayload = {
|
|
1019
|
-
[key: string]: unknown;
|
|
1020
|
-
};
|
|
1021
|
-
export interface EngineCreateRoutingSchemaRequest {
|
|
1022
|
-
name?: string;
|
|
1023
|
-
description?: string;
|
|
1024
|
-
type?: EngineRoutingSchemaType;
|
|
1025
|
-
schema?: EngineCreateRoutingSchemaRequestSchema;
|
|
1026
|
-
payload?: EngineCreateRoutingSchemaRequestPayload;
|
|
1027
|
-
debug?: boolean;
|
|
1028
|
-
editor?: boolean;
|
|
1029
|
-
tags?: EngineSchemaTag[];
|
|
1030
|
-
}
|
|
1031
|
-
export interface EngineCreateRoutingVariableRequest {
|
|
1032
|
-
key?: string;
|
|
1033
|
-
value?: string;
|
|
1034
|
-
domain_id?: string;
|
|
1035
|
-
}
|
|
1036
|
-
export type EngineCreateSchemaVariableRequestValue = {
|
|
1037
|
-
[key: string]: unknown;
|
|
1038
|
-
};
|
|
1039
|
-
export interface EngineCreateSchemaVariableRequest {
|
|
1040
|
-
name?: string;
|
|
1041
|
-
encrypt?: boolean;
|
|
1042
|
-
value?: EngineCreateSchemaVariableRequestValue;
|
|
1043
|
-
}
|
|
1044
|
-
export interface EngineCreateSkillAgentRequest {
|
|
1045
|
-
skill_id?: string;
|
|
1046
|
-
agent?: EngineLookup[];
|
|
1047
|
-
capacity?: number;
|
|
1048
|
-
enabled?: boolean;
|
|
1049
|
-
}
|
|
1050
|
-
export interface EngineCreateSkillAgentResponse {
|
|
1051
|
-
items?: EngineSkillAgentItem[];
|
|
1052
|
-
}
|
|
1053
|
-
export interface EngineCreateSkillRequest {
|
|
1054
|
-
name?: string;
|
|
1055
|
-
description?: string;
|
|
1056
|
-
domain_id?: string;
|
|
1057
|
-
}
|
|
1058
|
-
export type EngineCreateSystemSettingRequestValue = {
|
|
1059
|
-
[key: string]: unknown;
|
|
1060
|
-
};
|
|
1061
|
-
export interface EngineCreateSystemSettingRequest {
|
|
1062
|
-
name?: EngineSystemSettingName;
|
|
1063
|
-
value?: EngineCreateSystemSettingRequestValue;
|
|
1064
|
-
}
|
|
1065
|
-
export interface EngineCreateTeamHookRequest {
|
|
1066
|
-
team_id?: string;
|
|
1067
|
-
schema?: EngineLookup;
|
|
1068
|
-
event?: EngineTeamHookEvent;
|
|
1069
|
-
enabled?: boolean;
|
|
1070
|
-
properties?: string[];
|
|
1071
|
-
}
|
|
1072
|
-
export interface EngineCreateTeamTriggerRequest {
|
|
1073
|
-
team_id?: string;
|
|
1074
|
-
schema?: EngineLookup;
|
|
1075
|
-
enabled?: boolean;
|
|
1076
|
-
name?: string;
|
|
1077
|
-
description?: string;
|
|
1078
|
-
}
|
|
1079
|
-
export type EngineCreateTriggerJobRequestVariables = {
|
|
1080
|
-
[key: string]: string;
|
|
1081
|
-
};
|
|
1082
|
-
export interface EngineCreateTriggerJobRequest {
|
|
1083
|
-
trigger_id?: number;
|
|
1084
|
-
variables?: EngineCreateTriggerJobRequestVariables;
|
|
1085
|
-
}
|
|
1086
|
-
export type EngineCreateTriggerRequestVariables = {
|
|
1087
|
-
[key: string]: string;
|
|
1088
|
-
};
|
|
1089
|
-
export interface EngineCreateTriggerRequest {
|
|
1090
|
-
name?: string;
|
|
1091
|
-
enabled?: boolean;
|
|
1092
|
-
type?: EngineTriggerType;
|
|
1093
|
-
schema?: EngineLookup;
|
|
1094
|
-
variables?: EngineCreateTriggerRequestVariables;
|
|
1095
|
-
description?: string;
|
|
1096
|
-
expression?: string;
|
|
1097
|
-
timezone?: EngineLookup;
|
|
1098
|
-
timeout?: number;
|
|
1099
|
-
object?: EngineTriggerObjectType;
|
|
1100
|
-
event?: EngineTriggerEventType;
|
|
1101
|
-
}
|
|
1102
|
-
export interface EngineCreateWebHookRequest {
|
|
1103
|
-
name?: string;
|
|
1104
|
-
description?: string;
|
|
1105
|
-
origin?: string[];
|
|
1106
|
-
schema?: EngineLookup;
|
|
1107
|
-
enabled?: boolean;
|
|
1108
|
-
authorization?: string;
|
|
1109
|
-
}
|
|
1110
|
-
export interface EngineDefaultDeviceConfigResponse {
|
|
1111
|
-
sip?: DefaultDeviceConfigResponseSipDeviceConfig;
|
|
1112
|
-
webrtc?: DefaultDeviceConfigResponseWebRTCDeviceConfig;
|
|
1113
|
-
}
|
|
1114
|
-
export type EngineDeleteAllMembersRequestVariables = {
|
|
1115
|
-
[key: string]: string;
|
|
1116
|
-
};
|
|
1117
|
-
export interface EngineDeleteAllMembersRequest {
|
|
1118
|
-
q?: string;
|
|
1119
|
-
id?: string[];
|
|
1120
|
-
queue_id?: string[];
|
|
1121
|
-
bucket_id?: number[];
|
|
1122
|
-
destination?: string;
|
|
1123
|
-
created_at?: EngineFilterBetween;
|
|
1124
|
-
offering_at?: EngineFilterBetween;
|
|
1125
|
-
stop_cause?: string[];
|
|
1126
|
-
priority?: EngineFilterBetween;
|
|
1127
|
-
name?: string;
|
|
1128
|
-
attempts?: EngineFilterBetween;
|
|
1129
|
-
agent_id?: number[];
|
|
1130
|
-
numbers?: string[];
|
|
1131
|
-
variables?: EngineDeleteAllMembersRequestVariables;
|
|
1132
|
-
size?: number;
|
|
1133
|
-
sort?: string;
|
|
1134
|
-
without_members?: boolean;
|
|
1135
|
-
}
|
|
1136
|
-
export type EngineDeleteMembersRequestVariables = {
|
|
1137
|
-
[key: string]: string;
|
|
1138
|
-
};
|
|
1139
|
-
export interface EngineDeleteMembersRequest {
|
|
1140
|
-
q?: string;
|
|
1141
|
-
id?: string[];
|
|
1142
|
-
ids?: string[];
|
|
1143
|
-
queue_id?: string;
|
|
1144
|
-
bucket_id?: number[];
|
|
1145
|
-
destination?: string;
|
|
1146
|
-
created_at?: EngineFilterBetween;
|
|
1147
|
-
offering_at?: EngineFilterBetween;
|
|
1148
|
-
stop_cause?: string[];
|
|
1149
|
-
priority?: EngineFilterBetween;
|
|
1150
|
-
name?: string;
|
|
1151
|
-
attempts?: EngineFilterBetween;
|
|
1152
|
-
agent_id?: number[];
|
|
1153
|
-
numbers?: string[];
|
|
1154
|
-
variables?: EngineDeleteMembersRequestVariables;
|
|
1155
|
-
size?: number;
|
|
1156
|
-
sort?: string;
|
|
1157
|
-
without_members?: boolean;
|
|
1158
|
-
}
|
|
1159
|
-
export interface EngineDeleteSkillAgentRequest {
|
|
1160
|
-
skill_id?: string;
|
|
1161
|
-
id?: string[];
|
|
1162
|
-
agent_id?: string[];
|
|
1163
|
-
}
|
|
1164
|
-
export interface EngineDeleteSkillAgentResponse {
|
|
1165
|
-
items?: EngineSkillAgentItem[];
|
|
1166
|
-
}
|
|
1167
|
-
export interface EngineDtmfCallRequest {
|
|
1168
|
-
id?: string;
|
|
1169
|
-
app_id?: string;
|
|
1170
|
-
digit?: string;
|
|
1171
|
-
domain_id?: string;
|
|
1172
|
-
}
|
|
1173
|
-
export interface EngineDtmfCallResponse {
|
|
1174
|
-
[key: string]: unknown;
|
|
1175
|
-
}
|
|
1176
|
-
export interface EngineEavesdropCallRequest {
|
|
1177
|
-
id?: string;
|
|
1178
|
-
app_id?: string;
|
|
1179
|
-
control?: boolean;
|
|
1180
|
-
listen_a?: boolean;
|
|
1181
|
-
listen_b?: boolean;
|
|
1182
|
-
whisper_a?: boolean;
|
|
1183
|
-
whisper_b?: boolean;
|
|
1184
|
-
from?: EngineEavesdropCallRequestEndpointRequest;
|
|
1185
|
-
}
|
|
1186
|
-
export interface EngineEavesdropCallRequestEndpointRequest {
|
|
1187
|
-
app_id?: string;
|
|
1188
|
-
type?: string;
|
|
1189
|
-
id?: string;
|
|
1190
|
-
extension?: string;
|
|
1191
|
-
}
|
|
1192
|
-
export type EngineEmailAuthType = typeof EngineEmailAuthType[keyof typeof EngineEmailAuthType];
|
|
1193
|
-
export declare const EngineEmailAuthType: {
|
|
1194
|
-
readonly EmailAuthTypeUndefined: "EmailAuthTypeUndefined";
|
|
1195
|
-
readonly Plain: "Plain";
|
|
1196
|
-
readonly OAuth2: "OAuth2";
|
|
1197
|
-
};
|
|
1198
|
-
export interface EngineEmailProfile {
|
|
1199
|
-
id?: string;
|
|
1200
|
-
created_at?: string;
|
|
1201
|
-
created_by?: EngineLookup;
|
|
1202
|
-
updated_at?: string;
|
|
1203
|
-
updated_by?: EngineLookup;
|
|
1204
|
-
name?: string;
|
|
1205
|
-
description?: string;
|
|
1206
|
-
schema?: EngineLookup;
|
|
1207
|
-
enabled?: boolean;
|
|
1208
|
-
imap_host?: string;
|
|
1209
|
-
login?: string;
|
|
1210
|
-
mailbox?: string;
|
|
1211
|
-
smtp_port?: number;
|
|
1212
|
-
imap_port?: number;
|
|
1213
|
-
password?: string;
|
|
1214
|
-
smtp_host?: string;
|
|
1215
|
-
fetch_interval?: number;
|
|
1216
|
-
fetch_error?: string;
|
|
1217
|
-
state?: string;
|
|
1218
|
-
activity_at?: string;
|
|
1219
|
-
auth_type?: EngineEmailAuthType;
|
|
1220
|
-
listen?: boolean;
|
|
1221
|
-
params?: EngineEmailProfileParams;
|
|
1222
|
-
logged?: boolean;
|
|
1223
|
-
}
|
|
1224
|
-
export interface EngineEmailProfileParams {
|
|
1225
|
-
oauth2?: EmailProfileParamsOAuth2;
|
|
1226
|
-
}
|
|
1227
|
-
export interface EngineEmptyResponse {
|
|
1228
|
-
[key: string]: unknown;
|
|
1229
|
-
}
|
|
1230
|
-
export interface EngineEndpoint {
|
|
1231
|
-
type?: string;
|
|
1232
|
-
number?: string;
|
|
1233
|
-
id?: string;
|
|
1234
|
-
name?: string;
|
|
1235
|
-
}
|
|
1236
|
-
export interface EngineExceptDate {
|
|
1237
|
-
name?: string;
|
|
1238
|
-
date?: string;
|
|
1239
|
-
repeat?: boolean;
|
|
1240
|
-
disabled?: boolean;
|
|
1241
|
-
working?: boolean;
|
|
1242
|
-
work_start?: number;
|
|
1243
|
-
work_stop?: number;
|
|
1244
|
-
}
|
|
1245
|
-
export interface EngineFilterBetween {
|
|
1246
|
-
from?: string;
|
|
1247
|
-
to?: string;
|
|
1248
|
-
}
|
|
1249
|
-
export interface EngineForAgentPauseCause {
|
|
1250
|
-
id?: number;
|
|
1251
|
-
name?: string;
|
|
1252
|
-
limit_min?: number;
|
|
1253
|
-
duration_min?: number;
|
|
1254
|
-
}
|
|
1255
|
-
export interface EngineForAgentPauseCauseList {
|
|
1256
|
-
items?: EngineForAgentPauseCause[];
|
|
1257
|
-
}
|
|
1258
|
-
export interface EngineHangupCallRequest {
|
|
1259
|
-
id?: string;
|
|
1260
|
-
cause?: string;
|
|
1261
|
-
app_id?: string;
|
|
1262
|
-
domain_id?: string;
|
|
1263
|
-
}
|
|
1264
|
-
export interface EngineHangupCallResponse {
|
|
1265
|
-
[key: string]: unknown;
|
|
1266
|
-
}
|
|
1267
|
-
export type EngineHistoryCallVariables = {
|
|
1268
|
-
[key: string]: string;
|
|
1269
|
-
};
|
|
1270
|
-
export type EngineHistoryCallFormFields = {
|
|
1271
|
-
[key: string]: unknown;
|
|
1272
|
-
};
|
|
1273
|
-
export interface EngineHistoryCall {
|
|
1274
|
-
id?: string;
|
|
1275
|
-
app_id?: string;
|
|
1276
|
-
type?: string;
|
|
1277
|
-
parent_id?: string;
|
|
1278
|
-
user?: EngineLookup;
|
|
1279
|
-
extension?: string;
|
|
1280
|
-
gateway?: EngineLookup;
|
|
1281
|
-
direction?: string;
|
|
1282
|
-
destination?: string;
|
|
1283
|
-
from?: EngineEndpoint;
|
|
1284
|
-
to?: EngineEndpoint;
|
|
1285
|
-
variables?: EngineHistoryCallVariables;
|
|
1286
|
-
created_at?: string;
|
|
1287
|
-
answered_at?: string;
|
|
1288
|
-
bridged_at?: string;
|
|
1289
|
-
hangup_at?: string;
|
|
1290
|
-
hangup_by?: string;
|
|
1291
|
-
cause?: string;
|
|
1292
|
-
duration?: number;
|
|
1293
|
-
hold_sec?: number;
|
|
1294
|
-
wait_sec?: number;
|
|
1295
|
-
bill_sec?: number;
|
|
1296
|
-
sip_code?: number;
|
|
1297
|
-
files?: EngineCallFile[];
|
|
1298
|
-
queue?: EngineLookup;
|
|
1299
|
-
member?: EngineLookup;
|
|
1300
|
-
team?: EngineLookup;
|
|
1301
|
-
agent?: EngineLookup;
|
|
1302
|
-
joined_at?: string;
|
|
1303
|
-
leaving_at?: string;
|
|
1304
|
-
reporting_at?: string;
|
|
1305
|
-
queue_bridged_at?: string;
|
|
1306
|
-
queue_wait_sec?: number;
|
|
1307
|
-
queue_duration_sec?: number;
|
|
1308
|
-
reporting_sec?: number;
|
|
1309
|
-
result?: string;
|
|
1310
|
-
tags?: string[];
|
|
1311
|
-
display?: string;
|
|
1312
|
-
stored_at?: string;
|
|
1313
|
-
transfer_from?: string;
|
|
1314
|
-
transfer_to?: string;
|
|
1315
|
-
has_children?: boolean;
|
|
1316
|
-
agent_description?: string;
|
|
1317
|
-
hold?: EngineCallHold[];
|
|
1318
|
-
annotations?: EngineCallAnnotation[];
|
|
1319
|
-
amd_result?: string;
|
|
1320
|
-
hangup_disposition?: string;
|
|
1321
|
-
blind_transfer?: string;
|
|
1322
|
-
files_job?: EngineHistoryFileJob[];
|
|
1323
|
-
transcripts?: EngineTranscriptLookup[];
|
|
1324
|
-
talk_sec?: number;
|
|
1325
|
-
grantee?: EngineLookup;
|
|
1326
|
-
amd_ai_result?: string;
|
|
1327
|
-
amd_ai_logs?: string[];
|
|
1328
|
-
rate_id?: string;
|
|
1329
|
-
rated_user?: EngineLookup;
|
|
1330
|
-
rated_by?: EngineLookup;
|
|
1331
|
-
score_optional?: number;
|
|
1332
|
-
score_required?: number;
|
|
1333
|
-
attempt_id?: string;
|
|
1334
|
-
allow_evaluation?: boolean;
|
|
1335
|
-
form_fields?: EngineHistoryCallFormFields;
|
|
1336
|
-
bridged_id?: string;
|
|
1337
|
-
contact?: EngineLookup;
|
|
1338
|
-
member_id?: string;
|
|
1339
|
-
schemas?: EngineLookup[];
|
|
1340
|
-
hangup_phrase?: string;
|
|
1341
|
-
blind_transfers?: HistoryCallBlindTransfer[];
|
|
1342
|
-
from_number?: string;
|
|
1343
|
-
to_number?: string;
|
|
1344
|
-
}
|
|
1345
|
-
export interface EngineHistoryFileJob {
|
|
1346
|
-
id?: string;
|
|
1347
|
-
file_id?: string;
|
|
1348
|
-
created_at?: string;
|
|
1349
|
-
action?: HistoryFileJobHistoryFileJobAction;
|
|
1350
|
-
state?: HistoryFileJobHistoryFileJobState;
|
|
1351
|
-
error_detail?: string;
|
|
1352
|
-
}
|
|
1353
|
-
export interface EngineHoldCallResponse {
|
|
1354
|
-
state?: string;
|
|
1355
|
-
}
|
|
1356
|
-
export interface EngineList {
|
|
1357
|
-
id?: string;
|
|
1358
|
-
created_at?: string;
|
|
1359
|
-
created_by?: EngineLookup;
|
|
1360
|
-
updated_at?: string;
|
|
1361
|
-
updated_by?: EngineLookup;
|
|
1362
|
-
domain_id?: string;
|
|
1363
|
-
name?: string;
|
|
1364
|
-
description?: string;
|
|
1365
|
-
count?: string;
|
|
1366
|
-
}
|
|
1367
|
-
export interface EngineListAgent {
|
|
1368
|
-
next?: boolean;
|
|
1369
|
-
items?: EngineAgent[];
|
|
1370
|
-
}
|
|
1371
|
-
export interface EngineListAgentInQueue {
|
|
1372
|
-
next?: boolean;
|
|
1373
|
-
items?: EngineAgentInQueue[];
|
|
1374
|
-
}
|
|
1375
|
-
export interface EngineListAgentInTeam {
|
|
1376
|
-
next?: boolean;
|
|
1377
|
-
items?: EngineAgentInTeam[];
|
|
1378
|
-
}
|
|
1379
|
-
export interface EngineListAgentPauseCause {
|
|
1380
|
-
next?: boolean;
|
|
1381
|
-
items?: EngineAgentPauseCause[];
|
|
1382
|
-
}
|
|
1383
|
-
export interface EngineListAgentSkill {
|
|
1384
|
-
next?: boolean;
|
|
1385
|
-
items?: EngineAgentSkillItem[];
|
|
1386
|
-
}
|
|
1387
|
-
export interface EngineListAgentStateHistory {
|
|
1388
|
-
next?: boolean;
|
|
1389
|
-
items?: EngineAgentState[];
|
|
1390
|
-
}
|
|
1391
|
-
export interface EngineListAgentStatsStatistic {
|
|
1392
|
-
next?: boolean;
|
|
1393
|
-
items?: EngineAgentStatsStatistic[];
|
|
1394
|
-
}
|
|
1395
|
-
export interface EngineListAgentTeam {
|
|
1396
|
-
next?: boolean;
|
|
1397
|
-
items?: EngineAgentTeam[];
|
|
1398
|
-
}
|
|
1399
|
-
export interface EngineListAgentUser {
|
|
1400
|
-
next?: boolean;
|
|
1401
|
-
items?: EngineAgentUser[];
|
|
1402
|
-
}
|
|
1403
|
-
export interface EngineListAggregate {
|
|
1404
|
-
items?: EngineAggregateResult[];
|
|
1405
|
-
}
|
|
1406
|
-
export interface EngineListAttempt {
|
|
1407
|
-
next?: boolean;
|
|
1408
|
-
items?: EngineAttempt[];
|
|
1409
|
-
}
|
|
1410
|
-
export interface EngineListAuditForm {
|
|
1411
|
-
next?: boolean;
|
|
1412
|
-
items?: EngineAuditForm[];
|
|
1413
|
-
}
|
|
1414
|
-
export interface EngineListAuditRate {
|
|
1415
|
-
next?: boolean;
|
|
1416
|
-
items?: EngineAuditRate[];
|
|
1417
|
-
}
|
|
1418
|
-
export interface EngineListAvailableSystemSetting {
|
|
1419
|
-
next?: boolean;
|
|
1420
|
-
items?: EngineAvailableSystemSetting[];
|
|
1421
|
-
}
|
|
1422
|
-
export interface EngineListBucket {
|
|
1423
|
-
next?: boolean;
|
|
1424
|
-
items?: EngineBucket[];
|
|
1425
|
-
}
|
|
1426
|
-
export interface EngineListCalendar {
|
|
1427
|
-
next?: boolean;
|
|
1428
|
-
items?: EngineCalendar[];
|
|
1429
|
-
}
|
|
1430
|
-
export interface EngineListCall {
|
|
1431
|
-
next?: boolean;
|
|
1432
|
-
items?: EngineActiveCall[];
|
|
1433
|
-
}
|
|
1434
|
-
export interface EngineListChatPlan {
|
|
1435
|
-
next?: boolean;
|
|
1436
|
-
items?: EngineChatPlan[];
|
|
1437
|
-
}
|
|
1438
|
-
export interface EngineListCommunication {
|
|
1439
|
-
id?: string;
|
|
1440
|
-
list_id?: string;
|
|
1441
|
-
number?: string;
|
|
1442
|
-
description?: string;
|
|
1443
|
-
expire_at?: string;
|
|
1444
|
-
}
|
|
1445
|
-
export interface EngineListCommunicationType {
|
|
1446
|
-
next?: boolean;
|
|
1447
|
-
items?: EngineCommunicationType[];
|
|
1448
|
-
}
|
|
1449
|
-
export interface EngineListEmailProfile {
|
|
1450
|
-
next?: boolean;
|
|
1451
|
-
items?: EngineEmailProfile[];
|
|
1452
|
-
}
|
|
1453
|
-
export interface EngineListHistoryAttempt {
|
|
1454
|
-
next?: boolean;
|
|
1455
|
-
items?: EngineAttemptHistory[];
|
|
1456
|
-
}
|
|
1457
|
-
export interface EngineListHistoryCall {
|
|
1458
|
-
next?: boolean;
|
|
1459
|
-
items?: EngineHistoryCall[];
|
|
1460
|
-
}
|
|
1461
|
-
export interface EngineListMember {
|
|
1462
|
-
next?: boolean;
|
|
1463
|
-
items?: EngineMemberInQueue[];
|
|
1464
|
-
}
|
|
1465
|
-
export interface EngineListMemberAttempt {
|
|
1466
|
-
next?: boolean;
|
|
1467
|
-
items?: EngineMemberAttempt[];
|
|
1468
|
-
}
|
|
1469
|
-
export interface EngineListOfList {
|
|
1470
|
-
next?: boolean;
|
|
1471
|
-
items?: EngineList[];
|
|
1472
|
-
}
|
|
1473
|
-
export interface EngineListOfListCommunication {
|
|
1474
|
-
next?: boolean;
|
|
1475
|
-
items?: EngineListCommunication[];
|
|
1476
|
-
}
|
|
1477
|
-
export interface EngineListOutboundResource {
|
|
1478
|
-
next?: boolean;
|
|
1479
|
-
items?: EngineOutboundResource[];
|
|
1480
|
-
}
|
|
1481
|
-
export interface EngineListOutboundResourceDisplay {
|
|
1482
|
-
next?: boolean;
|
|
1483
|
-
items?: EngineResourceDisplay[];
|
|
1484
|
-
}
|
|
1485
|
-
export interface EngineListOutboundResourceGroup {
|
|
1486
|
-
next?: boolean;
|
|
1487
|
-
items?: EngineOutboundResourceViewGroup[];
|
|
1488
|
-
}
|
|
1489
|
-
export interface EngineListOutboundResourceInGroup {
|
|
1490
|
-
next?: boolean;
|
|
1491
|
-
items?: EngineOutboundResourceInGroup[];
|
|
1492
|
-
}
|
|
1493
|
-
export interface EngineListPresetQuery {
|
|
1494
|
-
next?: boolean;
|
|
1495
|
-
items?: EnginePresetQuery[];
|
|
1496
|
-
}
|
|
1497
|
-
export interface EngineListQueue {
|
|
1498
|
-
next?: boolean;
|
|
1499
|
-
items?: EngineQueue[];
|
|
1500
|
-
}
|
|
1501
|
-
export interface EngineListQueueBucket {
|
|
1502
|
-
next?: boolean;
|
|
1503
|
-
items?: EngineQueueBucket[];
|
|
1504
|
-
}
|
|
1505
|
-
export interface EngineListQueueHook {
|
|
1506
|
-
next?: boolean;
|
|
1507
|
-
items?: EngineQueueHook[];
|
|
1508
|
-
}
|
|
1509
|
-
export interface EngineListQueueResourceGroup {
|
|
1510
|
-
next?: boolean;
|
|
1511
|
-
items?: EngineQueueResourceGroup[];
|
|
1512
|
-
}
|
|
1513
|
-
export interface EngineListQueueSkill {
|
|
1514
|
-
next?: boolean;
|
|
1515
|
-
items?: EngineQueueSkill[];
|
|
1516
|
-
}
|
|
1517
|
-
export interface EngineListQuickReplies {
|
|
1518
|
-
next?: boolean;
|
|
1519
|
-
items?: EngineQuickReply[];
|
|
1520
|
-
}
|
|
1521
|
-
export interface EngineListRegion {
|
|
1522
|
-
next?: boolean;
|
|
1523
|
-
items?: EngineRegion[];
|
|
1524
|
-
}
|
|
1525
|
-
export interface EngineListReportGeneral {
|
|
1526
|
-
next?: boolean;
|
|
1527
|
-
items?: EngineQueueReportGeneral[];
|
|
1528
|
-
aggs?: EngineQueueReportGeneralAgentStatus;
|
|
1529
|
-
}
|
|
1530
|
-
export interface EngineListResourceDisplay {
|
|
1531
|
-
id?: string[];
|
|
1532
|
-
}
|
|
1533
|
-
export interface EngineListRoutingOutboundCall {
|
|
1534
|
-
next?: boolean;
|
|
1535
|
-
items?: EngineRoutingOutboundCallCompact[];
|
|
1536
|
-
}
|
|
1537
|
-
export interface EngineListRoutingSchema {
|
|
1538
|
-
next?: boolean;
|
|
1539
|
-
items?: EngineRoutingSchema[];
|
|
1540
|
-
}
|
|
1541
|
-
export interface EngineListRoutingSchemaTags {
|
|
1542
|
-
next?: boolean;
|
|
1543
|
-
items?: EngineRoutingSchemaTag[];
|
|
1544
|
-
}
|
|
1545
|
-
export interface EngineListRoutingVariable {
|
|
1546
|
-
items?: EngineRoutingVariable[];
|
|
1547
|
-
}
|
|
1548
|
-
export interface EngineListSchemaVariable {
|
|
1549
|
-
next?: boolean;
|
|
1550
|
-
items?: EngineSchemaVariable[];
|
|
1551
|
-
}
|
|
1552
|
-
export interface EngineListSkill {
|
|
1553
|
-
next?: boolean;
|
|
1554
|
-
items?: EngineSkill[];
|
|
1555
|
-
}
|
|
1556
|
-
export interface EngineListSkillAgent {
|
|
1557
|
-
next?: boolean;
|
|
1558
|
-
items?: EngineSkillAgentItem[];
|
|
1559
|
-
aggs?: ListSkillAgentListSkillAgg;
|
|
1560
|
-
}
|
|
1561
|
-
export interface EngineListSystemSetting {
|
|
1562
|
-
next?: boolean;
|
|
1563
|
-
items?: EngineSystemSetting[];
|
|
1564
|
-
}
|
|
1565
|
-
export interface EngineListTags {
|
|
1566
|
-
next?: boolean;
|
|
1567
|
-
items?: EngineTag[];
|
|
1568
|
-
}
|
|
1569
|
-
export interface EngineListTeamHook {
|
|
1570
|
-
next?: boolean;
|
|
1571
|
-
items?: EngineTeamHook[];
|
|
1572
|
-
}
|
|
1573
|
-
export interface EngineListTeamTrigger {
|
|
1574
|
-
next?: boolean;
|
|
1575
|
-
items?: EngineTeamTrigger[];
|
|
1576
|
-
}
|
|
1577
|
-
export interface EngineListTimezoneResponse {
|
|
1578
|
-
next?: boolean;
|
|
1579
|
-
items?: EngineTimezone[];
|
|
1580
|
-
}
|
|
1581
|
-
export interface EngineListTrigger {
|
|
1582
|
-
next?: boolean;
|
|
1583
|
-
items?: EngineTrigger[];
|
|
1584
|
-
}
|
|
1585
|
-
export interface EngineListTriggerJob {
|
|
1586
|
-
next?: boolean;
|
|
1587
|
-
items?: EngineTriggerJob[];
|
|
1588
|
-
}
|
|
1589
|
-
export interface EngineListUserStatus {
|
|
1590
|
-
items?: EngineUserStatus[];
|
|
1591
|
-
next?: boolean;
|
|
1592
|
-
}
|
|
1593
|
-
export interface EngineListWebHook {
|
|
1594
|
-
next?: boolean;
|
|
1595
|
-
items?: EngineWebHook[];
|
|
1596
|
-
}
|
|
1597
|
-
export type EngineLoginEmailProfileResponseCookie = {
|
|
1598
|
-
[key: string]: string;
|
|
1599
|
-
};
|
|
1600
|
-
export interface EngineLoginEmailProfileResponse {
|
|
1601
|
-
auth_type?: EngineEmailAuthType;
|
|
1602
|
-
redirect_url?: string;
|
|
1603
|
-
cookie?: EngineLoginEmailProfileResponseCookie;
|
|
1604
|
-
}
|
|
1605
|
-
export interface EngineLogoutEmailProfileResponse {
|
|
1606
|
-
[key: string]: unknown;
|
|
1607
|
-
}
|
|
1608
|
-
export interface EngineLookup {
|
|
1609
|
-
id?: string;
|
|
1610
|
-
name?: string;
|
|
1611
|
-
}
|
|
1612
|
-
export type EngineMemberAttemptLogs = {
|
|
1613
|
-
[key: string]: unknown;
|
|
1614
|
-
};
|
|
1615
|
-
export interface EngineMemberAttempt {
|
|
1616
|
-
id?: string;
|
|
1617
|
-
member?: EngineLookup;
|
|
1618
|
-
created_at?: string;
|
|
1619
|
-
destination?: string;
|
|
1620
|
-
weight?: number;
|
|
1621
|
-
originate_at?: string;
|
|
1622
|
-
answered_at?: string;
|
|
1623
|
-
bridged_at?: string;
|
|
1624
|
-
hangup_at?: string;
|
|
1625
|
-
resource?: EngineLookup;
|
|
1626
|
-
leg_a_id?: string;
|
|
1627
|
-
leg_b_id?: string;
|
|
1628
|
-
node?: string;
|
|
1629
|
-
result?: string;
|
|
1630
|
-
agent?: EngineLookup;
|
|
1631
|
-
bucket?: EngineLookup;
|
|
1632
|
-
logs?: EngineMemberAttemptLogs;
|
|
1633
|
-
active?: boolean;
|
|
1634
|
-
attempts?: number;
|
|
1635
|
-
}
|
|
1636
|
-
export interface EngineMemberBulkResponse {
|
|
1637
|
-
ids?: string[];
|
|
1638
|
-
}
|
|
1639
|
-
export interface EngineMemberCommunication {
|
|
1640
|
-
id?: string;
|
|
1641
|
-
destination?: string;
|
|
1642
|
-
type?: EngineLookup;
|
|
1643
|
-
priority?: number;
|
|
1644
|
-
description?: string;
|
|
1645
|
-
resource?: EngineLookup;
|
|
1646
|
-
display?: string;
|
|
1647
|
-
state?: number;
|
|
1648
|
-
last_activity_at?: string;
|
|
1649
|
-
attempts?: number;
|
|
1650
|
-
last_cause?: string;
|
|
1651
|
-
stop_at?: string;
|
|
1652
|
-
dtmf?: string;
|
|
1653
|
-
}
|
|
1654
|
-
export interface EngineMemberCommunicationCreateRequest {
|
|
1655
|
-
destination?: string;
|
|
1656
|
-
type?: EngineLookup;
|
|
1657
|
-
priority?: number;
|
|
1658
|
-
description?: string;
|
|
1659
|
-
resource?: EngineLookup;
|
|
1660
|
-
display?: string;
|
|
1661
|
-
stop_at?: string;
|
|
1662
|
-
dtmf?: string;
|
|
1663
|
-
}
|
|
1664
|
-
export type EngineMemberInQueueVariables = {
|
|
1665
|
-
[key: string]: string;
|
|
1666
|
-
};
|
|
1667
|
-
export interface EngineMemberInQueue {
|
|
1668
|
-
id?: string;
|
|
1669
|
-
queue?: EngineLookup;
|
|
1670
|
-
priority?: number;
|
|
1671
|
-
expire_at?: string;
|
|
1672
|
-
created_at?: string;
|
|
1673
|
-
variables?: EngineMemberInQueueVariables;
|
|
1674
|
-
name?: string;
|
|
1675
|
-
timezone?: EngineLookup;
|
|
1676
|
-
communications?: EngineMemberCommunication[];
|
|
1677
|
-
bucket?: EngineLookup;
|
|
1678
|
-
min_offering_at?: string;
|
|
1679
|
-
stop_cause?: string;
|
|
1680
|
-
last_activity_at?: string;
|
|
1681
|
-
attempts?: number;
|
|
1682
|
-
reserved?: boolean;
|
|
1683
|
-
agent?: EngineLookup;
|
|
1684
|
-
skill?: EngineLookup;
|
|
1685
|
-
}
|
|
1686
|
-
export interface EngineMovePositionRoutingOutboundCallRequest {
|
|
1687
|
-
from_id?: string;
|
|
1688
|
-
to_id?: string;
|
|
1689
|
-
domain_id?: string;
|
|
1690
|
-
}
|
|
1691
|
-
export interface EngineMovePositionRoutingOutboundCallResponse {
|
|
1692
|
-
success?: boolean;
|
|
1693
|
-
}
|
|
1694
|
-
export type EngineOutboundResourceVariables = {
|
|
1695
|
-
[key: string]: string;
|
|
1696
|
-
};
|
|
1697
|
-
export interface EngineOutboundResource {
|
|
1698
|
-
id?: string;
|
|
1699
|
-
domain_id?: string;
|
|
1700
|
-
created_at?: string;
|
|
1701
|
-
created_by?: EngineLookup;
|
|
1702
|
-
updated_at?: string;
|
|
1703
|
-
updated_by?: EngineLookup;
|
|
1704
|
-
limit?: number;
|
|
1705
|
-
enabled?: boolean;
|
|
1706
|
-
rps?: number;
|
|
1707
|
-
reserve?: boolean;
|
|
1708
|
-
variables?: EngineOutboundResourceVariables;
|
|
1709
|
-
number?: string;
|
|
1710
|
-
max_successively_errors?: number;
|
|
1711
|
-
name?: string;
|
|
1712
|
-
error_ids?: string[];
|
|
1713
|
-
last_error_id?: string;
|
|
1714
|
-
successively_errors?: number;
|
|
1715
|
-
last_error_at?: string;
|
|
1716
|
-
gateway?: EngineLookup;
|
|
1717
|
-
description?: string;
|
|
1718
|
-
patterns?: string[];
|
|
1719
|
-
failure_dial_delay?: number;
|
|
1720
|
-
parameters?: EngineOutboundResourceParameters;
|
|
1721
|
-
}
|
|
1722
|
-
export interface EngineOutboundResourceGroup {
|
|
1723
|
-
id?: string;
|
|
1724
|
-
domain_id?: string;
|
|
1725
|
-
created_at?: string;
|
|
1726
|
-
created_by?: EngineLookup;
|
|
1727
|
-
updated_at?: string;
|
|
1728
|
-
updated_by?: EngineLookup;
|
|
1729
|
-
name?: string;
|
|
1730
|
-
strategy?: string;
|
|
1731
|
-
description?: string;
|
|
1732
|
-
communication?: EngineLookup;
|
|
1733
|
-
time?: EngineOutboundResourceTimeRange[];
|
|
1734
|
-
}
|
|
1735
|
-
export interface EngineOutboundResourceInGroup {
|
|
1736
|
-
id?: string;
|
|
1737
|
-
group_id?: string;
|
|
1738
|
-
resource?: EngineLookup;
|
|
1739
|
-
reserve_resource?: EngineLookup;
|
|
1740
|
-
priority?: number;
|
|
1741
|
-
}
|
|
1742
|
-
export interface EngineOutboundResourceParameters {
|
|
1743
|
-
cid_type?: string;
|
|
1744
|
-
ignore_early_media?: string;
|
|
1745
|
-
}
|
|
1746
|
-
export interface EngineOutboundResourceTimeRange {
|
|
1747
|
-
start_time_of_day?: number;
|
|
1748
|
-
end_time_of_day?: number;
|
|
1749
|
-
}
|
|
1750
|
-
export interface EngineOutboundResourceViewGroup {
|
|
1751
|
-
id?: string;
|
|
1752
|
-
name?: string;
|
|
1753
|
-
strategy?: string;
|
|
1754
|
-
description?: string;
|
|
1755
|
-
communication?: EngineLookup;
|
|
1756
|
-
}
|
|
1757
|
-
export interface EnginePatchAgentPauseCauseRequest {
|
|
1758
|
-
id?: number;
|
|
1759
|
-
fields?: string[];
|
|
1760
|
-
name?: string;
|
|
1761
|
-
limit_min?: number;
|
|
1762
|
-
allow_supervisor?: boolean;
|
|
1763
|
-
allow_agent?: boolean;
|
|
1764
|
-
allow_admin?: boolean;
|
|
1765
|
-
description?: string;
|
|
1766
|
-
}
|
|
1767
|
-
export interface EnginePatchAgentRequest {
|
|
1768
|
-
fields?: string[];
|
|
1769
|
-
id?: string;
|
|
1770
|
-
user?: EngineLookup;
|
|
1771
|
-
description?: string;
|
|
1772
|
-
progressive_count?: number;
|
|
1773
|
-
greeting_media?: EngineLookup;
|
|
1774
|
-
allow_channels?: string[];
|
|
1775
|
-
chat_count?: number;
|
|
1776
|
-
supervisor?: EngineLookup[];
|
|
1777
|
-
team?: EngineLookup;
|
|
1778
|
-
region?: EngineLookup;
|
|
1779
|
-
auditor?: EngineLookup[];
|
|
1780
|
-
is_supervisor?: boolean;
|
|
1781
|
-
}
|
|
1782
|
-
export interface EnginePatchAgentSkillRequest {
|
|
1783
|
-
id?: string;
|
|
1784
|
-
agent_id?: string;
|
|
1785
|
-
fields?: string[];
|
|
1786
|
-
skill?: EngineLookup;
|
|
1787
|
-
capacity?: number;
|
|
1788
|
-
domain_id?: string;
|
|
1789
|
-
enabled?: boolean;
|
|
1790
|
-
}
|
|
1791
|
-
export interface EnginePatchAgentSkillsRequest {
|
|
1792
|
-
agent_id?: string;
|
|
1793
|
-
fields?: string[];
|
|
1794
|
-
id?: string[];
|
|
1795
|
-
skill_id?: string[];
|
|
1796
|
-
capacity?: number;
|
|
1797
|
-
enabled?: boolean;
|
|
1798
|
-
}
|
|
1799
|
-
export interface EnginePatchAuditFormRequest {
|
|
1800
|
-
id?: number;
|
|
1801
|
-
fields?: string[];
|
|
1802
|
-
name?: string;
|
|
1803
|
-
description?: string;
|
|
1804
|
-
enabled?: boolean;
|
|
1805
|
-
questions?: EngineQuestion[];
|
|
1806
|
-
teams?: EngineLookup[];
|
|
1807
|
-
}
|
|
1808
|
-
export interface EnginePatchChatPlanRequest {
|
|
1809
|
-
id?: number;
|
|
1810
|
-
name?: string;
|
|
1811
|
-
description?: string;
|
|
1812
|
-
schema?: EngineLookup;
|
|
1813
|
-
enabled?: boolean;
|
|
1814
|
-
fields?: string[];
|
|
1815
|
-
}
|
|
1816
|
-
export interface EnginePatchCommunicationTypeRequest {
|
|
1817
|
-
fields?: string[];
|
|
1818
|
-
id?: string;
|
|
1819
|
-
name?: string;
|
|
1820
|
-
description?: string;
|
|
1821
|
-
code?: string;
|
|
1822
|
-
channel?: EngineCommunicationChannels;
|
|
1823
|
-
default?: boolean;
|
|
1824
|
-
}
|
|
1825
|
-
export interface EnginePatchEmailProfileRequest {
|
|
1826
|
-
id?: string;
|
|
1827
|
-
name?: string;
|
|
1828
|
-
description?: string;
|
|
1829
|
-
schema?: EngineLookup;
|
|
1830
|
-
enabled?: boolean;
|
|
1831
|
-
imap_host?: string;
|
|
1832
|
-
login?: string;
|
|
1833
|
-
mailbox?: string;
|
|
1834
|
-
smtp_port?: number;
|
|
1835
|
-
imap_port?: number;
|
|
1836
|
-
password?: string;
|
|
1837
|
-
smtp_host?: string;
|
|
1838
|
-
fetch_interval?: number;
|
|
1839
|
-
listen?: boolean;
|
|
1840
|
-
fields?: string[];
|
|
1841
|
-
}
|
|
1842
|
-
export type EnginePatchHistoryCallRequestVariables = {
|
|
1843
|
-
[key: string]: string;
|
|
1844
|
-
};
|
|
1845
|
-
export interface EnginePatchHistoryCallRequest {
|
|
1846
|
-
id?: string;
|
|
1847
|
-
variables?: EnginePatchHistoryCallRequestVariables;
|
|
1848
|
-
hide_missed?: boolean;
|
|
1849
|
-
}
|
|
1850
|
-
export type EnginePatchMemberOneRequestVariables = {
|
|
1851
|
-
[key: string]: string;
|
|
1852
|
-
};
|
|
1853
|
-
export interface EnginePatchMemberOneRequest {
|
|
1854
|
-
id?: string;
|
|
1855
|
-
priority?: number;
|
|
1856
|
-
expire_at?: string;
|
|
1857
|
-
variables?: EnginePatchMemberOneRequestVariables;
|
|
1858
|
-
name?: string;
|
|
1859
|
-
timezone?: EngineLookup;
|
|
1860
|
-
communications?: EngineMemberCommunicationCreateRequest[];
|
|
1861
|
-
bucket?: EngineLookup;
|
|
1862
|
-
min_offering_at?: string;
|
|
1863
|
-
stop_cause?: string;
|
|
1864
|
-
fields?: string[];
|
|
1865
|
-
domain_id?: string;
|
|
1866
|
-
agent?: EngineLookup;
|
|
1867
|
-
skill?: EngineLookup;
|
|
1868
|
-
attempts?: number;
|
|
1869
|
-
}
|
|
1870
|
-
export type EnginePatchMemberRequestVariables = {
|
|
1871
|
-
[key: string]: string;
|
|
1872
|
-
};
|
|
1873
|
-
export interface EnginePatchMemberRequest {
|
|
1874
|
-
id?: string;
|
|
1875
|
-
queue_id?: string;
|
|
1876
|
-
priority?: number;
|
|
1877
|
-
expire_at?: string;
|
|
1878
|
-
variables?: EnginePatchMemberRequestVariables;
|
|
1879
|
-
name?: string;
|
|
1880
|
-
timezone?: EngineLookup;
|
|
1881
|
-
communications?: EngineMemberCommunicationCreateRequest[];
|
|
1882
|
-
bucket?: EngineLookup;
|
|
1883
|
-
min_offering_at?: string;
|
|
1884
|
-
stop_cause?: string;
|
|
1885
|
-
fields?: string[];
|
|
1886
|
-
domain_id?: string;
|
|
1887
|
-
agent?: EngineLookup;
|
|
1888
|
-
skill?: EngineLookup;
|
|
1889
|
-
attempts?: number;
|
|
1890
|
-
}
|
|
1891
|
-
export type EnginePatchOutboundResourceRequestVariables = {
|
|
1892
|
-
[key: string]: string;
|
|
1893
|
-
};
|
|
1894
|
-
export interface EnginePatchOutboundResourceRequest {
|
|
1895
|
-
id?: string;
|
|
1896
|
-
limit?: number;
|
|
1897
|
-
enabled?: boolean;
|
|
1898
|
-
rps?: number;
|
|
1899
|
-
reserve?: boolean;
|
|
1900
|
-
variables?: EnginePatchOutboundResourceRequestVariables;
|
|
1901
|
-
number?: string;
|
|
1902
|
-
max_successively_errors?: number;
|
|
1903
|
-
name?: string;
|
|
1904
|
-
error_ids?: string[];
|
|
1905
|
-
fields?: string[];
|
|
1906
|
-
gateway?: EngineLookup;
|
|
1907
|
-
description?: string;
|
|
1908
|
-
patterns?: string[];
|
|
1909
|
-
failure_dial_delay?: number;
|
|
1910
|
-
parameters?: EngineOutboundResourceParameters;
|
|
1911
|
-
}
|
|
1912
|
-
export type EnginePatchPresetQueryRequestPreset = {
|
|
1913
|
-
[key: string]: unknown;
|
|
1914
|
-
};
|
|
1915
|
-
export interface EnginePatchPresetQueryRequest {
|
|
1916
|
-
id?: number;
|
|
1917
|
-
fields?: string[];
|
|
1918
|
-
name?: string;
|
|
1919
|
-
description?: string;
|
|
1920
|
-
preset?: EnginePatchPresetQueryRequestPreset;
|
|
1921
|
-
section?: string;
|
|
1922
|
-
}
|
|
1923
|
-
export interface EnginePatchQueueBucketRequest {
|
|
1924
|
-
id?: string;
|
|
1925
|
-
queue_id?: string;
|
|
1926
|
-
ratio?: number;
|
|
1927
|
-
bucket?: EngineLookup;
|
|
1928
|
-
disabled?: boolean;
|
|
1929
|
-
priority?: number;
|
|
1930
|
-
fields?: string[];
|
|
1931
|
-
}
|
|
1932
|
-
export interface EnginePatchQueueHookRequest {
|
|
1933
|
-
fields?: string[];
|
|
1934
|
-
queue_id?: number;
|
|
1935
|
-
id?: number;
|
|
1936
|
-
schema?: EngineLookup;
|
|
1937
|
-
event?: string;
|
|
1938
|
-
enabled?: boolean;
|
|
1939
|
-
properties?: string[];
|
|
1940
|
-
}
|
|
1941
|
-
export type EnginePatchQueueRequestPayload = {
|
|
1942
|
-
[key: string]: unknown;
|
|
1943
|
-
};
|
|
1944
|
-
export type EnginePatchQueueRequestVariables = {
|
|
1945
|
-
[key: string]: string;
|
|
1946
|
-
};
|
|
1947
|
-
export interface EnginePatchQueueRequest {
|
|
1948
|
-
id?: string;
|
|
1949
|
-
strategy?: string;
|
|
1950
|
-
enabled?: boolean;
|
|
1951
|
-
payload?: EnginePatchQueueRequestPayload;
|
|
1952
|
-
calendar?: EngineLookup;
|
|
1953
|
-
priority?: number;
|
|
1954
|
-
name?: string;
|
|
1955
|
-
variables?: EnginePatchQueueRequestVariables;
|
|
1956
|
-
timeout?: number;
|
|
1957
|
-
dnc_list?: EngineLookup;
|
|
1958
|
-
sec_locate_agent?: number;
|
|
1959
|
-
type?: number;
|
|
1960
|
-
team?: EngineLookup;
|
|
1961
|
-
description?: string;
|
|
1962
|
-
schema?: EngineLookup;
|
|
1963
|
-
ringtone?: EngineLookup;
|
|
1964
|
-
fields?: string[];
|
|
1965
|
-
domain_id?: string;
|
|
1966
|
-
do_schema?: EngineLookup;
|
|
1967
|
-
after_schema?: EngineLookup;
|
|
1968
|
-
sticky_agent?: boolean;
|
|
1969
|
-
processing?: boolean;
|
|
1970
|
-
processing_sec?: number;
|
|
1971
|
-
processing_renewal_sec?: number;
|
|
1972
|
-
form_schema?: EngineLookup;
|
|
1973
|
-
task_processing?: EngineTaskProcessing;
|
|
1974
|
-
grantee?: EngineLookup;
|
|
1975
|
-
tags?: EngineTag[];
|
|
1976
|
-
}
|
|
1977
|
-
export interface EnginePatchQueueSkillRequest {
|
|
1978
|
-
queue_id?: number;
|
|
1979
|
-
id?: number;
|
|
1980
|
-
skill?: EngineLookup;
|
|
1981
|
-
buckets?: EngineLookup[];
|
|
1982
|
-
lvl?: number;
|
|
1983
|
-
min_capacity?: number;
|
|
1984
|
-
max_capacity?: number;
|
|
1985
|
-
enabled?: boolean;
|
|
1986
|
-
fields?: string[];
|
|
1987
|
-
}
|
|
1988
|
-
export interface EnginePatchQuickReplyRequest {
|
|
1989
|
-
id?: number;
|
|
1990
|
-
fields?: string[];
|
|
1991
|
-
name?: string;
|
|
1992
|
-
text?: string;
|
|
1993
|
-
teams?: EngineLookup[];
|
|
1994
|
-
article?: EngineLookup;
|
|
1995
|
-
queues?: EngineLookup[];
|
|
1996
|
-
}
|
|
1997
|
-
export interface EnginePatchRegionRequest {
|
|
1998
|
-
fields?: string[];
|
|
1999
|
-
id?: string;
|
|
2000
|
-
name?: string;
|
|
2001
|
-
description?: string;
|
|
2002
|
-
timezone?: EngineLookup;
|
|
2003
|
-
}
|
|
2004
|
-
export interface EnginePatchRoutingOutboundCallRequest {
|
|
2005
|
-
id?: string;
|
|
2006
|
-
name?: string;
|
|
2007
|
-
description?: string;
|
|
2008
|
-
schema?: EngineLookup;
|
|
2009
|
-
pattern?: string;
|
|
2010
|
-
disabled?: boolean;
|
|
2011
|
-
fields?: string[];
|
|
2012
|
-
domain_id?: string;
|
|
2013
|
-
}
|
|
2014
|
-
export type EnginePatchRoutingSchemaRequestSchema = {
|
|
2015
|
-
[key: string]: unknown;
|
|
2016
|
-
};
|
|
2017
|
-
export type EnginePatchRoutingSchemaRequestPayload = {
|
|
2018
|
-
[key: string]: unknown;
|
|
2019
|
-
};
|
|
2020
|
-
export interface EnginePatchRoutingSchemaRequest {
|
|
2021
|
-
id?: string;
|
|
2022
|
-
name?: string;
|
|
2023
|
-
description?: string;
|
|
2024
|
-
type?: EngineRoutingSchemaType;
|
|
2025
|
-
schema?: EnginePatchRoutingSchemaRequestSchema;
|
|
2026
|
-
payload?: EnginePatchRoutingSchemaRequestPayload;
|
|
2027
|
-
debug?: boolean;
|
|
2028
|
-
fields?: string[];
|
|
2029
|
-
editor?: boolean;
|
|
2030
|
-
tags?: EngineSchemaTag[];
|
|
2031
|
-
note?: string;
|
|
2032
|
-
}
|
|
2033
|
-
export type EnginePatchSchemaVariableRequestValue = {
|
|
2034
|
-
[key: string]: unknown;
|
|
2035
|
-
};
|
|
2036
|
-
export interface EnginePatchSchemaVariableRequest {
|
|
2037
|
-
id?: number;
|
|
2038
|
-
fields?: string[];
|
|
2039
|
-
name?: string;
|
|
2040
|
-
value?: EnginePatchSchemaVariableRequestValue;
|
|
2041
|
-
encrypt?: boolean;
|
|
2042
|
-
}
|
|
2043
|
-
export interface EnginePatchSkillAgentRequest {
|
|
2044
|
-
skill_id?: string;
|
|
2045
|
-
fields?: string[];
|
|
2046
|
-
skill?: EngineLookup;
|
|
2047
|
-
capacity?: number;
|
|
2048
|
-
enabled?: boolean;
|
|
2049
|
-
id?: string[];
|
|
2050
|
-
agent_id?: string[];
|
|
2051
|
-
}
|
|
2052
|
-
export interface EnginePatchSkillAgentResponse {
|
|
2053
|
-
items?: EngineSkillAgentItem[];
|
|
2054
|
-
}
|
|
2055
|
-
export type EnginePatchSystemSettingRequestValue = {
|
|
2056
|
-
[key: string]: unknown;
|
|
2057
|
-
};
|
|
2058
|
-
export interface EnginePatchSystemSettingRequest {
|
|
2059
|
-
fields?: string[];
|
|
2060
|
-
id?: number;
|
|
2061
|
-
value?: EnginePatchSystemSettingRequestValue;
|
|
2062
|
-
}
|
|
2063
|
-
export interface EnginePatchTeamHookRequest {
|
|
2064
|
-
fields?: string[];
|
|
2065
|
-
team_id?: string;
|
|
2066
|
-
id?: number;
|
|
2067
|
-
schema?: EngineLookup;
|
|
2068
|
-
event?: EngineTeamHookEvent;
|
|
2069
|
-
enabled?: boolean;
|
|
2070
|
-
properties?: string[];
|
|
2071
|
-
}
|
|
2072
|
-
export interface EnginePatchTeamTriggerRequest {
|
|
2073
|
-
fields?: string[];
|
|
2074
|
-
team_id?: string;
|
|
2075
|
-
id?: number;
|
|
2076
|
-
schema?: EngineLookup;
|
|
2077
|
-
enabled?: boolean;
|
|
2078
|
-
name?: string;
|
|
2079
|
-
description?: string;
|
|
2080
|
-
}
|
|
2081
|
-
export type EnginePatchTriggerRequestVariables = {
|
|
2082
|
-
[key: string]: string;
|
|
2083
|
-
};
|
|
2084
|
-
export interface EnginePatchTriggerRequest {
|
|
2085
|
-
fields?: string[];
|
|
2086
|
-
id?: number;
|
|
2087
|
-
name?: string;
|
|
2088
|
-
enabled?: boolean;
|
|
2089
|
-
type?: EngineTriggerType;
|
|
2090
|
-
schema?: EngineLookup;
|
|
2091
|
-
variables?: EnginePatchTriggerRequestVariables;
|
|
2092
|
-
description?: string;
|
|
2093
|
-
expression?: string;
|
|
2094
|
-
timezone?: EngineLookup;
|
|
2095
|
-
timeout?: number;
|
|
2096
|
-
object?: EngineTriggerObjectType;
|
|
2097
|
-
event?: EngineTriggerEventType;
|
|
2098
|
-
}
|
|
2099
|
-
export interface EnginePatchWebHookRequest {
|
|
2100
|
-
id?: number;
|
|
2101
|
-
fields?: string[];
|
|
2102
|
-
name?: string;
|
|
2103
|
-
description?: string;
|
|
2104
|
-
origin?: string[];
|
|
2105
|
-
schema?: EngineLookup;
|
|
2106
|
-
enabled?: boolean;
|
|
2107
|
-
authorization?: string;
|
|
2108
|
-
}
|
|
2109
|
-
export type EnginePresetQueryPreset = {
|
|
2110
|
-
[key: string]: unknown;
|
|
2111
|
-
};
|
|
2112
|
-
export interface EnginePresetQuery {
|
|
2113
|
-
id?: number;
|
|
2114
|
-
name?: string;
|
|
2115
|
-
description?: string;
|
|
2116
|
-
preset?: EnginePresetQueryPreset;
|
|
2117
|
-
created_at?: string;
|
|
2118
|
-
updated_at?: string;
|
|
2119
|
-
section?: string;
|
|
2120
|
-
}
|
|
2121
|
-
export interface EngineQuestion {
|
|
2122
|
-
type?: EngineAuditQuestionType;
|
|
2123
|
-
required?: boolean;
|
|
2124
|
-
question?: string;
|
|
2125
|
-
min?: number;
|
|
2126
|
-
max?: number;
|
|
2127
|
-
options?: QuestionOption[];
|
|
2128
|
-
description?: string;
|
|
2129
|
-
critical_violation?: boolean;
|
|
2130
|
-
}
|
|
2131
|
-
export interface EngineQuestionAnswer {
|
|
2132
|
-
score?: number;
|
|
2133
|
-
updated_at?: string;
|
|
2134
|
-
updated_by?: EngineLookup;
|
|
2135
|
-
comment?: string;
|
|
2136
|
-
}
|
|
2137
|
-
export type EngineQueuePayload = {
|
|
2138
|
-
[key: string]: unknown;
|
|
2139
|
-
};
|
|
2140
|
-
export type EngineQueueVariables = {
|
|
2141
|
-
[key: string]: string;
|
|
2142
|
-
};
|
|
2143
|
-
export interface EngineQueue {
|
|
2144
|
-
id?: string;
|
|
2145
|
-
domain_id?: string;
|
|
2146
|
-
created_at?: string;
|
|
2147
|
-
created_by?: EngineLookup;
|
|
2148
|
-
updated_at?: string;
|
|
2149
|
-
updated_by?: EngineLookup;
|
|
2150
|
-
strategy?: string;
|
|
2151
|
-
enabled?: boolean;
|
|
2152
|
-
payload?: EngineQueuePayload;
|
|
2153
|
-
calendar?: EngineLookup;
|
|
2154
|
-
priority?: number;
|
|
2155
|
-
name?: string;
|
|
2156
|
-
variables?: EngineQueueVariables;
|
|
2157
|
-
timeout?: number;
|
|
2158
|
-
dnc_list?: EngineLookup;
|
|
2159
|
-
sec_locate_agent?: number;
|
|
2160
|
-
type?: number;
|
|
2161
|
-
description?: string;
|
|
2162
|
-
team?: EngineLookup;
|
|
2163
|
-
schema?: EngineLookup;
|
|
2164
|
-
count?: number;
|
|
2165
|
-
waiting?: number;
|
|
2166
|
-
active?: number;
|
|
2167
|
-
ringtone?: EngineLookup;
|
|
2168
|
-
do_schema?: EngineLookup;
|
|
2169
|
-
after_schema?: EngineLookup;
|
|
2170
|
-
sticky_agent?: boolean;
|
|
2171
|
-
processing?: boolean;
|
|
2172
|
-
processing_sec?: number;
|
|
2173
|
-
processing_renewal_sec?: number;
|
|
2174
|
-
form_schema?: EngineLookup;
|
|
2175
|
-
task_processing?: EngineTaskProcessing;
|
|
2176
|
-
grantee?: EngineLookup;
|
|
2177
|
-
tags?: EngineTag[];
|
|
2178
|
-
}
|
|
2179
|
-
export interface EngineQueueBucket {
|
|
2180
|
-
id?: string;
|
|
2181
|
-
ratio?: number;
|
|
2182
|
-
bucket?: EngineLookup;
|
|
2183
|
-
disabled?: boolean;
|
|
2184
|
-
priority?: number;
|
|
2185
|
-
}
|
|
2186
|
-
export interface EngineQueueHook {
|
|
2187
|
-
id?: number;
|
|
2188
|
-
schema?: EngineLookup;
|
|
2189
|
-
event?: string;
|
|
2190
|
-
enabled?: boolean;
|
|
2191
|
-
properties?: string[];
|
|
2192
|
-
}
|
|
2193
|
-
export interface EngineQueueReportGeneral {
|
|
2194
|
-
queue?: EngineLookup;
|
|
2195
|
-
agent_status?: EngineQueueReportGeneralAgentStatus;
|
|
2196
|
-
team?: EngineLookup;
|
|
2197
|
-
missed?: number;
|
|
2198
|
-
processed?: number;
|
|
2199
|
-
waiting?: number;
|
|
2200
|
-
count?: string;
|
|
2201
|
-
transferred?: number;
|
|
2202
|
-
abandoned?: number;
|
|
2203
|
-
attempts?: number;
|
|
2204
|
-
sum_bill_sec?: number;
|
|
2205
|
-
avg_wrap_sec?: number;
|
|
2206
|
-
avg_awt_sec?: number;
|
|
2207
|
-
avg_asa_sec?: number;
|
|
2208
|
-
avg_aht_sec?: number;
|
|
2209
|
-
bridged?: number;
|
|
2210
|
-
sl20?: number;
|
|
2211
|
-
sl30?: number;
|
|
2212
|
-
}
|
|
2213
|
-
export interface EngineQueueReportGeneralAgentStatus {
|
|
2214
|
-
online?: number;
|
|
2215
|
-
pause?: number;
|
|
2216
|
-
offline?: number;
|
|
2217
|
-
free?: number;
|
|
2218
|
-
total?: number;
|
|
2219
|
-
}
|
|
2220
|
-
export interface EngineQueueResourceGroup {
|
|
2221
|
-
id?: string;
|
|
2222
|
-
resource_group?: EngineLookup;
|
|
2223
|
-
communication?: EngineLookup;
|
|
2224
|
-
}
|
|
2225
|
-
export interface EngineQueueSkill {
|
|
2226
|
-
id?: number;
|
|
2227
|
-
skill?: EngineLookup;
|
|
2228
|
-
buckets?: EngineLookup[];
|
|
2229
|
-
lvl?: number;
|
|
2230
|
-
min_capacity?: number;
|
|
2231
|
-
max_capacity?: number;
|
|
2232
|
-
enabled?: boolean;
|
|
2233
|
-
}
|
|
2234
|
-
export interface EngineQuickReply {
|
|
2235
|
-
id?: number;
|
|
2236
|
-
created_at?: string;
|
|
2237
|
-
created_by?: EngineLookup;
|
|
2238
|
-
updated_at?: string;
|
|
2239
|
-
updated_by?: EngineLookup;
|
|
2240
|
-
name?: string;
|
|
2241
|
-
text?: string;
|
|
2242
|
-
teams?: EngineLookup[];
|
|
2243
|
-
article?: EngineLookup;
|
|
2244
|
-
queues?: EngineLookup[];
|
|
2245
|
-
}
|
|
2246
|
-
export interface EngineRedialCallRequest {
|
|
2247
|
-
call_id?: string;
|
|
2248
|
-
}
|
|
2249
|
-
export interface EngineRegion {
|
|
2250
|
-
id?: string;
|
|
2251
|
-
name?: string;
|
|
2252
|
-
description?: string;
|
|
2253
|
-
timezone?: EngineLookup;
|
|
2254
|
-
}
|
|
2255
|
-
export interface EngineResetActiveAttemptsRequest {
|
|
2256
|
-
idle_for_minutes?: string;
|
|
2257
|
-
attempt_type?: string[];
|
|
2258
|
-
result?: string;
|
|
2259
|
-
}
|
|
2260
|
-
export interface EngineResetActiveAttemptsResponse {
|
|
2261
|
-
[key: string]: unknown;
|
|
2262
|
-
}
|
|
2263
|
-
export type EngineResetMembersRequestVariables = {
|
|
2264
|
-
[key: string]: string;
|
|
2265
|
-
};
|
|
2266
|
-
export interface EngineResetMembersRequest {
|
|
2267
|
-
queue_id?: string;
|
|
2268
|
-
ids?: string[];
|
|
2269
|
-
bucket_id?: string[];
|
|
2270
|
-
stop_cause?: string[];
|
|
2271
|
-
agent_id?: number[];
|
|
2272
|
-
numbers?: string[];
|
|
2273
|
-
variables?: EngineResetMembersRequestVariables;
|
|
2274
|
-
id?: string[];
|
|
2275
|
-
created_at?: EngineFilterBetween;
|
|
2276
|
-
priority?: EngineFilterBetween;
|
|
2277
|
-
}
|
|
2278
|
-
export interface EngineResetMembersResponse {
|
|
2279
|
-
count?: string;
|
|
2280
|
-
}
|
|
2281
|
-
export interface EngineResourceDisplay {
|
|
2282
|
-
id?: string;
|
|
2283
|
-
display?: string;
|
|
2284
|
-
}
|
|
2285
|
-
export interface EngineResponse {
|
|
2286
|
-
status?: string;
|
|
2287
|
-
}
|
|
2288
|
-
export interface EngineRoutingOutboundCall {
|
|
2289
|
-
id?: string;
|
|
2290
|
-
created_at?: string;
|
|
2291
|
-
created_by?: EngineLookup;
|
|
2292
|
-
updated_at?: string;
|
|
2293
|
-
updated_by?: EngineLookup;
|
|
2294
|
-
name?: string;
|
|
2295
|
-
description?: string;
|
|
2296
|
-
schema?: EngineLookup;
|
|
2297
|
-
pattern?: string;
|
|
2298
|
-
disabled?: boolean;
|
|
2299
|
-
domain_id?: string;
|
|
2300
|
-
}
|
|
2301
|
-
export interface EngineRoutingOutboundCallCompact {
|
|
2302
|
-
id?: string;
|
|
2303
|
-
name?: string;
|
|
2304
|
-
description?: string;
|
|
2305
|
-
schema?: EngineLookup;
|
|
2306
|
-
pattern?: string;
|
|
2307
|
-
disabled?: boolean;
|
|
2308
|
-
position?: number;
|
|
2309
|
-
domain_id?: string;
|
|
2310
|
-
}
|
|
2311
|
-
export type EngineRoutingSchemaSchema = {
|
|
2312
|
-
[key: string]: unknown;
|
|
2313
|
-
};
|
|
2314
|
-
export type EngineRoutingSchemaPayload = {
|
|
2315
|
-
[key: string]: unknown;
|
|
2316
|
-
};
|
|
2317
|
-
export interface EngineRoutingSchema {
|
|
2318
|
-
id?: string;
|
|
2319
|
-
created_at?: string;
|
|
2320
|
-
created_by?: EngineLookup;
|
|
2321
|
-
updated_at?: string;
|
|
2322
|
-
updated_by?: EngineLookup;
|
|
2323
|
-
name?: string;
|
|
2324
|
-
description?: string;
|
|
2325
|
-
type?: EngineRoutingSchemaType;
|
|
2326
|
-
schema?: EngineRoutingSchemaSchema;
|
|
2327
|
-
payload?: EngineRoutingSchemaPayload;
|
|
2328
|
-
debug?: boolean;
|
|
2329
|
-
editor?: boolean;
|
|
2330
|
-
tags?: EngineSchemaTag[];
|
|
2331
|
-
}
|
|
2332
|
-
export interface EngineRoutingSchemaTag {
|
|
2333
|
-
name?: string;
|
|
2334
|
-
count?: number;
|
|
2335
|
-
}
|
|
2336
|
-
export type EngineRoutingSchemaType = typeof EngineRoutingSchemaType[keyof typeof EngineRoutingSchemaType];
|
|
2337
|
-
export declare const EngineRoutingSchemaType: {
|
|
2338
|
-
readonly default: "default";
|
|
2339
|
-
readonly voice: "voice";
|
|
2340
|
-
readonly chat: "chat";
|
|
2341
|
-
readonly processing: "processing";
|
|
2342
|
-
readonly service: "service";
|
|
2343
|
-
};
|
|
2344
|
-
export interface EngineRoutingVariable {
|
|
2345
|
-
id?: string;
|
|
2346
|
-
domain_id?: string;
|
|
2347
|
-
key?: string;
|
|
2348
|
-
value?: string;
|
|
2349
|
-
}
|
|
2350
|
-
export type EngineRunTeamTriggerRequestVariables = {
|
|
2351
|
-
[key: string]: string;
|
|
2352
|
-
};
|
|
2353
|
-
export interface EngineRunTeamTriggerRequest {
|
|
2354
|
-
trigger_id?: number;
|
|
2355
|
-
variables?: EngineRunTeamTriggerRequestVariables;
|
|
2356
|
-
}
|
|
2357
|
-
export interface EngineRunTeamTriggerResponse {
|
|
2358
|
-
job_id?: string;
|
|
2359
|
-
}
|
|
2360
|
-
export interface EngineSchemaTag {
|
|
2361
|
-
name?: string;
|
|
2362
|
-
}
|
|
2363
|
-
export type EngineSchemaVariableValue = {
|
|
2364
|
-
[key: string]: unknown;
|
|
2365
|
-
};
|
|
2366
|
-
export interface EngineSchemaVariable {
|
|
2367
|
-
id?: number;
|
|
2368
|
-
name?: string;
|
|
2369
|
-
encrypt?: boolean;
|
|
2370
|
-
value?: EngineSchemaVariableValue;
|
|
2371
|
-
}
|
|
2372
|
-
export type EngineSchemaVersionSchema = {
|
|
2373
|
-
[key: string]: unknown;
|
|
2374
|
-
};
|
|
2375
|
-
export type EngineSchemaVersionPayload = {
|
|
2376
|
-
[key: string]: unknown;
|
|
2377
|
-
};
|
|
2378
|
-
export interface EngineSchemaVersion {
|
|
2379
|
-
id?: string;
|
|
2380
|
-
schema_id?: string;
|
|
2381
|
-
created_at?: string;
|
|
2382
|
-
created_by?: EngineLookup;
|
|
2383
|
-
schema?: EngineSchemaVersionSchema;
|
|
2384
|
-
payload?: EngineSchemaVersionPayload;
|
|
2385
|
-
version?: string;
|
|
2386
|
-
note?: string;
|
|
2387
|
-
}
|
|
2388
|
-
export type EngineSearchHistoryCallRequestVariables = {
|
|
2389
|
-
[key: string]: string;
|
|
2390
|
-
};
|
|
2391
|
-
export interface EngineSearchHistoryCallRequest {
|
|
2392
|
-
page?: number;
|
|
2393
|
-
size?: number;
|
|
2394
|
-
q?: string;
|
|
2395
|
-
sort?: string;
|
|
2396
|
-
fields?: string[];
|
|
2397
|
-
created_at?: EngineFilterBetween;
|
|
2398
|
-
user_id?: string[];
|
|
2399
|
-
agent_id?: string[];
|
|
2400
|
-
queue_id?: string[];
|
|
2401
|
-
team_id?: string[];
|
|
2402
|
-
member_id?: string[];
|
|
2403
|
-
gateway_id?: string[];
|
|
2404
|
-
duration?: EngineFilterBetween;
|
|
2405
|
-
skip_parent?: boolean;
|
|
2406
|
-
parent_id?: string;
|
|
2407
|
-
cause?: string[];
|
|
2408
|
-
has_file?: boolean;
|
|
2409
|
-
domain_id?: string;
|
|
2410
|
-
number?: string;
|
|
2411
|
-
direction?: string;
|
|
2412
|
-
answered_at?: EngineFilterBetween;
|
|
2413
|
-
missed?: boolean;
|
|
2414
|
-
stored_at?: EngineFilterBetween;
|
|
2415
|
-
id?: string[];
|
|
2416
|
-
transfer_from?: string[];
|
|
2417
|
-
transfer_to?: string[];
|
|
2418
|
-
dependency_id?: string;
|
|
2419
|
-
tags?: string[];
|
|
2420
|
-
variables?: EngineSearchHistoryCallRequestVariables;
|
|
2421
|
-
amd_result?: string[];
|
|
2422
|
-
fts?: string;
|
|
2423
|
-
directions?: string[];
|
|
2424
|
-
has_transcript?: boolean;
|
|
2425
|
-
agent_description?: string;
|
|
2426
|
-
owner_id?: string[];
|
|
2427
|
-
grantee_id?: string[];
|
|
2428
|
-
amd_ai_result?: string[];
|
|
2429
|
-
talk?: EngineFilterBetween;
|
|
2430
|
-
rated?: boolean;
|
|
2431
|
-
rated_by?: string[];
|
|
2432
|
-
score_required?: EngineFilterBetween;
|
|
2433
|
-
score_optional?: EngineFilterBetween;
|
|
2434
|
-
rated_user?: string[];
|
|
2435
|
-
contact_id?: string[];
|
|
2436
|
-
schema_id?: number[];
|
|
2437
|
-
has_transfer?: boolean;
|
|
2438
|
-
timeline?: boolean;
|
|
2439
|
-
}
|
|
2440
|
-
export interface EngineSearchSchemaVersionResponse {
|
|
2441
|
-
next?: boolean;
|
|
2442
|
-
items?: EngineSchemaVersion[];
|
|
2443
|
-
}
|
|
2444
|
-
export interface EngineSendPushResponse {
|
|
2445
|
-
send?: number;
|
|
2446
|
-
}
|
|
2447
|
-
export type EngineSetVariablesCallRequestVariables = {
|
|
2448
|
-
[key: string]: string;
|
|
2449
|
-
};
|
|
2450
|
-
export interface EngineSetVariablesCallRequest {
|
|
2451
|
-
id?: string;
|
|
2452
|
-
variables?: EngineSetVariablesCallRequestVariables;
|
|
2453
|
-
}
|
|
2454
|
-
export interface EngineSetVariablesCallResponse {
|
|
2455
|
-
[key: string]: unknown;
|
|
2456
|
-
}
|
|
2457
|
-
export interface EngineSkill {
|
|
2458
|
-
id?: string;
|
|
2459
|
-
domain_id?: string;
|
|
2460
|
-
name?: string;
|
|
2461
|
-
description?: string;
|
|
2462
|
-
active_agents?: number;
|
|
2463
|
-
total_agents?: number;
|
|
2464
|
-
created_at?: string;
|
|
2465
|
-
created_by?: EngineLookup;
|
|
2466
|
-
updated_at?: string;
|
|
2467
|
-
updated_by?: EngineLookup;
|
|
2468
|
-
}
|
|
2469
|
-
export interface EngineSkillAgentItem {
|
|
2470
|
-
id?: string;
|
|
2471
|
-
skill?: EngineLookup;
|
|
2472
|
-
capacity?: number;
|
|
2473
|
-
enabled?: boolean;
|
|
2474
|
-
agent?: EngineLookup;
|
|
2475
|
-
team?: EngineLookup;
|
|
2476
|
-
}
|
|
2477
|
-
export type EngineSystemSettingValue = {
|
|
2478
|
-
[key: string]: unknown;
|
|
2479
|
-
};
|
|
2480
|
-
export interface EngineSystemSetting {
|
|
2481
|
-
id?: number;
|
|
2482
|
-
name?: EngineSystemSettingName;
|
|
2483
|
-
value?: EngineSystemSettingValue;
|
|
2484
|
-
}
|
|
2485
|
-
export type EngineSystemSettingName = typeof EngineSystemSettingName[keyof typeof EngineSystemSettingName];
|
|
2486
|
-
export declare const EngineSystemSettingName: {
|
|
2487
|
-
readonly empty_system_settings_name: "empty_system_settings_name";
|
|
2488
|
-
readonly enable_omnichannel: "enable_omnichannel";
|
|
2489
|
-
readonly member_chunk_size: "member_chunk_size";
|
|
2490
|
-
readonly amd_cancel_not_human: "amd_cancel_not_human";
|
|
2491
|
-
readonly scheme_version_limit: "scheme_version_limit";
|
|
2492
|
-
readonly enable_2fa: "enable_2fa";
|
|
2493
|
-
readonly export_settings: "export_settings";
|
|
2494
|
-
readonly search_number_length: "search_number_length";
|
|
2495
|
-
readonly chat_ai_connection: "chat_ai_connection";
|
|
2496
|
-
readonly password_reg_exp: "password_reg_exp";
|
|
2497
|
-
readonly password_validation_text: "password_validation_text";
|
|
2498
|
-
readonly autolink_call_to_contact: "autolink_call_to_contact";
|
|
2499
|
-
readonly period_to_playback_records: "period_to_playback_records";
|
|
2500
|
-
readonly is_fulltext_search_enabled: "is_fulltext_search_enabled";
|
|
2501
|
-
readonly wbt_hide_contact: "wbt_hide_contact";
|
|
2502
|
-
readonly show_full_contact: "show_full_contact";
|
|
2503
|
-
readonly call_end_sound_notification: "call_end_sound_notification";
|
|
2504
|
-
readonly call_end_push_notification: "call_end_push_notification";
|
|
2505
|
-
readonly chat_end_sound_notification: "chat_end_sound_notification";
|
|
2506
|
-
readonly chat_end_push_notification: "chat_end_push_notification";
|
|
2507
|
-
readonly task_end_sound_notification: "task_end_sound_notification";
|
|
2508
|
-
readonly task_end_push_notification: "task_end_push_notification";
|
|
2509
|
-
readonly push_notification_timeout: "push_notification_timeout";
|
|
2510
|
-
readonly labels_to_limit_contacts: "labels_to_limit_contacts";
|
|
2511
|
-
};
|
|
2512
|
-
export interface EngineTag {
|
|
2513
|
-
name?: string;
|
|
2514
|
-
}
|
|
2515
|
-
export interface EngineTaskProcessing {
|
|
2516
|
-
enabled?: boolean;
|
|
2517
|
-
form_schema?: EngineLookup;
|
|
2518
|
-
sec?: number;
|
|
2519
|
-
renewal_sec?: number;
|
|
2520
|
-
}
|
|
2521
|
-
export interface EngineTeamHook {
|
|
2522
|
-
id?: number;
|
|
2523
|
-
schema?: EngineLookup;
|
|
2524
|
-
event?: EngineTeamHookEvent;
|
|
2525
|
-
enabled?: boolean;
|
|
2526
|
-
properties?: string[];
|
|
2527
|
-
}
|
|
2528
|
-
export type EngineTeamHookEvent = typeof EngineTeamHookEvent[keyof typeof EngineTeamHookEvent];
|
|
2529
|
-
export declare const EngineTeamHookEvent: {
|
|
2530
|
-
readonly teamHookEventUndefined: "teamHookEventUndefined";
|
|
2531
|
-
readonly agent_status: "agent_status";
|
|
2532
|
-
};
|
|
2533
|
-
export interface EngineTeamTrigger {
|
|
2534
|
-
id?: number;
|
|
2535
|
-
schema?: EngineLookup;
|
|
2536
|
-
enabled?: boolean;
|
|
2537
|
-
name?: string;
|
|
2538
|
-
description?: string;
|
|
2539
|
-
}
|
|
2540
|
-
export interface EngineTestEmailProfileResponse {
|
|
2541
|
-
error?: string;
|
|
2542
|
-
}
|
|
2543
|
-
export interface EngineTimezone {
|
|
2544
|
-
id?: string;
|
|
2545
|
-
name?: string;
|
|
2546
|
-
offset?: string;
|
|
2547
|
-
}
|
|
2548
|
-
export interface EngineTranscriptLookup {
|
|
2549
|
-
id?: string;
|
|
2550
|
-
locale?: string;
|
|
2551
|
-
file_id?: string;
|
|
2552
|
-
file?: EngineLookup;
|
|
2553
|
-
}
|
|
2554
|
-
export type EngineTriggerVariables = {
|
|
2555
|
-
[key: string]: string;
|
|
2556
|
-
};
|
|
2557
|
-
export interface EngineTrigger {
|
|
2558
|
-
id?: number;
|
|
2559
|
-
name?: string;
|
|
2560
|
-
enabled?: boolean;
|
|
2561
|
-
type?: EngineTriggerType;
|
|
2562
|
-
schema?: EngineLookup;
|
|
2563
|
-
variables?: EngineTriggerVariables;
|
|
2564
|
-
description?: string;
|
|
2565
|
-
expression?: string;
|
|
2566
|
-
timezone?: EngineLookup;
|
|
2567
|
-
timeout?: number;
|
|
2568
|
-
object?: EngineTriggerObjectType;
|
|
2569
|
-
event?: EngineTriggerEventType;
|
|
2570
|
-
}
|
|
2571
|
-
export type EngineTriggerEventType = typeof EngineTriggerEventType[keyof typeof EngineTriggerEventType];
|
|
2572
|
-
export declare const EngineTriggerEventType: {
|
|
2573
|
-
readonly empty_trigger_event: "empty_trigger_event";
|
|
2574
|
-
readonly create: "create";
|
|
2575
|
-
readonly update: "update";
|
|
2576
|
-
readonly remove: "remove";
|
|
2577
|
-
readonly resolution_time: "resolution_time";
|
|
2578
|
-
};
|
|
2579
|
-
export type EngineTriggerJobParameters = {
|
|
2580
|
-
[key: string]: unknown;
|
|
2581
|
-
};
|
|
2582
|
-
export type EngineTriggerJobResult = {
|
|
2583
|
-
[key: string]: unknown;
|
|
2584
|
-
};
|
|
2585
|
-
export interface EngineTriggerJob {
|
|
2586
|
-
id?: string;
|
|
2587
|
-
trigger?: EngineLookup;
|
|
2588
|
-
state?: EngineTriggerJobState;
|
|
2589
|
-
created_at?: string;
|
|
2590
|
-
started_at?: string;
|
|
2591
|
-
stopped_at?: string;
|
|
2592
|
-
parameters?: EngineTriggerJobParameters;
|
|
2593
|
-
error?: string;
|
|
2594
|
-
result?: EngineTriggerJobResult;
|
|
2595
|
-
}
|
|
2596
|
-
export type EngineTriggerJobState = typeof EngineTriggerJobState[keyof typeof EngineTriggerJobState];
|
|
2597
|
-
export declare const EngineTriggerJobState: {
|
|
2598
|
-
readonly idle: "idle";
|
|
2599
|
-
readonly active: "active";
|
|
2600
|
-
readonly done: "done";
|
|
2601
|
-
readonly error: "error";
|
|
2602
|
-
};
|
|
2603
|
-
export type EngineTriggerObjectType = typeof EngineTriggerObjectType[keyof typeof EngineTriggerObjectType];
|
|
2604
|
-
export declare const EngineTriggerObjectType: {
|
|
2605
|
-
readonly empty_trigger_object: "empty_trigger_object";
|
|
2606
|
-
readonly case: "case";
|
|
2607
|
-
};
|
|
2608
|
-
export type EngineTriggerType = typeof EngineTriggerType[keyof typeof EngineTriggerType];
|
|
2609
|
-
export declare const EngineTriggerType: {
|
|
2610
|
-
readonly default_trigger_type: "default_trigger_type";
|
|
2611
|
-
readonly cron: "cron";
|
|
2612
|
-
readonly event: "event";
|
|
2613
|
-
};
|
|
2614
|
-
export interface EngineUpdateAgentPauseCauseRequest {
|
|
2615
|
-
id?: number;
|
|
2616
|
-
name?: string;
|
|
2617
|
-
limit_min?: number;
|
|
2618
|
-
allow_supervisor?: boolean;
|
|
2619
|
-
allow_agent?: boolean;
|
|
2620
|
-
allow_admin?: boolean;
|
|
2621
|
-
description?: string;
|
|
2622
|
-
}
|
|
2623
|
-
export interface EngineUpdateAgentRequest {
|
|
2624
|
-
id?: string;
|
|
2625
|
-
user?: EngineLookup;
|
|
2626
|
-
description?: string;
|
|
2627
|
-
progressive_count?: number;
|
|
2628
|
-
greeting_media?: EngineLookup;
|
|
2629
|
-
domain_id?: string;
|
|
2630
|
-
allow_channels?: string[];
|
|
2631
|
-
chat_count?: number;
|
|
2632
|
-
supervisor?: EngineLookup[];
|
|
2633
|
-
team?: EngineLookup;
|
|
2634
|
-
region?: EngineLookup;
|
|
2635
|
-
auditor?: EngineLookup[];
|
|
2636
|
-
is_supervisor?: boolean;
|
|
2637
|
-
task_count?: number;
|
|
2638
|
-
}
|
|
2639
|
-
export interface EngineUpdateAgentSkillRequest {
|
|
2640
|
-
id?: string;
|
|
2641
|
-
agent_id?: string;
|
|
2642
|
-
skill?: EngineLookup;
|
|
2643
|
-
capacity?: number;
|
|
2644
|
-
domain_id?: string;
|
|
2645
|
-
enabled?: boolean;
|
|
2646
|
-
}
|
|
2647
|
-
export interface EngineUpdateAgentTeamRequest {
|
|
2648
|
-
id?: string;
|
|
2649
|
-
name?: string;
|
|
2650
|
-
description?: string;
|
|
2651
|
-
strategy?: string;
|
|
2652
|
-
max_no_answer?: number;
|
|
2653
|
-
no_answer_delay_time?: number;
|
|
2654
|
-
wrap_up_time?: number;
|
|
2655
|
-
call_timeout?: number;
|
|
2656
|
-
admin?: EngineLookup[];
|
|
2657
|
-
domain_id?: string;
|
|
2658
|
-
invite_chat_timeout?: number;
|
|
2659
|
-
task_accept_timeout?: number;
|
|
2660
|
-
forecast_calculation?: EngineLookup;
|
|
2661
|
-
}
|
|
2662
|
-
export interface EngineUpdateAuditFormRequest {
|
|
2663
|
-
id?: number;
|
|
2664
|
-
name?: string;
|
|
2665
|
-
description?: string;
|
|
2666
|
-
enabled?: boolean;
|
|
2667
|
-
questions?: EngineQuestion[];
|
|
2668
|
-
teams?: EngineLookup[];
|
|
2669
|
-
}
|
|
2670
|
-
export interface EngineUpdateAuditRateRequest {
|
|
2671
|
-
id?: string;
|
|
2672
|
-
answers?: EngineUpdateQuestionAnswerRequest[];
|
|
2673
|
-
comment?: string;
|
|
2674
|
-
}
|
|
2675
|
-
export interface EngineUpdateBucketRequest {
|
|
2676
|
-
id?: string;
|
|
2677
|
-
name?: string;
|
|
2678
|
-
description?: string;
|
|
2679
|
-
domain_id?: string;
|
|
2680
|
-
}
|
|
2681
|
-
export interface EngineUpdateCalendarRequest {
|
|
2682
|
-
id?: string;
|
|
2683
|
-
name?: string;
|
|
2684
|
-
start_at?: string;
|
|
2685
|
-
end_at?: string;
|
|
2686
|
-
timezone?: EngineLookup;
|
|
2687
|
-
description?: string;
|
|
2688
|
-
accepts?: EngineAcceptOfDay[];
|
|
2689
|
-
excepts?: EngineExceptDate[];
|
|
2690
|
-
domain_id?: string;
|
|
2691
|
-
specials?: EngineAcceptOfDay[];
|
|
2692
|
-
}
|
|
2693
|
-
export interface EngineUpdateCallAnnotationRequest {
|
|
2694
|
-
id?: string;
|
|
2695
|
-
call_id?: string;
|
|
2696
|
-
note?: string;
|
|
2697
|
-
start_sec?: number;
|
|
2698
|
-
end_sec?: number;
|
|
2699
|
-
}
|
|
2700
|
-
export interface EngineUpdateChatPlanRequest {
|
|
2701
|
-
id?: number;
|
|
2702
|
-
name?: string;
|
|
2703
|
-
description?: string;
|
|
2704
|
-
schema?: EngineLookup;
|
|
2705
|
-
enabled?: boolean;
|
|
2706
|
-
}
|
|
2707
|
-
export interface EngineUpdateCommunicationTypeRequest {
|
|
2708
|
-
id?: string;
|
|
2709
|
-
name?: string;
|
|
2710
|
-
code?: string;
|
|
2711
|
-
channel?: EngineCommunicationChannels;
|
|
2712
|
-
description?: string;
|
|
2713
|
-
default?: boolean;
|
|
2714
|
-
}
|
|
2715
|
-
export interface EngineUpdateEmailProfileRequest {
|
|
2716
|
-
id?: string;
|
|
2717
|
-
name?: string;
|
|
2718
|
-
description?: string;
|
|
2719
|
-
schema?: EngineLookup;
|
|
2720
|
-
enabled?: boolean;
|
|
2721
|
-
imap_host?: string;
|
|
2722
|
-
login?: string;
|
|
2723
|
-
mailbox?: string;
|
|
2724
|
-
smtp_port?: number;
|
|
2725
|
-
imap_port?: number;
|
|
2726
|
-
password?: string;
|
|
2727
|
-
smtp_host?: string;
|
|
2728
|
-
fetch_interval?: number;
|
|
2729
|
-
auth_type?: EngineEmailAuthType;
|
|
2730
|
-
listen?: boolean;
|
|
2731
|
-
params?: EngineEmailProfileParams;
|
|
2732
|
-
}
|
|
2733
|
-
export interface EngineUpdateListCommunicationRequest {
|
|
2734
|
-
list_id?: string;
|
|
2735
|
-
id?: string;
|
|
2736
|
-
number?: string;
|
|
2737
|
-
description?: string;
|
|
2738
|
-
expire_at?: string;
|
|
2739
|
-
}
|
|
2740
|
-
export interface EngineUpdateListRequest {
|
|
2741
|
-
id?: string;
|
|
2742
|
-
name?: string;
|
|
2743
|
-
description?: string;
|
|
2744
|
-
domain_id?: string;
|
|
2745
|
-
}
|
|
2746
|
-
export type EngineUpdateMemberRequestVariables = {
|
|
2747
|
-
[key: string]: string;
|
|
2748
|
-
};
|
|
2749
|
-
export interface EngineUpdateMemberRequest {
|
|
2750
|
-
id?: string;
|
|
2751
|
-
queue_id?: string;
|
|
2752
|
-
priority?: number;
|
|
2753
|
-
expire_at?: string;
|
|
2754
|
-
variables?: EngineUpdateMemberRequestVariables;
|
|
2755
|
-
name?: string;
|
|
2756
|
-
timezone?: EngineLookup;
|
|
2757
|
-
communications?: EngineMemberCommunicationCreateRequest[];
|
|
2758
|
-
bucket?: EngineLookup;
|
|
2759
|
-
min_offering_at?: string;
|
|
2760
|
-
stop_cause?: string;
|
|
2761
|
-
domain_id?: string;
|
|
2762
|
-
agent?: EngineLookup;
|
|
2763
|
-
skill?: EngineLookup;
|
|
2764
|
-
}
|
|
2765
|
-
export interface EngineUpdateOutboundResourceDisplayRequest {
|
|
2766
|
-
resource_id?: string;
|
|
2767
|
-
id?: string;
|
|
2768
|
-
display?: string;
|
|
2769
|
-
domain_id?: string;
|
|
2770
|
-
}
|
|
2771
|
-
export interface EngineUpdateOutboundResourceGroupRequest {
|
|
2772
|
-
id?: string;
|
|
2773
|
-
name?: string;
|
|
2774
|
-
strategy?: string;
|
|
2775
|
-
description?: string;
|
|
2776
|
-
communication?: EngineLookup;
|
|
2777
|
-
time?: EngineOutboundResourceTimeRange[];
|
|
2778
|
-
domain_id?: string;
|
|
2779
|
-
}
|
|
2780
|
-
export interface EngineUpdateOutboundResourceInGroupRequest {
|
|
2781
|
-
id?: string;
|
|
2782
|
-
group_id?: string;
|
|
2783
|
-
resource?: EngineLookup;
|
|
2784
|
-
reserve_resource?: EngineLookup;
|
|
2785
|
-
priority?: number;
|
|
2786
|
-
}
|
|
2787
|
-
export type EngineUpdateOutboundResourceRequestVariables = {
|
|
2788
|
-
[key: string]: string;
|
|
2789
|
-
};
|
|
2790
|
-
export interface EngineUpdateOutboundResourceRequest {
|
|
2791
|
-
id?: string;
|
|
2792
|
-
limit?: number;
|
|
2793
|
-
enabled?: boolean;
|
|
2794
|
-
rps?: number;
|
|
2795
|
-
reserve?: boolean;
|
|
2796
|
-
variables?: EngineUpdateOutboundResourceRequestVariables;
|
|
2797
|
-
number?: string;
|
|
2798
|
-
max_successively_errors?: number;
|
|
2799
|
-
name?: string;
|
|
2800
|
-
error_ids?: string[];
|
|
2801
|
-
gateway?: EngineLookup;
|
|
2802
|
-
description?: string;
|
|
2803
|
-
patterns?: string[];
|
|
2804
|
-
failure_dial_delay?: number;
|
|
2805
|
-
parameters?: EngineOutboundResourceParameters;
|
|
2806
|
-
}
|
|
2807
|
-
export type EngineUpdatePresetQueryRequestPreset = {
|
|
2808
|
-
[key: string]: unknown;
|
|
2809
|
-
};
|
|
2810
|
-
export interface EngineUpdatePresetQueryRequest {
|
|
2811
|
-
id?: number;
|
|
2812
|
-
name?: string;
|
|
2813
|
-
description?: string;
|
|
2814
|
-
preset?: EngineUpdatePresetQueryRequestPreset;
|
|
2815
|
-
section?: string;
|
|
2816
|
-
}
|
|
2817
|
-
export interface EngineUpdateQuestionAnswerRequest {
|
|
2818
|
-
score?: number;
|
|
2819
|
-
comment?: string;
|
|
2820
|
-
}
|
|
2821
|
-
export interface EngineUpdateQueueBucketRequest {
|
|
2822
|
-
id?: string;
|
|
2823
|
-
queue_id?: string;
|
|
2824
|
-
ratio?: number;
|
|
2825
|
-
bucket?: EngineLookup;
|
|
2826
|
-
disabled?: boolean;
|
|
2827
|
-
priority?: number;
|
|
2828
|
-
}
|
|
2829
|
-
export interface EngineUpdateQueueHookRequest {
|
|
2830
|
-
queue_id?: number;
|
|
2831
|
-
id?: number;
|
|
2832
|
-
schema?: EngineLookup;
|
|
2833
|
-
event?: string;
|
|
2834
|
-
enabled?: boolean;
|
|
2835
|
-
properties?: string[];
|
|
2836
|
-
}
|
|
2837
|
-
export type EngineUpdateQueueRequestPayload = {
|
|
2838
|
-
[key: string]: unknown;
|
|
2839
|
-
};
|
|
2840
|
-
export type EngineUpdateQueueRequestVariables = {
|
|
2841
|
-
[key: string]: string;
|
|
2842
|
-
};
|
|
2843
|
-
export interface EngineUpdateQueueRequest {
|
|
2844
|
-
id?: string;
|
|
2845
|
-
strategy?: string;
|
|
2846
|
-
enabled?: boolean;
|
|
2847
|
-
payload?: EngineUpdateQueueRequestPayload;
|
|
2848
|
-
calendar?: EngineLookup;
|
|
2849
|
-
priority?: number;
|
|
2850
|
-
name?: string;
|
|
2851
|
-
variables?: EngineUpdateQueueRequestVariables;
|
|
2852
|
-
timeout?: number;
|
|
2853
|
-
dnc_list?: EngineLookup;
|
|
2854
|
-
sec_locate_agent?: number;
|
|
2855
|
-
type?: number;
|
|
2856
|
-
team?: EngineLookup;
|
|
2857
|
-
description?: string;
|
|
2858
|
-
schema?: EngineLookup;
|
|
2859
|
-
ringtone?: EngineLookup;
|
|
2860
|
-
domain_id?: string;
|
|
2861
|
-
do_schema?: EngineLookup;
|
|
2862
|
-
after_schema?: EngineLookup;
|
|
2863
|
-
sticky_agent?: boolean;
|
|
2864
|
-
processing?: boolean;
|
|
2865
|
-
processing_sec?: number;
|
|
2866
|
-
processing_renewal_sec?: number;
|
|
2867
|
-
form_schema?: EngineLookup;
|
|
2868
|
-
task_processing?: EngineTaskProcessing;
|
|
2869
|
-
grantee?: EngineLookup;
|
|
2870
|
-
tags?: EngineTag[];
|
|
2871
|
-
}
|
|
2872
|
-
export interface EngineUpdateQueueResourceGroupRequest {
|
|
2873
|
-
id?: string;
|
|
2874
|
-
queue_id?: string;
|
|
2875
|
-
resource_group?: EngineLookup;
|
|
2876
|
-
domain_id?: string;
|
|
2877
|
-
}
|
|
2878
|
-
export interface EngineUpdateQueueSkillRequest {
|
|
2879
|
-
queue_id?: number;
|
|
2880
|
-
id?: number;
|
|
2881
|
-
skill?: EngineLookup;
|
|
2882
|
-
buckets?: EngineLookup[];
|
|
2883
|
-
lvl?: number;
|
|
2884
|
-
min_capacity?: number;
|
|
2885
|
-
max_capacity?: number;
|
|
2886
|
-
enabled?: boolean;
|
|
2887
|
-
}
|
|
2888
|
-
export interface EngineUpdateQuickReplyRequest {
|
|
2889
|
-
id?: number;
|
|
2890
|
-
name?: string;
|
|
2891
|
-
text?: string;
|
|
2892
|
-
teams?: EngineLookup[];
|
|
2893
|
-
article?: EngineLookup;
|
|
2894
|
-
queues?: EngineLookup[];
|
|
2895
|
-
}
|
|
2896
|
-
export interface EngineUpdateRegionRequest {
|
|
2897
|
-
id?: string;
|
|
2898
|
-
name?: string;
|
|
2899
|
-
description?: string;
|
|
2900
|
-
timezone?: EngineLookup;
|
|
2901
|
-
}
|
|
2902
|
-
export interface EngineUpdateRoutingOutboundCallRequest {
|
|
2903
|
-
id?: string;
|
|
2904
|
-
name?: string;
|
|
2905
|
-
description?: string;
|
|
2906
|
-
schema?: EngineLookup;
|
|
2907
|
-
pattern?: string;
|
|
2908
|
-
disabled?: boolean;
|
|
2909
|
-
domain_id?: string;
|
|
2910
|
-
}
|
|
2911
|
-
export type EngineUpdateRoutingSchemaRequestSchema = {
|
|
2912
|
-
[key: string]: unknown;
|
|
2913
|
-
};
|
|
2914
|
-
export type EngineUpdateRoutingSchemaRequestPayload = {
|
|
2915
|
-
[key: string]: unknown;
|
|
2916
|
-
};
|
|
2917
|
-
export interface EngineUpdateRoutingSchemaRequest {
|
|
2918
|
-
id?: string;
|
|
2919
|
-
name?: string;
|
|
2920
|
-
description?: string;
|
|
2921
|
-
type?: EngineRoutingSchemaType;
|
|
2922
|
-
schema?: EngineUpdateRoutingSchemaRequestSchema;
|
|
2923
|
-
payload?: EngineUpdateRoutingSchemaRequestPayload;
|
|
2924
|
-
debug?: boolean;
|
|
2925
|
-
editor?: boolean;
|
|
2926
|
-
tags?: EngineSchemaTag[];
|
|
2927
|
-
note?: string;
|
|
2928
|
-
}
|
|
2929
|
-
export interface EngineUpdateRoutingVariableRequest {
|
|
2930
|
-
id?: string;
|
|
2931
|
-
key?: string;
|
|
2932
|
-
value?: string;
|
|
2933
|
-
domain_id?: string;
|
|
2934
|
-
}
|
|
2935
|
-
export type EngineUpdateSchemaVariableRequestValue = {
|
|
2936
|
-
[key: string]: unknown;
|
|
2937
|
-
};
|
|
2938
|
-
export interface EngineUpdateSchemaVariableRequest {
|
|
2939
|
-
id?: number;
|
|
2940
|
-
name?: string;
|
|
2941
|
-
value?: EngineUpdateSchemaVariableRequestValue;
|
|
2942
|
-
encrypt?: boolean;
|
|
2943
|
-
}
|
|
2944
|
-
export interface EngineUpdateSkillRequest {
|
|
2945
|
-
id?: string;
|
|
2946
|
-
name?: string;
|
|
2947
|
-
description?: string;
|
|
2948
|
-
domain_id?: string;
|
|
2949
|
-
}
|
|
2950
|
-
export type EngineUpdateSystemSettingRequestValue = {
|
|
2951
|
-
[key: string]: unknown;
|
|
2952
|
-
};
|
|
2953
|
-
export interface EngineUpdateSystemSettingRequest {
|
|
2954
|
-
id?: number;
|
|
2955
|
-
value?: EngineUpdateSystemSettingRequestValue;
|
|
2956
|
-
}
|
|
2957
|
-
export interface EngineUpdateTeamHookRequest {
|
|
2958
|
-
team_id?: string;
|
|
2959
|
-
id?: number;
|
|
2960
|
-
schema?: EngineLookup;
|
|
2961
|
-
event?: EngineTeamHookEvent;
|
|
2962
|
-
enabled?: boolean;
|
|
2963
|
-
properties?: string[];
|
|
2964
|
-
}
|
|
2965
|
-
export interface EngineUpdateTeamTriggerRequest {
|
|
2966
|
-
team_id?: string;
|
|
2967
|
-
id?: number;
|
|
2968
|
-
schema?: EngineLookup;
|
|
2969
|
-
enabled?: boolean;
|
|
2970
|
-
name?: string;
|
|
2971
|
-
description?: string;
|
|
2972
|
-
}
|
|
2973
|
-
export type EngineUpdateTriggerRequestVariables = {
|
|
2974
|
-
[key: string]: string;
|
|
2975
|
-
};
|
|
2976
|
-
export interface EngineUpdateTriggerRequest {
|
|
2977
|
-
id?: number;
|
|
2978
|
-
name?: string;
|
|
2979
|
-
enabled?: boolean;
|
|
2980
|
-
type?: EngineTriggerType;
|
|
2981
|
-
schema?: EngineLookup;
|
|
2982
|
-
variables?: EngineUpdateTriggerRequestVariables;
|
|
2983
|
-
description?: string;
|
|
2984
|
-
expression?: string;
|
|
2985
|
-
timezone?: EngineLookup;
|
|
2986
|
-
timeout?: number;
|
|
2987
|
-
object?: EngineTriggerObjectType;
|
|
2988
|
-
event?: EngineTriggerEventType;
|
|
2989
|
-
}
|
|
2990
|
-
export interface EngineUpdateWebHookRequest {
|
|
2991
|
-
id?: number;
|
|
2992
|
-
name?: string;
|
|
2993
|
-
description?: string;
|
|
2994
|
-
origin?: string[];
|
|
2995
|
-
schema?: EngineLookup;
|
|
2996
|
-
enabled?: boolean;
|
|
2997
|
-
authorization?: string;
|
|
2998
|
-
}
|
|
2999
|
-
export interface EngineUserCallRequest {
|
|
3000
|
-
id?: string;
|
|
3001
|
-
app_id?: string;
|
|
3002
|
-
domain_id?: string;
|
|
3003
|
-
}
|
|
3004
|
-
export interface EngineUserStatus {
|
|
3005
|
-
id?: string;
|
|
3006
|
-
name?: string;
|
|
3007
|
-
extension?: string;
|
|
3008
|
-
presence?: UserStatusUserPresence;
|
|
3009
|
-
status?: string;
|
|
3010
|
-
}
|
|
3011
|
-
export interface EngineWebHook {
|
|
3012
|
-
id?: number;
|
|
3013
|
-
key?: string;
|
|
3014
|
-
created_at?: string;
|
|
3015
|
-
created_by?: EngineLookup;
|
|
3016
|
-
updated_at?: string;
|
|
3017
|
-
updated_by?: EngineLookup;
|
|
3018
|
-
name?: string;
|
|
3019
|
-
description?: string;
|
|
3020
|
-
origin?: string[];
|
|
3021
|
-
schema?: EngineLookup;
|
|
3022
|
-
enabled?: boolean;
|
|
3023
|
-
authorization?: string;
|
|
3024
|
-
}
|
|
3025
|
-
/**
|
|
3026
|
-
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
3027
|
-
`Value` type union.
|
|
3028
|
-
|
|
3029
|
-
The JSON representation for `NullValue` is JSON `null`.
|
|
3030
|
-
|
|
3031
|
-
- NULL_VALUE: Null value.
|
|
3032
|
-
*/
|
|
3033
|
-
export type ProtobufNullValue = typeof ProtobufNullValue[keyof typeof ProtobufNullValue];
|
|
3034
|
-
export declare const ProtobufNullValue: {
|
|
3035
|
-
readonly NULL_VALUE: "NULL_VALUE";
|
|
3036
|
-
};
|
|
3037
|
-
export type EngineUserCallRequestBody = EngineUserCallRequest;
|
|
3038
|
-
export type SearchCalendarParams = {
|
|
3039
|
-
page?: number;
|
|
3040
|
-
size?: number;
|
|
3041
|
-
q?: string;
|
|
3042
|
-
sort?: string;
|
|
3043
|
-
fields?: string[];
|
|
3044
|
-
id?: number[];
|
|
3045
|
-
};
|
|
3046
|
-
export type SearchTimezonesParams = {
|
|
3047
|
-
page?: number;
|
|
3048
|
-
size?: number;
|
|
3049
|
-
q?: string;
|
|
3050
|
-
sort?: string;
|
|
3051
|
-
fields?: string[];
|
|
3052
|
-
id?: number[];
|
|
3053
|
-
};
|
|
3054
|
-
export type ReadCalendarParams = {
|
|
3055
|
-
domain_id?: string;
|
|
3056
|
-
};
|
|
3057
|
-
export type DeleteCalendarParams = {
|
|
3058
|
-
domain_id?: string;
|
|
3059
|
-
};
|
|
3060
|
-
export type SearchAgentParams = {
|
|
3061
|
-
page?: number;
|
|
3062
|
-
size?: number;
|
|
3063
|
-
q?: string;
|
|
3064
|
-
sort?: string;
|
|
3065
|
-
fields?: string[];
|
|
3066
|
-
id?: string[];
|
|
3067
|
-
allow_channels?: string[];
|
|
3068
|
-
supervisor_id?: number[];
|
|
3069
|
-
team_id?: number[];
|
|
3070
|
-
region_id?: number[];
|
|
3071
|
-
auditor_id?: number[];
|
|
3072
|
-
is_supervisor?: boolean;
|
|
3073
|
-
skill_id?: number[];
|
|
3074
|
-
queue_id?: number[];
|
|
3075
|
-
not_supervisor?: boolean;
|
|
3076
|
-
user_id?: string[];
|
|
3077
|
-
extension?: string[];
|
|
3078
|
-
not_team_id?: number[];
|
|
3079
|
-
not_skill_id?: number[];
|
|
3080
|
-
};
|
|
3081
|
-
export type SearchAgentCallStatisticsParams = {
|
|
3082
|
-
page?: number;
|
|
3083
|
-
size?: number;
|
|
3084
|
-
'time.from'?: string;
|
|
3085
|
-
'time.to'?: string;
|
|
3086
|
-
agent_id?: number[];
|
|
3087
|
-
domain_id?: string;
|
|
3088
|
-
q?: string;
|
|
3089
|
-
fields?: string[];
|
|
3090
|
-
sort?: string;
|
|
3091
|
-
};
|
|
3092
|
-
export type SearchAgentStatusStatisticParams = {
|
|
3093
|
-
page?: number;
|
|
3094
|
-
size?: number;
|
|
3095
|
-
q?: string;
|
|
3096
|
-
sort?: string;
|
|
3097
|
-
fields?: string[];
|
|
3098
|
-
agent_id?: string[];
|
|
3099
|
-
'time.from'?: string;
|
|
3100
|
-
'time.to'?: string;
|
|
3101
|
-
status?: string[];
|
|
3102
|
-
queue_id?: number[];
|
|
3103
|
-
team_id?: number[];
|
|
3104
|
-
'utilization.from'?: string;
|
|
3105
|
-
'utilization.to'?: string;
|
|
3106
|
-
has_call?: boolean;
|
|
3107
|
-
skill_id?: number[];
|
|
3108
|
-
region_id?: number[];
|
|
3109
|
-
supervisor_id?: number[];
|
|
3110
|
-
auditor_id?: string[];
|
|
3111
|
-
};
|
|
3112
|
-
export type SearchAgentStatusStatisticItemParams = {
|
|
3113
|
-
'time.from'?: string;
|
|
3114
|
-
'time.to'?: string;
|
|
3115
|
-
};
|
|
3116
|
-
export type SearchAgentStateHistoryParams = {
|
|
3117
|
-
page?: number;
|
|
3118
|
-
size?: number;
|
|
3119
|
-
'joined_at.from'?: string;
|
|
3120
|
-
'joined_at.to'?: string;
|
|
3121
|
-
agent_id?: string[];
|
|
3122
|
-
sort?: string;
|
|
3123
|
-
domain_id?: string;
|
|
3124
|
-
from_id?: string;
|
|
3125
|
-
};
|
|
3126
|
-
export type SearchPauseCauseForAgentParams = {
|
|
3127
|
-
allow_change?: boolean;
|
|
3128
|
-
};
|
|
3129
|
-
export type SearchAgentSkillParams = {
|
|
3130
|
-
page?: number;
|
|
3131
|
-
size?: number;
|
|
3132
|
-
q?: string;
|
|
3133
|
-
sort?: string;
|
|
3134
|
-
fields?: string[];
|
|
3135
|
-
id?: string[];
|
|
3136
|
-
skill_id?: string[];
|
|
3137
|
-
};
|
|
3138
|
-
export type DeleteAgentSkillsParams = {
|
|
3139
|
-
id?: string[];
|
|
3140
|
-
skill_id?: string[];
|
|
3141
|
-
};
|
|
3142
|
-
export type ReadAgentSkillParams = {
|
|
3143
|
-
domain_id?: string;
|
|
3144
|
-
};
|
|
3145
|
-
export type DeleteAgentSkillParams = {
|
|
3146
|
-
domain_id?: string;
|
|
3147
|
-
};
|
|
3148
|
-
export type AgentStateHistoryParams = {
|
|
3149
|
-
page?: number;
|
|
3150
|
-
size?: number;
|
|
3151
|
-
time_from?: string;
|
|
3152
|
-
time_to?: string;
|
|
3153
|
-
q?: string;
|
|
3154
|
-
domain_id?: string;
|
|
3155
|
-
};
|
|
3156
|
-
export type SearchAgentInQueueStatisticsParams = {
|
|
3157
|
-
domain_id?: string;
|
|
3158
|
-
};
|
|
3159
|
-
export type AgentTodayStatisticsParams = {
|
|
3160
|
-
fields?: string[];
|
|
3161
|
-
};
|
|
3162
|
-
export type ReadAgentParams = {
|
|
3163
|
-
domain_id?: string;
|
|
3164
|
-
};
|
|
3165
|
-
export type DeleteAgentParams = {
|
|
3166
|
-
domain_id?: string;
|
|
3167
|
-
};
|
|
3168
|
-
export type SearchAgentInQueueParams = {
|
|
3169
|
-
page?: number;
|
|
3170
|
-
size?: number;
|
|
3171
|
-
q?: string;
|
|
3172
|
-
sort?: string;
|
|
3173
|
-
fields?: string[];
|
|
3174
|
-
};
|
|
3175
|
-
export type SearchAgentInTeamParams = {
|
|
3176
|
-
page?: number;
|
|
3177
|
-
size?: number;
|
|
3178
|
-
q?: string;
|
|
3179
|
-
domain_id?: string;
|
|
3180
|
-
};
|
|
3181
|
-
export type SearchAuditFormParams = {
|
|
3182
|
-
page?: number;
|
|
3183
|
-
size?: number;
|
|
3184
|
-
q?: string;
|
|
3185
|
-
sort?: string;
|
|
3186
|
-
fields?: string[];
|
|
3187
|
-
id?: number[];
|
|
3188
|
-
team_id?: number[];
|
|
3189
|
-
enabled?: boolean;
|
|
3190
|
-
/**
|
|
3191
|
-
* bool archive = 9;.
|
|
3192
|
-
*/
|
|
3193
|
-
editable?: boolean;
|
|
3194
|
-
question?: string;
|
|
3195
|
-
};
|
|
3196
|
-
export type SearchAuditRateParams = {
|
|
3197
|
-
page?: number;
|
|
3198
|
-
size?: number;
|
|
3199
|
-
q?: string;
|
|
3200
|
-
sort?: string;
|
|
3201
|
-
fields?: string[];
|
|
3202
|
-
'created_at.from'?: string;
|
|
3203
|
-
'created_at.to'?: string;
|
|
3204
|
-
id?: number[];
|
|
3205
|
-
call_id?: string[];
|
|
3206
|
-
rated_user?: string[];
|
|
3207
|
-
};
|
|
3208
|
-
export type SearchBucketParams = {
|
|
3209
|
-
page?: number;
|
|
3210
|
-
size?: number;
|
|
3211
|
-
q?: string;
|
|
3212
|
-
sort?: string;
|
|
3213
|
-
fields?: string[];
|
|
3214
|
-
id?: number[];
|
|
3215
|
-
};
|
|
3216
|
-
export type ReadBucketParams = {
|
|
3217
|
-
domain_id?: string;
|
|
3218
|
-
};
|
|
3219
|
-
export type DeleteBucketParams = {
|
|
3220
|
-
domain_id?: string;
|
|
3221
|
-
};
|
|
3222
|
-
export type SearchCommunicationTypeParams = {
|
|
3223
|
-
page?: number;
|
|
3224
|
-
size?: number;
|
|
3225
|
-
q?: string;
|
|
3226
|
-
sort?: string;
|
|
3227
|
-
fields?: string[];
|
|
3228
|
-
id?: number[];
|
|
3229
|
-
channel?: SearchCommunicationTypeChannelItem[];
|
|
3230
|
-
default?: boolean;
|
|
3231
|
-
};
|
|
3232
|
-
export type SearchCommunicationTypeChannelItem = typeof SearchCommunicationTypeChannelItem[keyof typeof SearchCommunicationTypeChannelItem];
|
|
3233
|
-
export declare const SearchCommunicationTypeChannelItem: {
|
|
3234
|
-
readonly Undefined: "Undefined";
|
|
3235
|
-
readonly Phone: "Phone";
|
|
3236
|
-
readonly Email: "Email";
|
|
3237
|
-
readonly Messaging: "Messaging";
|
|
3238
|
-
};
|
|
3239
|
-
export type ReadCommunicationTypeParams = {
|
|
3240
|
-
domain_id?: string;
|
|
3241
|
-
};
|
|
3242
|
-
export type DeleteCommunicationTypeParams = {
|
|
3243
|
-
domain_id?: string;
|
|
3244
|
-
};
|
|
3245
|
-
export type SearchListParams = {
|
|
3246
|
-
page?: number;
|
|
3247
|
-
size?: number;
|
|
3248
|
-
q?: string;
|
|
3249
|
-
sort?: string;
|
|
3250
|
-
fields?: string[];
|
|
3251
|
-
id?: number[];
|
|
3252
|
-
};
|
|
3253
|
-
export type ReadListParams = {
|
|
3254
|
-
domain_id?: string;
|
|
3255
|
-
};
|
|
3256
|
-
export type DeleteListParams = {
|
|
3257
|
-
domain_id?: string;
|
|
3258
|
-
};
|
|
3259
|
-
export type SearchListCommunicationParams = {
|
|
3260
|
-
page?: number;
|
|
3261
|
-
size?: number;
|
|
3262
|
-
q?: string;
|
|
3263
|
-
sort?: string;
|
|
3264
|
-
fields?: string[];
|
|
3265
|
-
id?: number[];
|
|
3266
|
-
'expire_at.from'?: string;
|
|
3267
|
-
'expire_at.to'?: string;
|
|
3268
|
-
};
|
|
3269
|
-
export type ReadListCommunicationParams = {
|
|
3270
|
-
domain_id?: string;
|
|
3271
|
-
};
|
|
3272
|
-
export type DeleteListCommunicationParams = {
|
|
3273
|
-
domain_id?: string;
|
|
3274
|
-
};
|
|
3275
|
-
export type SearchLookupAgentNotExistsSkillParams = {
|
|
3276
|
-
page?: number;
|
|
3277
|
-
size?: number;
|
|
3278
|
-
q?: string;
|
|
3279
|
-
domain_id?: string;
|
|
3280
|
-
};
|
|
3281
|
-
export type SearchLookupUsersAgentNotExistsParams = {
|
|
3282
|
-
page?: number;
|
|
3283
|
-
size?: number;
|
|
3284
|
-
q?: string;
|
|
3285
|
-
domain_id?: string;
|
|
3286
|
-
};
|
|
3287
|
-
export type SearchMembersParams = {
|
|
3288
|
-
page?: number;
|
|
3289
|
-
size?: number;
|
|
3290
|
-
q?: string;
|
|
3291
|
-
sort?: string;
|
|
3292
|
-
fields?: string[];
|
|
3293
|
-
id?: string[];
|
|
3294
|
-
queue_id?: number[];
|
|
3295
|
-
bucket_id?: number[];
|
|
3296
|
-
destination?: string;
|
|
3297
|
-
'created_at.from'?: string;
|
|
3298
|
-
'created_at.to'?: string;
|
|
3299
|
-
'offering_at.from'?: string;
|
|
3300
|
-
'offering_at.to'?: string;
|
|
3301
|
-
stop_cause?: string[];
|
|
3302
|
-
'priority.from'?: string;
|
|
3303
|
-
'priority.to'?: string;
|
|
3304
|
-
name?: string;
|
|
3305
|
-
'attempts.from'?: string;
|
|
3306
|
-
'attempts.to'?: string;
|
|
3307
|
-
agent_id?: number[];
|
|
3308
|
-
};
|
|
3309
|
-
export type SearchAgentPauseCauseParams = {
|
|
3310
|
-
page?: number;
|
|
3311
|
-
size?: number;
|
|
3312
|
-
q?: string;
|
|
3313
|
-
sort?: string;
|
|
3314
|
-
fields?: string[];
|
|
3315
|
-
id?: number[];
|
|
3316
|
-
};
|
|
3317
|
-
export type SearchPresetQueryParams = {
|
|
3318
|
-
page?: number;
|
|
3319
|
-
size?: number;
|
|
3320
|
-
q?: string;
|
|
3321
|
-
sort?: string;
|
|
3322
|
-
fields?: string[];
|
|
3323
|
-
id?: number[];
|
|
3324
|
-
section?: string[];
|
|
3325
|
-
};
|
|
3326
|
-
export type SearchQueueParams = {
|
|
3327
|
-
page?: number;
|
|
3328
|
-
size?: number;
|
|
3329
|
-
q?: string;
|
|
3330
|
-
sort?: string;
|
|
3331
|
-
fields?: string[];
|
|
3332
|
-
id?: string[];
|
|
3333
|
-
type?: number[];
|
|
3334
|
-
team_id?: number[];
|
|
3335
|
-
tags?: string[];
|
|
3336
|
-
enabled?: boolean;
|
|
3337
|
-
};
|
|
3338
|
-
export type SearchAttemptsParams = {
|
|
3339
|
-
page?: number;
|
|
3340
|
-
size?: number;
|
|
3341
|
-
q?: string;
|
|
3342
|
-
sort?: string;
|
|
3343
|
-
fields?: string[];
|
|
3344
|
-
'joined_at.from'?: string;
|
|
3345
|
-
'joined_at.to'?: string;
|
|
3346
|
-
id?: string[];
|
|
3347
|
-
queue_id?: string[];
|
|
3348
|
-
bucket_id?: string[];
|
|
3349
|
-
member_id?: string[];
|
|
3350
|
-
agent_id?: string[];
|
|
3351
|
-
result?: string[];
|
|
3352
|
-
'leaving_at.from'?: string;
|
|
3353
|
-
'leaving_at.to'?: string;
|
|
3354
|
-
'offering_at.from'?: string;
|
|
3355
|
-
'offering_at.to'?: string;
|
|
3356
|
-
'duration.from'?: string;
|
|
3357
|
-
'duration.to'?: string;
|
|
3358
|
-
offered_agent_id?: string[];
|
|
3359
|
-
};
|
|
3360
|
-
export type SearchAttemptsHistoryParams = {
|
|
3361
|
-
page?: number;
|
|
3362
|
-
size?: number;
|
|
3363
|
-
q?: string;
|
|
3364
|
-
sort?: string;
|
|
3365
|
-
fields?: string[];
|
|
3366
|
-
'joined_at.from'?: string;
|
|
3367
|
-
'joined_at.to'?: string;
|
|
3368
|
-
id?: string[];
|
|
3369
|
-
queue_id?: string[];
|
|
3370
|
-
bucket_id?: string[];
|
|
3371
|
-
member_id?: string[];
|
|
3372
|
-
agent_id?: string[];
|
|
3373
|
-
result?: string[];
|
|
3374
|
-
'leaving_at.from'?: string;
|
|
3375
|
-
'leaving_at.to'?: string;
|
|
3376
|
-
'offering_at.from'?: string;
|
|
3377
|
-
'offering_at.to'?: string;
|
|
3378
|
-
'duration.from'?: string;
|
|
3379
|
-
'duration.to'?: string;
|
|
3380
|
-
offered_agent_id?: string[];
|
|
3381
|
-
};
|
|
3382
|
-
export type SearchQueueReportGeneralParams = {
|
|
3383
|
-
page?: number;
|
|
3384
|
-
size?: number;
|
|
3385
|
-
'joined_at.from'?: string;
|
|
3386
|
-
'joined_at.to'?: string;
|
|
3387
|
-
domain_id?: string;
|
|
3388
|
-
fields?: string[];
|
|
3389
|
-
sort?: string;
|
|
3390
|
-
q?: string;
|
|
3391
|
-
queue_id?: number[];
|
|
3392
|
-
team_id?: number[];
|
|
3393
|
-
type?: number[];
|
|
3394
|
-
};
|
|
3395
|
-
export type SearchQueueTagsParams = {
|
|
3396
|
-
page?: number;
|
|
3397
|
-
size?: number;
|
|
3398
|
-
q?: string;
|
|
3399
|
-
sort?: string;
|
|
3400
|
-
fields?: string[];
|
|
3401
|
-
};
|
|
3402
|
-
export type ReadQueueParams = {
|
|
3403
|
-
domain_id?: string;
|
|
3404
|
-
};
|
|
3405
|
-
export type DeleteQueueParams = {
|
|
3406
|
-
domain_id?: string;
|
|
3407
|
-
};
|
|
3408
|
-
export type SearchQueueBucketParams = {
|
|
3409
|
-
page?: number;
|
|
3410
|
-
size?: number;
|
|
3411
|
-
q?: string;
|
|
3412
|
-
sort?: string;
|
|
3413
|
-
fields?: string[];
|
|
3414
|
-
id?: number[];
|
|
3415
|
-
};
|
|
3416
|
-
export type SearchQueueHookParams = {
|
|
3417
|
-
page?: number;
|
|
3418
|
-
size?: number;
|
|
3419
|
-
q?: string;
|
|
3420
|
-
sort?: string;
|
|
3421
|
-
fields?: string[];
|
|
3422
|
-
id?: number[];
|
|
3423
|
-
schema_id?: number[];
|
|
3424
|
-
event?: string[];
|
|
3425
|
-
};
|
|
3426
|
-
export type SearchMemberInQueueParams = {
|
|
3427
|
-
page?: number;
|
|
3428
|
-
size?: number;
|
|
3429
|
-
q?: string;
|
|
3430
|
-
sort?: string;
|
|
3431
|
-
fields?: string[];
|
|
3432
|
-
id?: string[];
|
|
3433
|
-
bucket_id?: number[];
|
|
3434
|
-
destination?: string;
|
|
3435
|
-
'created_at.from'?: string;
|
|
3436
|
-
'created_at.to'?: string;
|
|
3437
|
-
'offering_at.from'?: string;
|
|
3438
|
-
'offering_at.to'?: string;
|
|
3439
|
-
stop_cause?: string[];
|
|
3440
|
-
'priority.from'?: string;
|
|
3441
|
-
'priority.to'?: string;
|
|
3442
|
-
name?: string;
|
|
3443
|
-
'attempts.from'?: string;
|
|
3444
|
-
'attempts.to'?: string;
|
|
3445
|
-
agent_id?: number[];
|
|
3446
|
-
};
|
|
3447
|
-
export type ReadMemberParams = {
|
|
3448
|
-
domain_id?: string;
|
|
3449
|
-
};
|
|
3450
|
-
export type DeleteMemberParams = {
|
|
3451
|
-
domain_id?: string;
|
|
3452
|
-
force?: boolean;
|
|
3453
|
-
};
|
|
3454
|
-
export type SearchMemberAttemptsParams = {
|
|
3455
|
-
domain_id?: string;
|
|
3456
|
-
};
|
|
3457
|
-
export type SearchQueueResourceGroupParams = {
|
|
3458
|
-
page?: number;
|
|
3459
|
-
size?: number;
|
|
3460
|
-
q?: string;
|
|
3461
|
-
sort?: string;
|
|
3462
|
-
fields?: string[];
|
|
3463
|
-
id?: number[];
|
|
3464
|
-
};
|
|
3465
|
-
export type ReadQueueResourceGroupParams = {
|
|
3466
|
-
domain_id?: string;
|
|
3467
|
-
};
|
|
3468
|
-
export type DeleteQueueResourceGroupParams = {
|
|
3469
|
-
domain_id?: string;
|
|
3470
|
-
};
|
|
3471
|
-
export type SearchQueueSkillParams = {
|
|
3472
|
-
page?: number;
|
|
3473
|
-
size?: number;
|
|
3474
|
-
q?: string;
|
|
3475
|
-
sort?: string;
|
|
3476
|
-
fields?: string[];
|
|
3477
|
-
id?: number[];
|
|
3478
|
-
skill_id?: number[];
|
|
3479
|
-
bucket_id?: number[];
|
|
3480
|
-
lvl?: number[];
|
|
3481
|
-
min_capacity?: number[];
|
|
3482
|
-
max_capacity?: number[];
|
|
3483
|
-
enabled?: boolean;
|
|
3484
|
-
};
|
|
3485
|
-
export type SearchQuickRepliesParams = {
|
|
3486
|
-
page?: number;
|
|
3487
|
-
size?: number;
|
|
3488
|
-
q?: string;
|
|
3489
|
-
sort?: string;
|
|
3490
|
-
fields?: string[];
|
|
3491
|
-
id?: number[];
|
|
3492
|
-
};
|
|
3493
|
-
export type SearchOutboundResourceGroupParams = {
|
|
3494
|
-
page?: number;
|
|
3495
|
-
size?: number;
|
|
3496
|
-
q?: string;
|
|
3497
|
-
sort?: string;
|
|
3498
|
-
fields?: string[];
|
|
3499
|
-
id?: number[];
|
|
3500
|
-
};
|
|
3501
|
-
export type SearchOutboundResourceInGroupParams = {
|
|
3502
|
-
page?: number;
|
|
3503
|
-
size?: number;
|
|
3504
|
-
q?: string;
|
|
3505
|
-
sort?: string;
|
|
3506
|
-
fields?: string[];
|
|
3507
|
-
id?: number[];
|
|
3508
|
-
};
|
|
3509
|
-
export type ReadOutboundResourceInGroupParams = {
|
|
3510
|
-
domain_id?: string;
|
|
3511
|
-
};
|
|
3512
|
-
export type DeleteOutboundResourceInGroupParams = {
|
|
3513
|
-
domain_id?: string;
|
|
3514
|
-
};
|
|
3515
|
-
export type ReadOutboundResourceGroupParams = {
|
|
3516
|
-
domain_id?: string;
|
|
3517
|
-
};
|
|
3518
|
-
export type DeleteOutboundResourceGroupParams = {
|
|
3519
|
-
domain_id?: string;
|
|
3520
|
-
};
|
|
3521
|
-
export type SearchOutboundResourceParams = {
|
|
3522
|
-
page?: number;
|
|
3523
|
-
size?: number;
|
|
3524
|
-
q?: string;
|
|
3525
|
-
sort?: string;
|
|
3526
|
-
fields?: string[];
|
|
3527
|
-
id?: number[];
|
|
3528
|
-
};
|
|
3529
|
-
export type ReadOutboundResourceParams = {
|
|
3530
|
-
domain_id?: string;
|
|
3531
|
-
};
|
|
3532
|
-
export type DeleteOutboundResourceParams = {
|
|
3533
|
-
domain_id?: string;
|
|
3534
|
-
};
|
|
3535
|
-
export type SearchOutboundResourceDisplayParams = {
|
|
3536
|
-
page?: number;
|
|
3537
|
-
size?: number;
|
|
3538
|
-
q?: string;
|
|
3539
|
-
sort?: string;
|
|
3540
|
-
fields?: string[];
|
|
3541
|
-
id?: number[];
|
|
3542
|
-
};
|
|
3543
|
-
export type DeleteOutboundResourceDisplaysParams = {
|
|
3544
|
-
items?: string[];
|
|
3545
|
-
};
|
|
3546
|
-
export type ReadOutboundResourceDisplayParams = {
|
|
3547
|
-
domain_id?: string;
|
|
3548
|
-
};
|
|
3549
|
-
export type DeleteOutboundResourceDisplayParams = {
|
|
3550
|
-
domain_id?: string;
|
|
3551
|
-
};
|
|
3552
|
-
export type SearchSkillParams = {
|
|
3553
|
-
page?: number;
|
|
3554
|
-
size?: number;
|
|
3555
|
-
q?: string;
|
|
3556
|
-
sort?: string;
|
|
3557
|
-
fields?: string[];
|
|
3558
|
-
id?: number[];
|
|
3559
|
-
};
|
|
3560
|
-
export type ReadSkillParams = {
|
|
3561
|
-
domain_id?: string;
|
|
3562
|
-
};
|
|
3563
|
-
export type DeleteSkillParams = {
|
|
3564
|
-
domain_id?: string;
|
|
3565
|
-
};
|
|
3566
|
-
export type SearchSkillAgentParams = {
|
|
3567
|
-
page?: number;
|
|
3568
|
-
size?: number;
|
|
3569
|
-
q?: string;
|
|
3570
|
-
sort?: string;
|
|
3571
|
-
fields?: string[];
|
|
3572
|
-
id?: string[];
|
|
3573
|
-
agent_id?: string[];
|
|
3574
|
-
};
|
|
3575
|
-
export type SearchAgentTeamParams = {
|
|
3576
|
-
page?: number;
|
|
3577
|
-
size?: number;
|
|
3578
|
-
q?: string;
|
|
3579
|
-
sort?: string;
|
|
3580
|
-
fields?: string[];
|
|
3581
|
-
id?: number[];
|
|
3582
|
-
strategy?: string[];
|
|
3583
|
-
admin_id?: number[];
|
|
3584
|
-
};
|
|
3585
|
-
export type SearchAgentTriggerParams = {
|
|
3586
|
-
team_id?: string;
|
|
3587
|
-
page?: number;
|
|
3588
|
-
size?: number;
|
|
3589
|
-
q?: string;
|
|
3590
|
-
sort?: string;
|
|
3591
|
-
fields?: string[];
|
|
3592
|
-
enabled?: boolean;
|
|
3593
|
-
id?: number[];
|
|
3594
|
-
schema_id?: number[];
|
|
3595
|
-
};
|
|
3596
|
-
export type ReadAgentTeamParams = {
|
|
3597
|
-
domain_id?: string;
|
|
3598
|
-
};
|
|
3599
|
-
export type DeleteAgentTeamParams = {
|
|
3600
|
-
domain_id?: string;
|
|
3601
|
-
};
|
|
3602
|
-
export type SearchTeamHookParams = {
|
|
3603
|
-
page?: number;
|
|
3604
|
-
size?: number;
|
|
3605
|
-
q?: string;
|
|
3606
|
-
sort?: string;
|
|
3607
|
-
fields?: string[];
|
|
3608
|
-
id?: number[];
|
|
3609
|
-
schema_id?: number[];
|
|
3610
|
-
event?: SearchTeamHookEventItem[];
|
|
3611
|
-
};
|
|
3612
|
-
export type SearchTeamHookEventItem = typeof SearchTeamHookEventItem[keyof typeof SearchTeamHookEventItem];
|
|
3613
|
-
export declare const SearchTeamHookEventItem: {
|
|
3614
|
-
readonly teamHookEventUndefined: "teamHookEventUndefined";
|
|
3615
|
-
readonly agent_status: "agent_status";
|
|
3616
|
-
};
|
|
3617
|
-
export type SearchTeamTriggerParams = {
|
|
3618
|
-
page?: number;
|
|
3619
|
-
size?: number;
|
|
3620
|
-
q?: string;
|
|
3621
|
-
sort?: string;
|
|
3622
|
-
fields?: string[];
|
|
3623
|
-
enabled?: boolean;
|
|
3624
|
-
id?: number[];
|
|
3625
|
-
schema_id?: number[];
|
|
3626
|
-
};
|
|
3627
|
-
export type SearchUserStatusParams = {
|
|
3628
|
-
page?: number;
|
|
3629
|
-
size?: number;
|
|
3630
|
-
q?: string;
|
|
3631
|
-
sort?: string;
|
|
3632
|
-
fields?: string[];
|
|
3633
|
-
};
|
|
3634
|
-
export type SearchActiveCallParams = {
|
|
3635
|
-
page?: number;
|
|
3636
|
-
size?: number;
|
|
3637
|
-
q?: string;
|
|
3638
|
-
sort?: string;
|
|
3639
|
-
fields?: string[];
|
|
3640
|
-
'created_at.from'?: string;
|
|
3641
|
-
'created_at.to'?: string;
|
|
3642
|
-
user_id?: string[];
|
|
3643
|
-
agent_id?: string[];
|
|
3644
|
-
queue_id?: string[];
|
|
3645
|
-
team_id?: string[];
|
|
3646
|
-
member_id?: string[];
|
|
3647
|
-
gateway_id?: string[];
|
|
3648
|
-
'duration.from'?: string;
|
|
3649
|
-
'duration.to'?: string;
|
|
3650
|
-
skip_parent?: boolean;
|
|
3651
|
-
parent_id?: string;
|
|
3652
|
-
cause?: string[];
|
|
3653
|
-
exists_file?: boolean;
|
|
3654
|
-
domain_id?: string;
|
|
3655
|
-
number?: string;
|
|
3656
|
-
direction?: string[];
|
|
3657
|
-
'answered_at.from'?: string;
|
|
3658
|
-
'answered_at.to'?: string;
|
|
3659
|
-
missed?: boolean;
|
|
3660
|
-
'stored_at.from'?: string;
|
|
3661
|
-
'stored_at.to'?: string;
|
|
3662
|
-
supervisor_id?: string[];
|
|
3663
|
-
state?: string[];
|
|
3664
|
-
};
|
|
3665
|
-
export type ReadCallParams = {
|
|
3666
|
-
domain_id?: string;
|
|
3667
|
-
};
|
|
3668
|
-
export type SearchHistoryCallParams = {
|
|
3669
|
-
page?: number;
|
|
3670
|
-
size?: number;
|
|
3671
|
-
q?: string;
|
|
3672
|
-
sort?: string;
|
|
3673
|
-
fields?: string[];
|
|
3674
|
-
'created_at.from'?: string;
|
|
3675
|
-
'created_at.to'?: string;
|
|
3676
|
-
user_id?: string[];
|
|
3677
|
-
agent_id?: string[];
|
|
3678
|
-
queue_id?: string[];
|
|
3679
|
-
team_id?: string[];
|
|
3680
|
-
member_id?: string[];
|
|
3681
|
-
gateway_id?: string[];
|
|
3682
|
-
'duration.from'?: string;
|
|
3683
|
-
'duration.to'?: string;
|
|
3684
|
-
skip_parent?: boolean;
|
|
3685
|
-
parent_id?: string;
|
|
3686
|
-
cause?: string[];
|
|
3687
|
-
has_file?: boolean;
|
|
3688
|
-
domain_id?: string;
|
|
3689
|
-
number?: string;
|
|
3690
|
-
direction?: string;
|
|
3691
|
-
'answered_at.from'?: string;
|
|
3692
|
-
'answered_at.to'?: string;
|
|
3693
|
-
missed?: boolean;
|
|
3694
|
-
'stored_at.from'?: string;
|
|
3695
|
-
'stored_at.to'?: string;
|
|
3696
|
-
id?: string[];
|
|
3697
|
-
transfer_from?: string[];
|
|
3698
|
-
transfer_to?: string[];
|
|
3699
|
-
dependency_id?: string;
|
|
3700
|
-
tags?: string[];
|
|
3701
|
-
amd_result?: string[];
|
|
3702
|
-
fts?: string;
|
|
3703
|
-
directions?: string[];
|
|
3704
|
-
has_transcript?: boolean;
|
|
3705
|
-
agent_description?: string;
|
|
3706
|
-
owner_id?: string[];
|
|
3707
|
-
grantee_id?: string[];
|
|
3708
|
-
amd_ai_result?: string[];
|
|
3709
|
-
'talk.from'?: string;
|
|
3710
|
-
'talk.to'?: string;
|
|
3711
|
-
rated?: boolean;
|
|
3712
|
-
rated_by?: string[];
|
|
3713
|
-
'score_required.from'?: string;
|
|
3714
|
-
'score_required.to'?: string;
|
|
3715
|
-
'score_optional.from'?: string;
|
|
3716
|
-
'score_optional.to'?: string;
|
|
3717
|
-
rated_user?: string[];
|
|
3718
|
-
contact_id?: string[];
|
|
3719
|
-
schema_id?: number[];
|
|
3720
|
-
has_transfer?: boolean;
|
|
3721
|
-
timeline?: boolean;
|
|
3722
|
-
};
|
|
3723
|
-
export type SearchEmailProfileParams = {
|
|
3724
|
-
page?: number;
|
|
3725
|
-
size?: number;
|
|
3726
|
-
q?: string;
|
|
3727
|
-
sort?: string;
|
|
3728
|
-
fields?: string[];
|
|
3729
|
-
};
|
|
3730
|
-
export type SearchWebHookParams = {
|
|
3731
|
-
page?: number;
|
|
3732
|
-
size?: number;
|
|
3733
|
-
q?: string;
|
|
3734
|
-
sort?: string;
|
|
3735
|
-
fields?: string[];
|
|
3736
|
-
id?: number[];
|
|
3737
|
-
};
|
|
3738
|
-
export type SearchRegionParams = {
|
|
3739
|
-
page?: number;
|
|
3740
|
-
size?: number;
|
|
3741
|
-
q?: string;
|
|
3742
|
-
sort?: string;
|
|
3743
|
-
fields?: string[];
|
|
3744
|
-
id?: string[];
|
|
3745
|
-
name?: string;
|
|
3746
|
-
description?: string;
|
|
3747
|
-
timezone_id?: number[];
|
|
3748
|
-
};
|
|
3749
|
-
export type SearchRoutingOutboundCallParams = {
|
|
3750
|
-
page?: number;
|
|
3751
|
-
size?: number;
|
|
3752
|
-
q?: string;
|
|
3753
|
-
sort?: string;
|
|
3754
|
-
fields?: string[];
|
|
3755
|
-
id?: number[];
|
|
3756
|
-
name?: string;
|
|
3757
|
-
schema_id?: number[];
|
|
3758
|
-
pattern?: string;
|
|
3759
|
-
description?: string;
|
|
3760
|
-
};
|
|
3761
|
-
export type ReadRoutingOutboundCallParams = {
|
|
3762
|
-
domain_id?: string;
|
|
3763
|
-
};
|
|
3764
|
-
export type DeleteRoutingOutboundCallParams = {
|
|
3765
|
-
domain_id?: string;
|
|
3766
|
-
};
|
|
3767
|
-
export type SearchChatPlanParams = {
|
|
3768
|
-
page?: number;
|
|
3769
|
-
size?: number;
|
|
3770
|
-
q?: string;
|
|
3771
|
-
sort?: string;
|
|
3772
|
-
fields?: string[];
|
|
3773
|
-
id?: number[];
|
|
3774
|
-
name?: string;
|
|
3775
|
-
enabled?: boolean;
|
|
3776
|
-
};
|
|
3777
|
-
export type SearchRoutingSchemaParams = {
|
|
3778
|
-
page?: number;
|
|
3779
|
-
size?: number;
|
|
3780
|
-
q?: string;
|
|
3781
|
-
sort?: string;
|
|
3782
|
-
fields?: string[];
|
|
3783
|
-
id?: number[];
|
|
3784
|
-
name?: string;
|
|
3785
|
-
type?: SearchRoutingSchemaTypeItem[];
|
|
3786
|
-
editor?: boolean;
|
|
3787
|
-
tags?: string[];
|
|
3788
|
-
};
|
|
3789
|
-
export type SearchRoutingSchemaTypeItem = typeof SearchRoutingSchemaTypeItem[keyof typeof SearchRoutingSchemaTypeItem];
|
|
3790
|
-
export declare const SearchRoutingSchemaTypeItem: {
|
|
3791
|
-
readonly default: "default";
|
|
3792
|
-
readonly voice: "voice";
|
|
3793
|
-
readonly chat: "chat";
|
|
3794
|
-
readonly processing: "processing";
|
|
3795
|
-
readonly service: "service";
|
|
3796
|
-
};
|
|
3797
|
-
export type SearchRoutingSchemaTagsParams = {
|
|
3798
|
-
page?: number;
|
|
3799
|
-
size?: number;
|
|
3800
|
-
q?: string;
|
|
3801
|
-
sort?: string;
|
|
3802
|
-
fields?: string[];
|
|
3803
|
-
type?: SearchRoutingSchemaTagsTypeItem[];
|
|
3804
|
-
};
|
|
3805
|
-
export type SearchRoutingSchemaTagsTypeItem = typeof SearchRoutingSchemaTagsTypeItem[keyof typeof SearchRoutingSchemaTagsTypeItem];
|
|
3806
|
-
export declare const SearchRoutingSchemaTagsTypeItem: {
|
|
3807
|
-
readonly default: "default";
|
|
3808
|
-
readonly voice: "voice";
|
|
3809
|
-
readonly chat: "chat";
|
|
3810
|
-
readonly processing: "processing";
|
|
3811
|
-
readonly service: "service";
|
|
3812
|
-
};
|
|
3813
|
-
export type SearchSchemaVariableParams = {
|
|
3814
|
-
page?: number;
|
|
3815
|
-
size?: number;
|
|
3816
|
-
q?: string;
|
|
3817
|
-
sort?: string;
|
|
3818
|
-
fields?: string[];
|
|
3819
|
-
};
|
|
3820
|
-
export type ReadRoutingSchemaParams = {
|
|
3821
|
-
domain_id?: string;
|
|
3822
|
-
};
|
|
3823
|
-
export type DeleteRoutingSchemaParams = {
|
|
3824
|
-
domain_id?: string;
|
|
3825
|
-
};
|
|
3826
|
-
export type SearchSchemaVersionParams = {
|
|
3827
|
-
page?: number;
|
|
3828
|
-
size?: number;
|
|
3829
|
-
q?: string;
|
|
3830
|
-
sort?: string;
|
|
3831
|
-
fields?: string[];
|
|
3832
|
-
};
|
|
3833
|
-
export type SearchRoutingVariableParams = {
|
|
3834
|
-
page?: number;
|
|
3835
|
-
size?: number;
|
|
3836
|
-
domain_id?: string;
|
|
3837
|
-
};
|
|
3838
|
-
export type ReadRoutingVariableParams = {
|
|
3839
|
-
domain_id?: string;
|
|
3840
|
-
};
|
|
3841
|
-
export type DeleteRoutingVariableParams = {
|
|
3842
|
-
domain_id?: string;
|
|
3843
|
-
};
|
|
3844
|
-
export type SearchSystemSettingParams = {
|
|
3845
|
-
page?: number;
|
|
3846
|
-
size?: number;
|
|
3847
|
-
q?: string;
|
|
3848
|
-
sort?: string;
|
|
3849
|
-
fields?: string[];
|
|
3850
|
-
/**
|
|
3851
|
-
* Filter by setting names.
|
|
3852
|
-
*/
|
|
3853
|
-
name?: SearchSystemSettingNameItem[];
|
|
3854
|
-
};
|
|
3855
|
-
export type SearchSystemSettingNameItem = typeof SearchSystemSettingNameItem[keyof typeof SearchSystemSettingNameItem];
|
|
3856
|
-
export declare const SearchSystemSettingNameItem: {
|
|
3857
|
-
readonly empty_system_settings_name: "empty_system_settings_name";
|
|
3858
|
-
readonly enable_omnichannel: "enable_omnichannel";
|
|
3859
|
-
readonly member_chunk_size: "member_chunk_size";
|
|
3860
|
-
readonly amd_cancel_not_human: "amd_cancel_not_human";
|
|
3861
|
-
readonly scheme_version_limit: "scheme_version_limit";
|
|
3862
|
-
readonly enable_2fa: "enable_2fa";
|
|
3863
|
-
readonly export_settings: "export_settings";
|
|
3864
|
-
readonly search_number_length: "search_number_length";
|
|
3865
|
-
readonly chat_ai_connection: "chat_ai_connection";
|
|
3866
|
-
readonly password_reg_exp: "password_reg_exp";
|
|
3867
|
-
readonly password_validation_text: "password_validation_text";
|
|
3868
|
-
readonly autolink_call_to_contact: "autolink_call_to_contact";
|
|
3869
|
-
readonly period_to_playback_records: "period_to_playback_records";
|
|
3870
|
-
readonly is_fulltext_search_enabled: "is_fulltext_search_enabled";
|
|
3871
|
-
readonly wbt_hide_contact: "wbt_hide_contact";
|
|
3872
|
-
readonly show_full_contact: "show_full_contact";
|
|
3873
|
-
readonly call_end_sound_notification: "call_end_sound_notification";
|
|
3874
|
-
readonly call_end_push_notification: "call_end_push_notification";
|
|
3875
|
-
readonly chat_end_sound_notification: "chat_end_sound_notification";
|
|
3876
|
-
readonly chat_end_push_notification: "chat_end_push_notification";
|
|
3877
|
-
readonly task_end_sound_notification: "task_end_sound_notification";
|
|
3878
|
-
readonly task_end_push_notification: "task_end_push_notification";
|
|
3879
|
-
readonly push_notification_timeout: "push_notification_timeout";
|
|
3880
|
-
readonly labels_to_limit_contacts: "labels_to_limit_contacts";
|
|
3881
|
-
};
|
|
3882
|
-
export type SearchAvailableSystemSettingParams = {
|
|
3883
|
-
page?: number;
|
|
3884
|
-
size?: number;
|
|
3885
|
-
q?: string;
|
|
3886
|
-
sort?: string;
|
|
3887
|
-
fields?: string[];
|
|
3888
|
-
};
|
|
3889
|
-
export type SearchTriggerParams = {
|
|
3890
|
-
page?: number;
|
|
3891
|
-
size?: number;
|
|
3892
|
-
q?: string;
|
|
3893
|
-
sort?: string;
|
|
3894
|
-
fields?: string[];
|
|
3895
|
-
id?: number[];
|
|
3896
|
-
schema_id?: number[];
|
|
3897
|
-
};
|
|
3898
|
-
export type SearchTriggerJobParams = {
|
|
3899
|
-
page?: number;
|
|
3900
|
-
size?: number;
|
|
3901
|
-
q?: string;
|
|
3902
|
-
sort?: string;
|
|
3903
|
-
fields?: string[];
|
|
3904
|
-
'created_at.from'?: string;
|
|
3905
|
-
'created_at.to'?: string;
|
|
3906
|
-
'started_at.from'?: string;
|
|
3907
|
-
'started_at.to'?: string;
|
|
3908
|
-
'duration.from'?: string;
|
|
3909
|
-
'duration.to'?: string;
|
|
3910
|
-
state?: SearchTriggerJobStateItem[];
|
|
3911
|
-
};
|
|
3912
|
-
export type SearchTriggerJobStateItem = typeof SearchTriggerJobStateItem[keyof typeof SearchTriggerJobStateItem];
|
|
3913
|
-
export declare const SearchTriggerJobStateItem: {
|
|
3914
|
-
readonly idle: "idle";
|
|
3915
|
-
readonly active: "active";
|
|
3916
|
-
readonly done: "done";
|
|
3917
|
-
readonly error: "error";
|
|
3918
|
-
};
|
|
3919
|
-
export type ActivityWorkspaceWidgetParams = {
|
|
3920
|
-
fields?: string[];
|
|
3921
|
-
};
|