@webitel/ui-sdk 25.4.86 → 25.5.2
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,3091 +0,0 @@
|
|
|
1
|
-
[**@webitel/ui-sdk**](../README.md)
|
|
2
|
-
|
|
3
|
-
***
|
|
4
|
-
|
|
5
|
-
[@webitel/ui-sdk](../index.html) / webitelAPI.schemas
|
|
6
|
-
|
|
7
|
-
# webitelAPI.schemas
|
|
8
|
-
|
|
9
|
-
## References
|
|
10
|
-
|
|
11
|
-
### ActivityWorkspaceWidgetParams
|
|
12
|
-
|
|
13
|
-
Re-exports [ActivityWorkspaceWidgetParams](../types/webitelAPI.schemas.ActivityWorkspaceWidgetParams.html)
|
|
14
|
-
|
|
15
|
-
***
|
|
16
|
-
|
|
17
|
-
### AgentInQueueAgentsInQueue
|
|
18
|
-
|
|
19
|
-
Re-exports [AgentInQueueAgentsInQueue](../interfaces/webitelAPI.schemas.AgentInQueueAgentsInQueue.html)
|
|
20
|
-
|
|
21
|
-
***
|
|
22
|
-
|
|
23
|
-
### AgentInQueueStatisticsAgentInQueueStatisticsItem
|
|
24
|
-
|
|
25
|
-
Re-exports [AgentInQueueStatisticsAgentInQueueStatisticsItem](../interfaces/webitelAPI.schemas.AgentInQueueStatisticsAgentInQueueStatisticsItem.html)
|
|
26
|
-
|
|
27
|
-
***
|
|
28
|
-
|
|
29
|
-
### AgentStateHistoryParams
|
|
30
|
-
|
|
31
|
-
Re-exports [AgentStateHistoryParams](../types/webitelAPI.schemas.AgentStateHistoryParams.html)
|
|
32
|
-
|
|
33
|
-
***
|
|
34
|
-
|
|
35
|
-
### AgentTodayStatisticsParams
|
|
36
|
-
|
|
37
|
-
Re-exports [AgentTodayStatisticsParams](../types/webitelAPI.schemas.AgentTodayStatisticsParams.html)
|
|
38
|
-
|
|
39
|
-
***
|
|
40
|
-
|
|
41
|
-
### AggregateRequestGroup
|
|
42
|
-
|
|
43
|
-
Re-exports [AggregateRequestGroup](../interfaces/webitelAPI.schemas.AggregateRequestGroup.html)
|
|
44
|
-
|
|
45
|
-
***
|
|
46
|
-
|
|
47
|
-
### CreateCallRequestCallSettings
|
|
48
|
-
|
|
49
|
-
Re-exports [CreateCallRequestCallSettings](../interfaces/webitelAPI.schemas.CreateCallRequestCallSettings.html)
|
|
50
|
-
|
|
51
|
-
***
|
|
52
|
-
|
|
53
|
-
### CreateCallRequestCallSettingsVariables
|
|
54
|
-
|
|
55
|
-
Re-exports [CreateCallRequestCallSettingsVariables](../types/webitelAPI.schemas.CreateCallRequestCallSettingsVariables.html)
|
|
56
|
-
|
|
57
|
-
***
|
|
58
|
-
|
|
59
|
-
### DefaultDeviceConfigResponseSipDeviceConfig
|
|
60
|
-
|
|
61
|
-
Re-exports [DefaultDeviceConfigResponseSipDeviceConfig](../interfaces/webitelAPI.schemas.DefaultDeviceConfigResponseSipDeviceConfig.html)
|
|
62
|
-
|
|
63
|
-
***
|
|
64
|
-
|
|
65
|
-
### DefaultDeviceConfigResponseWebRTCDeviceConfig
|
|
66
|
-
|
|
67
|
-
Re-exports [DefaultDeviceConfigResponseWebRTCDeviceConfig](../interfaces/webitelAPI.schemas.DefaultDeviceConfigResponseWebRTCDeviceConfig.html)
|
|
68
|
-
|
|
69
|
-
***
|
|
70
|
-
|
|
71
|
-
### DeleteAgentParams
|
|
72
|
-
|
|
73
|
-
Re-exports [DeleteAgentParams](../types/webitelAPI.schemas.DeleteAgentParams.html)
|
|
74
|
-
|
|
75
|
-
***
|
|
76
|
-
|
|
77
|
-
### DeleteAgentSkillParams
|
|
78
|
-
|
|
79
|
-
Re-exports [DeleteAgentSkillParams](../types/webitelAPI.schemas.DeleteAgentSkillParams.html)
|
|
80
|
-
|
|
81
|
-
***
|
|
82
|
-
|
|
83
|
-
### DeleteAgentSkillsParams
|
|
84
|
-
|
|
85
|
-
Re-exports [DeleteAgentSkillsParams](../types/webitelAPI.schemas.DeleteAgentSkillsParams.html)
|
|
86
|
-
|
|
87
|
-
***
|
|
88
|
-
|
|
89
|
-
### DeleteAgentTeamParams
|
|
90
|
-
|
|
91
|
-
Re-exports [DeleteAgentTeamParams](../types/webitelAPI.schemas.DeleteAgentTeamParams.html)
|
|
92
|
-
|
|
93
|
-
***
|
|
94
|
-
|
|
95
|
-
### DeleteBucketParams
|
|
96
|
-
|
|
97
|
-
Re-exports [DeleteBucketParams](../types/webitelAPI.schemas.DeleteBucketParams.html)
|
|
98
|
-
|
|
99
|
-
***
|
|
100
|
-
|
|
101
|
-
### DeleteCalendarParams
|
|
102
|
-
|
|
103
|
-
Re-exports [DeleteCalendarParams](../types/webitelAPI.schemas.DeleteCalendarParams.html)
|
|
104
|
-
|
|
105
|
-
***
|
|
106
|
-
|
|
107
|
-
### DeleteCommunicationTypeParams
|
|
108
|
-
|
|
109
|
-
Re-exports [DeleteCommunicationTypeParams](../types/webitelAPI.schemas.DeleteCommunicationTypeParams.html)
|
|
110
|
-
|
|
111
|
-
***
|
|
112
|
-
|
|
113
|
-
### DeleteListCommunicationParams
|
|
114
|
-
|
|
115
|
-
Re-exports [DeleteListCommunicationParams](../types/webitelAPI.schemas.DeleteListCommunicationParams.html)
|
|
116
|
-
|
|
117
|
-
***
|
|
118
|
-
|
|
119
|
-
### DeleteListParams
|
|
120
|
-
|
|
121
|
-
Re-exports [DeleteListParams](../types/webitelAPI.schemas.DeleteListParams.html)
|
|
122
|
-
|
|
123
|
-
***
|
|
124
|
-
|
|
125
|
-
### DeleteMemberParams
|
|
126
|
-
|
|
127
|
-
Re-exports [DeleteMemberParams](../types/webitelAPI.schemas.DeleteMemberParams.html)
|
|
128
|
-
|
|
129
|
-
***
|
|
130
|
-
|
|
131
|
-
### DeleteOutboundResourceDisplayParams
|
|
132
|
-
|
|
133
|
-
Re-exports [DeleteOutboundResourceDisplayParams](../types/webitelAPI.schemas.DeleteOutboundResourceDisplayParams.html)
|
|
134
|
-
|
|
135
|
-
***
|
|
136
|
-
|
|
137
|
-
### DeleteOutboundResourceDisplaysParams
|
|
138
|
-
|
|
139
|
-
Re-exports [DeleteOutboundResourceDisplaysParams](../types/webitelAPI.schemas.DeleteOutboundResourceDisplaysParams.html)
|
|
140
|
-
|
|
141
|
-
***
|
|
142
|
-
|
|
143
|
-
### DeleteOutboundResourceGroupParams
|
|
144
|
-
|
|
145
|
-
Re-exports [DeleteOutboundResourceGroupParams](../types/webitelAPI.schemas.DeleteOutboundResourceGroupParams.html)
|
|
146
|
-
|
|
147
|
-
***
|
|
148
|
-
|
|
149
|
-
### DeleteOutboundResourceInGroupParams
|
|
150
|
-
|
|
151
|
-
Re-exports [DeleteOutboundResourceInGroupParams](../types/webitelAPI.schemas.DeleteOutboundResourceInGroupParams.html)
|
|
152
|
-
|
|
153
|
-
***
|
|
154
|
-
|
|
155
|
-
### DeleteOutboundResourceParams
|
|
156
|
-
|
|
157
|
-
Re-exports [DeleteOutboundResourceParams](../types/webitelAPI.schemas.DeleteOutboundResourceParams.html)
|
|
158
|
-
|
|
159
|
-
***
|
|
160
|
-
|
|
161
|
-
### DeleteQueueParams
|
|
162
|
-
|
|
163
|
-
Re-exports [DeleteQueueParams](../types/webitelAPI.schemas.DeleteQueueParams.html)
|
|
164
|
-
|
|
165
|
-
***
|
|
166
|
-
|
|
167
|
-
### DeleteQueueResourceGroupParams
|
|
168
|
-
|
|
169
|
-
Re-exports [DeleteQueueResourceGroupParams](../types/webitelAPI.schemas.DeleteQueueResourceGroupParams.html)
|
|
170
|
-
|
|
171
|
-
***
|
|
172
|
-
|
|
173
|
-
### DeleteRoutingOutboundCallParams
|
|
174
|
-
|
|
175
|
-
Re-exports [DeleteRoutingOutboundCallParams](../types/webitelAPI.schemas.DeleteRoutingOutboundCallParams.html)
|
|
176
|
-
|
|
177
|
-
***
|
|
178
|
-
|
|
179
|
-
### DeleteRoutingSchemaParams
|
|
180
|
-
|
|
181
|
-
Re-exports [DeleteRoutingSchemaParams](../types/webitelAPI.schemas.DeleteRoutingSchemaParams.html)
|
|
182
|
-
|
|
183
|
-
***
|
|
184
|
-
|
|
185
|
-
### DeleteRoutingVariableParams
|
|
186
|
-
|
|
187
|
-
Re-exports [DeleteRoutingVariableParams](../types/webitelAPI.schemas.DeleteRoutingVariableParams.html)
|
|
188
|
-
|
|
189
|
-
***
|
|
190
|
-
|
|
191
|
-
### DeleteSkillParams
|
|
192
|
-
|
|
193
|
-
Re-exports [DeleteSkillParams](../types/webitelAPI.schemas.DeleteSkillParams.html)
|
|
194
|
-
|
|
195
|
-
***
|
|
196
|
-
|
|
197
|
-
### EmailProfileParamsOAuth2
|
|
198
|
-
|
|
199
|
-
Re-exports [EmailProfileParamsOAuth2](../interfaces/webitelAPI.schemas.EmailProfileParamsOAuth2.html)
|
|
200
|
-
|
|
201
|
-
***
|
|
202
|
-
|
|
203
|
-
### EngineAcceptOfDay
|
|
204
|
-
|
|
205
|
-
Re-exports [EngineAcceptOfDay](../interfaces/webitelAPI.schemas.EngineAcceptOfDay.html)
|
|
206
|
-
|
|
207
|
-
***
|
|
208
|
-
|
|
209
|
-
### EngineActiveCall
|
|
210
|
-
|
|
211
|
-
Re-exports [EngineActiveCall](../interfaces/webitelAPI.schemas.EngineActiveCall.html)
|
|
212
|
-
|
|
213
|
-
***
|
|
214
|
-
|
|
215
|
-
### EngineActiveCallVariables
|
|
216
|
-
|
|
217
|
-
Re-exports [EngineActiveCallVariables](../types/webitelAPI.schemas.EngineActiveCallVariables.html)
|
|
218
|
-
|
|
219
|
-
***
|
|
220
|
-
|
|
221
|
-
### EngineActivityWorkspaceWidgetResponse
|
|
222
|
-
|
|
223
|
-
Re-exports [EngineActivityWorkspaceWidgetResponse](../interfaces/webitelAPI.schemas.EngineActivityWorkspaceWidgetResponse.html)
|
|
224
|
-
|
|
225
|
-
***
|
|
226
|
-
|
|
227
|
-
### EngineAgent
|
|
228
|
-
|
|
229
|
-
Re-exports [EngineAgent](../interfaces/webitelAPI.schemas.EngineAgent.html)
|
|
230
|
-
|
|
231
|
-
***
|
|
232
|
-
|
|
233
|
-
### EngineAgentCallStatistics
|
|
234
|
-
|
|
235
|
-
Re-exports [EngineAgentCallStatistics](../interfaces/webitelAPI.schemas.EngineAgentCallStatistics.html)
|
|
236
|
-
|
|
237
|
-
***
|
|
238
|
-
|
|
239
|
-
### EngineAgentCallStatisticsList
|
|
240
|
-
|
|
241
|
-
Re-exports [EngineAgentCallStatisticsList](../interfaces/webitelAPI.schemas.EngineAgentCallStatisticsList.html)
|
|
242
|
-
|
|
243
|
-
***
|
|
244
|
-
|
|
245
|
-
### EngineAgentChannel
|
|
246
|
-
|
|
247
|
-
Re-exports [EngineAgentChannel](../interfaces/webitelAPI.schemas.EngineAgentChannel.html)
|
|
248
|
-
|
|
249
|
-
***
|
|
250
|
-
|
|
251
|
-
### EngineAgentInQueue
|
|
252
|
-
|
|
253
|
-
Re-exports [EngineAgentInQueue](../interfaces/webitelAPI.schemas.EngineAgentInQueue.html)
|
|
254
|
-
|
|
255
|
-
***
|
|
256
|
-
|
|
257
|
-
### EngineAgentInQueueStatistics
|
|
258
|
-
|
|
259
|
-
Re-exports [EngineAgentInQueueStatistics](../interfaces/webitelAPI.schemas.EngineAgentInQueueStatistics.html)
|
|
260
|
-
|
|
261
|
-
***
|
|
262
|
-
|
|
263
|
-
### EngineAgentInQueueStatisticsList
|
|
264
|
-
|
|
265
|
-
Re-exports [EngineAgentInQueueStatisticsList](../interfaces/webitelAPI.schemas.EngineAgentInQueueStatisticsList.html)
|
|
266
|
-
|
|
267
|
-
***
|
|
268
|
-
|
|
269
|
-
### EngineAgentInTeam
|
|
270
|
-
|
|
271
|
-
Re-exports [EngineAgentInTeam](../interfaces/webitelAPI.schemas.EngineAgentInTeam.html)
|
|
272
|
-
|
|
273
|
-
***
|
|
274
|
-
|
|
275
|
-
### EngineAgentPauseCause
|
|
276
|
-
|
|
277
|
-
Re-exports [EngineAgentPauseCause](../interfaces/webitelAPI.schemas.EngineAgentPauseCause.html)
|
|
278
|
-
|
|
279
|
-
***
|
|
280
|
-
|
|
281
|
-
### EngineAgentSetStateRequest
|
|
282
|
-
|
|
283
|
-
Re-exports [EngineAgentSetStateRequest](../interfaces/webitelAPI.schemas.EngineAgentSetStateRequest.html)
|
|
284
|
-
|
|
285
|
-
***
|
|
286
|
-
|
|
287
|
-
### EngineAgentSetStateResponse
|
|
288
|
-
|
|
289
|
-
Re-exports [EngineAgentSetStateResponse](../interfaces/webitelAPI.schemas.EngineAgentSetStateResponse.html)
|
|
290
|
-
|
|
291
|
-
***
|
|
292
|
-
|
|
293
|
-
### EngineAgentSkill
|
|
294
|
-
|
|
295
|
-
Re-exports [EngineAgentSkill](../interfaces/webitelAPI.schemas.EngineAgentSkill.html)
|
|
296
|
-
|
|
297
|
-
***
|
|
298
|
-
|
|
299
|
-
### EngineAgentSkillItem
|
|
300
|
-
|
|
301
|
-
Re-exports [EngineAgentSkillItem](../interfaces/webitelAPI.schemas.EngineAgentSkillItem.html)
|
|
302
|
-
|
|
303
|
-
***
|
|
304
|
-
|
|
305
|
-
### EngineAgentState
|
|
306
|
-
|
|
307
|
-
Re-exports [EngineAgentState](../interfaces/webitelAPI.schemas.EngineAgentState.html)
|
|
308
|
-
|
|
309
|
-
***
|
|
310
|
-
|
|
311
|
-
### EngineAgentStatsStatistic
|
|
312
|
-
|
|
313
|
-
Re-exports [EngineAgentStatsStatistic](../interfaces/webitelAPI.schemas.EngineAgentStatsStatistic.html)
|
|
314
|
-
|
|
315
|
-
***
|
|
316
|
-
|
|
317
|
-
### EngineAgentStatusRequest
|
|
318
|
-
|
|
319
|
-
Re-exports [EngineAgentStatusRequest](../interfaces/webitelAPI.schemas.EngineAgentStatusRequest.html)
|
|
320
|
-
|
|
321
|
-
***
|
|
322
|
-
|
|
323
|
-
### EngineAgentStatusStatisticItem
|
|
324
|
-
|
|
325
|
-
Re-exports [EngineAgentStatusStatisticItem](../interfaces/webitelAPI.schemas.EngineAgentStatusStatisticItem.html)
|
|
326
|
-
|
|
327
|
-
***
|
|
328
|
-
|
|
329
|
-
### EngineAgentTeam
|
|
330
|
-
|
|
331
|
-
Re-exports [EngineAgentTeam](../interfaces/webitelAPI.schemas.EngineAgentTeam.html)
|
|
332
|
-
|
|
333
|
-
***
|
|
334
|
-
|
|
335
|
-
### EngineAgentTodayStatisticsResponse
|
|
336
|
-
|
|
337
|
-
Re-exports [EngineAgentTodayStatisticsResponse](../interfaces/webitelAPI.schemas.EngineAgentTodayStatisticsResponse.html)
|
|
338
|
-
|
|
339
|
-
***
|
|
340
|
-
|
|
341
|
-
### EngineAgentUser
|
|
342
|
-
|
|
343
|
-
Re-exports [EngineAgentUser](../interfaces/webitelAPI.schemas.EngineAgentUser.html)
|
|
344
|
-
|
|
345
|
-
***
|
|
346
|
-
|
|
347
|
-
### EngineAggregateHistoryCallRequest
|
|
348
|
-
|
|
349
|
-
Re-exports [EngineAggregateHistoryCallRequest](../interfaces/webitelAPI.schemas.EngineAggregateHistoryCallRequest.html)
|
|
350
|
-
|
|
351
|
-
***
|
|
352
|
-
|
|
353
|
-
### EngineAggregateHistoryCallRequestVariables
|
|
354
|
-
|
|
355
|
-
Re-exports [EngineAggregateHistoryCallRequestVariables](../types/webitelAPI.schemas.EngineAggregateHistoryCallRequestVariables.html)
|
|
356
|
-
|
|
357
|
-
***
|
|
358
|
-
|
|
359
|
-
### EngineAggregateRequest
|
|
360
|
-
|
|
361
|
-
Re-exports [EngineAggregateRequest](../interfaces/webitelAPI.schemas.EngineAggregateRequest.html)
|
|
362
|
-
|
|
363
|
-
***
|
|
364
|
-
|
|
365
|
-
### EngineAggregateResult
|
|
366
|
-
|
|
367
|
-
Re-exports [EngineAggregateResult](../interfaces/webitelAPI.schemas.EngineAggregateResult.html)
|
|
368
|
-
|
|
369
|
-
***
|
|
370
|
-
|
|
371
|
-
### EngineAggregateResultData
|
|
372
|
-
|
|
373
|
-
Re-exports [EngineAggregateResultData](../types/webitelAPI.schemas.EngineAggregateResultData.html)
|
|
374
|
-
|
|
375
|
-
***
|
|
376
|
-
|
|
377
|
-
### EngineApiError
|
|
378
|
-
|
|
379
|
-
Re-exports [EngineApiError](../interfaces/webitelAPI.schemas.EngineApiError.html)
|
|
380
|
-
|
|
381
|
-
***
|
|
382
|
-
|
|
383
|
-
### EngineAttempt
|
|
384
|
-
|
|
385
|
-
Re-exports [EngineAttempt](../interfaces/webitelAPI.schemas.EngineAttempt.html)
|
|
386
|
-
|
|
387
|
-
***
|
|
388
|
-
|
|
389
|
-
### EngineAttemptCallbackRequest
|
|
390
|
-
|
|
391
|
-
Re-exports [EngineAttemptCallbackRequest](../interfaces/webitelAPI.schemas.EngineAttemptCallbackRequest.html)
|
|
392
|
-
|
|
393
|
-
***
|
|
394
|
-
|
|
395
|
-
### EngineAttemptCallbackRequestVariables
|
|
396
|
-
|
|
397
|
-
Re-exports [EngineAttemptCallbackRequestVariables](../types/webitelAPI.schemas.EngineAttemptCallbackRequestVariables.html)
|
|
398
|
-
|
|
399
|
-
***
|
|
400
|
-
|
|
401
|
-
### EngineAttemptHistory
|
|
402
|
-
|
|
403
|
-
Re-exports [EngineAttemptHistory](../interfaces/webitelAPI.schemas.EngineAttemptHistory.html)
|
|
404
|
-
|
|
405
|
-
***
|
|
406
|
-
|
|
407
|
-
### EngineAttemptHistoryVariables
|
|
408
|
-
|
|
409
|
-
Re-exports [EngineAttemptHistoryVariables](../types/webitelAPI.schemas.EngineAttemptHistoryVariables.html)
|
|
410
|
-
|
|
411
|
-
***
|
|
412
|
-
|
|
413
|
-
### EngineAttemptRenewalResultRequest
|
|
414
|
-
|
|
415
|
-
Re-exports [EngineAttemptRenewalResultRequest](../interfaces/webitelAPI.schemas.EngineAttemptRenewalResultRequest.html)
|
|
416
|
-
|
|
417
|
-
***
|
|
418
|
-
|
|
419
|
-
### EngineAttemptRenewalResultResponse
|
|
420
|
-
|
|
421
|
-
Re-exports [EngineAttemptRenewalResultResponse](../interfaces/webitelAPI.schemas.EngineAttemptRenewalResultResponse.html)
|
|
422
|
-
|
|
423
|
-
***
|
|
424
|
-
|
|
425
|
-
### EngineAttemptResultRequest
|
|
426
|
-
|
|
427
|
-
Re-exports [EngineAttemptResultRequest](../interfaces/webitelAPI.schemas.EngineAttemptResultRequest.html)
|
|
428
|
-
|
|
429
|
-
***
|
|
430
|
-
|
|
431
|
-
### EngineAttemptResultRequestVariables
|
|
432
|
-
|
|
433
|
-
Re-exports [EngineAttemptResultRequestVariables](../types/webitelAPI.schemas.EngineAttemptResultRequestVariables.html)
|
|
434
|
-
|
|
435
|
-
***
|
|
436
|
-
|
|
437
|
-
### EngineAttemptResultResponse
|
|
438
|
-
|
|
439
|
-
Re-exports [EngineAttemptResultResponse](../interfaces/webitelAPI.schemas.EngineAttemptResultResponse.html)
|
|
440
|
-
|
|
441
|
-
***
|
|
442
|
-
|
|
443
|
-
### EngineAttemptVariables
|
|
444
|
-
|
|
445
|
-
Re-exports [EngineAttemptVariables](../types/webitelAPI.schemas.EngineAttemptVariables.html)
|
|
446
|
-
|
|
447
|
-
***
|
|
448
|
-
|
|
449
|
-
### EngineAuditForm
|
|
450
|
-
|
|
451
|
-
Re-exports [EngineAuditForm](../interfaces/webitelAPI.schemas.EngineAuditForm.html)
|
|
452
|
-
|
|
453
|
-
***
|
|
454
|
-
|
|
455
|
-
### EngineAuditQuestionType
|
|
456
|
-
|
|
457
|
-
Re-exports [EngineAuditQuestionType](../variables/webitelAPI.schemas.EngineAuditQuestionType.html)
|
|
458
|
-
|
|
459
|
-
***
|
|
460
|
-
|
|
461
|
-
### EngineAuditRate
|
|
462
|
-
|
|
463
|
-
Re-exports [EngineAuditRate](../interfaces/webitelAPI.schemas.EngineAuditRate.html)
|
|
464
|
-
|
|
465
|
-
***
|
|
466
|
-
|
|
467
|
-
### EngineAvailableSystemSetting
|
|
468
|
-
|
|
469
|
-
Re-exports [EngineAvailableSystemSetting](../interfaces/webitelAPI.schemas.EngineAvailableSystemSetting.html)
|
|
470
|
-
|
|
471
|
-
***
|
|
472
|
-
|
|
473
|
-
### EngineBlindTransferCallRequest
|
|
474
|
-
|
|
475
|
-
Re-exports [EngineBlindTransferCallRequest](../interfaces/webitelAPI.schemas.EngineBlindTransferCallRequest.html)
|
|
476
|
-
|
|
477
|
-
***
|
|
478
|
-
|
|
479
|
-
### EngineBlindTransferCallResponse
|
|
480
|
-
|
|
481
|
-
Re-exports [EngineBlindTransferCallResponse](../interfaces/webitelAPI.schemas.EngineBlindTransferCallResponse.html)
|
|
482
|
-
|
|
483
|
-
***
|
|
484
|
-
|
|
485
|
-
### EngineBucket
|
|
486
|
-
|
|
487
|
-
Re-exports [EngineBucket](../interfaces/webitelAPI.schemas.EngineBucket.html)
|
|
488
|
-
|
|
489
|
-
***
|
|
490
|
-
|
|
491
|
-
### EngineCalendar
|
|
492
|
-
|
|
493
|
-
Re-exports [EngineCalendar](../interfaces/webitelAPI.schemas.EngineCalendar.html)
|
|
494
|
-
|
|
495
|
-
***
|
|
496
|
-
|
|
497
|
-
### EngineCallAnnotation
|
|
498
|
-
|
|
499
|
-
Re-exports [EngineCallAnnotation](../interfaces/webitelAPI.schemas.EngineCallAnnotation.html)
|
|
500
|
-
|
|
501
|
-
***
|
|
502
|
-
|
|
503
|
-
### EngineCallFile
|
|
504
|
-
|
|
505
|
-
Re-exports [EngineCallFile](../interfaces/webitelAPI.schemas.EngineCallFile.html)
|
|
506
|
-
|
|
507
|
-
***
|
|
508
|
-
|
|
509
|
-
### EngineCallHold
|
|
510
|
-
|
|
511
|
-
Re-exports [EngineCallHold](../interfaces/webitelAPI.schemas.EngineCallHold.html)
|
|
512
|
-
|
|
513
|
-
***
|
|
514
|
-
|
|
515
|
-
### EngineChatPlan
|
|
516
|
-
|
|
517
|
-
Re-exports [EngineChatPlan](../interfaces/webitelAPI.schemas.EngineChatPlan.html)
|
|
518
|
-
|
|
519
|
-
***
|
|
520
|
-
|
|
521
|
-
### EngineCommunicationChannels
|
|
522
|
-
|
|
523
|
-
Re-exports [EngineCommunicationChannels](../variables/webitelAPI.schemas.EngineCommunicationChannels.html)
|
|
524
|
-
|
|
525
|
-
***
|
|
526
|
-
|
|
527
|
-
### EngineCommunicationType
|
|
528
|
-
|
|
529
|
-
Re-exports [EngineCommunicationType](../interfaces/webitelAPI.schemas.EngineCommunicationType.html)
|
|
530
|
-
|
|
531
|
-
***
|
|
532
|
-
|
|
533
|
-
### EngineCommunicationTypeRequest
|
|
534
|
-
|
|
535
|
-
Re-exports [EngineCommunicationTypeRequest](../interfaces/webitelAPI.schemas.EngineCommunicationTypeRequest.html)
|
|
536
|
-
|
|
537
|
-
***
|
|
538
|
-
|
|
539
|
-
### EngineConfirmPushResponse
|
|
540
|
-
|
|
541
|
-
Re-exports [EngineConfirmPushResponse](../interfaces/webitelAPI.schemas.EngineConfirmPushResponse.html)
|
|
542
|
-
|
|
543
|
-
***
|
|
544
|
-
|
|
545
|
-
### EngineCreateAgentPauseCauseRequest
|
|
546
|
-
|
|
547
|
-
Re-exports [EngineCreateAgentPauseCauseRequest](../interfaces/webitelAPI.schemas.EngineCreateAgentPauseCauseRequest.html)
|
|
548
|
-
|
|
549
|
-
***
|
|
550
|
-
|
|
551
|
-
### EngineCreateAgentRequest
|
|
552
|
-
|
|
553
|
-
Re-exports [EngineCreateAgentRequest](../interfaces/webitelAPI.schemas.EngineCreateAgentRequest.html)
|
|
554
|
-
|
|
555
|
-
***
|
|
556
|
-
|
|
557
|
-
### EngineCreateAgentSkillBulkItem
|
|
558
|
-
|
|
559
|
-
Re-exports [EngineCreateAgentSkillBulkItem](../interfaces/webitelAPI.schemas.EngineCreateAgentSkillBulkItem.html)
|
|
560
|
-
|
|
561
|
-
***
|
|
562
|
-
|
|
563
|
-
### EngineCreateAgentSkillRequest
|
|
564
|
-
|
|
565
|
-
Re-exports [EngineCreateAgentSkillRequest](../interfaces/webitelAPI.schemas.EngineCreateAgentSkillRequest.html)
|
|
566
|
-
|
|
567
|
-
***
|
|
568
|
-
|
|
569
|
-
### EngineCreateAgentSkillsRequest
|
|
570
|
-
|
|
571
|
-
Re-exports [EngineCreateAgentSkillsRequest](../interfaces/webitelAPI.schemas.EngineCreateAgentSkillsRequest.html)
|
|
572
|
-
|
|
573
|
-
***
|
|
574
|
-
|
|
575
|
-
### EngineCreateAgentSkillsResponse
|
|
576
|
-
|
|
577
|
-
Re-exports [EngineCreateAgentSkillsResponse](../interfaces/webitelAPI.schemas.EngineCreateAgentSkillsResponse.html)
|
|
578
|
-
|
|
579
|
-
***
|
|
580
|
-
|
|
581
|
-
### EngineCreateAgentTeamRequest
|
|
582
|
-
|
|
583
|
-
Re-exports [EngineCreateAgentTeamRequest](../interfaces/webitelAPI.schemas.EngineCreateAgentTeamRequest.html)
|
|
584
|
-
|
|
585
|
-
***
|
|
586
|
-
|
|
587
|
-
### EngineCreateAttemptRequest
|
|
588
|
-
|
|
589
|
-
Re-exports [EngineCreateAttemptRequest](../interfaces/webitelAPI.schemas.EngineCreateAttemptRequest.html)
|
|
590
|
-
|
|
591
|
-
***
|
|
592
|
-
|
|
593
|
-
### EngineCreateAttemptResponse
|
|
594
|
-
|
|
595
|
-
Re-exports [EngineCreateAttemptResponse](../interfaces/webitelAPI.schemas.EngineCreateAttemptResponse.html)
|
|
596
|
-
|
|
597
|
-
***
|
|
598
|
-
|
|
599
|
-
### EngineCreateAuditFormRateRequest
|
|
600
|
-
|
|
601
|
-
Re-exports [EngineCreateAuditFormRateRequest](../interfaces/webitelAPI.schemas.EngineCreateAuditFormRateRequest.html)
|
|
602
|
-
|
|
603
|
-
***
|
|
604
|
-
|
|
605
|
-
### EngineCreateAuditFormRequest
|
|
606
|
-
|
|
607
|
-
Re-exports [EngineCreateAuditFormRequest](../interfaces/webitelAPI.schemas.EngineCreateAuditFormRequest.html)
|
|
608
|
-
|
|
609
|
-
***
|
|
610
|
-
|
|
611
|
-
### EngineCreateBucketRequest
|
|
612
|
-
|
|
613
|
-
Re-exports [EngineCreateBucketRequest](../interfaces/webitelAPI.schemas.EngineCreateBucketRequest.html)
|
|
614
|
-
|
|
615
|
-
***
|
|
616
|
-
|
|
617
|
-
### EngineCreateCalendarRequest
|
|
618
|
-
|
|
619
|
-
Re-exports [EngineCreateCalendarRequest](../interfaces/webitelAPI.schemas.EngineCreateCalendarRequest.html)
|
|
620
|
-
|
|
621
|
-
***
|
|
622
|
-
|
|
623
|
-
### EngineCreateCallAnnotationRequest
|
|
624
|
-
|
|
625
|
-
Re-exports [EngineCreateCallAnnotationRequest](../interfaces/webitelAPI.schemas.EngineCreateCallAnnotationRequest.html)
|
|
626
|
-
|
|
627
|
-
***
|
|
628
|
-
|
|
629
|
-
### EngineCreateCallRequest
|
|
630
|
-
|
|
631
|
-
Re-exports [EngineCreateCallRequest](../interfaces/webitelAPI.schemas.EngineCreateCallRequest.html)
|
|
632
|
-
|
|
633
|
-
***
|
|
634
|
-
|
|
635
|
-
### EngineCreateCallRequestEndpointRequest
|
|
636
|
-
|
|
637
|
-
Re-exports [EngineCreateCallRequestEndpointRequest](../interfaces/webitelAPI.schemas.EngineCreateCallRequestEndpointRequest.html)
|
|
638
|
-
|
|
639
|
-
***
|
|
640
|
-
|
|
641
|
-
### EngineCreateCallResponse
|
|
642
|
-
|
|
643
|
-
Re-exports [EngineCreateCallResponse](../interfaces/webitelAPI.schemas.EngineCreateCallResponse.html)
|
|
644
|
-
|
|
645
|
-
***
|
|
646
|
-
|
|
647
|
-
### EngineCreateChatPlanRequest
|
|
648
|
-
|
|
649
|
-
Re-exports [EngineCreateChatPlanRequest](../interfaces/webitelAPI.schemas.EngineCreateChatPlanRequest.html)
|
|
650
|
-
|
|
651
|
-
***
|
|
652
|
-
|
|
653
|
-
### EngineCreateEmailProfileRequest
|
|
654
|
-
|
|
655
|
-
Re-exports [EngineCreateEmailProfileRequest](../interfaces/webitelAPI.schemas.EngineCreateEmailProfileRequest.html)
|
|
656
|
-
|
|
657
|
-
***
|
|
658
|
-
|
|
659
|
-
### EngineCreateListCommunicationRequest
|
|
660
|
-
|
|
661
|
-
Re-exports [EngineCreateListCommunicationRequest](../interfaces/webitelAPI.schemas.EngineCreateListCommunicationRequest.html)
|
|
662
|
-
|
|
663
|
-
***
|
|
664
|
-
|
|
665
|
-
### EngineCreateListRequest
|
|
666
|
-
|
|
667
|
-
Re-exports [EngineCreateListRequest](../interfaces/webitelAPI.schemas.EngineCreateListRequest.html)
|
|
668
|
-
|
|
669
|
-
***
|
|
670
|
-
|
|
671
|
-
### EngineCreateMemberBulkItem
|
|
672
|
-
|
|
673
|
-
Re-exports [EngineCreateMemberBulkItem](../interfaces/webitelAPI.schemas.EngineCreateMemberBulkItem.html)
|
|
674
|
-
|
|
675
|
-
***
|
|
676
|
-
|
|
677
|
-
### EngineCreateMemberBulkItemVariables
|
|
678
|
-
|
|
679
|
-
Re-exports [EngineCreateMemberBulkItemVariables](../types/webitelAPI.schemas.EngineCreateMemberBulkItemVariables.html)
|
|
680
|
-
|
|
681
|
-
***
|
|
682
|
-
|
|
683
|
-
### EngineCreateMemberBulkRequest
|
|
684
|
-
|
|
685
|
-
Re-exports [EngineCreateMemberBulkRequest](../interfaces/webitelAPI.schemas.EngineCreateMemberBulkRequest.html)
|
|
686
|
-
|
|
687
|
-
***
|
|
688
|
-
|
|
689
|
-
### EngineCreateMemberRequest
|
|
690
|
-
|
|
691
|
-
Re-exports [EngineCreateMemberRequest](../interfaces/webitelAPI.schemas.EngineCreateMemberRequest.html)
|
|
692
|
-
|
|
693
|
-
***
|
|
694
|
-
|
|
695
|
-
### EngineCreateMemberRequestVariables
|
|
696
|
-
|
|
697
|
-
Re-exports [EngineCreateMemberRequestVariables](../types/webitelAPI.schemas.EngineCreateMemberRequestVariables.html)
|
|
698
|
-
|
|
699
|
-
***
|
|
700
|
-
|
|
701
|
-
### EngineCreateOutboundResourceDisplayBulkRequest
|
|
702
|
-
|
|
703
|
-
Re-exports [EngineCreateOutboundResourceDisplayBulkRequest](../interfaces/webitelAPI.schemas.EngineCreateOutboundResourceDisplayBulkRequest.html)
|
|
704
|
-
|
|
705
|
-
***
|
|
706
|
-
|
|
707
|
-
### EngineCreateOutboundResourceDisplayRequest
|
|
708
|
-
|
|
709
|
-
Re-exports [EngineCreateOutboundResourceDisplayRequest](../interfaces/webitelAPI.schemas.EngineCreateOutboundResourceDisplayRequest.html)
|
|
710
|
-
|
|
711
|
-
***
|
|
712
|
-
|
|
713
|
-
### EngineCreateOutboundResourceGroupRequest
|
|
714
|
-
|
|
715
|
-
Re-exports [EngineCreateOutboundResourceGroupRequest](../interfaces/webitelAPI.schemas.EngineCreateOutboundResourceGroupRequest.html)
|
|
716
|
-
|
|
717
|
-
***
|
|
718
|
-
|
|
719
|
-
### EngineCreateOutboundResourceInGroupRequest
|
|
720
|
-
|
|
721
|
-
Re-exports [EngineCreateOutboundResourceInGroupRequest](../interfaces/webitelAPI.schemas.EngineCreateOutboundResourceInGroupRequest.html)
|
|
722
|
-
|
|
723
|
-
***
|
|
724
|
-
|
|
725
|
-
### EngineCreateOutboundResourceRequest
|
|
726
|
-
|
|
727
|
-
Re-exports [EngineCreateOutboundResourceRequest](../interfaces/webitelAPI.schemas.EngineCreateOutboundResourceRequest.html)
|
|
728
|
-
|
|
729
|
-
***
|
|
730
|
-
|
|
731
|
-
### EngineCreateOutboundResourceRequestVariables
|
|
732
|
-
|
|
733
|
-
Re-exports [EngineCreateOutboundResourceRequestVariables](../types/webitelAPI.schemas.EngineCreateOutboundResourceRequestVariables.html)
|
|
734
|
-
|
|
735
|
-
***
|
|
736
|
-
|
|
737
|
-
### EngineCreatePresetQueryRequest
|
|
738
|
-
|
|
739
|
-
Re-exports [EngineCreatePresetQueryRequest](../interfaces/webitelAPI.schemas.EngineCreatePresetQueryRequest.html)
|
|
740
|
-
|
|
741
|
-
***
|
|
742
|
-
|
|
743
|
-
### EngineCreatePresetQueryRequestPreset
|
|
744
|
-
|
|
745
|
-
Re-exports [EngineCreatePresetQueryRequestPreset](../types/webitelAPI.schemas.EngineCreatePresetQueryRequestPreset.html)
|
|
746
|
-
|
|
747
|
-
***
|
|
748
|
-
|
|
749
|
-
### EngineCreateQuestionAnswerRequest
|
|
750
|
-
|
|
751
|
-
Re-exports [EngineCreateQuestionAnswerRequest](../interfaces/webitelAPI.schemas.EngineCreateQuestionAnswerRequest.html)
|
|
752
|
-
|
|
753
|
-
***
|
|
754
|
-
|
|
755
|
-
### EngineCreateQueueBucketRequest
|
|
756
|
-
|
|
757
|
-
Re-exports [EngineCreateQueueBucketRequest](../interfaces/webitelAPI.schemas.EngineCreateQueueBucketRequest.html)
|
|
758
|
-
|
|
759
|
-
***
|
|
760
|
-
|
|
761
|
-
### EngineCreateQueueHookRequest
|
|
762
|
-
|
|
763
|
-
Re-exports [EngineCreateQueueHookRequest](../interfaces/webitelAPI.schemas.EngineCreateQueueHookRequest.html)
|
|
764
|
-
|
|
765
|
-
***
|
|
766
|
-
|
|
767
|
-
### EngineCreateQueueRequest
|
|
768
|
-
|
|
769
|
-
Re-exports [EngineCreateQueueRequest](../interfaces/webitelAPI.schemas.EngineCreateQueueRequest.html)
|
|
770
|
-
|
|
771
|
-
***
|
|
772
|
-
|
|
773
|
-
### EngineCreateQueueRequestPayload
|
|
774
|
-
|
|
775
|
-
Re-exports [EngineCreateQueueRequestPayload](../types/webitelAPI.schemas.EngineCreateQueueRequestPayload.html)
|
|
776
|
-
|
|
777
|
-
***
|
|
778
|
-
|
|
779
|
-
### EngineCreateQueueRequestVariables
|
|
780
|
-
|
|
781
|
-
Re-exports [EngineCreateQueueRequestVariables](../types/webitelAPI.schemas.EngineCreateQueueRequestVariables.html)
|
|
782
|
-
|
|
783
|
-
***
|
|
784
|
-
|
|
785
|
-
### EngineCreateQueueResourceGroupRequest
|
|
786
|
-
|
|
787
|
-
Re-exports [EngineCreateQueueResourceGroupRequest](../interfaces/webitelAPI.schemas.EngineCreateQueueResourceGroupRequest.html)
|
|
788
|
-
|
|
789
|
-
***
|
|
790
|
-
|
|
791
|
-
### EngineCreateQueueSkillRequest
|
|
792
|
-
|
|
793
|
-
Re-exports [EngineCreateQueueSkillRequest](../interfaces/webitelAPI.schemas.EngineCreateQueueSkillRequest.html)
|
|
794
|
-
|
|
795
|
-
***
|
|
796
|
-
|
|
797
|
-
### EngineCreateQuickReplyRequest
|
|
798
|
-
|
|
799
|
-
Re-exports [EngineCreateQuickReplyRequest](../interfaces/webitelAPI.schemas.EngineCreateQuickReplyRequest.html)
|
|
800
|
-
|
|
801
|
-
***
|
|
802
|
-
|
|
803
|
-
### EngineCreateRegionRequest
|
|
804
|
-
|
|
805
|
-
Re-exports [EngineCreateRegionRequest](../interfaces/webitelAPI.schemas.EngineCreateRegionRequest.html)
|
|
806
|
-
|
|
807
|
-
***
|
|
808
|
-
|
|
809
|
-
### EngineCreateRoutingOutboundCallRequest
|
|
810
|
-
|
|
811
|
-
Re-exports [EngineCreateRoutingOutboundCallRequest](../interfaces/webitelAPI.schemas.EngineCreateRoutingOutboundCallRequest.html)
|
|
812
|
-
|
|
813
|
-
***
|
|
814
|
-
|
|
815
|
-
### EngineCreateRoutingSchemaRequest
|
|
816
|
-
|
|
817
|
-
Re-exports [EngineCreateRoutingSchemaRequest](../interfaces/webitelAPI.schemas.EngineCreateRoutingSchemaRequest.html)
|
|
818
|
-
|
|
819
|
-
***
|
|
820
|
-
|
|
821
|
-
### EngineCreateRoutingSchemaRequestPayload
|
|
822
|
-
|
|
823
|
-
Re-exports [EngineCreateRoutingSchemaRequestPayload](../types/webitelAPI.schemas.EngineCreateRoutingSchemaRequestPayload.html)
|
|
824
|
-
|
|
825
|
-
***
|
|
826
|
-
|
|
827
|
-
### EngineCreateRoutingSchemaRequestSchema
|
|
828
|
-
|
|
829
|
-
Re-exports [EngineCreateRoutingSchemaRequestSchema](../types/webitelAPI.schemas.EngineCreateRoutingSchemaRequestSchema.html)
|
|
830
|
-
|
|
831
|
-
***
|
|
832
|
-
|
|
833
|
-
### EngineCreateRoutingVariableRequest
|
|
834
|
-
|
|
835
|
-
Re-exports [EngineCreateRoutingVariableRequest](../interfaces/webitelAPI.schemas.EngineCreateRoutingVariableRequest.html)
|
|
836
|
-
|
|
837
|
-
***
|
|
838
|
-
|
|
839
|
-
### EngineCreateSchemaVariableRequest
|
|
840
|
-
|
|
841
|
-
Re-exports [EngineCreateSchemaVariableRequest](../interfaces/webitelAPI.schemas.EngineCreateSchemaVariableRequest.html)
|
|
842
|
-
|
|
843
|
-
***
|
|
844
|
-
|
|
845
|
-
### EngineCreateSchemaVariableRequestValue
|
|
846
|
-
|
|
847
|
-
Re-exports [EngineCreateSchemaVariableRequestValue](../types/webitelAPI.schemas.EngineCreateSchemaVariableRequestValue.html)
|
|
848
|
-
|
|
849
|
-
***
|
|
850
|
-
|
|
851
|
-
### EngineCreateSkillAgentRequest
|
|
852
|
-
|
|
853
|
-
Re-exports [EngineCreateSkillAgentRequest](../interfaces/webitelAPI.schemas.EngineCreateSkillAgentRequest.html)
|
|
854
|
-
|
|
855
|
-
***
|
|
856
|
-
|
|
857
|
-
### EngineCreateSkillAgentResponse
|
|
858
|
-
|
|
859
|
-
Re-exports [EngineCreateSkillAgentResponse](../interfaces/webitelAPI.schemas.EngineCreateSkillAgentResponse.html)
|
|
860
|
-
|
|
861
|
-
***
|
|
862
|
-
|
|
863
|
-
### EngineCreateSkillRequest
|
|
864
|
-
|
|
865
|
-
Re-exports [EngineCreateSkillRequest](../interfaces/webitelAPI.schemas.EngineCreateSkillRequest.html)
|
|
866
|
-
|
|
867
|
-
***
|
|
868
|
-
|
|
869
|
-
### EngineCreateSystemSettingRequest
|
|
870
|
-
|
|
871
|
-
Re-exports [EngineCreateSystemSettingRequest](../interfaces/webitelAPI.schemas.EngineCreateSystemSettingRequest.html)
|
|
872
|
-
|
|
873
|
-
***
|
|
874
|
-
|
|
875
|
-
### EngineCreateSystemSettingRequestValue
|
|
876
|
-
|
|
877
|
-
Re-exports [EngineCreateSystemSettingRequestValue](../types/webitelAPI.schemas.EngineCreateSystemSettingRequestValue.html)
|
|
878
|
-
|
|
879
|
-
***
|
|
880
|
-
|
|
881
|
-
### EngineCreateTeamHookRequest
|
|
882
|
-
|
|
883
|
-
Re-exports [EngineCreateTeamHookRequest](../interfaces/webitelAPI.schemas.EngineCreateTeamHookRequest.html)
|
|
884
|
-
|
|
885
|
-
***
|
|
886
|
-
|
|
887
|
-
### EngineCreateTeamTriggerRequest
|
|
888
|
-
|
|
889
|
-
Re-exports [EngineCreateTeamTriggerRequest](../interfaces/webitelAPI.schemas.EngineCreateTeamTriggerRequest.html)
|
|
890
|
-
|
|
891
|
-
***
|
|
892
|
-
|
|
893
|
-
### EngineCreateTriggerJobRequest
|
|
894
|
-
|
|
895
|
-
Re-exports [EngineCreateTriggerJobRequest](../interfaces/webitelAPI.schemas.EngineCreateTriggerJobRequest.html)
|
|
896
|
-
|
|
897
|
-
***
|
|
898
|
-
|
|
899
|
-
### EngineCreateTriggerJobRequestVariables
|
|
900
|
-
|
|
901
|
-
Re-exports [EngineCreateTriggerJobRequestVariables](../types/webitelAPI.schemas.EngineCreateTriggerJobRequestVariables.html)
|
|
902
|
-
|
|
903
|
-
***
|
|
904
|
-
|
|
905
|
-
### EngineCreateTriggerRequest
|
|
906
|
-
|
|
907
|
-
Re-exports [EngineCreateTriggerRequest](../interfaces/webitelAPI.schemas.EngineCreateTriggerRequest.html)
|
|
908
|
-
|
|
909
|
-
***
|
|
910
|
-
|
|
911
|
-
### EngineCreateTriggerRequestVariables
|
|
912
|
-
|
|
913
|
-
Re-exports [EngineCreateTriggerRequestVariables](../types/webitelAPI.schemas.EngineCreateTriggerRequestVariables.html)
|
|
914
|
-
|
|
915
|
-
***
|
|
916
|
-
|
|
917
|
-
### EngineCreateWebHookRequest
|
|
918
|
-
|
|
919
|
-
Re-exports [EngineCreateWebHookRequest](../interfaces/webitelAPI.schemas.EngineCreateWebHookRequest.html)
|
|
920
|
-
|
|
921
|
-
***
|
|
922
|
-
|
|
923
|
-
### EngineDefaultDeviceConfigResponse
|
|
924
|
-
|
|
925
|
-
Re-exports [EngineDefaultDeviceConfigResponse](../interfaces/webitelAPI.schemas.EngineDefaultDeviceConfigResponse.html)
|
|
926
|
-
|
|
927
|
-
***
|
|
928
|
-
|
|
929
|
-
### EngineDeleteAllMembersRequest
|
|
930
|
-
|
|
931
|
-
Re-exports [EngineDeleteAllMembersRequest](../interfaces/webitelAPI.schemas.EngineDeleteAllMembersRequest.html)
|
|
932
|
-
|
|
933
|
-
***
|
|
934
|
-
|
|
935
|
-
### EngineDeleteAllMembersRequestVariables
|
|
936
|
-
|
|
937
|
-
Re-exports [EngineDeleteAllMembersRequestVariables](../types/webitelAPI.schemas.EngineDeleteAllMembersRequestVariables.html)
|
|
938
|
-
|
|
939
|
-
***
|
|
940
|
-
|
|
941
|
-
### EngineDeleteMembersRequest
|
|
942
|
-
|
|
943
|
-
Re-exports [EngineDeleteMembersRequest](../interfaces/webitelAPI.schemas.EngineDeleteMembersRequest.html)
|
|
944
|
-
|
|
945
|
-
***
|
|
946
|
-
|
|
947
|
-
### EngineDeleteMembersRequestVariables
|
|
948
|
-
|
|
949
|
-
Re-exports [EngineDeleteMembersRequestVariables](../types/webitelAPI.schemas.EngineDeleteMembersRequestVariables.html)
|
|
950
|
-
|
|
951
|
-
***
|
|
952
|
-
|
|
953
|
-
### EngineDeleteSkillAgentRequest
|
|
954
|
-
|
|
955
|
-
Re-exports [EngineDeleteSkillAgentRequest](../interfaces/webitelAPI.schemas.EngineDeleteSkillAgentRequest.html)
|
|
956
|
-
|
|
957
|
-
***
|
|
958
|
-
|
|
959
|
-
### EngineDeleteSkillAgentResponse
|
|
960
|
-
|
|
961
|
-
Re-exports [EngineDeleteSkillAgentResponse](../interfaces/webitelAPI.schemas.EngineDeleteSkillAgentResponse.html)
|
|
962
|
-
|
|
963
|
-
***
|
|
964
|
-
|
|
965
|
-
### EngineDtmfCallRequest
|
|
966
|
-
|
|
967
|
-
Re-exports [EngineDtmfCallRequest](../interfaces/webitelAPI.schemas.EngineDtmfCallRequest.html)
|
|
968
|
-
|
|
969
|
-
***
|
|
970
|
-
|
|
971
|
-
### EngineDtmfCallResponse
|
|
972
|
-
|
|
973
|
-
Re-exports [EngineDtmfCallResponse](../interfaces/webitelAPI.schemas.EngineDtmfCallResponse.html)
|
|
974
|
-
|
|
975
|
-
***
|
|
976
|
-
|
|
977
|
-
### EngineEavesdropCallRequest
|
|
978
|
-
|
|
979
|
-
Re-exports [EngineEavesdropCallRequest](../interfaces/webitelAPI.schemas.EngineEavesdropCallRequest.html)
|
|
980
|
-
|
|
981
|
-
***
|
|
982
|
-
|
|
983
|
-
### EngineEavesdropCallRequestEndpointRequest
|
|
984
|
-
|
|
985
|
-
Re-exports [EngineEavesdropCallRequestEndpointRequest](../interfaces/webitelAPI.schemas.EngineEavesdropCallRequestEndpointRequest.html)
|
|
986
|
-
|
|
987
|
-
***
|
|
988
|
-
|
|
989
|
-
### EngineEmailAuthType
|
|
990
|
-
|
|
991
|
-
Re-exports [EngineEmailAuthType](../variables/webitelAPI.schemas.EngineEmailAuthType.html)
|
|
992
|
-
|
|
993
|
-
***
|
|
994
|
-
|
|
995
|
-
### EngineEmailProfile
|
|
996
|
-
|
|
997
|
-
Re-exports [EngineEmailProfile](../interfaces/webitelAPI.schemas.EngineEmailProfile.html)
|
|
998
|
-
|
|
999
|
-
***
|
|
1000
|
-
|
|
1001
|
-
### EngineEmailProfileParams
|
|
1002
|
-
|
|
1003
|
-
Re-exports [EngineEmailProfileParams](../interfaces/webitelAPI.schemas.EngineEmailProfileParams.html)
|
|
1004
|
-
|
|
1005
|
-
***
|
|
1006
|
-
|
|
1007
|
-
### EngineEmptyResponse
|
|
1008
|
-
|
|
1009
|
-
Re-exports [EngineEmptyResponse](../interfaces/webitelAPI.schemas.EngineEmptyResponse.html)
|
|
1010
|
-
|
|
1011
|
-
***
|
|
1012
|
-
|
|
1013
|
-
### EngineEndpoint
|
|
1014
|
-
|
|
1015
|
-
Re-exports [EngineEndpoint](../interfaces/webitelAPI.schemas.EngineEndpoint.html)
|
|
1016
|
-
|
|
1017
|
-
***
|
|
1018
|
-
|
|
1019
|
-
### EngineExceptDate
|
|
1020
|
-
|
|
1021
|
-
Re-exports [EngineExceptDate](../interfaces/webitelAPI.schemas.EngineExceptDate.html)
|
|
1022
|
-
|
|
1023
|
-
***
|
|
1024
|
-
|
|
1025
|
-
### EngineFilterBetween
|
|
1026
|
-
|
|
1027
|
-
Re-exports [EngineFilterBetween](../interfaces/webitelAPI.schemas.EngineFilterBetween.html)
|
|
1028
|
-
|
|
1029
|
-
***
|
|
1030
|
-
|
|
1031
|
-
### EngineForAgentPauseCause
|
|
1032
|
-
|
|
1033
|
-
Re-exports [EngineForAgentPauseCause](../interfaces/webitelAPI.schemas.EngineForAgentPauseCause.html)
|
|
1034
|
-
|
|
1035
|
-
***
|
|
1036
|
-
|
|
1037
|
-
### EngineForAgentPauseCauseList
|
|
1038
|
-
|
|
1039
|
-
Re-exports [EngineForAgentPauseCauseList](../interfaces/webitelAPI.schemas.EngineForAgentPauseCauseList.html)
|
|
1040
|
-
|
|
1041
|
-
***
|
|
1042
|
-
|
|
1043
|
-
### EngineHangupCallRequest
|
|
1044
|
-
|
|
1045
|
-
Re-exports [EngineHangupCallRequest](../interfaces/webitelAPI.schemas.EngineHangupCallRequest.html)
|
|
1046
|
-
|
|
1047
|
-
***
|
|
1048
|
-
|
|
1049
|
-
### EngineHangupCallResponse
|
|
1050
|
-
|
|
1051
|
-
Re-exports [EngineHangupCallResponse](../interfaces/webitelAPI.schemas.EngineHangupCallResponse.html)
|
|
1052
|
-
|
|
1053
|
-
***
|
|
1054
|
-
|
|
1055
|
-
### EngineHistoryCall
|
|
1056
|
-
|
|
1057
|
-
Re-exports [EngineHistoryCall](../interfaces/webitelAPI.schemas.EngineHistoryCall.html)
|
|
1058
|
-
|
|
1059
|
-
***
|
|
1060
|
-
|
|
1061
|
-
### EngineHistoryCallFormFields
|
|
1062
|
-
|
|
1063
|
-
Re-exports [EngineHistoryCallFormFields](../types/webitelAPI.schemas.EngineHistoryCallFormFields.html)
|
|
1064
|
-
|
|
1065
|
-
***
|
|
1066
|
-
|
|
1067
|
-
### EngineHistoryCallVariables
|
|
1068
|
-
|
|
1069
|
-
Re-exports [EngineHistoryCallVariables](../types/webitelAPI.schemas.EngineHistoryCallVariables.html)
|
|
1070
|
-
|
|
1071
|
-
***
|
|
1072
|
-
|
|
1073
|
-
### EngineHistoryFileJob
|
|
1074
|
-
|
|
1075
|
-
Re-exports [EngineHistoryFileJob](../interfaces/webitelAPI.schemas.EngineHistoryFileJob.html)
|
|
1076
|
-
|
|
1077
|
-
***
|
|
1078
|
-
|
|
1079
|
-
### EngineHoldCallResponse
|
|
1080
|
-
|
|
1081
|
-
Re-exports [EngineHoldCallResponse](../interfaces/webitelAPI.schemas.EngineHoldCallResponse.html)
|
|
1082
|
-
|
|
1083
|
-
***
|
|
1084
|
-
|
|
1085
|
-
### EngineList
|
|
1086
|
-
|
|
1087
|
-
Re-exports [EngineList](../interfaces/webitelAPI.schemas.EngineList.html)
|
|
1088
|
-
|
|
1089
|
-
***
|
|
1090
|
-
|
|
1091
|
-
### EngineListAgent
|
|
1092
|
-
|
|
1093
|
-
Re-exports [EngineListAgent](../interfaces/webitelAPI.schemas.EngineListAgent.html)
|
|
1094
|
-
|
|
1095
|
-
***
|
|
1096
|
-
|
|
1097
|
-
### EngineListAgentInQueue
|
|
1098
|
-
|
|
1099
|
-
Re-exports [EngineListAgentInQueue](../interfaces/webitelAPI.schemas.EngineListAgentInQueue.html)
|
|
1100
|
-
|
|
1101
|
-
***
|
|
1102
|
-
|
|
1103
|
-
### EngineListAgentInTeam
|
|
1104
|
-
|
|
1105
|
-
Re-exports [EngineListAgentInTeam](../interfaces/webitelAPI.schemas.EngineListAgentInTeam.html)
|
|
1106
|
-
|
|
1107
|
-
***
|
|
1108
|
-
|
|
1109
|
-
### EngineListAgentPauseCause
|
|
1110
|
-
|
|
1111
|
-
Re-exports [EngineListAgentPauseCause](../interfaces/webitelAPI.schemas.EngineListAgentPauseCause.html)
|
|
1112
|
-
|
|
1113
|
-
***
|
|
1114
|
-
|
|
1115
|
-
### EngineListAgentSkill
|
|
1116
|
-
|
|
1117
|
-
Re-exports [EngineListAgentSkill](../interfaces/webitelAPI.schemas.EngineListAgentSkill.html)
|
|
1118
|
-
|
|
1119
|
-
***
|
|
1120
|
-
|
|
1121
|
-
### EngineListAgentStateHistory
|
|
1122
|
-
|
|
1123
|
-
Re-exports [EngineListAgentStateHistory](../interfaces/webitelAPI.schemas.EngineListAgentStateHistory.html)
|
|
1124
|
-
|
|
1125
|
-
***
|
|
1126
|
-
|
|
1127
|
-
### EngineListAgentStatsStatistic
|
|
1128
|
-
|
|
1129
|
-
Re-exports [EngineListAgentStatsStatistic](../interfaces/webitelAPI.schemas.EngineListAgentStatsStatistic.html)
|
|
1130
|
-
|
|
1131
|
-
***
|
|
1132
|
-
|
|
1133
|
-
### EngineListAgentTeam
|
|
1134
|
-
|
|
1135
|
-
Re-exports [EngineListAgentTeam](../interfaces/webitelAPI.schemas.EngineListAgentTeam.html)
|
|
1136
|
-
|
|
1137
|
-
***
|
|
1138
|
-
|
|
1139
|
-
### EngineListAgentUser
|
|
1140
|
-
|
|
1141
|
-
Re-exports [EngineListAgentUser](../interfaces/webitelAPI.schemas.EngineListAgentUser.html)
|
|
1142
|
-
|
|
1143
|
-
***
|
|
1144
|
-
|
|
1145
|
-
### EngineListAggregate
|
|
1146
|
-
|
|
1147
|
-
Re-exports [EngineListAggregate](../interfaces/webitelAPI.schemas.EngineListAggregate.html)
|
|
1148
|
-
|
|
1149
|
-
***
|
|
1150
|
-
|
|
1151
|
-
### EngineListAttempt
|
|
1152
|
-
|
|
1153
|
-
Re-exports [EngineListAttempt](../interfaces/webitelAPI.schemas.EngineListAttempt.html)
|
|
1154
|
-
|
|
1155
|
-
***
|
|
1156
|
-
|
|
1157
|
-
### EngineListAuditForm
|
|
1158
|
-
|
|
1159
|
-
Re-exports [EngineListAuditForm](../interfaces/webitelAPI.schemas.EngineListAuditForm.html)
|
|
1160
|
-
|
|
1161
|
-
***
|
|
1162
|
-
|
|
1163
|
-
### EngineListAuditRate
|
|
1164
|
-
|
|
1165
|
-
Re-exports [EngineListAuditRate](../interfaces/webitelAPI.schemas.EngineListAuditRate.html)
|
|
1166
|
-
|
|
1167
|
-
***
|
|
1168
|
-
|
|
1169
|
-
### EngineListAvailableSystemSetting
|
|
1170
|
-
|
|
1171
|
-
Re-exports [EngineListAvailableSystemSetting](../interfaces/webitelAPI.schemas.EngineListAvailableSystemSetting.html)
|
|
1172
|
-
|
|
1173
|
-
***
|
|
1174
|
-
|
|
1175
|
-
### EngineListBucket
|
|
1176
|
-
|
|
1177
|
-
Re-exports [EngineListBucket](../interfaces/webitelAPI.schemas.EngineListBucket.html)
|
|
1178
|
-
|
|
1179
|
-
***
|
|
1180
|
-
|
|
1181
|
-
### EngineListCalendar
|
|
1182
|
-
|
|
1183
|
-
Re-exports [EngineListCalendar](../interfaces/webitelAPI.schemas.EngineListCalendar.html)
|
|
1184
|
-
|
|
1185
|
-
***
|
|
1186
|
-
|
|
1187
|
-
### EngineListCall
|
|
1188
|
-
|
|
1189
|
-
Re-exports [EngineListCall](../interfaces/webitelAPI.schemas.EngineListCall.html)
|
|
1190
|
-
|
|
1191
|
-
***
|
|
1192
|
-
|
|
1193
|
-
### EngineListChatPlan
|
|
1194
|
-
|
|
1195
|
-
Re-exports [EngineListChatPlan](../interfaces/webitelAPI.schemas.EngineListChatPlan.html)
|
|
1196
|
-
|
|
1197
|
-
***
|
|
1198
|
-
|
|
1199
|
-
### EngineListCommunication
|
|
1200
|
-
|
|
1201
|
-
Re-exports [EngineListCommunication](../interfaces/webitelAPI.schemas.EngineListCommunication.html)
|
|
1202
|
-
|
|
1203
|
-
***
|
|
1204
|
-
|
|
1205
|
-
### EngineListCommunicationType
|
|
1206
|
-
|
|
1207
|
-
Re-exports [EngineListCommunicationType](../interfaces/webitelAPI.schemas.EngineListCommunicationType.html)
|
|
1208
|
-
|
|
1209
|
-
***
|
|
1210
|
-
|
|
1211
|
-
### EngineListEmailProfile
|
|
1212
|
-
|
|
1213
|
-
Re-exports [EngineListEmailProfile](../interfaces/webitelAPI.schemas.EngineListEmailProfile.html)
|
|
1214
|
-
|
|
1215
|
-
***
|
|
1216
|
-
|
|
1217
|
-
### EngineListHistoryAttempt
|
|
1218
|
-
|
|
1219
|
-
Re-exports [EngineListHistoryAttempt](../interfaces/webitelAPI.schemas.EngineListHistoryAttempt.html)
|
|
1220
|
-
|
|
1221
|
-
***
|
|
1222
|
-
|
|
1223
|
-
### EngineListHistoryCall
|
|
1224
|
-
|
|
1225
|
-
Re-exports [EngineListHistoryCall](../interfaces/webitelAPI.schemas.EngineListHistoryCall.html)
|
|
1226
|
-
|
|
1227
|
-
***
|
|
1228
|
-
|
|
1229
|
-
### EngineListMember
|
|
1230
|
-
|
|
1231
|
-
Re-exports [EngineListMember](../interfaces/webitelAPI.schemas.EngineListMember.html)
|
|
1232
|
-
|
|
1233
|
-
***
|
|
1234
|
-
|
|
1235
|
-
### EngineListMemberAttempt
|
|
1236
|
-
|
|
1237
|
-
Re-exports [EngineListMemberAttempt](../interfaces/webitelAPI.schemas.EngineListMemberAttempt.html)
|
|
1238
|
-
|
|
1239
|
-
***
|
|
1240
|
-
|
|
1241
|
-
### EngineListOfList
|
|
1242
|
-
|
|
1243
|
-
Re-exports [EngineListOfList](../interfaces/webitelAPI.schemas.EngineListOfList.html)
|
|
1244
|
-
|
|
1245
|
-
***
|
|
1246
|
-
|
|
1247
|
-
### EngineListOfListCommunication
|
|
1248
|
-
|
|
1249
|
-
Re-exports [EngineListOfListCommunication](../interfaces/webitelAPI.schemas.EngineListOfListCommunication.html)
|
|
1250
|
-
|
|
1251
|
-
***
|
|
1252
|
-
|
|
1253
|
-
### EngineListOutboundResource
|
|
1254
|
-
|
|
1255
|
-
Re-exports [EngineListOutboundResource](../interfaces/webitelAPI.schemas.EngineListOutboundResource.html)
|
|
1256
|
-
|
|
1257
|
-
***
|
|
1258
|
-
|
|
1259
|
-
### EngineListOutboundResourceDisplay
|
|
1260
|
-
|
|
1261
|
-
Re-exports [EngineListOutboundResourceDisplay](../interfaces/webitelAPI.schemas.EngineListOutboundResourceDisplay.html)
|
|
1262
|
-
|
|
1263
|
-
***
|
|
1264
|
-
|
|
1265
|
-
### EngineListOutboundResourceGroup
|
|
1266
|
-
|
|
1267
|
-
Re-exports [EngineListOutboundResourceGroup](../interfaces/webitelAPI.schemas.EngineListOutboundResourceGroup.html)
|
|
1268
|
-
|
|
1269
|
-
***
|
|
1270
|
-
|
|
1271
|
-
### EngineListOutboundResourceInGroup
|
|
1272
|
-
|
|
1273
|
-
Re-exports [EngineListOutboundResourceInGroup](../interfaces/webitelAPI.schemas.EngineListOutboundResourceInGroup.html)
|
|
1274
|
-
|
|
1275
|
-
***
|
|
1276
|
-
|
|
1277
|
-
### EngineListPresetQuery
|
|
1278
|
-
|
|
1279
|
-
Re-exports [EngineListPresetQuery](../interfaces/webitelAPI.schemas.EngineListPresetQuery.html)
|
|
1280
|
-
|
|
1281
|
-
***
|
|
1282
|
-
|
|
1283
|
-
### EngineListQueue
|
|
1284
|
-
|
|
1285
|
-
Re-exports [EngineListQueue](../interfaces/webitelAPI.schemas.EngineListQueue.html)
|
|
1286
|
-
|
|
1287
|
-
***
|
|
1288
|
-
|
|
1289
|
-
### EngineListQueueBucket
|
|
1290
|
-
|
|
1291
|
-
Re-exports [EngineListQueueBucket](../interfaces/webitelAPI.schemas.EngineListQueueBucket.html)
|
|
1292
|
-
|
|
1293
|
-
***
|
|
1294
|
-
|
|
1295
|
-
### EngineListQueueHook
|
|
1296
|
-
|
|
1297
|
-
Re-exports [EngineListQueueHook](../interfaces/webitelAPI.schemas.EngineListQueueHook.html)
|
|
1298
|
-
|
|
1299
|
-
***
|
|
1300
|
-
|
|
1301
|
-
### EngineListQueueResourceGroup
|
|
1302
|
-
|
|
1303
|
-
Re-exports [EngineListQueueResourceGroup](../interfaces/webitelAPI.schemas.EngineListQueueResourceGroup.html)
|
|
1304
|
-
|
|
1305
|
-
***
|
|
1306
|
-
|
|
1307
|
-
### EngineListQueueSkill
|
|
1308
|
-
|
|
1309
|
-
Re-exports [EngineListQueueSkill](../interfaces/webitelAPI.schemas.EngineListQueueSkill.html)
|
|
1310
|
-
|
|
1311
|
-
***
|
|
1312
|
-
|
|
1313
|
-
### EngineListQuickReplies
|
|
1314
|
-
|
|
1315
|
-
Re-exports [EngineListQuickReplies](../interfaces/webitelAPI.schemas.EngineListQuickReplies.html)
|
|
1316
|
-
|
|
1317
|
-
***
|
|
1318
|
-
|
|
1319
|
-
### EngineListRegion
|
|
1320
|
-
|
|
1321
|
-
Re-exports [EngineListRegion](../interfaces/webitelAPI.schemas.EngineListRegion.html)
|
|
1322
|
-
|
|
1323
|
-
***
|
|
1324
|
-
|
|
1325
|
-
### EngineListReportGeneral
|
|
1326
|
-
|
|
1327
|
-
Re-exports [EngineListReportGeneral](../interfaces/webitelAPI.schemas.EngineListReportGeneral.html)
|
|
1328
|
-
|
|
1329
|
-
***
|
|
1330
|
-
|
|
1331
|
-
### EngineListResourceDisplay
|
|
1332
|
-
|
|
1333
|
-
Re-exports [EngineListResourceDisplay](../interfaces/webitelAPI.schemas.EngineListResourceDisplay.html)
|
|
1334
|
-
|
|
1335
|
-
***
|
|
1336
|
-
|
|
1337
|
-
### EngineListRoutingOutboundCall
|
|
1338
|
-
|
|
1339
|
-
Re-exports [EngineListRoutingOutboundCall](../interfaces/webitelAPI.schemas.EngineListRoutingOutboundCall.html)
|
|
1340
|
-
|
|
1341
|
-
***
|
|
1342
|
-
|
|
1343
|
-
### EngineListRoutingSchema
|
|
1344
|
-
|
|
1345
|
-
Re-exports [EngineListRoutingSchema](../interfaces/webitelAPI.schemas.EngineListRoutingSchema.html)
|
|
1346
|
-
|
|
1347
|
-
***
|
|
1348
|
-
|
|
1349
|
-
### EngineListRoutingSchemaTags
|
|
1350
|
-
|
|
1351
|
-
Re-exports [EngineListRoutingSchemaTags](../interfaces/webitelAPI.schemas.EngineListRoutingSchemaTags.html)
|
|
1352
|
-
|
|
1353
|
-
***
|
|
1354
|
-
|
|
1355
|
-
### EngineListRoutingVariable
|
|
1356
|
-
|
|
1357
|
-
Re-exports [EngineListRoutingVariable](../interfaces/webitelAPI.schemas.EngineListRoutingVariable.html)
|
|
1358
|
-
|
|
1359
|
-
***
|
|
1360
|
-
|
|
1361
|
-
### EngineListSchemaVariable
|
|
1362
|
-
|
|
1363
|
-
Re-exports [EngineListSchemaVariable](../interfaces/webitelAPI.schemas.EngineListSchemaVariable.html)
|
|
1364
|
-
|
|
1365
|
-
***
|
|
1366
|
-
|
|
1367
|
-
### EngineListSkill
|
|
1368
|
-
|
|
1369
|
-
Re-exports [EngineListSkill](../interfaces/webitelAPI.schemas.EngineListSkill.html)
|
|
1370
|
-
|
|
1371
|
-
***
|
|
1372
|
-
|
|
1373
|
-
### EngineListSkillAgent
|
|
1374
|
-
|
|
1375
|
-
Re-exports [EngineListSkillAgent](../interfaces/webitelAPI.schemas.EngineListSkillAgent.html)
|
|
1376
|
-
|
|
1377
|
-
***
|
|
1378
|
-
|
|
1379
|
-
### EngineListSystemSetting
|
|
1380
|
-
|
|
1381
|
-
Re-exports [EngineListSystemSetting](../interfaces/webitelAPI.schemas.EngineListSystemSetting.html)
|
|
1382
|
-
|
|
1383
|
-
***
|
|
1384
|
-
|
|
1385
|
-
### EngineListTags
|
|
1386
|
-
|
|
1387
|
-
Re-exports [EngineListTags](../interfaces/webitelAPI.schemas.EngineListTags.html)
|
|
1388
|
-
|
|
1389
|
-
***
|
|
1390
|
-
|
|
1391
|
-
### EngineListTeamHook
|
|
1392
|
-
|
|
1393
|
-
Re-exports [EngineListTeamHook](../interfaces/webitelAPI.schemas.EngineListTeamHook.html)
|
|
1394
|
-
|
|
1395
|
-
***
|
|
1396
|
-
|
|
1397
|
-
### EngineListTeamTrigger
|
|
1398
|
-
|
|
1399
|
-
Re-exports [EngineListTeamTrigger](../interfaces/webitelAPI.schemas.EngineListTeamTrigger.html)
|
|
1400
|
-
|
|
1401
|
-
***
|
|
1402
|
-
|
|
1403
|
-
### EngineListTimezoneResponse
|
|
1404
|
-
|
|
1405
|
-
Re-exports [EngineListTimezoneResponse](../interfaces/webitelAPI.schemas.EngineListTimezoneResponse.html)
|
|
1406
|
-
|
|
1407
|
-
***
|
|
1408
|
-
|
|
1409
|
-
### EngineListTrigger
|
|
1410
|
-
|
|
1411
|
-
Re-exports [EngineListTrigger](../interfaces/webitelAPI.schemas.EngineListTrigger.html)
|
|
1412
|
-
|
|
1413
|
-
***
|
|
1414
|
-
|
|
1415
|
-
### EngineListTriggerJob
|
|
1416
|
-
|
|
1417
|
-
Re-exports [EngineListTriggerJob](../interfaces/webitelAPI.schemas.EngineListTriggerJob.html)
|
|
1418
|
-
|
|
1419
|
-
***
|
|
1420
|
-
|
|
1421
|
-
### EngineListUserStatus
|
|
1422
|
-
|
|
1423
|
-
Re-exports [EngineListUserStatus](../interfaces/webitelAPI.schemas.EngineListUserStatus.html)
|
|
1424
|
-
|
|
1425
|
-
***
|
|
1426
|
-
|
|
1427
|
-
### EngineListWebHook
|
|
1428
|
-
|
|
1429
|
-
Re-exports [EngineListWebHook](../interfaces/webitelAPI.schemas.EngineListWebHook.html)
|
|
1430
|
-
|
|
1431
|
-
***
|
|
1432
|
-
|
|
1433
|
-
### EngineLoginEmailProfileResponse
|
|
1434
|
-
|
|
1435
|
-
Re-exports [EngineLoginEmailProfileResponse](../interfaces/webitelAPI.schemas.EngineLoginEmailProfileResponse.html)
|
|
1436
|
-
|
|
1437
|
-
***
|
|
1438
|
-
|
|
1439
|
-
### EngineLoginEmailProfileResponseCookie
|
|
1440
|
-
|
|
1441
|
-
Re-exports [EngineLoginEmailProfileResponseCookie](../types/webitelAPI.schemas.EngineLoginEmailProfileResponseCookie.html)
|
|
1442
|
-
|
|
1443
|
-
***
|
|
1444
|
-
|
|
1445
|
-
### EngineLogoutEmailProfileResponse
|
|
1446
|
-
|
|
1447
|
-
Re-exports [EngineLogoutEmailProfileResponse](../interfaces/webitelAPI.schemas.EngineLogoutEmailProfileResponse.html)
|
|
1448
|
-
|
|
1449
|
-
***
|
|
1450
|
-
|
|
1451
|
-
### EngineLookup
|
|
1452
|
-
|
|
1453
|
-
Re-exports [EngineLookup](../interfaces/webitelAPI.schemas.EngineLookup.html)
|
|
1454
|
-
|
|
1455
|
-
***
|
|
1456
|
-
|
|
1457
|
-
### EngineMemberAttempt
|
|
1458
|
-
|
|
1459
|
-
Re-exports [EngineMemberAttempt](../interfaces/webitelAPI.schemas.EngineMemberAttempt.html)
|
|
1460
|
-
|
|
1461
|
-
***
|
|
1462
|
-
|
|
1463
|
-
### EngineMemberAttemptLogs
|
|
1464
|
-
|
|
1465
|
-
Re-exports [EngineMemberAttemptLogs](../types/webitelAPI.schemas.EngineMemberAttemptLogs.html)
|
|
1466
|
-
|
|
1467
|
-
***
|
|
1468
|
-
|
|
1469
|
-
### EngineMemberBulkResponse
|
|
1470
|
-
|
|
1471
|
-
Re-exports [EngineMemberBulkResponse](../interfaces/webitelAPI.schemas.EngineMemberBulkResponse.html)
|
|
1472
|
-
|
|
1473
|
-
***
|
|
1474
|
-
|
|
1475
|
-
### EngineMemberCommunication
|
|
1476
|
-
|
|
1477
|
-
Re-exports [EngineMemberCommunication](../interfaces/webitelAPI.schemas.EngineMemberCommunication.html)
|
|
1478
|
-
|
|
1479
|
-
***
|
|
1480
|
-
|
|
1481
|
-
### EngineMemberCommunicationCreateRequest
|
|
1482
|
-
|
|
1483
|
-
Re-exports [EngineMemberCommunicationCreateRequest](../interfaces/webitelAPI.schemas.EngineMemberCommunicationCreateRequest.html)
|
|
1484
|
-
|
|
1485
|
-
***
|
|
1486
|
-
|
|
1487
|
-
### EngineMemberInQueue
|
|
1488
|
-
|
|
1489
|
-
Re-exports [EngineMemberInQueue](../interfaces/webitelAPI.schemas.EngineMemberInQueue.html)
|
|
1490
|
-
|
|
1491
|
-
***
|
|
1492
|
-
|
|
1493
|
-
### EngineMemberInQueueVariables
|
|
1494
|
-
|
|
1495
|
-
Re-exports [EngineMemberInQueueVariables](../types/webitelAPI.schemas.EngineMemberInQueueVariables.html)
|
|
1496
|
-
|
|
1497
|
-
***
|
|
1498
|
-
|
|
1499
|
-
### EngineMovePositionRoutingOutboundCallRequest
|
|
1500
|
-
|
|
1501
|
-
Re-exports [EngineMovePositionRoutingOutboundCallRequest](../interfaces/webitelAPI.schemas.EngineMovePositionRoutingOutboundCallRequest.html)
|
|
1502
|
-
|
|
1503
|
-
***
|
|
1504
|
-
|
|
1505
|
-
### EngineMovePositionRoutingOutboundCallResponse
|
|
1506
|
-
|
|
1507
|
-
Re-exports [EngineMovePositionRoutingOutboundCallResponse](../interfaces/webitelAPI.schemas.EngineMovePositionRoutingOutboundCallResponse.html)
|
|
1508
|
-
|
|
1509
|
-
***
|
|
1510
|
-
|
|
1511
|
-
### EngineOutboundResource
|
|
1512
|
-
|
|
1513
|
-
Re-exports [EngineOutboundResource](../interfaces/webitelAPI.schemas.EngineOutboundResource.html)
|
|
1514
|
-
|
|
1515
|
-
***
|
|
1516
|
-
|
|
1517
|
-
### EngineOutboundResourceGroup
|
|
1518
|
-
|
|
1519
|
-
Re-exports [EngineOutboundResourceGroup](../interfaces/webitelAPI.schemas.EngineOutboundResourceGroup.html)
|
|
1520
|
-
|
|
1521
|
-
***
|
|
1522
|
-
|
|
1523
|
-
### EngineOutboundResourceInGroup
|
|
1524
|
-
|
|
1525
|
-
Re-exports [EngineOutboundResourceInGroup](../interfaces/webitelAPI.schemas.EngineOutboundResourceInGroup.html)
|
|
1526
|
-
|
|
1527
|
-
***
|
|
1528
|
-
|
|
1529
|
-
### EngineOutboundResourceParameters
|
|
1530
|
-
|
|
1531
|
-
Re-exports [EngineOutboundResourceParameters](../interfaces/webitelAPI.schemas.EngineOutboundResourceParameters.html)
|
|
1532
|
-
|
|
1533
|
-
***
|
|
1534
|
-
|
|
1535
|
-
### EngineOutboundResourceTimeRange
|
|
1536
|
-
|
|
1537
|
-
Re-exports [EngineOutboundResourceTimeRange](../interfaces/webitelAPI.schemas.EngineOutboundResourceTimeRange.html)
|
|
1538
|
-
|
|
1539
|
-
***
|
|
1540
|
-
|
|
1541
|
-
### EngineOutboundResourceVariables
|
|
1542
|
-
|
|
1543
|
-
Re-exports [EngineOutboundResourceVariables](../types/webitelAPI.schemas.EngineOutboundResourceVariables.html)
|
|
1544
|
-
|
|
1545
|
-
***
|
|
1546
|
-
|
|
1547
|
-
### EngineOutboundResourceViewGroup
|
|
1548
|
-
|
|
1549
|
-
Re-exports [EngineOutboundResourceViewGroup](../interfaces/webitelAPI.schemas.EngineOutboundResourceViewGroup.html)
|
|
1550
|
-
|
|
1551
|
-
***
|
|
1552
|
-
|
|
1553
|
-
### EnginePatchAgentPauseCauseRequest
|
|
1554
|
-
|
|
1555
|
-
Re-exports [EnginePatchAgentPauseCauseRequest](../interfaces/webitelAPI.schemas.EnginePatchAgentPauseCauseRequest.html)
|
|
1556
|
-
|
|
1557
|
-
***
|
|
1558
|
-
|
|
1559
|
-
### EnginePatchAgentRequest
|
|
1560
|
-
|
|
1561
|
-
Re-exports [EnginePatchAgentRequest](../interfaces/webitelAPI.schemas.EnginePatchAgentRequest.html)
|
|
1562
|
-
|
|
1563
|
-
***
|
|
1564
|
-
|
|
1565
|
-
### EnginePatchAgentSkillRequest
|
|
1566
|
-
|
|
1567
|
-
Re-exports [EnginePatchAgentSkillRequest](../interfaces/webitelAPI.schemas.EnginePatchAgentSkillRequest.html)
|
|
1568
|
-
|
|
1569
|
-
***
|
|
1570
|
-
|
|
1571
|
-
### EnginePatchAgentSkillsRequest
|
|
1572
|
-
|
|
1573
|
-
Re-exports [EnginePatchAgentSkillsRequest](../interfaces/webitelAPI.schemas.EnginePatchAgentSkillsRequest.html)
|
|
1574
|
-
|
|
1575
|
-
***
|
|
1576
|
-
|
|
1577
|
-
### EnginePatchAuditFormRequest
|
|
1578
|
-
|
|
1579
|
-
Re-exports [EnginePatchAuditFormRequest](../interfaces/webitelAPI.schemas.EnginePatchAuditFormRequest.html)
|
|
1580
|
-
|
|
1581
|
-
***
|
|
1582
|
-
|
|
1583
|
-
### EnginePatchChatPlanRequest
|
|
1584
|
-
|
|
1585
|
-
Re-exports [EnginePatchChatPlanRequest](../interfaces/webitelAPI.schemas.EnginePatchChatPlanRequest.html)
|
|
1586
|
-
|
|
1587
|
-
***
|
|
1588
|
-
|
|
1589
|
-
### EnginePatchCommunicationTypeRequest
|
|
1590
|
-
|
|
1591
|
-
Re-exports [EnginePatchCommunicationTypeRequest](../interfaces/webitelAPI.schemas.EnginePatchCommunicationTypeRequest.html)
|
|
1592
|
-
|
|
1593
|
-
***
|
|
1594
|
-
|
|
1595
|
-
### EnginePatchEmailProfileRequest
|
|
1596
|
-
|
|
1597
|
-
Re-exports [EnginePatchEmailProfileRequest](../interfaces/webitelAPI.schemas.EnginePatchEmailProfileRequest.html)
|
|
1598
|
-
|
|
1599
|
-
***
|
|
1600
|
-
|
|
1601
|
-
### EnginePatchHistoryCallRequest
|
|
1602
|
-
|
|
1603
|
-
Re-exports [EnginePatchHistoryCallRequest](../interfaces/webitelAPI.schemas.EnginePatchHistoryCallRequest.html)
|
|
1604
|
-
|
|
1605
|
-
***
|
|
1606
|
-
|
|
1607
|
-
### EnginePatchHistoryCallRequestVariables
|
|
1608
|
-
|
|
1609
|
-
Re-exports [EnginePatchHistoryCallRequestVariables](../types/webitelAPI.schemas.EnginePatchHistoryCallRequestVariables.html)
|
|
1610
|
-
|
|
1611
|
-
***
|
|
1612
|
-
|
|
1613
|
-
### EnginePatchMemberOneRequest
|
|
1614
|
-
|
|
1615
|
-
Re-exports [EnginePatchMemberOneRequest](../interfaces/webitelAPI.schemas.EnginePatchMemberOneRequest.html)
|
|
1616
|
-
|
|
1617
|
-
***
|
|
1618
|
-
|
|
1619
|
-
### EnginePatchMemberOneRequestVariables
|
|
1620
|
-
|
|
1621
|
-
Re-exports [EnginePatchMemberOneRequestVariables](../types/webitelAPI.schemas.EnginePatchMemberOneRequestVariables.html)
|
|
1622
|
-
|
|
1623
|
-
***
|
|
1624
|
-
|
|
1625
|
-
### EnginePatchMemberRequest
|
|
1626
|
-
|
|
1627
|
-
Re-exports [EnginePatchMemberRequest](../interfaces/webitelAPI.schemas.EnginePatchMemberRequest.html)
|
|
1628
|
-
|
|
1629
|
-
***
|
|
1630
|
-
|
|
1631
|
-
### EnginePatchMemberRequestVariables
|
|
1632
|
-
|
|
1633
|
-
Re-exports [EnginePatchMemberRequestVariables](../types/webitelAPI.schemas.EnginePatchMemberRequestVariables.html)
|
|
1634
|
-
|
|
1635
|
-
***
|
|
1636
|
-
|
|
1637
|
-
### EnginePatchOutboundResourceRequest
|
|
1638
|
-
|
|
1639
|
-
Re-exports [EnginePatchOutboundResourceRequest](../interfaces/webitelAPI.schemas.EnginePatchOutboundResourceRequest.html)
|
|
1640
|
-
|
|
1641
|
-
***
|
|
1642
|
-
|
|
1643
|
-
### EnginePatchOutboundResourceRequestVariables
|
|
1644
|
-
|
|
1645
|
-
Re-exports [EnginePatchOutboundResourceRequestVariables](../types/webitelAPI.schemas.EnginePatchOutboundResourceRequestVariables.html)
|
|
1646
|
-
|
|
1647
|
-
***
|
|
1648
|
-
|
|
1649
|
-
### EnginePatchPresetQueryRequest
|
|
1650
|
-
|
|
1651
|
-
Re-exports [EnginePatchPresetQueryRequest](../interfaces/webitelAPI.schemas.EnginePatchPresetQueryRequest.html)
|
|
1652
|
-
|
|
1653
|
-
***
|
|
1654
|
-
|
|
1655
|
-
### EnginePatchPresetQueryRequestPreset
|
|
1656
|
-
|
|
1657
|
-
Re-exports [EnginePatchPresetQueryRequestPreset](../types/webitelAPI.schemas.EnginePatchPresetQueryRequestPreset.html)
|
|
1658
|
-
|
|
1659
|
-
***
|
|
1660
|
-
|
|
1661
|
-
### EnginePatchQueueBucketRequest
|
|
1662
|
-
|
|
1663
|
-
Re-exports [EnginePatchQueueBucketRequest](../interfaces/webitelAPI.schemas.EnginePatchQueueBucketRequest.html)
|
|
1664
|
-
|
|
1665
|
-
***
|
|
1666
|
-
|
|
1667
|
-
### EnginePatchQueueHookRequest
|
|
1668
|
-
|
|
1669
|
-
Re-exports [EnginePatchQueueHookRequest](../interfaces/webitelAPI.schemas.EnginePatchQueueHookRequest.html)
|
|
1670
|
-
|
|
1671
|
-
***
|
|
1672
|
-
|
|
1673
|
-
### EnginePatchQueueRequest
|
|
1674
|
-
|
|
1675
|
-
Re-exports [EnginePatchQueueRequest](../interfaces/webitelAPI.schemas.EnginePatchQueueRequest.html)
|
|
1676
|
-
|
|
1677
|
-
***
|
|
1678
|
-
|
|
1679
|
-
### EnginePatchQueueRequestPayload
|
|
1680
|
-
|
|
1681
|
-
Re-exports [EnginePatchQueueRequestPayload](../types/webitelAPI.schemas.EnginePatchQueueRequestPayload.html)
|
|
1682
|
-
|
|
1683
|
-
***
|
|
1684
|
-
|
|
1685
|
-
### EnginePatchQueueRequestVariables
|
|
1686
|
-
|
|
1687
|
-
Re-exports [EnginePatchQueueRequestVariables](../types/webitelAPI.schemas.EnginePatchQueueRequestVariables.html)
|
|
1688
|
-
|
|
1689
|
-
***
|
|
1690
|
-
|
|
1691
|
-
### EnginePatchQueueSkillRequest
|
|
1692
|
-
|
|
1693
|
-
Re-exports [EnginePatchQueueSkillRequest](../interfaces/webitelAPI.schemas.EnginePatchQueueSkillRequest.html)
|
|
1694
|
-
|
|
1695
|
-
***
|
|
1696
|
-
|
|
1697
|
-
### EnginePatchQuickReplyRequest
|
|
1698
|
-
|
|
1699
|
-
Re-exports [EnginePatchQuickReplyRequest](../interfaces/webitelAPI.schemas.EnginePatchQuickReplyRequest.html)
|
|
1700
|
-
|
|
1701
|
-
***
|
|
1702
|
-
|
|
1703
|
-
### EnginePatchRegionRequest
|
|
1704
|
-
|
|
1705
|
-
Re-exports [EnginePatchRegionRequest](../interfaces/webitelAPI.schemas.EnginePatchRegionRequest.html)
|
|
1706
|
-
|
|
1707
|
-
***
|
|
1708
|
-
|
|
1709
|
-
### EnginePatchRoutingOutboundCallRequest
|
|
1710
|
-
|
|
1711
|
-
Re-exports [EnginePatchRoutingOutboundCallRequest](../interfaces/webitelAPI.schemas.EnginePatchRoutingOutboundCallRequest.html)
|
|
1712
|
-
|
|
1713
|
-
***
|
|
1714
|
-
|
|
1715
|
-
### EnginePatchRoutingSchemaRequest
|
|
1716
|
-
|
|
1717
|
-
Re-exports [EnginePatchRoutingSchemaRequest](../interfaces/webitelAPI.schemas.EnginePatchRoutingSchemaRequest.html)
|
|
1718
|
-
|
|
1719
|
-
***
|
|
1720
|
-
|
|
1721
|
-
### EnginePatchRoutingSchemaRequestPayload
|
|
1722
|
-
|
|
1723
|
-
Re-exports [EnginePatchRoutingSchemaRequestPayload](../types/webitelAPI.schemas.EnginePatchRoutingSchemaRequestPayload.html)
|
|
1724
|
-
|
|
1725
|
-
***
|
|
1726
|
-
|
|
1727
|
-
### EnginePatchRoutingSchemaRequestSchema
|
|
1728
|
-
|
|
1729
|
-
Re-exports [EnginePatchRoutingSchemaRequestSchema](../types/webitelAPI.schemas.EnginePatchRoutingSchemaRequestSchema.html)
|
|
1730
|
-
|
|
1731
|
-
***
|
|
1732
|
-
|
|
1733
|
-
### EnginePatchSchemaVariableRequest
|
|
1734
|
-
|
|
1735
|
-
Re-exports [EnginePatchSchemaVariableRequest](../interfaces/webitelAPI.schemas.EnginePatchSchemaVariableRequest.html)
|
|
1736
|
-
|
|
1737
|
-
***
|
|
1738
|
-
|
|
1739
|
-
### EnginePatchSchemaVariableRequestValue
|
|
1740
|
-
|
|
1741
|
-
Re-exports [EnginePatchSchemaVariableRequestValue](../types/webitelAPI.schemas.EnginePatchSchemaVariableRequestValue.html)
|
|
1742
|
-
|
|
1743
|
-
***
|
|
1744
|
-
|
|
1745
|
-
### EnginePatchSkillAgentRequest
|
|
1746
|
-
|
|
1747
|
-
Re-exports [EnginePatchSkillAgentRequest](../interfaces/webitelAPI.schemas.EnginePatchSkillAgentRequest.html)
|
|
1748
|
-
|
|
1749
|
-
***
|
|
1750
|
-
|
|
1751
|
-
### EnginePatchSkillAgentResponse
|
|
1752
|
-
|
|
1753
|
-
Re-exports [EnginePatchSkillAgentResponse](../interfaces/webitelAPI.schemas.EnginePatchSkillAgentResponse.html)
|
|
1754
|
-
|
|
1755
|
-
***
|
|
1756
|
-
|
|
1757
|
-
### EnginePatchSystemSettingRequest
|
|
1758
|
-
|
|
1759
|
-
Re-exports [EnginePatchSystemSettingRequest](../interfaces/webitelAPI.schemas.EnginePatchSystemSettingRequest.html)
|
|
1760
|
-
|
|
1761
|
-
***
|
|
1762
|
-
|
|
1763
|
-
### EnginePatchSystemSettingRequestValue
|
|
1764
|
-
|
|
1765
|
-
Re-exports [EnginePatchSystemSettingRequestValue](../types/webitelAPI.schemas.EnginePatchSystemSettingRequestValue.html)
|
|
1766
|
-
|
|
1767
|
-
***
|
|
1768
|
-
|
|
1769
|
-
### EnginePatchTeamHookRequest
|
|
1770
|
-
|
|
1771
|
-
Re-exports [EnginePatchTeamHookRequest](../interfaces/webitelAPI.schemas.EnginePatchTeamHookRequest.html)
|
|
1772
|
-
|
|
1773
|
-
***
|
|
1774
|
-
|
|
1775
|
-
### EnginePatchTeamTriggerRequest
|
|
1776
|
-
|
|
1777
|
-
Re-exports [EnginePatchTeamTriggerRequest](../interfaces/webitelAPI.schemas.EnginePatchTeamTriggerRequest.html)
|
|
1778
|
-
|
|
1779
|
-
***
|
|
1780
|
-
|
|
1781
|
-
### EnginePatchTriggerRequest
|
|
1782
|
-
|
|
1783
|
-
Re-exports [EnginePatchTriggerRequest](../interfaces/webitelAPI.schemas.EnginePatchTriggerRequest.html)
|
|
1784
|
-
|
|
1785
|
-
***
|
|
1786
|
-
|
|
1787
|
-
### EnginePatchTriggerRequestVariables
|
|
1788
|
-
|
|
1789
|
-
Re-exports [EnginePatchTriggerRequestVariables](../types/webitelAPI.schemas.EnginePatchTriggerRequestVariables.html)
|
|
1790
|
-
|
|
1791
|
-
***
|
|
1792
|
-
|
|
1793
|
-
### EnginePatchWebHookRequest
|
|
1794
|
-
|
|
1795
|
-
Re-exports [EnginePatchWebHookRequest](../interfaces/webitelAPI.schemas.EnginePatchWebHookRequest.html)
|
|
1796
|
-
|
|
1797
|
-
***
|
|
1798
|
-
|
|
1799
|
-
### EnginePresetQuery
|
|
1800
|
-
|
|
1801
|
-
Re-exports [EnginePresetQuery](../interfaces/webitelAPI.schemas.EnginePresetQuery.html)
|
|
1802
|
-
|
|
1803
|
-
***
|
|
1804
|
-
|
|
1805
|
-
### EnginePresetQueryPreset
|
|
1806
|
-
|
|
1807
|
-
Re-exports [EnginePresetQueryPreset](../types/webitelAPI.schemas.EnginePresetQueryPreset.html)
|
|
1808
|
-
|
|
1809
|
-
***
|
|
1810
|
-
|
|
1811
|
-
### EngineQuestion
|
|
1812
|
-
|
|
1813
|
-
Re-exports [EngineQuestion](../interfaces/webitelAPI.schemas.EngineQuestion.html)
|
|
1814
|
-
|
|
1815
|
-
***
|
|
1816
|
-
|
|
1817
|
-
### EngineQuestionAnswer
|
|
1818
|
-
|
|
1819
|
-
Re-exports [EngineQuestionAnswer](../interfaces/webitelAPI.schemas.EngineQuestionAnswer.html)
|
|
1820
|
-
|
|
1821
|
-
***
|
|
1822
|
-
|
|
1823
|
-
### EngineQueue
|
|
1824
|
-
|
|
1825
|
-
Re-exports [EngineQueue](../interfaces/webitelAPI.schemas.EngineQueue.html)
|
|
1826
|
-
|
|
1827
|
-
***
|
|
1828
|
-
|
|
1829
|
-
### EngineQueueBucket
|
|
1830
|
-
|
|
1831
|
-
Re-exports [EngineQueueBucket](../interfaces/webitelAPI.schemas.EngineQueueBucket.html)
|
|
1832
|
-
|
|
1833
|
-
***
|
|
1834
|
-
|
|
1835
|
-
### EngineQueueHook
|
|
1836
|
-
|
|
1837
|
-
Re-exports [EngineQueueHook](../interfaces/webitelAPI.schemas.EngineQueueHook.html)
|
|
1838
|
-
|
|
1839
|
-
***
|
|
1840
|
-
|
|
1841
|
-
### EngineQueuePayload
|
|
1842
|
-
|
|
1843
|
-
Re-exports [EngineQueuePayload](../types/webitelAPI.schemas.EngineQueuePayload.html)
|
|
1844
|
-
|
|
1845
|
-
***
|
|
1846
|
-
|
|
1847
|
-
### EngineQueueReportGeneral
|
|
1848
|
-
|
|
1849
|
-
Re-exports [EngineQueueReportGeneral](../interfaces/webitelAPI.schemas.EngineQueueReportGeneral.html)
|
|
1850
|
-
|
|
1851
|
-
***
|
|
1852
|
-
|
|
1853
|
-
### EngineQueueReportGeneralAgentStatus
|
|
1854
|
-
|
|
1855
|
-
Re-exports [EngineQueueReportGeneralAgentStatus](../interfaces/webitelAPI.schemas.EngineQueueReportGeneralAgentStatus.html)
|
|
1856
|
-
|
|
1857
|
-
***
|
|
1858
|
-
|
|
1859
|
-
### EngineQueueResourceGroup
|
|
1860
|
-
|
|
1861
|
-
Re-exports [EngineQueueResourceGroup](../interfaces/webitelAPI.schemas.EngineQueueResourceGroup.html)
|
|
1862
|
-
|
|
1863
|
-
***
|
|
1864
|
-
|
|
1865
|
-
### EngineQueueSkill
|
|
1866
|
-
|
|
1867
|
-
Re-exports [EngineQueueSkill](../interfaces/webitelAPI.schemas.EngineQueueSkill.html)
|
|
1868
|
-
|
|
1869
|
-
***
|
|
1870
|
-
|
|
1871
|
-
### EngineQueueVariables
|
|
1872
|
-
|
|
1873
|
-
Re-exports [EngineQueueVariables](../types/webitelAPI.schemas.EngineQueueVariables.html)
|
|
1874
|
-
|
|
1875
|
-
***
|
|
1876
|
-
|
|
1877
|
-
### EngineQuickReply
|
|
1878
|
-
|
|
1879
|
-
Re-exports [EngineQuickReply](../interfaces/webitelAPI.schemas.EngineQuickReply.html)
|
|
1880
|
-
|
|
1881
|
-
***
|
|
1882
|
-
|
|
1883
|
-
### EngineRedialCallRequest
|
|
1884
|
-
|
|
1885
|
-
Re-exports [EngineRedialCallRequest](../interfaces/webitelAPI.schemas.EngineRedialCallRequest.html)
|
|
1886
|
-
|
|
1887
|
-
***
|
|
1888
|
-
|
|
1889
|
-
### EngineRegion
|
|
1890
|
-
|
|
1891
|
-
Re-exports [EngineRegion](../interfaces/webitelAPI.schemas.EngineRegion.html)
|
|
1892
|
-
|
|
1893
|
-
***
|
|
1894
|
-
|
|
1895
|
-
### EngineResetActiveAttemptsRequest
|
|
1896
|
-
|
|
1897
|
-
Re-exports [EngineResetActiveAttemptsRequest](../interfaces/webitelAPI.schemas.EngineResetActiveAttemptsRequest.html)
|
|
1898
|
-
|
|
1899
|
-
***
|
|
1900
|
-
|
|
1901
|
-
### EngineResetActiveAttemptsResponse
|
|
1902
|
-
|
|
1903
|
-
Re-exports [EngineResetActiveAttemptsResponse](../interfaces/webitelAPI.schemas.EngineResetActiveAttemptsResponse.html)
|
|
1904
|
-
|
|
1905
|
-
***
|
|
1906
|
-
|
|
1907
|
-
### EngineResetMembersRequest
|
|
1908
|
-
|
|
1909
|
-
Re-exports [EngineResetMembersRequest](../interfaces/webitelAPI.schemas.EngineResetMembersRequest.html)
|
|
1910
|
-
|
|
1911
|
-
***
|
|
1912
|
-
|
|
1913
|
-
### EngineResetMembersRequestVariables
|
|
1914
|
-
|
|
1915
|
-
Re-exports [EngineResetMembersRequestVariables](../types/webitelAPI.schemas.EngineResetMembersRequestVariables.html)
|
|
1916
|
-
|
|
1917
|
-
***
|
|
1918
|
-
|
|
1919
|
-
### EngineResetMembersResponse
|
|
1920
|
-
|
|
1921
|
-
Re-exports [EngineResetMembersResponse](../interfaces/webitelAPI.schemas.EngineResetMembersResponse.html)
|
|
1922
|
-
|
|
1923
|
-
***
|
|
1924
|
-
|
|
1925
|
-
### EngineResourceDisplay
|
|
1926
|
-
|
|
1927
|
-
Re-exports [EngineResourceDisplay](../interfaces/webitelAPI.schemas.EngineResourceDisplay.html)
|
|
1928
|
-
|
|
1929
|
-
***
|
|
1930
|
-
|
|
1931
|
-
### EngineResponse
|
|
1932
|
-
|
|
1933
|
-
Re-exports [EngineResponse](../interfaces/webitelAPI.schemas.EngineResponse.html)
|
|
1934
|
-
|
|
1935
|
-
***
|
|
1936
|
-
|
|
1937
|
-
### EngineRoutingOutboundCall
|
|
1938
|
-
|
|
1939
|
-
Re-exports [EngineRoutingOutboundCall](../interfaces/webitelAPI.schemas.EngineRoutingOutboundCall.html)
|
|
1940
|
-
|
|
1941
|
-
***
|
|
1942
|
-
|
|
1943
|
-
### EngineRoutingOutboundCallCompact
|
|
1944
|
-
|
|
1945
|
-
Re-exports [EngineRoutingOutboundCallCompact](../interfaces/webitelAPI.schemas.EngineRoutingOutboundCallCompact.html)
|
|
1946
|
-
|
|
1947
|
-
***
|
|
1948
|
-
|
|
1949
|
-
### EngineRoutingSchema
|
|
1950
|
-
|
|
1951
|
-
Re-exports [EngineRoutingSchema](../interfaces/webitelAPI.schemas.EngineRoutingSchema.html)
|
|
1952
|
-
|
|
1953
|
-
***
|
|
1954
|
-
|
|
1955
|
-
### EngineRoutingSchemaPayload
|
|
1956
|
-
|
|
1957
|
-
Re-exports [EngineRoutingSchemaPayload](../types/webitelAPI.schemas.EngineRoutingSchemaPayload.html)
|
|
1958
|
-
|
|
1959
|
-
***
|
|
1960
|
-
|
|
1961
|
-
### EngineRoutingSchemaSchema
|
|
1962
|
-
|
|
1963
|
-
Re-exports [EngineRoutingSchemaSchema](../types/webitelAPI.schemas.EngineRoutingSchemaSchema.html)
|
|
1964
|
-
|
|
1965
|
-
***
|
|
1966
|
-
|
|
1967
|
-
### EngineRoutingSchemaTag
|
|
1968
|
-
|
|
1969
|
-
Re-exports [EngineRoutingSchemaTag](../interfaces/webitelAPI.schemas.EngineRoutingSchemaTag.html)
|
|
1970
|
-
|
|
1971
|
-
***
|
|
1972
|
-
|
|
1973
|
-
### EngineRoutingSchemaType
|
|
1974
|
-
|
|
1975
|
-
Re-exports [EngineRoutingSchemaType](../variables/webitelAPI.schemas.EngineRoutingSchemaType.html)
|
|
1976
|
-
|
|
1977
|
-
***
|
|
1978
|
-
|
|
1979
|
-
### EngineRoutingVariable
|
|
1980
|
-
|
|
1981
|
-
Re-exports [EngineRoutingVariable](../interfaces/webitelAPI.schemas.EngineRoutingVariable.html)
|
|
1982
|
-
|
|
1983
|
-
***
|
|
1984
|
-
|
|
1985
|
-
### EngineRunTeamTriggerRequest
|
|
1986
|
-
|
|
1987
|
-
Re-exports [EngineRunTeamTriggerRequest](../interfaces/webitelAPI.schemas.EngineRunTeamTriggerRequest.html)
|
|
1988
|
-
|
|
1989
|
-
***
|
|
1990
|
-
|
|
1991
|
-
### EngineRunTeamTriggerRequestVariables
|
|
1992
|
-
|
|
1993
|
-
Re-exports [EngineRunTeamTriggerRequestVariables](../types/webitelAPI.schemas.EngineRunTeamTriggerRequestVariables.html)
|
|
1994
|
-
|
|
1995
|
-
***
|
|
1996
|
-
|
|
1997
|
-
### EngineRunTeamTriggerResponse
|
|
1998
|
-
|
|
1999
|
-
Re-exports [EngineRunTeamTriggerResponse](../interfaces/webitelAPI.schemas.EngineRunTeamTriggerResponse.html)
|
|
2000
|
-
|
|
2001
|
-
***
|
|
2002
|
-
|
|
2003
|
-
### EngineSchemaTag
|
|
2004
|
-
|
|
2005
|
-
Re-exports [EngineSchemaTag](../interfaces/webitelAPI.schemas.EngineSchemaTag.html)
|
|
2006
|
-
|
|
2007
|
-
***
|
|
2008
|
-
|
|
2009
|
-
### EngineSchemaVariable
|
|
2010
|
-
|
|
2011
|
-
Re-exports [EngineSchemaVariable](../interfaces/webitelAPI.schemas.EngineSchemaVariable.html)
|
|
2012
|
-
|
|
2013
|
-
***
|
|
2014
|
-
|
|
2015
|
-
### EngineSchemaVariableValue
|
|
2016
|
-
|
|
2017
|
-
Re-exports [EngineSchemaVariableValue](../types/webitelAPI.schemas.EngineSchemaVariableValue.html)
|
|
2018
|
-
|
|
2019
|
-
***
|
|
2020
|
-
|
|
2021
|
-
### EngineSchemaVersion
|
|
2022
|
-
|
|
2023
|
-
Re-exports [EngineSchemaVersion](../interfaces/webitelAPI.schemas.EngineSchemaVersion.html)
|
|
2024
|
-
|
|
2025
|
-
***
|
|
2026
|
-
|
|
2027
|
-
### EngineSchemaVersionPayload
|
|
2028
|
-
|
|
2029
|
-
Re-exports [EngineSchemaVersionPayload](../types/webitelAPI.schemas.EngineSchemaVersionPayload.html)
|
|
2030
|
-
|
|
2031
|
-
***
|
|
2032
|
-
|
|
2033
|
-
### EngineSchemaVersionSchema
|
|
2034
|
-
|
|
2035
|
-
Re-exports [EngineSchemaVersionSchema](../types/webitelAPI.schemas.EngineSchemaVersionSchema.html)
|
|
2036
|
-
|
|
2037
|
-
***
|
|
2038
|
-
|
|
2039
|
-
### EngineSearchHistoryCallRequest
|
|
2040
|
-
|
|
2041
|
-
Re-exports [EngineSearchHistoryCallRequest](../interfaces/webitelAPI.schemas.EngineSearchHistoryCallRequest.html)
|
|
2042
|
-
|
|
2043
|
-
***
|
|
2044
|
-
|
|
2045
|
-
### EngineSearchHistoryCallRequestVariables
|
|
2046
|
-
|
|
2047
|
-
Re-exports [EngineSearchHistoryCallRequestVariables](../types/webitelAPI.schemas.EngineSearchHistoryCallRequestVariables.html)
|
|
2048
|
-
|
|
2049
|
-
***
|
|
2050
|
-
|
|
2051
|
-
### EngineSearchSchemaVersionResponse
|
|
2052
|
-
|
|
2053
|
-
Re-exports [EngineSearchSchemaVersionResponse](../interfaces/webitelAPI.schemas.EngineSearchSchemaVersionResponse.html)
|
|
2054
|
-
|
|
2055
|
-
***
|
|
2056
|
-
|
|
2057
|
-
### EngineSendPushResponse
|
|
2058
|
-
|
|
2059
|
-
Re-exports [EngineSendPushResponse](../interfaces/webitelAPI.schemas.EngineSendPushResponse.html)
|
|
2060
|
-
|
|
2061
|
-
***
|
|
2062
|
-
|
|
2063
|
-
### EngineSetVariablesCallRequest
|
|
2064
|
-
|
|
2065
|
-
Re-exports [EngineSetVariablesCallRequest](../interfaces/webitelAPI.schemas.EngineSetVariablesCallRequest.html)
|
|
2066
|
-
|
|
2067
|
-
***
|
|
2068
|
-
|
|
2069
|
-
### EngineSetVariablesCallRequestVariables
|
|
2070
|
-
|
|
2071
|
-
Re-exports [EngineSetVariablesCallRequestVariables](../types/webitelAPI.schemas.EngineSetVariablesCallRequestVariables.html)
|
|
2072
|
-
|
|
2073
|
-
***
|
|
2074
|
-
|
|
2075
|
-
### EngineSetVariablesCallResponse
|
|
2076
|
-
|
|
2077
|
-
Re-exports [EngineSetVariablesCallResponse](../interfaces/webitelAPI.schemas.EngineSetVariablesCallResponse.html)
|
|
2078
|
-
|
|
2079
|
-
***
|
|
2080
|
-
|
|
2081
|
-
### EngineSkill
|
|
2082
|
-
|
|
2083
|
-
Re-exports [EngineSkill](../interfaces/webitelAPI.schemas.EngineSkill.html)
|
|
2084
|
-
|
|
2085
|
-
***
|
|
2086
|
-
|
|
2087
|
-
### EngineSkillAgentItem
|
|
2088
|
-
|
|
2089
|
-
Re-exports [EngineSkillAgentItem](../interfaces/webitelAPI.schemas.EngineSkillAgentItem.html)
|
|
2090
|
-
|
|
2091
|
-
***
|
|
2092
|
-
|
|
2093
|
-
### EngineSystemSetting
|
|
2094
|
-
|
|
2095
|
-
Re-exports [EngineSystemSetting](../interfaces/webitelAPI.schemas.EngineSystemSetting.html)
|
|
2096
|
-
|
|
2097
|
-
***
|
|
2098
|
-
|
|
2099
|
-
### EngineSystemSettingName
|
|
2100
|
-
|
|
2101
|
-
Re-exports [EngineSystemSettingName](../variables/webitelAPI.schemas.EngineSystemSettingName.html)
|
|
2102
|
-
|
|
2103
|
-
***
|
|
2104
|
-
|
|
2105
|
-
### EngineSystemSettingValue
|
|
2106
|
-
|
|
2107
|
-
Re-exports [EngineSystemSettingValue](../types/webitelAPI.schemas.EngineSystemSettingValue.html)
|
|
2108
|
-
|
|
2109
|
-
***
|
|
2110
|
-
|
|
2111
|
-
### EngineTag
|
|
2112
|
-
|
|
2113
|
-
Re-exports [EngineTag](../interfaces/webitelAPI.schemas.EngineTag.html)
|
|
2114
|
-
|
|
2115
|
-
***
|
|
2116
|
-
|
|
2117
|
-
### EngineTaskProcessing
|
|
2118
|
-
|
|
2119
|
-
Re-exports [EngineTaskProcessing](../interfaces/webitelAPI.schemas.EngineTaskProcessing.html)
|
|
2120
|
-
|
|
2121
|
-
***
|
|
2122
|
-
|
|
2123
|
-
### EngineTeamHook
|
|
2124
|
-
|
|
2125
|
-
Re-exports [EngineTeamHook](../interfaces/webitelAPI.schemas.EngineTeamHook.html)
|
|
2126
|
-
|
|
2127
|
-
***
|
|
2128
|
-
|
|
2129
|
-
### EngineTeamHookEvent
|
|
2130
|
-
|
|
2131
|
-
Re-exports [EngineTeamHookEvent](../variables/webitelAPI.schemas.EngineTeamHookEvent.html)
|
|
2132
|
-
|
|
2133
|
-
***
|
|
2134
|
-
|
|
2135
|
-
### EngineTeamTrigger
|
|
2136
|
-
|
|
2137
|
-
Re-exports [EngineTeamTrigger](../interfaces/webitelAPI.schemas.EngineTeamTrigger.html)
|
|
2138
|
-
|
|
2139
|
-
***
|
|
2140
|
-
|
|
2141
|
-
### EngineTestEmailProfileResponse
|
|
2142
|
-
|
|
2143
|
-
Re-exports [EngineTestEmailProfileResponse](../interfaces/webitelAPI.schemas.EngineTestEmailProfileResponse.html)
|
|
2144
|
-
|
|
2145
|
-
***
|
|
2146
|
-
|
|
2147
|
-
### EngineTimezone
|
|
2148
|
-
|
|
2149
|
-
Re-exports [EngineTimezone](../interfaces/webitelAPI.schemas.EngineTimezone.html)
|
|
2150
|
-
|
|
2151
|
-
***
|
|
2152
|
-
|
|
2153
|
-
### EngineTranscriptLookup
|
|
2154
|
-
|
|
2155
|
-
Re-exports [EngineTranscriptLookup](../interfaces/webitelAPI.schemas.EngineTranscriptLookup.html)
|
|
2156
|
-
|
|
2157
|
-
***
|
|
2158
|
-
|
|
2159
|
-
### EngineTrigger
|
|
2160
|
-
|
|
2161
|
-
Re-exports [EngineTrigger](../interfaces/webitelAPI.schemas.EngineTrigger.html)
|
|
2162
|
-
|
|
2163
|
-
***
|
|
2164
|
-
|
|
2165
|
-
### EngineTriggerEventType
|
|
2166
|
-
|
|
2167
|
-
Re-exports [EngineTriggerEventType](../variables/webitelAPI.schemas.EngineTriggerEventType.html)
|
|
2168
|
-
|
|
2169
|
-
***
|
|
2170
|
-
|
|
2171
|
-
### EngineTriggerJob
|
|
2172
|
-
|
|
2173
|
-
Re-exports [EngineTriggerJob](../interfaces/webitelAPI.schemas.EngineTriggerJob.html)
|
|
2174
|
-
|
|
2175
|
-
***
|
|
2176
|
-
|
|
2177
|
-
### EngineTriggerJobParameters
|
|
2178
|
-
|
|
2179
|
-
Re-exports [EngineTriggerJobParameters](../types/webitelAPI.schemas.EngineTriggerJobParameters.html)
|
|
2180
|
-
|
|
2181
|
-
***
|
|
2182
|
-
|
|
2183
|
-
### EngineTriggerJobResult
|
|
2184
|
-
|
|
2185
|
-
Re-exports [EngineTriggerJobResult](../types/webitelAPI.schemas.EngineTriggerJobResult.html)
|
|
2186
|
-
|
|
2187
|
-
***
|
|
2188
|
-
|
|
2189
|
-
### EngineTriggerJobState
|
|
2190
|
-
|
|
2191
|
-
Re-exports [EngineTriggerJobState](../variables/webitelAPI.schemas.EngineTriggerJobState.html)
|
|
2192
|
-
|
|
2193
|
-
***
|
|
2194
|
-
|
|
2195
|
-
### EngineTriggerObjectType
|
|
2196
|
-
|
|
2197
|
-
Re-exports [EngineTriggerObjectType](../variables/webitelAPI.schemas.EngineTriggerObjectType.html)
|
|
2198
|
-
|
|
2199
|
-
***
|
|
2200
|
-
|
|
2201
|
-
### EngineTriggerType
|
|
2202
|
-
|
|
2203
|
-
Re-exports [EngineTriggerType](../variables/webitelAPI.schemas.EngineTriggerType.html)
|
|
2204
|
-
|
|
2205
|
-
***
|
|
2206
|
-
|
|
2207
|
-
### EngineTriggerVariables
|
|
2208
|
-
|
|
2209
|
-
Re-exports [EngineTriggerVariables](../types/webitelAPI.schemas.EngineTriggerVariables.html)
|
|
2210
|
-
|
|
2211
|
-
***
|
|
2212
|
-
|
|
2213
|
-
### EngineUpdateAgentPauseCauseRequest
|
|
2214
|
-
|
|
2215
|
-
Re-exports [EngineUpdateAgentPauseCauseRequest](../interfaces/webitelAPI.schemas.EngineUpdateAgentPauseCauseRequest.html)
|
|
2216
|
-
|
|
2217
|
-
***
|
|
2218
|
-
|
|
2219
|
-
### EngineUpdateAgentRequest
|
|
2220
|
-
|
|
2221
|
-
Re-exports [EngineUpdateAgentRequest](../interfaces/webitelAPI.schemas.EngineUpdateAgentRequest.html)
|
|
2222
|
-
|
|
2223
|
-
***
|
|
2224
|
-
|
|
2225
|
-
### EngineUpdateAgentSkillRequest
|
|
2226
|
-
|
|
2227
|
-
Re-exports [EngineUpdateAgentSkillRequest](../interfaces/webitelAPI.schemas.EngineUpdateAgentSkillRequest.html)
|
|
2228
|
-
|
|
2229
|
-
***
|
|
2230
|
-
|
|
2231
|
-
### EngineUpdateAgentTeamRequest
|
|
2232
|
-
|
|
2233
|
-
Re-exports [EngineUpdateAgentTeamRequest](../interfaces/webitelAPI.schemas.EngineUpdateAgentTeamRequest.html)
|
|
2234
|
-
|
|
2235
|
-
***
|
|
2236
|
-
|
|
2237
|
-
### EngineUpdateAuditFormRequest
|
|
2238
|
-
|
|
2239
|
-
Re-exports [EngineUpdateAuditFormRequest](../interfaces/webitelAPI.schemas.EngineUpdateAuditFormRequest.html)
|
|
2240
|
-
|
|
2241
|
-
***
|
|
2242
|
-
|
|
2243
|
-
### EngineUpdateAuditRateRequest
|
|
2244
|
-
|
|
2245
|
-
Re-exports [EngineUpdateAuditRateRequest](../interfaces/webitelAPI.schemas.EngineUpdateAuditRateRequest.html)
|
|
2246
|
-
|
|
2247
|
-
***
|
|
2248
|
-
|
|
2249
|
-
### EngineUpdateBucketRequest
|
|
2250
|
-
|
|
2251
|
-
Re-exports [EngineUpdateBucketRequest](../interfaces/webitelAPI.schemas.EngineUpdateBucketRequest.html)
|
|
2252
|
-
|
|
2253
|
-
***
|
|
2254
|
-
|
|
2255
|
-
### EngineUpdateCalendarRequest
|
|
2256
|
-
|
|
2257
|
-
Re-exports [EngineUpdateCalendarRequest](../interfaces/webitelAPI.schemas.EngineUpdateCalendarRequest.html)
|
|
2258
|
-
|
|
2259
|
-
***
|
|
2260
|
-
|
|
2261
|
-
### EngineUpdateCallAnnotationRequest
|
|
2262
|
-
|
|
2263
|
-
Re-exports [EngineUpdateCallAnnotationRequest](../interfaces/webitelAPI.schemas.EngineUpdateCallAnnotationRequest.html)
|
|
2264
|
-
|
|
2265
|
-
***
|
|
2266
|
-
|
|
2267
|
-
### EngineUpdateChatPlanRequest
|
|
2268
|
-
|
|
2269
|
-
Re-exports [EngineUpdateChatPlanRequest](../interfaces/webitelAPI.schemas.EngineUpdateChatPlanRequest.html)
|
|
2270
|
-
|
|
2271
|
-
***
|
|
2272
|
-
|
|
2273
|
-
### EngineUpdateCommunicationTypeRequest
|
|
2274
|
-
|
|
2275
|
-
Re-exports [EngineUpdateCommunicationTypeRequest](../interfaces/webitelAPI.schemas.EngineUpdateCommunicationTypeRequest.html)
|
|
2276
|
-
|
|
2277
|
-
***
|
|
2278
|
-
|
|
2279
|
-
### EngineUpdateEmailProfileRequest
|
|
2280
|
-
|
|
2281
|
-
Re-exports [EngineUpdateEmailProfileRequest](../interfaces/webitelAPI.schemas.EngineUpdateEmailProfileRequest.html)
|
|
2282
|
-
|
|
2283
|
-
***
|
|
2284
|
-
|
|
2285
|
-
### EngineUpdateListCommunicationRequest
|
|
2286
|
-
|
|
2287
|
-
Re-exports [EngineUpdateListCommunicationRequest](../interfaces/webitelAPI.schemas.EngineUpdateListCommunicationRequest.html)
|
|
2288
|
-
|
|
2289
|
-
***
|
|
2290
|
-
|
|
2291
|
-
### EngineUpdateListRequest
|
|
2292
|
-
|
|
2293
|
-
Re-exports [EngineUpdateListRequest](../interfaces/webitelAPI.schemas.EngineUpdateListRequest.html)
|
|
2294
|
-
|
|
2295
|
-
***
|
|
2296
|
-
|
|
2297
|
-
### EngineUpdateMemberRequest
|
|
2298
|
-
|
|
2299
|
-
Re-exports [EngineUpdateMemberRequest](../interfaces/webitelAPI.schemas.EngineUpdateMemberRequest.html)
|
|
2300
|
-
|
|
2301
|
-
***
|
|
2302
|
-
|
|
2303
|
-
### EngineUpdateMemberRequestVariables
|
|
2304
|
-
|
|
2305
|
-
Re-exports [EngineUpdateMemberRequestVariables](../types/webitelAPI.schemas.EngineUpdateMemberRequestVariables.html)
|
|
2306
|
-
|
|
2307
|
-
***
|
|
2308
|
-
|
|
2309
|
-
### EngineUpdateOutboundResourceDisplayRequest
|
|
2310
|
-
|
|
2311
|
-
Re-exports [EngineUpdateOutboundResourceDisplayRequest](../interfaces/webitelAPI.schemas.EngineUpdateOutboundResourceDisplayRequest.html)
|
|
2312
|
-
|
|
2313
|
-
***
|
|
2314
|
-
|
|
2315
|
-
### EngineUpdateOutboundResourceGroupRequest
|
|
2316
|
-
|
|
2317
|
-
Re-exports [EngineUpdateOutboundResourceGroupRequest](../interfaces/webitelAPI.schemas.EngineUpdateOutboundResourceGroupRequest.html)
|
|
2318
|
-
|
|
2319
|
-
***
|
|
2320
|
-
|
|
2321
|
-
### EngineUpdateOutboundResourceInGroupRequest
|
|
2322
|
-
|
|
2323
|
-
Re-exports [EngineUpdateOutboundResourceInGroupRequest](../interfaces/webitelAPI.schemas.EngineUpdateOutboundResourceInGroupRequest.html)
|
|
2324
|
-
|
|
2325
|
-
***
|
|
2326
|
-
|
|
2327
|
-
### EngineUpdateOutboundResourceRequest
|
|
2328
|
-
|
|
2329
|
-
Re-exports [EngineUpdateOutboundResourceRequest](../interfaces/webitelAPI.schemas.EngineUpdateOutboundResourceRequest.html)
|
|
2330
|
-
|
|
2331
|
-
***
|
|
2332
|
-
|
|
2333
|
-
### EngineUpdateOutboundResourceRequestVariables
|
|
2334
|
-
|
|
2335
|
-
Re-exports [EngineUpdateOutboundResourceRequestVariables](../types/webitelAPI.schemas.EngineUpdateOutboundResourceRequestVariables.html)
|
|
2336
|
-
|
|
2337
|
-
***
|
|
2338
|
-
|
|
2339
|
-
### EngineUpdatePresetQueryRequest
|
|
2340
|
-
|
|
2341
|
-
Re-exports [EngineUpdatePresetQueryRequest](../interfaces/webitelAPI.schemas.EngineUpdatePresetQueryRequest.html)
|
|
2342
|
-
|
|
2343
|
-
***
|
|
2344
|
-
|
|
2345
|
-
### EngineUpdatePresetQueryRequestPreset
|
|
2346
|
-
|
|
2347
|
-
Re-exports [EngineUpdatePresetQueryRequestPreset](../types/webitelAPI.schemas.EngineUpdatePresetQueryRequestPreset.html)
|
|
2348
|
-
|
|
2349
|
-
***
|
|
2350
|
-
|
|
2351
|
-
### EngineUpdateQuestionAnswerRequest
|
|
2352
|
-
|
|
2353
|
-
Re-exports [EngineUpdateQuestionAnswerRequest](../interfaces/webitelAPI.schemas.EngineUpdateQuestionAnswerRequest.html)
|
|
2354
|
-
|
|
2355
|
-
***
|
|
2356
|
-
|
|
2357
|
-
### EngineUpdateQueueBucketRequest
|
|
2358
|
-
|
|
2359
|
-
Re-exports [EngineUpdateQueueBucketRequest](../interfaces/webitelAPI.schemas.EngineUpdateQueueBucketRequest.html)
|
|
2360
|
-
|
|
2361
|
-
***
|
|
2362
|
-
|
|
2363
|
-
### EngineUpdateQueueHookRequest
|
|
2364
|
-
|
|
2365
|
-
Re-exports [EngineUpdateQueueHookRequest](../interfaces/webitelAPI.schemas.EngineUpdateQueueHookRequest.html)
|
|
2366
|
-
|
|
2367
|
-
***
|
|
2368
|
-
|
|
2369
|
-
### EngineUpdateQueueRequest
|
|
2370
|
-
|
|
2371
|
-
Re-exports [EngineUpdateQueueRequest](../interfaces/webitelAPI.schemas.EngineUpdateQueueRequest.html)
|
|
2372
|
-
|
|
2373
|
-
***
|
|
2374
|
-
|
|
2375
|
-
### EngineUpdateQueueRequestPayload
|
|
2376
|
-
|
|
2377
|
-
Re-exports [EngineUpdateQueueRequestPayload](../types/webitelAPI.schemas.EngineUpdateQueueRequestPayload.html)
|
|
2378
|
-
|
|
2379
|
-
***
|
|
2380
|
-
|
|
2381
|
-
### EngineUpdateQueueRequestVariables
|
|
2382
|
-
|
|
2383
|
-
Re-exports [EngineUpdateQueueRequestVariables](../types/webitelAPI.schemas.EngineUpdateQueueRequestVariables.html)
|
|
2384
|
-
|
|
2385
|
-
***
|
|
2386
|
-
|
|
2387
|
-
### EngineUpdateQueueResourceGroupRequest
|
|
2388
|
-
|
|
2389
|
-
Re-exports [EngineUpdateQueueResourceGroupRequest](../interfaces/webitelAPI.schemas.EngineUpdateQueueResourceGroupRequest.html)
|
|
2390
|
-
|
|
2391
|
-
***
|
|
2392
|
-
|
|
2393
|
-
### EngineUpdateQueueSkillRequest
|
|
2394
|
-
|
|
2395
|
-
Re-exports [EngineUpdateQueueSkillRequest](../interfaces/webitelAPI.schemas.EngineUpdateQueueSkillRequest.html)
|
|
2396
|
-
|
|
2397
|
-
***
|
|
2398
|
-
|
|
2399
|
-
### EngineUpdateQuickReplyRequest
|
|
2400
|
-
|
|
2401
|
-
Re-exports [EngineUpdateQuickReplyRequest](../interfaces/webitelAPI.schemas.EngineUpdateQuickReplyRequest.html)
|
|
2402
|
-
|
|
2403
|
-
***
|
|
2404
|
-
|
|
2405
|
-
### EngineUpdateRegionRequest
|
|
2406
|
-
|
|
2407
|
-
Re-exports [EngineUpdateRegionRequest](../interfaces/webitelAPI.schemas.EngineUpdateRegionRequest.html)
|
|
2408
|
-
|
|
2409
|
-
***
|
|
2410
|
-
|
|
2411
|
-
### EngineUpdateRoutingOutboundCallRequest
|
|
2412
|
-
|
|
2413
|
-
Re-exports [EngineUpdateRoutingOutboundCallRequest](../interfaces/webitelAPI.schemas.EngineUpdateRoutingOutboundCallRequest.html)
|
|
2414
|
-
|
|
2415
|
-
***
|
|
2416
|
-
|
|
2417
|
-
### EngineUpdateRoutingSchemaRequest
|
|
2418
|
-
|
|
2419
|
-
Re-exports [EngineUpdateRoutingSchemaRequest](../interfaces/webitelAPI.schemas.EngineUpdateRoutingSchemaRequest.html)
|
|
2420
|
-
|
|
2421
|
-
***
|
|
2422
|
-
|
|
2423
|
-
### EngineUpdateRoutingSchemaRequestPayload
|
|
2424
|
-
|
|
2425
|
-
Re-exports [EngineUpdateRoutingSchemaRequestPayload](../types/webitelAPI.schemas.EngineUpdateRoutingSchemaRequestPayload.html)
|
|
2426
|
-
|
|
2427
|
-
***
|
|
2428
|
-
|
|
2429
|
-
### EngineUpdateRoutingSchemaRequestSchema
|
|
2430
|
-
|
|
2431
|
-
Re-exports [EngineUpdateRoutingSchemaRequestSchema](../types/webitelAPI.schemas.EngineUpdateRoutingSchemaRequestSchema.html)
|
|
2432
|
-
|
|
2433
|
-
***
|
|
2434
|
-
|
|
2435
|
-
### EngineUpdateRoutingVariableRequest
|
|
2436
|
-
|
|
2437
|
-
Re-exports [EngineUpdateRoutingVariableRequest](../interfaces/webitelAPI.schemas.EngineUpdateRoutingVariableRequest.html)
|
|
2438
|
-
|
|
2439
|
-
***
|
|
2440
|
-
|
|
2441
|
-
### EngineUpdateSchemaVariableRequest
|
|
2442
|
-
|
|
2443
|
-
Re-exports [EngineUpdateSchemaVariableRequest](../interfaces/webitelAPI.schemas.EngineUpdateSchemaVariableRequest.html)
|
|
2444
|
-
|
|
2445
|
-
***
|
|
2446
|
-
|
|
2447
|
-
### EngineUpdateSchemaVariableRequestValue
|
|
2448
|
-
|
|
2449
|
-
Re-exports [EngineUpdateSchemaVariableRequestValue](../types/webitelAPI.schemas.EngineUpdateSchemaVariableRequestValue.html)
|
|
2450
|
-
|
|
2451
|
-
***
|
|
2452
|
-
|
|
2453
|
-
### EngineUpdateSkillRequest
|
|
2454
|
-
|
|
2455
|
-
Re-exports [EngineUpdateSkillRequest](../interfaces/webitelAPI.schemas.EngineUpdateSkillRequest.html)
|
|
2456
|
-
|
|
2457
|
-
***
|
|
2458
|
-
|
|
2459
|
-
### EngineUpdateSystemSettingRequest
|
|
2460
|
-
|
|
2461
|
-
Re-exports [EngineUpdateSystemSettingRequest](../interfaces/webitelAPI.schemas.EngineUpdateSystemSettingRequest.html)
|
|
2462
|
-
|
|
2463
|
-
***
|
|
2464
|
-
|
|
2465
|
-
### EngineUpdateSystemSettingRequestValue
|
|
2466
|
-
|
|
2467
|
-
Re-exports [EngineUpdateSystemSettingRequestValue](../types/webitelAPI.schemas.EngineUpdateSystemSettingRequestValue.html)
|
|
2468
|
-
|
|
2469
|
-
***
|
|
2470
|
-
|
|
2471
|
-
### EngineUpdateTeamHookRequest
|
|
2472
|
-
|
|
2473
|
-
Re-exports [EngineUpdateTeamHookRequest](../interfaces/webitelAPI.schemas.EngineUpdateTeamHookRequest.html)
|
|
2474
|
-
|
|
2475
|
-
***
|
|
2476
|
-
|
|
2477
|
-
### EngineUpdateTeamTriggerRequest
|
|
2478
|
-
|
|
2479
|
-
Re-exports [EngineUpdateTeamTriggerRequest](../interfaces/webitelAPI.schemas.EngineUpdateTeamTriggerRequest.html)
|
|
2480
|
-
|
|
2481
|
-
***
|
|
2482
|
-
|
|
2483
|
-
### EngineUpdateTriggerRequest
|
|
2484
|
-
|
|
2485
|
-
Re-exports [EngineUpdateTriggerRequest](../interfaces/webitelAPI.schemas.EngineUpdateTriggerRequest.html)
|
|
2486
|
-
|
|
2487
|
-
***
|
|
2488
|
-
|
|
2489
|
-
### EngineUpdateTriggerRequestVariables
|
|
2490
|
-
|
|
2491
|
-
Re-exports [EngineUpdateTriggerRequestVariables](../types/webitelAPI.schemas.EngineUpdateTriggerRequestVariables.html)
|
|
2492
|
-
|
|
2493
|
-
***
|
|
2494
|
-
|
|
2495
|
-
### EngineUpdateWebHookRequest
|
|
2496
|
-
|
|
2497
|
-
Re-exports [EngineUpdateWebHookRequest](../interfaces/webitelAPI.schemas.EngineUpdateWebHookRequest.html)
|
|
2498
|
-
|
|
2499
|
-
***
|
|
2500
|
-
|
|
2501
|
-
### EngineUserCallRequest
|
|
2502
|
-
|
|
2503
|
-
Re-exports [EngineUserCallRequest](../interfaces/webitelAPI.schemas.EngineUserCallRequest.html)
|
|
2504
|
-
|
|
2505
|
-
***
|
|
2506
|
-
|
|
2507
|
-
### EngineUserCallRequestBody
|
|
2508
|
-
|
|
2509
|
-
Re-exports [EngineUserCallRequestBody](../types/webitelAPI.schemas.EngineUserCallRequestBody.html)
|
|
2510
|
-
|
|
2511
|
-
***
|
|
2512
|
-
|
|
2513
|
-
### EngineUserStatus
|
|
2514
|
-
|
|
2515
|
-
Re-exports [EngineUserStatus](../interfaces/webitelAPI.schemas.EngineUserStatus.html)
|
|
2516
|
-
|
|
2517
|
-
***
|
|
2518
|
-
|
|
2519
|
-
### EngineWebHook
|
|
2520
|
-
|
|
2521
|
-
Re-exports [EngineWebHook](../interfaces/webitelAPI.schemas.EngineWebHook.html)
|
|
2522
|
-
|
|
2523
|
-
***
|
|
2524
|
-
|
|
2525
|
-
### HistoryCallBlindTransfer
|
|
2526
|
-
|
|
2527
|
-
Re-exports [HistoryCallBlindTransfer](../interfaces/webitelAPI.schemas.HistoryCallBlindTransfer.html)
|
|
2528
|
-
|
|
2529
|
-
***
|
|
2530
|
-
|
|
2531
|
-
### HistoryFileJobHistoryFileJobAction
|
|
2532
|
-
|
|
2533
|
-
Re-exports [HistoryFileJobHistoryFileJobAction](../variables/webitelAPI.schemas.HistoryFileJobHistoryFileJobAction.html)
|
|
2534
|
-
|
|
2535
|
-
***
|
|
2536
|
-
|
|
2537
|
-
### HistoryFileJobHistoryFileJobState
|
|
2538
|
-
|
|
2539
|
-
Re-exports [HistoryFileJobHistoryFileJobState](../variables/webitelAPI.schemas.HistoryFileJobHistoryFileJobState.html)
|
|
2540
|
-
|
|
2541
|
-
***
|
|
2542
|
-
|
|
2543
|
-
### ListSkillAgentListSkillAgg
|
|
2544
|
-
|
|
2545
|
-
Re-exports [ListSkillAgentListSkillAgg](../interfaces/webitelAPI.schemas.ListSkillAgentListSkillAgg.html)
|
|
2546
|
-
|
|
2547
|
-
***
|
|
2548
|
-
|
|
2549
|
-
### ProtobufNullValue
|
|
2550
|
-
|
|
2551
|
-
Re-exports [ProtobufNullValue](../variables/webitelAPI.schemas.ProtobufNullValue.html)
|
|
2552
|
-
|
|
2553
|
-
***
|
|
2554
|
-
|
|
2555
|
-
### QuestionOption
|
|
2556
|
-
|
|
2557
|
-
Re-exports [QuestionOption](../interfaces/webitelAPI.schemas.QuestionOption.html)
|
|
2558
|
-
|
|
2559
|
-
***
|
|
2560
|
-
|
|
2561
|
-
### ReadAgentParams
|
|
2562
|
-
|
|
2563
|
-
Re-exports [ReadAgentParams](../types/webitelAPI.schemas.ReadAgentParams.html)
|
|
2564
|
-
|
|
2565
|
-
***
|
|
2566
|
-
|
|
2567
|
-
### ReadAgentSkillParams
|
|
2568
|
-
|
|
2569
|
-
Re-exports [ReadAgentSkillParams](../types/webitelAPI.schemas.ReadAgentSkillParams.html)
|
|
2570
|
-
|
|
2571
|
-
***
|
|
2572
|
-
|
|
2573
|
-
### ReadAgentTeamParams
|
|
2574
|
-
|
|
2575
|
-
Re-exports [ReadAgentTeamParams](../types/webitelAPI.schemas.ReadAgentTeamParams.html)
|
|
2576
|
-
|
|
2577
|
-
***
|
|
2578
|
-
|
|
2579
|
-
### ReadBucketParams
|
|
2580
|
-
|
|
2581
|
-
Re-exports [ReadBucketParams](../types/webitelAPI.schemas.ReadBucketParams.html)
|
|
2582
|
-
|
|
2583
|
-
***
|
|
2584
|
-
|
|
2585
|
-
### ReadCalendarParams
|
|
2586
|
-
|
|
2587
|
-
Re-exports [ReadCalendarParams](../types/webitelAPI.schemas.ReadCalendarParams.html)
|
|
2588
|
-
|
|
2589
|
-
***
|
|
2590
|
-
|
|
2591
|
-
### ReadCallParams
|
|
2592
|
-
|
|
2593
|
-
Re-exports [ReadCallParams](../types/webitelAPI.schemas.ReadCallParams.html)
|
|
2594
|
-
|
|
2595
|
-
***
|
|
2596
|
-
|
|
2597
|
-
### ReadCommunicationTypeParams
|
|
2598
|
-
|
|
2599
|
-
Re-exports [ReadCommunicationTypeParams](../types/webitelAPI.schemas.ReadCommunicationTypeParams.html)
|
|
2600
|
-
|
|
2601
|
-
***
|
|
2602
|
-
|
|
2603
|
-
### ReadListCommunicationParams
|
|
2604
|
-
|
|
2605
|
-
Re-exports [ReadListCommunicationParams](../types/webitelAPI.schemas.ReadListCommunicationParams.html)
|
|
2606
|
-
|
|
2607
|
-
***
|
|
2608
|
-
|
|
2609
|
-
### ReadListParams
|
|
2610
|
-
|
|
2611
|
-
Re-exports [ReadListParams](../types/webitelAPI.schemas.ReadListParams.html)
|
|
2612
|
-
|
|
2613
|
-
***
|
|
2614
|
-
|
|
2615
|
-
### ReadMemberParams
|
|
2616
|
-
|
|
2617
|
-
Re-exports [ReadMemberParams](../types/webitelAPI.schemas.ReadMemberParams.html)
|
|
2618
|
-
|
|
2619
|
-
***
|
|
2620
|
-
|
|
2621
|
-
### ReadOutboundResourceDisplayParams
|
|
2622
|
-
|
|
2623
|
-
Re-exports [ReadOutboundResourceDisplayParams](../types/webitelAPI.schemas.ReadOutboundResourceDisplayParams.html)
|
|
2624
|
-
|
|
2625
|
-
***
|
|
2626
|
-
|
|
2627
|
-
### ReadOutboundResourceGroupParams
|
|
2628
|
-
|
|
2629
|
-
Re-exports [ReadOutboundResourceGroupParams](../types/webitelAPI.schemas.ReadOutboundResourceGroupParams.html)
|
|
2630
|
-
|
|
2631
|
-
***
|
|
2632
|
-
|
|
2633
|
-
### ReadOutboundResourceInGroupParams
|
|
2634
|
-
|
|
2635
|
-
Re-exports [ReadOutboundResourceInGroupParams](../types/webitelAPI.schemas.ReadOutboundResourceInGroupParams.html)
|
|
2636
|
-
|
|
2637
|
-
***
|
|
2638
|
-
|
|
2639
|
-
### ReadOutboundResourceParams
|
|
2640
|
-
|
|
2641
|
-
Re-exports [ReadOutboundResourceParams](../types/webitelAPI.schemas.ReadOutboundResourceParams.html)
|
|
2642
|
-
|
|
2643
|
-
***
|
|
2644
|
-
|
|
2645
|
-
### ReadQueueParams
|
|
2646
|
-
|
|
2647
|
-
Re-exports [ReadQueueParams](../types/webitelAPI.schemas.ReadQueueParams.html)
|
|
2648
|
-
|
|
2649
|
-
***
|
|
2650
|
-
|
|
2651
|
-
### ReadQueueResourceGroupParams
|
|
2652
|
-
|
|
2653
|
-
Re-exports [ReadQueueResourceGroupParams](../types/webitelAPI.schemas.ReadQueueResourceGroupParams.html)
|
|
2654
|
-
|
|
2655
|
-
***
|
|
2656
|
-
|
|
2657
|
-
### ReadRoutingOutboundCallParams
|
|
2658
|
-
|
|
2659
|
-
Re-exports [ReadRoutingOutboundCallParams](../types/webitelAPI.schemas.ReadRoutingOutboundCallParams.html)
|
|
2660
|
-
|
|
2661
|
-
***
|
|
2662
|
-
|
|
2663
|
-
### ReadRoutingSchemaParams
|
|
2664
|
-
|
|
2665
|
-
Re-exports [ReadRoutingSchemaParams](../types/webitelAPI.schemas.ReadRoutingSchemaParams.html)
|
|
2666
|
-
|
|
2667
|
-
***
|
|
2668
|
-
|
|
2669
|
-
### ReadRoutingVariableParams
|
|
2670
|
-
|
|
2671
|
-
Re-exports [ReadRoutingVariableParams](../types/webitelAPI.schemas.ReadRoutingVariableParams.html)
|
|
2672
|
-
|
|
2673
|
-
***
|
|
2674
|
-
|
|
2675
|
-
### ReadSkillParams
|
|
2676
|
-
|
|
2677
|
-
Re-exports [ReadSkillParams](../types/webitelAPI.schemas.ReadSkillParams.html)
|
|
2678
|
-
|
|
2679
|
-
***
|
|
2680
|
-
|
|
2681
|
-
### SearchActiveCallParams
|
|
2682
|
-
|
|
2683
|
-
Re-exports [SearchActiveCallParams](../types/webitelAPI.schemas.SearchActiveCallParams.html)
|
|
2684
|
-
|
|
2685
|
-
***
|
|
2686
|
-
|
|
2687
|
-
### SearchAgentCallStatisticsParams
|
|
2688
|
-
|
|
2689
|
-
Re-exports [SearchAgentCallStatisticsParams](../types/webitelAPI.schemas.SearchAgentCallStatisticsParams.html)
|
|
2690
|
-
|
|
2691
|
-
***
|
|
2692
|
-
|
|
2693
|
-
### SearchAgentInQueueParams
|
|
2694
|
-
|
|
2695
|
-
Re-exports [SearchAgentInQueueParams](../types/webitelAPI.schemas.SearchAgentInQueueParams.html)
|
|
2696
|
-
|
|
2697
|
-
***
|
|
2698
|
-
|
|
2699
|
-
### SearchAgentInQueueStatisticsParams
|
|
2700
|
-
|
|
2701
|
-
Re-exports [SearchAgentInQueueStatisticsParams](../types/webitelAPI.schemas.SearchAgentInQueueStatisticsParams.html)
|
|
2702
|
-
|
|
2703
|
-
***
|
|
2704
|
-
|
|
2705
|
-
### SearchAgentInTeamParams
|
|
2706
|
-
|
|
2707
|
-
Re-exports [SearchAgentInTeamParams](../types/webitelAPI.schemas.SearchAgentInTeamParams.html)
|
|
2708
|
-
|
|
2709
|
-
***
|
|
2710
|
-
|
|
2711
|
-
### SearchAgentParams
|
|
2712
|
-
|
|
2713
|
-
Re-exports [SearchAgentParams](../types/webitelAPI.schemas.SearchAgentParams.html)
|
|
2714
|
-
|
|
2715
|
-
***
|
|
2716
|
-
|
|
2717
|
-
### SearchAgentPauseCauseParams
|
|
2718
|
-
|
|
2719
|
-
Re-exports [SearchAgentPauseCauseParams](../types/webitelAPI.schemas.SearchAgentPauseCauseParams.html)
|
|
2720
|
-
|
|
2721
|
-
***
|
|
2722
|
-
|
|
2723
|
-
### SearchAgentSkillParams
|
|
2724
|
-
|
|
2725
|
-
Re-exports [SearchAgentSkillParams](../types/webitelAPI.schemas.SearchAgentSkillParams.html)
|
|
2726
|
-
|
|
2727
|
-
***
|
|
2728
|
-
|
|
2729
|
-
### SearchAgentStateHistoryParams
|
|
2730
|
-
|
|
2731
|
-
Re-exports [SearchAgentStateHistoryParams](../types/webitelAPI.schemas.SearchAgentStateHistoryParams.html)
|
|
2732
|
-
|
|
2733
|
-
***
|
|
2734
|
-
|
|
2735
|
-
### SearchAgentStatusStatisticItemParams
|
|
2736
|
-
|
|
2737
|
-
Re-exports [SearchAgentStatusStatisticItemParams](../types/webitelAPI.schemas.SearchAgentStatusStatisticItemParams.html)
|
|
2738
|
-
|
|
2739
|
-
***
|
|
2740
|
-
|
|
2741
|
-
### SearchAgentStatusStatisticParams
|
|
2742
|
-
|
|
2743
|
-
Re-exports [SearchAgentStatusStatisticParams](../types/webitelAPI.schemas.SearchAgentStatusStatisticParams.html)
|
|
2744
|
-
|
|
2745
|
-
***
|
|
2746
|
-
|
|
2747
|
-
### SearchAgentTeamParams
|
|
2748
|
-
|
|
2749
|
-
Re-exports [SearchAgentTeamParams](../types/webitelAPI.schemas.SearchAgentTeamParams.html)
|
|
2750
|
-
|
|
2751
|
-
***
|
|
2752
|
-
|
|
2753
|
-
### SearchAgentTriggerParams
|
|
2754
|
-
|
|
2755
|
-
Re-exports [SearchAgentTriggerParams](../types/webitelAPI.schemas.SearchAgentTriggerParams.html)
|
|
2756
|
-
|
|
2757
|
-
***
|
|
2758
|
-
|
|
2759
|
-
### SearchAttemptsHistoryParams
|
|
2760
|
-
|
|
2761
|
-
Re-exports [SearchAttemptsHistoryParams](../types/webitelAPI.schemas.SearchAttemptsHistoryParams.html)
|
|
2762
|
-
|
|
2763
|
-
***
|
|
2764
|
-
|
|
2765
|
-
### SearchAttemptsParams
|
|
2766
|
-
|
|
2767
|
-
Re-exports [SearchAttemptsParams](../types/webitelAPI.schemas.SearchAttemptsParams.html)
|
|
2768
|
-
|
|
2769
|
-
***
|
|
2770
|
-
|
|
2771
|
-
### SearchAuditFormParams
|
|
2772
|
-
|
|
2773
|
-
Re-exports [SearchAuditFormParams](../types/webitelAPI.schemas.SearchAuditFormParams.html)
|
|
2774
|
-
|
|
2775
|
-
***
|
|
2776
|
-
|
|
2777
|
-
### SearchAuditRateParams
|
|
2778
|
-
|
|
2779
|
-
Re-exports [SearchAuditRateParams](../types/webitelAPI.schemas.SearchAuditRateParams.html)
|
|
2780
|
-
|
|
2781
|
-
***
|
|
2782
|
-
|
|
2783
|
-
### SearchAvailableSystemSettingParams
|
|
2784
|
-
|
|
2785
|
-
Re-exports [SearchAvailableSystemSettingParams](../types/webitelAPI.schemas.SearchAvailableSystemSettingParams.html)
|
|
2786
|
-
|
|
2787
|
-
***
|
|
2788
|
-
|
|
2789
|
-
### SearchBucketParams
|
|
2790
|
-
|
|
2791
|
-
Re-exports [SearchBucketParams](../types/webitelAPI.schemas.SearchBucketParams.html)
|
|
2792
|
-
|
|
2793
|
-
***
|
|
2794
|
-
|
|
2795
|
-
### SearchCalendarParams
|
|
2796
|
-
|
|
2797
|
-
Re-exports [SearchCalendarParams](../types/webitelAPI.schemas.SearchCalendarParams.html)
|
|
2798
|
-
|
|
2799
|
-
***
|
|
2800
|
-
|
|
2801
|
-
### SearchChatPlanParams
|
|
2802
|
-
|
|
2803
|
-
Re-exports [SearchChatPlanParams](../types/webitelAPI.schemas.SearchChatPlanParams.html)
|
|
2804
|
-
|
|
2805
|
-
***
|
|
2806
|
-
|
|
2807
|
-
### SearchCommunicationTypeChannelItem
|
|
2808
|
-
|
|
2809
|
-
Re-exports [SearchCommunicationTypeChannelItem](../variables/webitelAPI.schemas.SearchCommunicationTypeChannelItem.html)
|
|
2810
|
-
|
|
2811
|
-
***
|
|
2812
|
-
|
|
2813
|
-
### SearchCommunicationTypeParams
|
|
2814
|
-
|
|
2815
|
-
Re-exports [SearchCommunicationTypeParams](../types/webitelAPI.schemas.SearchCommunicationTypeParams.html)
|
|
2816
|
-
|
|
2817
|
-
***
|
|
2818
|
-
|
|
2819
|
-
### SearchEmailProfileParams
|
|
2820
|
-
|
|
2821
|
-
Re-exports [SearchEmailProfileParams](../types/webitelAPI.schemas.SearchEmailProfileParams.html)
|
|
2822
|
-
|
|
2823
|
-
***
|
|
2824
|
-
|
|
2825
|
-
### SearchHistoryCallParams
|
|
2826
|
-
|
|
2827
|
-
Re-exports [SearchHistoryCallParams](../types/webitelAPI.schemas.SearchHistoryCallParams.html)
|
|
2828
|
-
|
|
2829
|
-
***
|
|
2830
|
-
|
|
2831
|
-
### SearchListCommunicationParams
|
|
2832
|
-
|
|
2833
|
-
Re-exports [SearchListCommunicationParams](../types/webitelAPI.schemas.SearchListCommunicationParams.html)
|
|
2834
|
-
|
|
2835
|
-
***
|
|
2836
|
-
|
|
2837
|
-
### SearchListParams
|
|
2838
|
-
|
|
2839
|
-
Re-exports [SearchListParams](../types/webitelAPI.schemas.SearchListParams.html)
|
|
2840
|
-
|
|
2841
|
-
***
|
|
2842
|
-
|
|
2843
|
-
### SearchLookupAgentNotExistsSkillParams
|
|
2844
|
-
|
|
2845
|
-
Re-exports [SearchLookupAgentNotExistsSkillParams](../types/webitelAPI.schemas.SearchLookupAgentNotExistsSkillParams.html)
|
|
2846
|
-
|
|
2847
|
-
***
|
|
2848
|
-
|
|
2849
|
-
### SearchLookupUsersAgentNotExistsParams
|
|
2850
|
-
|
|
2851
|
-
Re-exports [SearchLookupUsersAgentNotExistsParams](../types/webitelAPI.schemas.SearchLookupUsersAgentNotExistsParams.html)
|
|
2852
|
-
|
|
2853
|
-
***
|
|
2854
|
-
|
|
2855
|
-
### SearchMemberAttemptsParams
|
|
2856
|
-
|
|
2857
|
-
Re-exports [SearchMemberAttemptsParams](../types/webitelAPI.schemas.SearchMemberAttemptsParams.html)
|
|
2858
|
-
|
|
2859
|
-
***
|
|
2860
|
-
|
|
2861
|
-
### SearchMemberInQueueParams
|
|
2862
|
-
|
|
2863
|
-
Re-exports [SearchMemberInQueueParams](../types/webitelAPI.schemas.SearchMemberInQueueParams.html)
|
|
2864
|
-
|
|
2865
|
-
***
|
|
2866
|
-
|
|
2867
|
-
### SearchMembersParams
|
|
2868
|
-
|
|
2869
|
-
Re-exports [SearchMembersParams](../types/webitelAPI.schemas.SearchMembersParams.html)
|
|
2870
|
-
|
|
2871
|
-
***
|
|
2872
|
-
|
|
2873
|
-
### SearchOutboundResourceDisplayParams
|
|
2874
|
-
|
|
2875
|
-
Re-exports [SearchOutboundResourceDisplayParams](../types/webitelAPI.schemas.SearchOutboundResourceDisplayParams.html)
|
|
2876
|
-
|
|
2877
|
-
***
|
|
2878
|
-
|
|
2879
|
-
### SearchOutboundResourceGroupParams
|
|
2880
|
-
|
|
2881
|
-
Re-exports [SearchOutboundResourceGroupParams](../types/webitelAPI.schemas.SearchOutboundResourceGroupParams.html)
|
|
2882
|
-
|
|
2883
|
-
***
|
|
2884
|
-
|
|
2885
|
-
### SearchOutboundResourceInGroupParams
|
|
2886
|
-
|
|
2887
|
-
Re-exports [SearchOutboundResourceInGroupParams](../types/webitelAPI.schemas.SearchOutboundResourceInGroupParams.html)
|
|
2888
|
-
|
|
2889
|
-
***
|
|
2890
|
-
|
|
2891
|
-
### SearchOutboundResourceParams
|
|
2892
|
-
|
|
2893
|
-
Re-exports [SearchOutboundResourceParams](../types/webitelAPI.schemas.SearchOutboundResourceParams.html)
|
|
2894
|
-
|
|
2895
|
-
***
|
|
2896
|
-
|
|
2897
|
-
### SearchPauseCauseForAgentParams
|
|
2898
|
-
|
|
2899
|
-
Re-exports [SearchPauseCauseForAgentParams](../types/webitelAPI.schemas.SearchPauseCauseForAgentParams.html)
|
|
2900
|
-
|
|
2901
|
-
***
|
|
2902
|
-
|
|
2903
|
-
### SearchPresetQueryParams
|
|
2904
|
-
|
|
2905
|
-
Re-exports [SearchPresetQueryParams](../types/webitelAPI.schemas.SearchPresetQueryParams.html)
|
|
2906
|
-
|
|
2907
|
-
***
|
|
2908
|
-
|
|
2909
|
-
### SearchQueueBucketParams
|
|
2910
|
-
|
|
2911
|
-
Re-exports [SearchQueueBucketParams](../types/webitelAPI.schemas.SearchQueueBucketParams.html)
|
|
2912
|
-
|
|
2913
|
-
***
|
|
2914
|
-
|
|
2915
|
-
### SearchQueueHookParams
|
|
2916
|
-
|
|
2917
|
-
Re-exports [SearchQueueHookParams](../types/webitelAPI.schemas.SearchQueueHookParams.html)
|
|
2918
|
-
|
|
2919
|
-
***
|
|
2920
|
-
|
|
2921
|
-
### SearchQueueParams
|
|
2922
|
-
|
|
2923
|
-
Re-exports [SearchQueueParams](../types/webitelAPI.schemas.SearchQueueParams.html)
|
|
2924
|
-
|
|
2925
|
-
***
|
|
2926
|
-
|
|
2927
|
-
### SearchQueueReportGeneralParams
|
|
2928
|
-
|
|
2929
|
-
Re-exports [SearchQueueReportGeneralParams](../types/webitelAPI.schemas.SearchQueueReportGeneralParams.html)
|
|
2930
|
-
|
|
2931
|
-
***
|
|
2932
|
-
|
|
2933
|
-
### SearchQueueResourceGroupParams
|
|
2934
|
-
|
|
2935
|
-
Re-exports [SearchQueueResourceGroupParams](../types/webitelAPI.schemas.SearchQueueResourceGroupParams.html)
|
|
2936
|
-
|
|
2937
|
-
***
|
|
2938
|
-
|
|
2939
|
-
### SearchQueueSkillParams
|
|
2940
|
-
|
|
2941
|
-
Re-exports [SearchQueueSkillParams](../types/webitelAPI.schemas.SearchQueueSkillParams.html)
|
|
2942
|
-
|
|
2943
|
-
***
|
|
2944
|
-
|
|
2945
|
-
### SearchQueueTagsParams
|
|
2946
|
-
|
|
2947
|
-
Re-exports [SearchQueueTagsParams](../types/webitelAPI.schemas.SearchQueueTagsParams.html)
|
|
2948
|
-
|
|
2949
|
-
***
|
|
2950
|
-
|
|
2951
|
-
### SearchQuickRepliesParams
|
|
2952
|
-
|
|
2953
|
-
Re-exports [SearchQuickRepliesParams](../types/webitelAPI.schemas.SearchQuickRepliesParams.html)
|
|
2954
|
-
|
|
2955
|
-
***
|
|
2956
|
-
|
|
2957
|
-
### SearchRegionParams
|
|
2958
|
-
|
|
2959
|
-
Re-exports [SearchRegionParams](../types/webitelAPI.schemas.SearchRegionParams.html)
|
|
2960
|
-
|
|
2961
|
-
***
|
|
2962
|
-
|
|
2963
|
-
### SearchRoutingOutboundCallParams
|
|
2964
|
-
|
|
2965
|
-
Re-exports [SearchRoutingOutboundCallParams](../types/webitelAPI.schemas.SearchRoutingOutboundCallParams.html)
|
|
2966
|
-
|
|
2967
|
-
***
|
|
2968
|
-
|
|
2969
|
-
### SearchRoutingSchemaParams
|
|
2970
|
-
|
|
2971
|
-
Re-exports [SearchRoutingSchemaParams](../types/webitelAPI.schemas.SearchRoutingSchemaParams.html)
|
|
2972
|
-
|
|
2973
|
-
***
|
|
2974
|
-
|
|
2975
|
-
### SearchRoutingSchemaTagsParams
|
|
2976
|
-
|
|
2977
|
-
Re-exports [SearchRoutingSchemaTagsParams](../types/webitelAPI.schemas.SearchRoutingSchemaTagsParams.html)
|
|
2978
|
-
|
|
2979
|
-
***
|
|
2980
|
-
|
|
2981
|
-
### SearchRoutingSchemaTagsTypeItem
|
|
2982
|
-
|
|
2983
|
-
Re-exports [SearchRoutingSchemaTagsTypeItem](../variables/webitelAPI.schemas.SearchRoutingSchemaTagsTypeItem.html)
|
|
2984
|
-
|
|
2985
|
-
***
|
|
2986
|
-
|
|
2987
|
-
### SearchRoutingSchemaTypeItem
|
|
2988
|
-
|
|
2989
|
-
Re-exports [SearchRoutingSchemaTypeItem](../variables/webitelAPI.schemas.SearchRoutingSchemaTypeItem.html)
|
|
2990
|
-
|
|
2991
|
-
***
|
|
2992
|
-
|
|
2993
|
-
### SearchRoutingVariableParams
|
|
2994
|
-
|
|
2995
|
-
Re-exports [SearchRoutingVariableParams](../types/webitelAPI.schemas.SearchRoutingVariableParams.html)
|
|
2996
|
-
|
|
2997
|
-
***
|
|
2998
|
-
|
|
2999
|
-
### SearchSchemaVariableParams
|
|
3000
|
-
|
|
3001
|
-
Re-exports [SearchSchemaVariableParams](../types/webitelAPI.schemas.SearchSchemaVariableParams.html)
|
|
3002
|
-
|
|
3003
|
-
***
|
|
3004
|
-
|
|
3005
|
-
### SearchSchemaVersionParams
|
|
3006
|
-
|
|
3007
|
-
Re-exports [SearchSchemaVersionParams](../types/webitelAPI.schemas.SearchSchemaVersionParams.html)
|
|
3008
|
-
|
|
3009
|
-
***
|
|
3010
|
-
|
|
3011
|
-
### SearchSkillAgentParams
|
|
3012
|
-
|
|
3013
|
-
Re-exports [SearchSkillAgentParams](../types/webitelAPI.schemas.SearchSkillAgentParams.html)
|
|
3014
|
-
|
|
3015
|
-
***
|
|
3016
|
-
|
|
3017
|
-
### SearchSkillParams
|
|
3018
|
-
|
|
3019
|
-
Re-exports [SearchSkillParams](../types/webitelAPI.schemas.SearchSkillParams.html)
|
|
3020
|
-
|
|
3021
|
-
***
|
|
3022
|
-
|
|
3023
|
-
### SearchSystemSettingNameItem
|
|
3024
|
-
|
|
3025
|
-
Re-exports [SearchSystemSettingNameItem](../variables/webitelAPI.schemas.SearchSystemSettingNameItem.html)
|
|
3026
|
-
|
|
3027
|
-
***
|
|
3028
|
-
|
|
3029
|
-
### SearchSystemSettingParams
|
|
3030
|
-
|
|
3031
|
-
Re-exports [SearchSystemSettingParams](../types/webitelAPI.schemas.SearchSystemSettingParams.html)
|
|
3032
|
-
|
|
3033
|
-
***
|
|
3034
|
-
|
|
3035
|
-
### SearchTeamHookEventItem
|
|
3036
|
-
|
|
3037
|
-
Re-exports [SearchTeamHookEventItem](../variables/webitelAPI.schemas.SearchTeamHookEventItem.html)
|
|
3038
|
-
|
|
3039
|
-
***
|
|
3040
|
-
|
|
3041
|
-
### SearchTeamHookParams
|
|
3042
|
-
|
|
3043
|
-
Re-exports [SearchTeamHookParams](../types/webitelAPI.schemas.SearchTeamHookParams.html)
|
|
3044
|
-
|
|
3045
|
-
***
|
|
3046
|
-
|
|
3047
|
-
### SearchTeamTriggerParams
|
|
3048
|
-
|
|
3049
|
-
Re-exports [SearchTeamTriggerParams](../types/webitelAPI.schemas.SearchTeamTriggerParams.html)
|
|
3050
|
-
|
|
3051
|
-
***
|
|
3052
|
-
|
|
3053
|
-
### SearchTimezonesParams
|
|
3054
|
-
|
|
3055
|
-
Re-exports [SearchTimezonesParams](../types/webitelAPI.schemas.SearchTimezonesParams.html)
|
|
3056
|
-
|
|
3057
|
-
***
|
|
3058
|
-
|
|
3059
|
-
### SearchTriggerJobParams
|
|
3060
|
-
|
|
3061
|
-
Re-exports [SearchTriggerJobParams](../types/webitelAPI.schemas.SearchTriggerJobParams.html)
|
|
3062
|
-
|
|
3063
|
-
***
|
|
3064
|
-
|
|
3065
|
-
### SearchTriggerJobStateItem
|
|
3066
|
-
|
|
3067
|
-
Re-exports [SearchTriggerJobStateItem](../variables/webitelAPI.schemas.SearchTriggerJobStateItem.html)
|
|
3068
|
-
|
|
3069
|
-
***
|
|
3070
|
-
|
|
3071
|
-
### SearchTriggerParams
|
|
3072
|
-
|
|
3073
|
-
Re-exports [SearchTriggerParams](../types/webitelAPI.schemas.SearchTriggerParams.html)
|
|
3074
|
-
|
|
3075
|
-
***
|
|
3076
|
-
|
|
3077
|
-
### SearchUserStatusParams
|
|
3078
|
-
|
|
3079
|
-
Re-exports [SearchUserStatusParams](../types/webitelAPI.schemas.SearchUserStatusParams.html)
|
|
3080
|
-
|
|
3081
|
-
***
|
|
3082
|
-
|
|
3083
|
-
### SearchWebHookParams
|
|
3084
|
-
|
|
3085
|
-
Re-exports [SearchWebHookParams](../types/webitelAPI.schemas.SearchWebHookParams.html)
|
|
3086
|
-
|
|
3087
|
-
***
|
|
3088
|
-
|
|
3089
|
-
### UserStatusUserPresence
|
|
3090
|
-
|
|
3091
|
-
Re-exports [UserStatusUserPresence](../interfaces/webitelAPI.schemas.UserStatusUserPresence.html)
|