@webex/plugin-meetings 3.0.0-beta.8 → 3.0.0-bnr.0
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/UPGRADING.md +9 -9
- package/browsers.js +19 -24
- package/dist/breakouts/breakout.js +178 -0
- package/dist/breakouts/breakout.js.map +1 -0
- package/dist/breakouts/collection.js +23 -0
- package/dist/breakouts/collection.js.map +1 -0
- package/dist/breakouts/edit-lock-error.js +52 -0
- package/dist/breakouts/edit-lock-error.js.map +1 -0
- package/dist/breakouts/index.js +843 -0
- package/dist/breakouts/index.js.map +1 -0
- package/dist/breakouts/request.js +78 -0
- package/dist/breakouts/request.js.map +1 -0
- package/dist/breakouts/utils.js +56 -0
- package/dist/breakouts/utils.js.map +1 -0
- package/dist/common/browser-detection.d.ts +9 -0
- package/dist/common/browser-detection.js +1 -20
- package/dist/common/browser-detection.js.map +1 -1
- package/dist/common/collection.d.ts +48 -0
- package/dist/common/collection.js +5 -20
- package/dist/common/collection.js.map +1 -1
- package/dist/common/config.d.ts +2 -0
- package/dist/common/config.js +0 -7
- package/dist/common/config.js.map +1 -1
- package/dist/common/errors/captcha-error.d.ts +15 -0
- package/dist/common/errors/captcha-error.js +10 -24
- package/dist/common/errors/captcha-error.js.map +1 -1
- package/dist/common/errors/intent-to-join.d.ts +16 -0
- package/dist/common/errors/intent-to-join.js +11 -24
- package/dist/common/errors/intent-to-join.js.map +1 -1
- package/dist/common/errors/join-meeting.d.ts +17 -0
- package/dist/common/errors/join-meeting.js +12 -25
- package/dist/common/errors/join-meeting.js.map +1 -1
- package/dist/common/errors/media.d.ts +15 -0
- package/dist/common/errors/media.js +10 -24
- package/dist/common/errors/media.js.map +1 -1
- package/dist/common/errors/parameter.d.ts +15 -0
- package/dist/common/errors/parameter.js +5 -33
- package/dist/common/errors/parameter.js.map +1 -1
- package/dist/common/errors/password-error.d.ts +15 -0
- package/dist/common/errors/password-error.js +10 -24
- package/dist/common/errors/password-error.js.map +1 -1
- package/dist/common/errors/permission.d.ts +14 -0
- package/dist/common/errors/permission.js +9 -23
- package/dist/common/errors/permission.js.map +1 -1
- package/dist/common/errors/reconnection-in-progress.d.ts +9 -0
- package/dist/common/errors/reconnection-in-progress.js +0 -17
- package/dist/common/errors/reconnection-in-progress.js.map +1 -1
- package/dist/common/errors/reconnection.d.ts +15 -0
- package/dist/common/errors/reconnection.js +10 -24
- package/dist/common/errors/reconnection.js.map +1 -1
- package/dist/common/errors/stats.d.ts +15 -0
- package/dist/common/errors/stats.js +10 -24
- package/dist/common/errors/stats.js.map +1 -1
- package/dist/common/errors/webex-errors.d.ts +81 -0
- package/dist/common/errors/webex-errors.js +6 -41
- package/dist/common/errors/webex-errors.js.map +1 -1
- package/dist/common/errors/webex-meetings-error.d.ts +20 -0
- package/dist/common/errors/webex-meetings-error.js +5 -25
- package/dist/common/errors/webex-meetings-error.js.map +1 -1
- package/dist/common/events/events-scope.d.ts +17 -0
- package/dist/common/events/events-scope.js +0 -22
- package/dist/common/events/events-scope.js.map +1 -1
- package/dist/common/events/events.d.ts +12 -0
- package/dist/common/events/events.js +0 -23
- package/dist/common/events/events.js.map +1 -1
- package/dist/common/events/trigger-proxy.d.ts +2 -0
- package/dist/common/events/trigger-proxy.js +0 -12
- package/dist/common/events/trigger-proxy.js.map +1 -1
- package/dist/common/events/util.d.ts +2 -0
- package/dist/common/events/util.js +0 -15
- package/dist/common/events/util.js.map +1 -1
- package/dist/common/logs/logger-config.d.ts +2 -0
- package/dist/common/logs/logger-config.js +0 -4
- package/dist/common/logs/logger-config.js.map +1 -1
- package/dist/common/logs/logger-proxy.d.ts +2 -0
- package/dist/common/logs/logger-proxy.js +1 -8
- package/dist/common/logs/logger-proxy.js.map +1 -1
- package/dist/common/logs/request.d.ts +34 -0
- package/dist/common/logs/request.js +37 -60
- package/dist/common/logs/request.js.map +1 -1
- package/dist/common/queue.d.ts +32 -0
- package/dist/common/queue.js +4 -14
- package/dist/common/queue.js.map +1 -1
- package/dist/config.d.ts +73 -0
- package/dist/config.js +6 -6
- package/dist/config.js.map +1 -1
- package/dist/constants.d.ts +924 -0
- package/dist/constants.js +143 -52
- package/dist/constants.js.map +1 -1
- package/dist/controls-options-manager/constants.d.ts +4 -0
- package/dist/controls-options-manager/constants.js +14 -0
- package/dist/controls-options-manager/constants.js.map +1 -0
- package/dist/controls-options-manager/enums.d.ts +5 -0
- package/dist/controls-options-manager/enums.js +16 -0
- package/dist/controls-options-manager/enums.js.map +1 -0
- package/dist/controls-options-manager/index.d.ts +120 -0
- package/dist/controls-options-manager/index.js +261 -0
- package/dist/controls-options-manager/index.js.map +1 -0
- package/dist/controls-options-manager/util.d.ts +7 -0
- package/dist/controls-options-manager/util.js +39 -0
- package/dist/controls-options-manager/util.js.map +1 -0
- package/dist/docs/markdown/index.md +12 -0
- package/dist/docs/markdown/plugin-meetings.constants._active_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._answer_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._call_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._conflict_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._conversation_url_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._created_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._error_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._forced_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._id_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._idle_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._in_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._in_lobby_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._in_meeting_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._inactive_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._incoming_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._join_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._joined_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._left_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._locus_id_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_center_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_id_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_link_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_uuid_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._move_media_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._none_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._not_in_meeting_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._observe_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._people_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._personal_room_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._receive_only_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._remove_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._requested_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._resource_room_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._room_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._s_line.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._send_only_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._send_receive_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._sip_bridge_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._sip_uri_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._slides_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._unknown_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._user_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._wait_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._webex_meeting_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.alert.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.alternate_redirect_true.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.answer.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.api.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.audio.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.audio_input.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.audio_status.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.available_resolutions.md +60 -0
- package/dist/docs/markdown/plugin-meetings.constants.bnr_status.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.breakouts.md +51 -0
- package/dist/docs/markdown/plugin-meetings.constants.calendar.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.calendar_events.md +17 -0
- package/dist/docs/markdown/plugin-meetings.constants.calendar_events_api.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.call.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.call_removed_reason.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.claim.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.cmr_meetings.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.complete.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.connection_state.md +18 -0
- package/dist/docs/markdown/plugin-meetings.constants.content.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.controls.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.conversation_service.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.conversation_url.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.correlation_id.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.decline.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.default_excluded_stats.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.default_get_stats_filter.md +13 -0
- package/dist/docs/markdown/plugin-meetings.constants.development.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.dialer_regex.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.display_hints.md +51 -0
- package/dist/docs/markdown/plugin-meetings.constants.embedded_app_types.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.end.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.ended.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.error.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.error_dictionary.md +62 -0
- package/dist/docs/markdown/plugin-meetings.constants.event_triggers.md +82 -0
- package/dist/docs/markdown/plugin-meetings.constants.event_types.md +21 -0
- package/dist/docs/markdown/plugin-meetings.constants.events.md +26 -0
- package/dist/docs/markdown/plugin-meetings.constants.floor_action.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.full_state.md +17 -0
- package/dist/docs/markdown/plugin-meetings.constants.gathering.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.hecate.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.host.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.http_verbs.md +17 -0
- package/dist/docs/markdown/plugin-meetings.constants.https_protocol.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.ice_fail_timeout.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.ice_gathering_state.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.ice_state.md +18 -0
- package/dist/docs/markdown/plugin-meetings.constants.ice_timeout.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.intent_to_join.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.ipv4_regex.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.join.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.layout_types.md +13 -0
- package/dist/docs/markdown/plugin-meetings.constants.leave.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.live.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.local.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.loci.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.locus.md +26 -0
- package/dist/docs/markdown/plugin-meetings.constants.locus_url.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.locusevent.md +33 -0
- package/dist/docs/markdown/plugin-meetings.constants.locusinfo.md +43 -0
- package/dist/docs/markdown/plugin-meetings.constants.max_random_delay_for_meeting_info.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.md +186 -0
- package/dist/docs/markdown/plugin-meetings.constants.media.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.media_devices.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.media_peer_connection_name.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.media_state.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.media_track_constraint.md +17 -0
- package/dist/docs/markdown/plugin-meetings.constants.mediacontent.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.meet.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.meet_m.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_audio_state_machine.md +20 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_end_reason.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_errors.md +102 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_info_failure_reason.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_removed_reason.md +19 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_state.md +25 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_state_machine.md +31 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_video_state_machine.md +20 -0
- package/dist/docs/markdown/plugin-meetings.constants.meetinginfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.meetings.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.metrics_join_times_max_duration.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.moderator_false.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.moderator_true.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.mqa_inteval.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.mqa_stats.md +82 -0
- package/dist/docs/markdown/plugin-meetings.constants.network_status.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.network_type.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.offline.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.online.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.participant.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.participant_deltas.md +22 -0
- package/dist/docs/markdown/plugin-meetings.constants.password_status.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.pc_bail_timeout.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.peer_connection_state.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.provisional_type_dial_in.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.provisional_type_dial_out.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.pstn_status.md +18 -0
- package/dist/docs/markdown/plugin-meetings.constants.quality_levels.md +19 -0
- package/dist/docs/markdown/plugin-meetings.constants.reachability.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.ready.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.reconnection.md +19 -0
- package/dist/docs/markdown/plugin-meetings.constants.recording_state.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.remote.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.resource.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.retry_timeout.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.roap.md +22 -0
- package/dist/docs/markdown/plugin-meetings.constants.self_roles.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.send_dtmf_endpoint.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.sendrecv.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.share.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.share_peer_connection_name.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.share_status.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.share_stopped_reason.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.sip_uri.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.stats.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.type.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.use_uri_lookup_false.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.uuid_reg.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.valid_email_address.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.valid_pin.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.valid_pmr_address.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.valid_pmr_link.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.video.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.video_input.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.video_resolutions.md +24 -0
- package/dist/docs/markdown/plugin-meetings.constants.video_status.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.wbxappapi_service.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.webex_dot_com.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.whiteboard.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.www_dot.md +11 -0
- package/dist/docs/markdown/plugin-meetings.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default._constructor_.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.acknowledge.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.addmedia.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.admit.md +32 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.attrs.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.audio.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.breakouts.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.callevents.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.cancelphoneinvite.md +30 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.canupdatemedia.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.changevideolayout.md +38 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.clearmeetingdata.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closelocalshare.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closelocalstream.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closepeerconnections.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closeremotestream.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closeremotetracks.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.controlsoptionsmanager.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.conversationurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.correlationid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.createmediaconnection.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.decline.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.deferjoin.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.destination.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.destinationtype.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.deviceurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.dialindevicestatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.dialinurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.dialoutdevicestatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.dialouturl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.disconnectphoneaudio.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.endcallinitiatejoinreq.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.endjoinreqresp.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.endlocalsdpgenremotesdprecvdelay.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.endmeetingforall.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.fetchmeetinginfo.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.fetchmeetinginfotimeoutid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.floorgrantpending.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.forwardevent.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getanalyzermetricsprepayload.md +32 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getcallinitiatejoinreq.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getdevices.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getjoinreqresp.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getlocalsdpgenremotesdprecvdelay.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getmediaconnectiondebugid.md +15 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getmediastreams.md +15 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getmembers.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getsendingmediadelayduration.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getsetupdelayduration.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getsupporteddevices.md +16 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.gettotaljmt.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.guest.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.handledatachannelurlchange.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.handleroapfailure.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.hasjoinedonce.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.haswebsocketconnected.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.hostid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.id.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.inmeetingactions.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.invite.md +33 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isaudioconnected.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isaudiomuted.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isaudioself.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.islocalsharelive.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.ismultistream.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isreactionssupported.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isroapinprogress.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.issharing.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.istranscriptionsupported.md +23 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isvideoconnected.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isvideomuted.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isvideoself.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.join.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.joinedwith.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.joinwithmedia.md +36 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.keepalivetimerid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.lastvideolayoutinfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.leave.md +31 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.lockmeeting.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.locusid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.locusinfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.locusurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.md +227 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mediaconnections.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mediaid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.medianegotiatedevent.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mediaproperties.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mediarequestmanagers.md +16 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingfinitestatemachine.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetinginfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetinginfofailurereason.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingjoinurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingnumber.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingrequest.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingstate.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.members.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.movefrom.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.moveto.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mute.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.muteaudio.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mutevideo.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.namespace.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.networkqualitymonitor.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.networkstatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.options.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.orgid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.owner.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.parsemeetinginfo.md +34 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.partner.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.passwordstatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.pauserecording.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.permissiontoken.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.policy.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.processnextqueuedmediaupdate.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.publishtracks.md +33 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.queuedmediaupdates.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.receiveslotmanager.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.reconnect.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.reconnectionmanager.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.recording.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.recordingcontroller.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.refreshcaptcha.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.remotemediamanager.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.remove.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.requiredcaptcha.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.resource.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.resourceid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.resourceurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.resumerecording.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.roap.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.roapseq.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.selfid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.senddtmf.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.sendreaction.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setdisallowunmute.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendcallinitiatejoinreq.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendjoinreqresp.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendlocalsdpgenremotesdprecvdelay.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendsendingmediadelay.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendsetupdelay.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setlocalsharetrack.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setlocaltracks.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setlocalvideoquality.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setmeetingquality.md +31 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setmercurylistener.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setmuteall.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setmuteonentry.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setremotequalitylevel.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setsipuri.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartcallinitiatejoinreq.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartjoinreqresp.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartlocalsdpgenremotesdprecvdelay.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartsendingmediadelay.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartsetupdelay.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setupbreakoutslistener.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setupmediaconnectionlisteners.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setupstatsanalyzereventhandlers.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.sharescreen.md +32 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.sharestatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.sipuri.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startcallinitiatejoinreq.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startjoinreqresp.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startkeepalive.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startlocalsdpgenremotesdprecvdelay.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startrecording.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startwhiteboardshare.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.state.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.statsanalyzer.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stopkeepalive.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stopreceivingtranscription.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stoprecording.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stopshare.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stopwhiteboardshare.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.togglereactions.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.transcription.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.transfer.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.type.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unlockmeeting.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unmuteaudio.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unmutevideo.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unpublishtracks.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetlocalsharetrack.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetlocalvideotrack.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetpeerconnections.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetremotestream.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetremotetracks.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updateaudio.md +34 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updatellmconnection.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updatemedia.md +32 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updatemediaconnections.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updateshare.md +35 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updatevideo.md +34 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.uploadlogs.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.usephoneaudio.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.userid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.verifypassword.md +35 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.video.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.wirelessshare.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.md +18 -0
- package/dist/docs/markdown/plugin-meetings.meeting.media_update_type.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meetings._constructor_.md +22 -0
- package/dist/docs/markdown/plugin-meetings.meetings.create.md +30 -0
- package/dist/docs/markdown/plugin-meetings.meetings.fetchuserpreferredwebexsite.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meetings.geohintinfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getallmeetings.md +31 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getgeohint.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getlogger.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getmeetingbytype.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getpersonalmeetingroom.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getreachability.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getscheduledmeetings.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meetings.loggerrequest.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.md +57 -0
- package/dist/docs/markdown/plugin-meetings.meetings.media.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.meetingcollection.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.meetinginfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.namespace.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.personalmeetingroom.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.preferredwebexsite.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.reachability.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.register.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.registered.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.request.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.setreachability.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.startreachability.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.syncmeetings.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.unregister.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.uploadlogs.md +34 -0
- package/dist/docs/markdown/plugin-meetings.reactions.md +13 -0
- package/dist/docs/markdown/plugin-meetings.reactions.reactions.md +11 -0
- package/dist/docs/markdown/plugin-meetings.reactions.skintones.md +11 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.getmaxfs.md +26 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.md +31 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia._constructor_.md +22 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.csi.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.id.md +11 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.md +40 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.mediatype.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.memberid.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.setsizehint.md +25 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.sourcestate.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.stream.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemediaevents.md +14 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemediaid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotevideoresolution.md +11 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.md +12 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup._constructor_.md +24 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.getremotemedia.md +26 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.includes.md +27 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.ispinned.md +22 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.md +28 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.pin.md +25 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.unpin.md +24 -0
- package/dist/docs/markdown/plugin-meetings.triggerproxy.md +11 -0
- package/dist/docs/metadata/index.api.json +14144 -0
- package/dist/docs/metadata/index.api.md +2075 -0
- package/dist/docs/metadata/index.d.ts +5594 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +72 -17
- package/dist/index.js.map +1 -1
- package/dist/locus-info/controlsUtils.d.ts +2 -0
- package/dist/locus-info/controlsUtils.js +31 -29
- package/dist/locus-info/controlsUtils.js.map +1 -1
- package/dist/locus-info/embeddedAppsUtils.d.ts +2 -0
- package/dist/locus-info/embeddedAppsUtils.js +3 -26
- package/dist/locus-info/embeddedAppsUtils.js.map +1 -1
- package/dist/locus-info/fullState.d.ts +2 -0
- package/dist/locus-info/fullState.js +0 -15
- package/dist/locus-info/fullState.js.map +1 -1
- package/dist/locus-info/hostUtils.d.ts +2 -0
- package/dist/locus-info/hostUtils.js +4 -12
- package/dist/locus-info/hostUtils.js.map +1 -1
- package/dist/locus-info/index.d.ts +269 -0
- package/dist/locus-info/index.js +237 -198
- package/dist/locus-info/index.js.map +1 -1
- package/dist/locus-info/infoUtils.d.ts +2 -0
- package/dist/locus-info/infoUtils.js +3 -37
- package/dist/locus-info/infoUtils.js.map +1 -1
- package/dist/locus-info/mediaSharesUtils.d.ts +2 -0
- package/dist/locus-info/mediaSharesUtils.js +12 -38
- package/dist/locus-info/mediaSharesUtils.js.map +1 -1
- package/dist/locus-info/parser.d.ts +212 -0
- package/dist/locus-info/parser.js +92 -118
- package/dist/locus-info/parser.js.map +1 -1
- package/dist/locus-info/selfUtils.d.ts +2 -0
- package/dist/locus-info/selfUtils.js +80 -89
- package/dist/locus-info/selfUtils.js.map +1 -1
- package/dist/media/index.d.ts +32 -0
- package/dist/media/index.js +56 -146
- package/dist/media/index.js.map +1 -1
- package/dist/media/properties.d.ts +108 -0
- package/dist/media/properties.js +83 -117
- package/dist/media/properties.js.map +1 -1
- package/dist/media/util.d.ts +2 -0
- package/dist/media/util.js +2 -9
- package/dist/media/util.js.map +1 -1
- package/dist/mediaQualityMetrics/config.d.ts +233 -0
- package/dist/mediaQualityMetrics/config.js +505 -495
- package/dist/mediaQualityMetrics/config.js.map +1 -1
- package/dist/meeting/effectsState.d.ts +42 -0
- package/dist/meeting/effectsState.js +123 -190
- package/dist/meeting/effectsState.js.map +1 -1
- package/dist/meeting/in-meeting-actions.d.ts +79 -0
- package/dist/meeting/in-meeting-actions.js +31 -14
- package/dist/meeting/in-meeting-actions.js.map +1 -1
- package/dist/meeting/index.d.ts +1621 -0
- package/dist/meeting/index.js +2281 -2249
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/muteState.d.ts +116 -0
- package/dist/meeting/muteState.js +257 -112
- package/dist/meeting/muteState.js.map +1 -1
- package/dist/meeting/request.d.ts +255 -0
- package/dist/meeting/request.js +308 -264
- package/dist/meeting/request.js.map +1 -1
- package/dist/meeting/request.type.js +7 -0
- package/dist/meeting/request.type.js.map +1 -0
- package/dist/meeting/state.d.ts +9 -0
- package/dist/meeting/state.js +21 -31
- package/dist/meeting/state.js.map +1 -1
- package/dist/meeting/util.d.ts +2 -0
- package/dist/meeting/util.js +63 -217
- package/dist/meeting/util.js.map +1 -1
- package/dist/meeting-info/collection.d.ts +20 -0
- package/dist/meeting-info/collection.js +6 -25
- package/dist/meeting-info/collection.js.map +1 -1
- package/dist/meeting-info/index.d.ts +57 -0
- package/dist/meeting-info/index.js +14 -32
- package/dist/meeting-info/index.js.map +1 -1
- package/dist/meeting-info/meeting-info-v2.d.ts +93 -0
- package/dist/meeting-info/meeting-info-v2.js +193 -268
- package/dist/meeting-info/meeting-info-v2.js.map +1 -1
- package/dist/meeting-info/request.d.ts +22 -0
- package/dist/meeting-info/request.js +3 -15
- package/dist/meeting-info/request.js.map +1 -1
- package/dist/meeting-info/util.d.ts +2 -0
- package/dist/meeting-info/util.js +98 -183
- package/dist/meeting-info/util.js.map +1 -1
- package/dist/meeting-info/utilv2.d.ts +2 -0
- package/dist/meeting-info/utilv2.js +137 -228
- package/dist/meeting-info/utilv2.js.map +1 -1
- package/dist/meetings/collection.d.ts +23 -0
- package/dist/meetings/collection.js +26 -19
- package/dist/meetings/collection.js.map +1 -1
- package/dist/meetings/index.d.ts +297 -0
- package/dist/meetings/index.js +583 -552
- package/dist/meetings/index.js.map +1 -1
- package/dist/meetings/request.d.ts +27 -0
- package/dist/meetings/request.js +26 -41
- package/dist/meetings/request.js.map +1 -1
- package/dist/meetings/util.d.ts +18 -0
- package/dist/meetings/util.js +151 -155
- package/dist/meetings/util.js.map +1 -1
- package/dist/member/index.d.ts +145 -0
- package/dist/member/index.js +100 -85
- package/dist/member/index.js.map +1 -1
- package/dist/member/types.js +15 -0
- package/dist/member/types.js.map +1 -0
- package/dist/member/util.d.ts +2 -0
- package/dist/member/util.js +90 -68
- package/dist/member/util.js.map +1 -1
- package/dist/members/collection.d.ts +24 -0
- package/dist/members/collection.js +13 -12
- package/dist/members/collection.js.map +1 -1
- package/dist/members/index.d.ts +298 -0
- package/dist/members/index.js +152 -204
- package/dist/members/index.js.map +1 -1
- package/dist/members/request.d.ts +50 -0
- package/dist/members/request.js +35 -39
- package/dist/members/request.js.map +1 -1
- package/dist/members/types.js +15 -0
- package/dist/members/types.js.map +1 -0
- package/dist/members/util.d.ts +2 -0
- package/dist/members/util.js +76 -46
- package/dist/members/util.js.map +1 -1
- package/dist/metrics/config.d.ts +169 -0
- package/dist/metrics/config.js +4 -14
- package/dist/metrics/config.js.map +1 -1
- package/dist/metrics/constants.d.ts +57 -0
- package/dist/metrics/constants.js +1 -6
- package/dist/metrics/constants.js.map +1 -1
- package/dist/metrics/index.d.ts +152 -0
- package/dist/metrics/index.js +59 -156
- package/dist/metrics/index.js.map +1 -1
- package/dist/multistream/mediaRequestManager.js +116 -52
- package/dist/multistream/mediaRequestManager.js.map +1 -1
- package/dist/multistream/receiveSlot.js +58 -65
- package/dist/multistream/receiveSlot.js.map +1 -1
- package/dist/multistream/receiveSlotManager.js +58 -93
- package/dist/multistream/receiveSlotManager.js.map +1 -1
- package/dist/multistream/remoteMedia.js +55 -74
- package/dist/multistream/remoteMedia.js.map +1 -1
- package/dist/multistream/remoteMediaGroup.js +6 -40
- package/dist/multistream/remoteMediaGroup.js.map +1 -1
- package/dist/multistream/remoteMediaManager.js +466 -442
- package/dist/multistream/remoteMediaManager.js.map +1 -1
- package/dist/networkQualityMonitor/index.d.ts +70 -0
- package/dist/networkQualityMonitor/index.js +40 -59
- package/dist/networkQualityMonitor/index.js.map +1 -1
- package/dist/peer-connection-manager/index.d.ts +6 -0
- package/dist/peer-connection-manager/index.js +671 -0
- package/dist/peer-connection-manager/index.js.map +1 -0
- package/dist/peer-connection-manager/util.d.ts +6 -0
- package/dist/peer-connection-manager/util.js +110 -0
- package/dist/peer-connection-manager/util.js.map +1 -0
- package/dist/personal-meeting-room/index.d.ts +47 -0
- package/dist/personal-meeting-room/index.js +21 -45
- package/dist/personal-meeting-room/index.js.map +1 -1
- package/dist/personal-meeting-room/request.d.ts +14 -0
- package/dist/personal-meeting-room/request.js +1 -31
- package/dist/personal-meeting-room/request.js.map +1 -1
- package/dist/personal-meeting-room/util.d.ts +2 -0
- package/dist/personal-meeting-room/util.js +0 -13
- package/dist/personal-meeting-room/util.js.map +1 -1
- package/dist/plugin-meetings.d.ts +5399 -0
- package/dist/reachability/index.d.ts +139 -0
- package/dist/reachability/index.js +192 -191
- package/dist/reachability/index.js.map +1 -1
- package/dist/reachability/request.d.ts +35 -0
- package/dist/reachability/request.js +15 -23
- package/dist/reachability/request.js.map +1 -1
- package/dist/reactions/constants.js +13 -0
- package/dist/reactions/constants.js.map +1 -0
- package/dist/reactions/reactions.d.ts +4 -0
- package/dist/reactions/reactions.js +109 -0
- package/dist/reactions/reactions.js.map +1 -0
- package/dist/reactions/reactions.type.d.ts +32 -0
- package/dist/reactions/reactions.type.js +36 -0
- package/dist/reactions/reactions.type.js.map +1 -0
- package/dist/reconnection-manager/index.d.ts +112 -0
- package/dist/reconnection-manager/index.js +342 -460
- package/dist/reconnection-manager/index.js.map +1 -1
- package/dist/recording-controller/enums.d.ts +7 -0
- package/dist/recording-controller/enums.js +17 -0
- package/dist/recording-controller/enums.js.map +1 -0
- package/dist/recording-controller/index.d.ts +193 -0
- package/dist/recording-controller/index.js +343 -0
- package/dist/recording-controller/index.js.map +1 -0
- package/dist/recording-controller/util.d.ts +13 -0
- package/dist/recording-controller/util.js +63 -0
- package/dist/recording-controller/util.js.map +1 -0
- package/dist/roap/collection.d.ts +10 -0
- package/dist/roap/collection.js +63 -0
- package/dist/roap/collection.js.map +1 -0
- package/dist/roap/handler.d.ts +47 -0
- package/dist/roap/handler.js +279 -0
- package/dist/roap/handler.js.map +1 -0
- package/dist/roap/index.d.ts +116 -0
- package/dist/roap/index.js +48 -70
- package/dist/roap/index.js.map +1 -1
- package/dist/roap/request.d.ts +35 -0
- package/dist/roap/request.js +143 -131
- package/dist/roap/request.js.map +1 -1
- package/dist/roap/state.d.ts +9 -0
- package/dist/roap/state.js +127 -0
- package/dist/roap/state.js.map +1 -0
- package/dist/roap/turnDiscovery.d.ts +67 -0
- package/dist/roap/turnDiscovery.js +91 -98
- package/dist/roap/turnDiscovery.js.map +1 -1
- package/dist/roap/util.d.ts +2 -0
- package/dist/roap/util.js +76 -0
- package/dist/roap/util.js.map +1 -0
- package/dist/statsAnalyzer/global.d.ts +126 -0
- package/dist/statsAnalyzer/global.js +1 -95
- package/dist/statsAnalyzer/global.js.map +1 -1
- package/dist/statsAnalyzer/index.d.ts +190 -0
- package/dist/statsAnalyzer/index.js +372 -455
- package/dist/statsAnalyzer/index.js.map +1 -1
- package/dist/statsAnalyzer/mqaUtil.d.ts +22 -0
- package/dist/statsAnalyzer/mqaUtil.js +143 -87
- package/dist/statsAnalyzer/mqaUtil.js.map +1 -1
- package/dist/transcription/index.d.ts +64 -0
- package/dist/transcription/index.js +22 -47
- package/dist/transcription/index.js.map +1 -1
- package/dist/types/breakouts/breakout.d.ts +8 -0
- package/dist/types/breakouts/collection.d.ts +5 -0
- package/dist/types/breakouts/edit-lock-error.d.ts +15 -0
- package/dist/types/breakouts/index.d.ts +5 -0
- package/dist/types/breakouts/request.d.ts +22 -0
- package/dist/types/breakouts/utils.d.ts +8 -0
- package/dist/types/common/browser-detection.d.ts +9 -0
- package/dist/types/common/collection.d.ts +48 -0
- package/dist/types/common/config.d.ts +2 -0
- package/dist/types/common/errors/captcha-error.d.ts +15 -0
- package/dist/types/common/errors/intent-to-join.d.ts +16 -0
- package/dist/types/common/errors/join-meeting.d.ts +17 -0
- package/dist/types/common/errors/media.d.ts +15 -0
- package/dist/types/common/errors/parameter.d.ts +15 -0
- package/dist/types/common/errors/password-error.d.ts +15 -0
- package/dist/types/common/errors/permission.d.ts +14 -0
- package/dist/types/common/errors/reconnection-in-progress.d.ts +9 -0
- package/dist/types/common/errors/reconnection.d.ts +15 -0
- package/dist/types/common/errors/stats.d.ts +15 -0
- package/dist/types/common/errors/webex-errors.d.ts +69 -0
- package/dist/types/common/errors/webex-meetings-error.d.ts +20 -0
- package/dist/types/common/events/events-scope.d.ts +17 -0
- package/dist/types/common/events/events.d.ts +12 -0
- package/dist/types/common/events/trigger-proxy.d.ts +2 -0
- package/dist/types/common/events/util.d.ts +2 -0
- package/dist/types/common/logs/logger-config.d.ts +2 -0
- package/dist/types/common/logs/logger-proxy.d.ts +2 -0
- package/dist/types/common/logs/request.d.ts +34 -0
- package/dist/types/common/queue.d.ts +32 -0
- package/dist/types/config.d.ts +77 -0
- package/dist/types/constants.d.ts +944 -0
- package/dist/types/controls-options-manager/constants.d.ts +4 -0
- package/dist/types/controls-options-manager/enums.d.ts +6 -0
- package/dist/types/controls-options-manager/index.d.ts +128 -0
- package/dist/types/controls-options-manager/util.d.ts +9 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/locus-info/controlsUtils.d.ts +2 -0
- package/dist/types/locus-info/embeddedAppsUtils.d.ts +2 -0
- package/dist/types/locus-info/fullState.d.ts +2 -0
- package/dist/types/locus-info/hostUtils.d.ts +2 -0
- package/dist/types/locus-info/index.d.ts +276 -0
- package/dist/types/locus-info/infoUtils.d.ts +2 -0
- package/dist/types/locus-info/mediaSharesUtils.d.ts +2 -0
- package/dist/types/locus-info/parser.d.ts +212 -0
- package/dist/types/locus-info/selfUtils.d.ts +2 -0
- package/dist/types/media/index.d.ts +32 -0
- package/dist/types/media/properties.d.ts +108 -0
- package/dist/types/media/util.d.ts +2 -0
- package/dist/types/mediaQualityMetrics/config.d.ts +365 -0
- package/dist/types/meeting/effectsState.d.ts +42 -0
- package/dist/types/meeting/in-meeting-actions.d.ts +101 -0
- package/dist/types/meeting/index.d.ts +1723 -0
- package/dist/types/meeting/muteState.d.ts +185 -0
- package/dist/types/meeting/request.d.ts +271 -0
- package/dist/types/meeting/request.type.d.ts +11 -0
- package/dist/types/meeting/state.d.ts +9 -0
- package/dist/types/meeting/util.d.ts +2 -0
- package/dist/types/meeting-info/collection.d.ts +20 -0
- package/dist/types/meeting-info/index.d.ts +57 -0
- package/dist/types/meeting-info/meeting-info-v2.d.ts +93 -0
- package/dist/types/meeting-info/request.d.ts +22 -0
- package/dist/types/meeting-info/util.d.ts +2 -0
- package/dist/types/meeting-info/utilv2.d.ts +2 -0
- package/dist/types/meetings/collection.d.ts +31 -0
- package/dist/types/meetings/index.d.ts +316 -0
- package/dist/types/meetings/request.d.ts +27 -0
- package/dist/types/meetings/util.d.ts +18 -0
- package/dist/types/member/index.d.ts +156 -0
- package/dist/types/member/types.d.ts +21 -0
- package/dist/types/member/util.d.ts +2 -0
- package/dist/types/members/collection.d.ts +29 -0
- package/dist/types/members/index.d.ts +343 -0
- package/dist/types/members/request.d.ts +58 -0
- package/dist/types/members/types.d.ts +24 -0
- package/dist/types/members/util.d.ts +2 -0
- package/dist/types/metrics/config.d.ts +171 -0
- package/dist/types/metrics/constants.d.ts +53 -0
- package/dist/types/metrics/index.d.ts +152 -0
- package/dist/types/multistream/mediaRequestManager.d.ts +68 -0
- package/dist/types/multistream/receiveSlot.d.ts +68 -0
- package/dist/types/multistream/receiveSlotManager.d.ts +49 -0
- package/dist/types/multistream/remoteMedia.d.ts +72 -0
- package/dist/types/multistream/remoteMediaGroup.d.ts +47 -0
- package/dist/types/multistream/remoteMediaManager.d.ts +263 -0
- package/dist/types/networkQualityMonitor/index.d.ts +70 -0
- package/dist/types/personal-meeting-room/index.d.ts +47 -0
- package/dist/types/personal-meeting-room/request.d.ts +14 -0
- package/dist/types/personal-meeting-room/util.d.ts +2 -0
- package/dist/types/reachability/index.d.ts +152 -0
- package/dist/types/reachability/request.d.ts +37 -0
- package/dist/types/reactions/constants.d.ts +3 -0
- package/dist/types/reactions/reactions.d.ts +4 -0
- package/dist/types/reactions/reactions.type.d.ts +52 -0
- package/dist/types/reconnection-manager/index.d.ts +126 -0
- package/dist/types/recording-controller/enums.d.ts +7 -0
- package/dist/types/recording-controller/index.d.ts +193 -0
- package/dist/types/recording-controller/util.d.ts +13 -0
- package/dist/types/roap/index.d.ts +77 -0
- package/dist/types/roap/request.d.ts +38 -0
- package/dist/types/roap/turnDiscovery.d.ts +74 -0
- package/dist/types/statsAnalyzer/global.d.ts +36 -0
- package/dist/types/statsAnalyzer/index.d.ts +195 -0
- package/dist/types/statsAnalyzer/mqaUtil.d.ts +24 -0
- package/dist/types/transcription/index.d.ts +64 -0
- package/dist/types/tsdoc-metadata.json +11 -0
- package/internal-README.md +7 -6
- package/package.json +28 -20
- package/src/breakouts/README.md +219 -0
- package/src/breakouts/breakout.ts +153 -0
- package/src/breakouts/collection.ts +19 -0
- package/src/breakouts/edit-lock-error.ts +25 -0
- package/src/breakouts/index.ts +745 -0
- package/src/breakouts/request.ts +55 -0
- package/src/breakouts/utils.ts +44 -0
- package/src/common/{browser-detection.js → browser-detection.ts} +9 -6
- package/src/common/collection.ts +9 -7
- package/src/common/{config.js → config.ts} +1 -1
- package/src/common/errors/{captcha-error.js → captcha-error.ts} +11 -7
- package/src/common/errors/{intent-to-join.js → intent-to-join.ts} +12 -7
- package/src/common/errors/{join-meeting.js → join-meeting.ts} +17 -8
- package/src/common/errors/{media.js → media.ts} +11 -7
- package/src/common/errors/parameter.ts +11 -7
- package/src/common/errors/{password-error.js → password-error.ts} +11 -7
- package/src/common/errors/{permission.js → permission.ts} +10 -6
- package/src/common/errors/{reconnection.js → reconnection.ts} +11 -7
- package/src/common/errors/{stats.js → stats.ts} +11 -7
- package/src/common/errors/{webex-errors.js → webex-errors.ts} +8 -7
- package/src/common/errors/{webex-meetings-error.js → webex-meetings-error.ts} +4 -2
- package/src/common/events/{events-scope.js → events-scope.ts} +6 -2
- package/src/common/events/{events.js → events.ts} +5 -1
- package/src/common/events/{trigger-proxy.js → trigger-proxy.ts} +9 -5
- package/src/common/events/{util.js → util.ts} +2 -3
- package/src/common/logs/{logger-config.js → logger-config.ts} +1 -2
- package/src/common/logs/logger-proxy.ts +44 -0
- package/src/common/logs/{request.js → request.ts} +22 -9
- package/src/common/queue.ts +1 -2
- package/src/{config.js → config.ts} +17 -12
- package/src/constants.ts +92 -5
- package/src/controls-options-manager/constants.ts +5 -0
- package/src/controls-options-manager/enums.ts +7 -0
- package/src/controls-options-manager/index.ts +240 -0
- package/src/controls-options-manager/util.ts +30 -0
- package/src/index.ts +33 -0
- package/src/locus-info/controlsUtils.ts +141 -0
- package/src/locus-info/{embeddedAppsUtils.js → embeddedAppsUtils.ts} +5 -6
- package/src/locus-info/{fullState.js → fullState.ts} +16 -12
- package/src/locus-info/{hostUtils.js → hostUtils.ts} +9 -8
- package/src/locus-info/{index.js → index.ts} +211 -71
- package/src/locus-info/{infoUtils.js → infoUtils.ts} +19 -8
- package/src/locus-info/{mediaSharesUtils.js → mediaSharesUtils.ts} +17 -17
- package/src/locus-info/{parser.js → parser.ts} +67 -79
- package/src/locus-info/{selfUtils.js → selfUtils.ts} +183 -67
- package/src/media/{index.js → index.ts} +174 -176
- package/src/media/{properties.js → properties.ts} +56 -37
- package/src/media/{util.js → util.ts} +2 -2
- package/src/mediaQualityMetrics/config.ts +384 -0
- package/src/meeting/in-meeting-actions.ts +67 -3
- package/src/meeting/{index.js → index.ts} +2660 -1603
- package/src/meeting/muteState.ts +526 -0
- package/src/meeting/{request.js → request.ts} +326 -142
- package/src/meeting/request.type.ts +13 -0
- package/src/meeting/{state.js → state.ts} +50 -35
- package/src/meeting/{util.js → util.ts} +131 -115
- package/src/meeting-info/{collection.js → collection.ts} +6 -2
- package/src/meeting-info/{index.js → index.ts} +42 -36
- package/src/meeting-info/meeting-info-v2.ts +273 -0
- package/src/meeting-info/{request.js → request.ts} +14 -4
- package/src/meeting-info/{util.js → util.ts} +60 -51
- package/src/meeting-info/{utilv2.js → utilv2.ts} +65 -58
- package/src/meetings/{collection.js → collection.ts} +26 -3
- package/src/meetings/index.ts +1289 -0
- package/src/meetings/{request.js → request.ts} +34 -25
- package/src/meetings/{util.js → util.ts} +99 -33
- package/src/member/{index.js → index.ts} +124 -56
- package/src/member/types.ts +24 -0
- package/src/member/{util.js → util.ts} +105 -25
- package/src/members/{collection.js → collection.ts} +10 -2
- package/src/members/{index.js → index.ts} +281 -144
- package/src/members/{request.js → request.ts} +80 -16
- package/src/members/types.ts +28 -0
- package/src/members/{util.js → util.ts} +108 -55
- package/src/metrics/{config.js → config.ts} +255 -92
- package/src/metrics/{constants.js → constants.ts} +0 -6
- package/src/metrics/{index.js → index.ts} +110 -94
- package/src/multistream/mediaRequestManager.ts +144 -40
- package/src/multistream/receiveSlot.ts +69 -26
- package/src/multistream/receiveSlotManager.ts +50 -38
- package/src/multistream/remoteMedia.ts +30 -4
- package/src/multistream/remoteMediaGroup.ts +4 -3
- package/src/multistream/remoteMediaManager.ts +230 -66
- package/src/networkQualityMonitor/{index.js → index.ts} +41 -29
- package/src/personal-meeting-room/{index.js → index.ts} +28 -19
- package/src/personal-meeting-room/{request.js → request.ts} +13 -4
- package/src/personal-meeting-room/{util.js → util.ts} +4 -4
- package/src/reachability/{index.js → index.ts} +157 -94
- package/src/reachability/request.ts +46 -35
- package/src/reactions/constants.ts +4 -0
- package/src/reactions/reactions.ts +104 -0
- package/src/reactions/reactions.type.ts +62 -0
- package/src/reconnection-manager/{index.js → index.ts} +228 -120
- package/src/recording-controller/enums.ts +8 -0
- package/src/recording-controller/index.ts +315 -0
- package/src/recording-controller/util.ts +58 -0
- package/src/roap/{index.js → index.ts} +77 -60
- package/src/roap/request.ts +172 -0
- package/src/roap/turnDiscovery.ts +81 -41
- package/src/statsAnalyzer/global.ts +37 -0
- package/src/statsAnalyzer/index.ts +1242 -0
- package/src/statsAnalyzer/mqaUtil.ts +291 -0
- package/src/transcription/{index.js → index.ts} +46 -39
- package/test/integration/spec/converged-space-meetings.js +176 -0
- package/test/integration/spec/journey.js +665 -464
- package/test/integration/spec/space-meeting.js +320 -206
- package/test/integration/spec/transcription.js +7 -8
- package/test/unit/spec/breakouts/breakout.ts +178 -0
- package/test/unit/spec/breakouts/collection.ts +15 -0
- package/test/unit/spec/breakouts/edit-lock-error.ts +30 -0
- package/test/unit/spec/breakouts/index.ts +1252 -0
- package/test/unit/spec/breakouts/request.ts +104 -0
- package/test/unit/spec/breakouts/utils.js +54 -0
- package/test/unit/spec/common/browser-detection.js +9 -28
- package/test/unit/spec/controls-options-manager/index.js +204 -0
- package/test/unit/spec/controls-options-manager/util.js +86 -0
- package/test/unit/spec/fixture/locus.js +92 -90
- package/test/unit/spec/locus-info/controlsUtils.js +133 -34
- package/test/unit/spec/locus-info/embeddedAppsUtils.js +8 -6
- package/test/unit/spec/locus-info/index.js +303 -2
- package/test/unit/spec/locus-info/infoUtils.js +41 -32
- package/test/unit/spec/locus-info/lib/BasicSeqCmp.json +88 -430
- package/test/unit/spec/locus-info/lib/SeqCmp.json +513 -685
- package/test/unit/spec/locus-info/parser.js +3 -9
- package/test/unit/spec/locus-info/selfConstant.js +101 -103
- package/test/unit/spec/locus-info/selfUtils.js +165 -12
- package/test/unit/spec/media/index.ts +72 -8
- package/test/unit/spec/media/properties.ts +9 -9
- package/test/unit/spec/meeting/in-meeting-actions.ts +29 -2
- package/test/unit/spec/meeting/index.js +2499 -802
- package/test/unit/spec/meeting/muteState.js +164 -70
- package/test/unit/spec/meeting/request.js +141 -43
- package/test/unit/spec/meeting/utils.js +135 -164
- package/test/unit/spec/meeting-info/meetinginfov2.js +100 -73
- package/test/unit/spec/meeting-info/request.js +7 -9
- package/test/unit/spec/meeting-info/util.js +11 -12
- package/test/unit/spec/meeting-info/utilv2.js +110 -74
- package/test/unit/spec/meetings/collection.js +15 -1
- package/test/unit/spec/meetings/index.js +622 -263
- package/test/unit/spec/meetings/utils.js +65 -14
- package/test/unit/spec/member/index.js +24 -1
- package/test/unit/spec/member/util.js +359 -32
- package/test/unit/spec/members/index.js +294 -54
- package/test/unit/spec/members/request.js +50 -20
- package/test/unit/spec/members/utils.js +147 -4
- package/test/unit/spec/metrics/index.js +16 -21
- package/test/unit/spec/multistream/mediaRequestManager.ts +369 -68
- package/test/unit/spec/multistream/receiveSlot.ts +76 -17
- package/test/unit/spec/multistream/receiveSlotManager.ts +60 -38
- package/test/unit/spec/multistream/remoteMedia.ts +32 -2
- package/test/unit/spec/multistream/remoteMediaGroup.ts +5 -5
- package/test/unit/spec/multistream/remoteMediaManager.ts +549 -65
- package/test/unit/spec/networkQualityMonitor/index.js +24 -18
- package/test/unit/spec/personal-meeting-room/personal-meeting-room.js +2 -7
- package/test/unit/spec/reachability/index.ts +176 -27
- package/test/unit/spec/reachability/request.js +66 -0
- package/test/unit/spec/reconnection-manager/index.js +58 -30
- package/test/unit/spec/recording-controller/index.js +231 -0
- package/test/unit/spec/recording-controller/util.js +102 -0
- package/test/unit/spec/roap/index.ts +12 -8
- package/test/unit/spec/roap/request.ts +217 -0
- package/test/unit/spec/roap/turnDiscovery.ts +72 -49
- package/test/unit/spec/stats-analyzer/index.js +108 -57
- package/test/utils/cmr.js +44 -42
- package/test/utils/constants.js +9 -0
- package/test/utils/testUtils.js +98 -77
- package/test/utils/webex-config.js +22 -18
- package/test/utils/webex-test-users.js +57 -50
- package/tsconfig.json +6 -0
- package/dist/media/internal-media-core-wrapper.js +0 -22
- package/dist/media/internal-media-core-wrapper.js.map +0 -1
- package/dist/multistream/multistreamMedia.js +0 -116
- package/dist/multistream/multistreamMedia.js.map +0 -1
- package/src/common/logs/logger-proxy.js +0 -33
- package/src/index.js +0 -15
- package/src/locus-info/controlsUtils.js +0 -102
- package/src/media/internal-media-core-wrapper.ts +0 -9
- package/src/mediaQualityMetrics/config.js +0 -382
- package/src/meeting/effectsState.js +0 -205
- package/src/meeting/muteState.js +0 -318
- package/src/meeting-info/meeting-info-v2.js +0 -255
- package/src/meetings/index.js +0 -1015
- package/src/multistream/multistreamMedia.ts +0 -92
- package/src/roap/request.js +0 -127
- package/src/statsAnalyzer/global.js +0 -133
- package/src/statsAnalyzer/index.js +0 -1006
- package/src/statsAnalyzer/mqaUtil.js +0 -173
- package/test/unit/spec/meeting/effectsState.js +0 -291
- /package/src/common/errors/{reconnection-in-progress.js → reconnection-in-progress.ts} +0 -0
|
@@ -0,0 +1,2075 @@
|
|
|
1
|
+
## API Report File for "@webex/plugin-meetings"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
/// <reference types="node" />
|
|
8
|
+
|
|
9
|
+
import ChildEmitter from 'events';
|
|
10
|
+
import { LocalCameraTrack } from '@webex/internal-media-core';
|
|
11
|
+
import { LocalDisplayTrack } from '@webex/internal-media-core';
|
|
12
|
+
import { LocalMicrophoneTrack } from '@webex/internal-media-core';
|
|
13
|
+
import { MediaRequest } from '@webex/internal-media-core';
|
|
14
|
+
import { MediaType } from '@webex/internal-media-core';
|
|
15
|
+
import { ReceiveSlot } from '@webex/internal-media-core';
|
|
16
|
+
import { SourceState } from '@webex/internal-media-core';
|
|
17
|
+
import { StatelessWebexPlugin } from '@webex/webex-core';
|
|
18
|
+
import { WebexPlugin } from '@webex/webex-core';
|
|
19
|
+
|
|
20
|
+
// @public (undocumented)
|
|
21
|
+
const _ACTIVE_ = "ACTIVE";
|
|
22
|
+
|
|
23
|
+
// @public (undocumented)
|
|
24
|
+
const ALERT = "alert";
|
|
25
|
+
|
|
26
|
+
// @public (undocumented)
|
|
27
|
+
const ALTERNATE_REDIRECT_TRUE = "alternateRedirect=true";
|
|
28
|
+
|
|
29
|
+
// @public (undocumented)
|
|
30
|
+
const ANSWER = "answer";
|
|
31
|
+
|
|
32
|
+
// @public (undocumented)
|
|
33
|
+
const _ANSWER_ = "ANSWER";
|
|
34
|
+
|
|
35
|
+
// @public (undocumented)
|
|
36
|
+
const API: {
|
|
37
|
+
CALLIOPEDISCOVERY: string;
|
|
38
|
+
LOCUS: string;
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
// @public (undocumented)
|
|
42
|
+
const AUDIO = "audio";
|
|
43
|
+
|
|
44
|
+
// @public (undocumented)
|
|
45
|
+
const AUDIO_INPUT = "audioinput";
|
|
46
|
+
|
|
47
|
+
// @public (undocumented)
|
|
48
|
+
const AUDIO_STATUS = "audioStatus";
|
|
49
|
+
|
|
50
|
+
// @public (undocumented)
|
|
51
|
+
const AVAILABLE_RESOLUTIONS: {
|
|
52
|
+
'360p': {
|
|
53
|
+
video: {
|
|
54
|
+
width: {
|
|
55
|
+
max: number;
|
|
56
|
+
ideal: number;
|
|
57
|
+
};
|
|
58
|
+
height: {
|
|
59
|
+
max: number;
|
|
60
|
+
ideal: number;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
'480p': {
|
|
65
|
+
video: {
|
|
66
|
+
width: {
|
|
67
|
+
max: number;
|
|
68
|
+
ideal: number;
|
|
69
|
+
};
|
|
70
|
+
height: {
|
|
71
|
+
max: number;
|
|
72
|
+
ideal: number;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
'720p': {
|
|
77
|
+
video: {
|
|
78
|
+
width: {
|
|
79
|
+
max: number;
|
|
80
|
+
ideal: number;
|
|
81
|
+
};
|
|
82
|
+
height: {
|
|
83
|
+
max: number;
|
|
84
|
+
ideal: number;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
'1080p': {
|
|
89
|
+
video: {
|
|
90
|
+
width: {
|
|
91
|
+
max: number;
|
|
92
|
+
ideal: number;
|
|
93
|
+
};
|
|
94
|
+
height: {
|
|
95
|
+
max: number;
|
|
96
|
+
ideal: number;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
// @public (undocumented)
|
|
103
|
+
const BNR_STATUS: {
|
|
104
|
+
SHOULD_ENABLE: string;
|
|
105
|
+
ENABLED: string;
|
|
106
|
+
SHOULD_DISABLE: string;
|
|
107
|
+
NOT_ENABLED: string;
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
// @public (undocumented)
|
|
111
|
+
const BREAKOUTS: {
|
|
112
|
+
STATUS: {
|
|
113
|
+
CLOSING: string;
|
|
114
|
+
CLOSED: string;
|
|
115
|
+
PENDING: string;
|
|
116
|
+
OPEN: string;
|
|
117
|
+
};
|
|
118
|
+
EVENTS: {
|
|
119
|
+
BREAKOUTS_CLOSING: string;
|
|
120
|
+
MESSAGE: string;
|
|
121
|
+
MEMBERS_UPDATE: string;
|
|
122
|
+
};
|
|
123
|
+
SESSION_TYPES: {
|
|
124
|
+
MAIN: string;
|
|
125
|
+
BREAKOUT: string;
|
|
126
|
+
};
|
|
127
|
+
SESSION_STATES: {
|
|
128
|
+
ACTIVE: string;
|
|
129
|
+
ASSIGNED: string;
|
|
130
|
+
ALLOWED: string;
|
|
131
|
+
ASSIGNED_CURRENT: string;
|
|
132
|
+
REQUESTED: string;
|
|
133
|
+
};
|
|
134
|
+
BREAKOUTS_SUPPORTED: string;
|
|
135
|
+
ACTION: {
|
|
136
|
+
START: string;
|
|
137
|
+
CLOSE: string;
|
|
138
|
+
DELETE: string;
|
|
139
|
+
};
|
|
140
|
+
ERROR_CODE: {
|
|
141
|
+
EDIT_LOCK_TOKEN_MISMATCH: number;
|
|
142
|
+
EDIT_NOT_AUTHORIZED: number;
|
|
143
|
+
};
|
|
144
|
+
DEFAULT_DURATION: number;
|
|
145
|
+
EDIT_LOCK_STATUS: {
|
|
146
|
+
LOCKED: string;
|
|
147
|
+
NOT_LOCKED: string;
|
|
148
|
+
UNKNOWN: string;
|
|
149
|
+
};
|
|
150
|
+
DEFAULT_TTL: number;
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
// @public (undocumented)
|
|
154
|
+
const CALENDAR = "calendar";
|
|
155
|
+
|
|
156
|
+
// @public (undocumented)
|
|
157
|
+
const CALENDAR_EVENTS: {
|
|
158
|
+
CREATE: string;
|
|
159
|
+
UPDATE: string;
|
|
160
|
+
CREATE_MINIMAL: string;
|
|
161
|
+
UPDATE_MINIMAL: string;
|
|
162
|
+
DELETE: string;
|
|
163
|
+
};
|
|
164
|
+
|
|
165
|
+
// @public (undocumented)
|
|
166
|
+
const CALENDAR_EVENTS_API = "calendarEvents";
|
|
167
|
+
|
|
168
|
+
// @public (undocumented)
|
|
169
|
+
const CALL = "call";
|
|
170
|
+
|
|
171
|
+
// @public (undocumented)
|
|
172
|
+
const _CALL_ = "CALL";
|
|
173
|
+
|
|
174
|
+
// @public (undocumented)
|
|
175
|
+
const CALL_REMOVED_REASON: {
|
|
176
|
+
CALL_INACTIVE: string;
|
|
177
|
+
PARTNER_LEFT: string;
|
|
178
|
+
SELF_LEFT: string;
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
// @public (undocumented)
|
|
182
|
+
const CLAIM = "claim";
|
|
183
|
+
|
|
184
|
+
// @public (undocumented)
|
|
185
|
+
const CMR_MEETINGS = "cmrmeetings";
|
|
186
|
+
|
|
187
|
+
// @public (undocumented)
|
|
188
|
+
const COMPLETE = "complete";
|
|
189
|
+
|
|
190
|
+
// @public (undocumented)
|
|
191
|
+
const _CONFLICT_ = "CONFLICT";
|
|
192
|
+
|
|
193
|
+
// @public (undocumented)
|
|
194
|
+
const CONNECTION_STATE: {
|
|
195
|
+
NEW: string;
|
|
196
|
+
CONNECTING: string;
|
|
197
|
+
CONNECTED: string;
|
|
198
|
+
CLOSED: string;
|
|
199
|
+
FAILED: string;
|
|
200
|
+
DISCONNECTED: string;
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
declare namespace CONSTANTS {
|
|
204
|
+
export {
|
|
205
|
+
AUDIO,
|
|
206
|
+
AUDIO_INPUT,
|
|
207
|
+
AUDIO_STATUS,
|
|
208
|
+
ALERT,
|
|
209
|
+
ANSWER,
|
|
210
|
+
CALL,
|
|
211
|
+
CORRELATION_ID,
|
|
212
|
+
CONVERSATION_URL,
|
|
213
|
+
CALENDAR,
|
|
214
|
+
CALENDAR_EVENTS_API,
|
|
215
|
+
CMR_MEETINGS,
|
|
216
|
+
CLAIM,
|
|
217
|
+
CONTROLS,
|
|
218
|
+
CONTENT,
|
|
219
|
+
COMPLETE,
|
|
220
|
+
WHITEBOARD,
|
|
221
|
+
GATHERING,
|
|
222
|
+
DEVELOPMENT,
|
|
223
|
+
DECLINE,
|
|
224
|
+
ERROR,
|
|
225
|
+
ENDED,
|
|
226
|
+
HECATE,
|
|
227
|
+
HOST,
|
|
228
|
+
JOIN,
|
|
229
|
+
LEAVE,
|
|
230
|
+
LIVE,
|
|
231
|
+
LOCAL,
|
|
232
|
+
LOCI,
|
|
233
|
+
LOCUS_URL,
|
|
234
|
+
END,
|
|
235
|
+
MAX_RANDOM_DELAY_FOR_MEETING_INFO,
|
|
236
|
+
MEETINGINFO,
|
|
237
|
+
MEET,
|
|
238
|
+
MEET_M,
|
|
239
|
+
MEDIA,
|
|
240
|
+
OFFLINE,
|
|
241
|
+
ONLINE,
|
|
242
|
+
PARTICIPANT,
|
|
243
|
+
PROVISIONAL_TYPE_DIAL_IN,
|
|
244
|
+
PROVISIONAL_TYPE_DIAL_OUT,
|
|
245
|
+
REMOTE,
|
|
246
|
+
READY,
|
|
247
|
+
SEND_DTMF_ENDPOINT,
|
|
248
|
+
SENDRECV,
|
|
249
|
+
SIP_URI,
|
|
250
|
+
SHARE,
|
|
251
|
+
TYPE,
|
|
252
|
+
VIDEO,
|
|
253
|
+
VIDEO_INPUT,
|
|
254
|
+
VIDEO_STATUS,
|
|
255
|
+
_ANSWER_,
|
|
256
|
+
_ACTIVE_,
|
|
257
|
+
_CALL_,
|
|
258
|
+
_CREATED_,
|
|
259
|
+
_CONFLICT_,
|
|
260
|
+
_CONVERSATION_URL_,
|
|
261
|
+
_ERROR_,
|
|
262
|
+
_FORCED_,
|
|
263
|
+
_IDLE_,
|
|
264
|
+
_IN_LOBBY_,
|
|
265
|
+
_IN_MEETING_,
|
|
266
|
+
_INCOMING_,
|
|
267
|
+
_IN_,
|
|
268
|
+
_ID_,
|
|
269
|
+
_JOIN_,
|
|
270
|
+
_JOINED_,
|
|
271
|
+
_LOCUS_ID_,
|
|
272
|
+
_LEFT_,
|
|
273
|
+
_MEETING_LINK_,
|
|
274
|
+
_MEETING_UUID_,
|
|
275
|
+
_MEETING_,
|
|
276
|
+
_MEETING_CENTER_,
|
|
277
|
+
_MEETING_ID_,
|
|
278
|
+
_NOT_IN_MEETING_,
|
|
279
|
+
_NONE_,
|
|
280
|
+
_OBSERVE_,
|
|
281
|
+
_PERSONAL_ROOM_,
|
|
282
|
+
_PEOPLE_,
|
|
283
|
+
_REQUESTED_,
|
|
284
|
+
_RESOURCE_ROOM_,
|
|
285
|
+
_RECEIVE_ONLY_,
|
|
286
|
+
_REMOVE_,
|
|
287
|
+
_ROOM_,
|
|
288
|
+
_SIP_BRIDGE_,
|
|
289
|
+
_SIP_URI_,
|
|
290
|
+
_SEND_RECEIVE_,
|
|
291
|
+
_SEND_ONLY_,
|
|
292
|
+
_INACTIVE_,
|
|
293
|
+
_SLIDES_,
|
|
294
|
+
_S_LINE,
|
|
295
|
+
_USER_,
|
|
296
|
+
_UNKNOWN_,
|
|
297
|
+
_WEBEX_MEETING_,
|
|
298
|
+
_WAIT_,
|
|
299
|
+
_MOVE_MEDIA_,
|
|
300
|
+
PARTICIPANT_DELTAS,
|
|
301
|
+
ALTERNATE_REDIRECT_TRUE,
|
|
302
|
+
HTTPS_PROTOCOL,
|
|
303
|
+
MEETINGS,
|
|
304
|
+
MEDIA_PEER_CONNECTION_NAME,
|
|
305
|
+
SHARE_PEER_CONNECTION_NAME,
|
|
306
|
+
USE_URI_LOOKUP_FALSE,
|
|
307
|
+
WWW_DOT,
|
|
308
|
+
WEBEX_DOT_COM,
|
|
309
|
+
CONVERSATION_SERVICE,
|
|
310
|
+
WBXAPPAPI_SERVICE,
|
|
311
|
+
DEFAULT_EXCLUDED_STATS,
|
|
312
|
+
LAYOUT_TYPES,
|
|
313
|
+
MODERATOR_TRUE,
|
|
314
|
+
MODERATOR_FALSE,
|
|
315
|
+
INTENT_TO_JOIN,
|
|
316
|
+
ICE_TIMEOUT,
|
|
317
|
+
ICE_FAIL_TIMEOUT,
|
|
318
|
+
RETRY_TIMEOUT,
|
|
319
|
+
PC_BAIL_TIMEOUT,
|
|
320
|
+
DIALER_REGEX,
|
|
321
|
+
IPV4_REGEX,
|
|
322
|
+
VALID_EMAIL_ADDRESS,
|
|
323
|
+
VALID_PMR_ADDRESS,
|
|
324
|
+
VALID_PMR_LINK,
|
|
325
|
+
VALID_PIN,
|
|
326
|
+
UUID_REG,
|
|
327
|
+
API,
|
|
328
|
+
CALENDAR_EVENTS,
|
|
329
|
+
DEFAULT_GET_STATS_FILTER,
|
|
330
|
+
RECORDING_STATE,
|
|
331
|
+
SHARE_STATUS,
|
|
332
|
+
EVENT_TRIGGERS,
|
|
333
|
+
EVENT_TYPES,
|
|
334
|
+
MEETING_REMOVED_REASON,
|
|
335
|
+
CALL_REMOVED_REASON,
|
|
336
|
+
SHARE_STOPPED_REASON,
|
|
337
|
+
EVENTS,
|
|
338
|
+
MEDIA_STATE,
|
|
339
|
+
ERROR_DICTIONARY,
|
|
340
|
+
FLOOR_ACTION,
|
|
341
|
+
FULL_STATE,
|
|
342
|
+
HTTP_VERBS,
|
|
343
|
+
ICE_GATHERING_STATE,
|
|
344
|
+
ICE_STATE,
|
|
345
|
+
CONNECTION_STATE,
|
|
346
|
+
LOCUS,
|
|
347
|
+
BREAKOUTS,
|
|
348
|
+
LOCUSINFO,
|
|
349
|
+
LOCUSEVENT,
|
|
350
|
+
MEDIA_TRACK_CONSTRAINT,
|
|
351
|
+
MEETING_ERRORS,
|
|
352
|
+
MEETING_END_REASON,
|
|
353
|
+
DISPLAY_HINTS,
|
|
354
|
+
SELF_ROLES,
|
|
355
|
+
MEETING_STATE,
|
|
356
|
+
MEETING_STATE_MACHINE,
|
|
357
|
+
MEETING_AUDIO_STATE_MACHINE,
|
|
358
|
+
MEETING_VIDEO_STATE_MACHINE,
|
|
359
|
+
PEER_CONNECTION_STATE,
|
|
360
|
+
RECONNECTION,
|
|
361
|
+
RESOURCE,
|
|
362
|
+
REACHABILITY,
|
|
363
|
+
ROAP,
|
|
364
|
+
MediaContent,
|
|
365
|
+
NETWORK_STATUS,
|
|
366
|
+
NETWORK_TYPE,
|
|
367
|
+
STATS,
|
|
368
|
+
MQA_STATS,
|
|
369
|
+
QUALITY_LEVELS,
|
|
370
|
+
AVAILABLE_RESOLUTIONS,
|
|
371
|
+
VIDEO_RESOLUTIONS,
|
|
372
|
+
MQA_INTEVAL,
|
|
373
|
+
MEDIA_DEVICES,
|
|
374
|
+
METRICS_JOIN_TIMES_MAX_DURATION,
|
|
375
|
+
PSTN_STATUS,
|
|
376
|
+
PASSWORD_STATUS,
|
|
377
|
+
MEETING_INFO_FAILURE_REASON,
|
|
378
|
+
BNR_STATUS,
|
|
379
|
+
EMBEDDED_APP_TYPES
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
export { CONSTANTS }
|
|
383
|
+
|
|
384
|
+
// @public (undocumented)
|
|
385
|
+
const CONTENT = "content";
|
|
386
|
+
|
|
387
|
+
// @public (undocumented)
|
|
388
|
+
const CONTROLS = "controls";
|
|
389
|
+
|
|
390
|
+
// @public (undocumented)
|
|
391
|
+
const CONVERSATION_SERVICE = "identityLookup";
|
|
392
|
+
|
|
393
|
+
// @public (undocumented)
|
|
394
|
+
const CONVERSATION_URL = "conversationUrl";
|
|
395
|
+
|
|
396
|
+
// @public (undocumented)
|
|
397
|
+
const _CONVERSATION_URL_ = "CONVERSATION_URL";
|
|
398
|
+
|
|
399
|
+
// @public (undocumented)
|
|
400
|
+
const CORRELATION_ID = "correlationId";
|
|
401
|
+
|
|
402
|
+
// @public (undocumented)
|
|
403
|
+
const _CREATED_ = "CREATED";
|
|
404
|
+
|
|
405
|
+
// @public (undocumented)
|
|
406
|
+
const DECLINE = "decline";
|
|
407
|
+
|
|
408
|
+
// @public (undocumented)
|
|
409
|
+
const DEFAULT_EXCLUDED_STATS: string[];
|
|
410
|
+
|
|
411
|
+
// @public (undocumented)
|
|
412
|
+
const DEFAULT_GET_STATS_FILTER: {
|
|
413
|
+
types: string[];
|
|
414
|
+
};
|
|
415
|
+
|
|
416
|
+
// @public (undocumented)
|
|
417
|
+
const DEVELOPMENT = "development";
|
|
418
|
+
|
|
419
|
+
// @public (undocumented)
|
|
420
|
+
const DIALER_REGEX: {
|
|
421
|
+
SIP_ADDRESS: RegExp;
|
|
422
|
+
PHONE_NUMBER: RegExp;
|
|
423
|
+
E164_FORMAT: RegExp;
|
|
424
|
+
};
|
|
425
|
+
|
|
426
|
+
// @public (undocumented)
|
|
427
|
+
const DISPLAY_HINTS: {
|
|
428
|
+
ADD_GUEST: string;
|
|
429
|
+
ROSTER_WAITING_TO_JOIN: string;
|
|
430
|
+
RECORDING_CONTROL_START: string;
|
|
431
|
+
RECORDING_CONTROL_PAUSE: string;
|
|
432
|
+
RECORDING_CONTROL_STOP: string;
|
|
433
|
+
RECORDING_CONTROL_RESUME: string;
|
|
434
|
+
LOCK_CONTROL_UNLOCK: string;
|
|
435
|
+
LOCK_CONTROL_LOCK: string;
|
|
436
|
+
LOCK_STATUS_LOCKED: string;
|
|
437
|
+
LOCK_STATUS_UNLOCKED: string;
|
|
438
|
+
RAISE_HAND: string;
|
|
439
|
+
LOWER_ALL_HANDS: string;
|
|
440
|
+
LOWER_SOMEONE_ELSES_HAND: string;
|
|
441
|
+
LEAVE_TRANSFER_HOST_END_MEETING: string;
|
|
442
|
+
LEAVE_END_MEETING: string;
|
|
443
|
+
CAPTION_START: string;
|
|
444
|
+
CAPTION_STATUS_ACTIVE: string;
|
|
445
|
+
DISPLAY_REAL_TIME_TRANSLATION: string;
|
|
446
|
+
ENABLE_CAPTION_PANEL: string;
|
|
447
|
+
DISPLAY_NON_ENGLISH_ASR: string;
|
|
448
|
+
TRANSCRIPTION_CONTROL_START: string;
|
|
449
|
+
TRANSCRIPTION_CONTROL_STOP: string;
|
|
450
|
+
WEBEX_ASSISTANT_STATUS_ACTIVE: string;
|
|
451
|
+
WAITING_FOR_OTHERS: string;
|
|
452
|
+
ENABLE_REACTIONS: string;
|
|
453
|
+
DISABLE_REACTIONS: string;
|
|
454
|
+
REACTIONS_ACTIVE: string;
|
|
455
|
+
REACTIONS_INACTIVE: string;
|
|
456
|
+
ENABLE_MUTE_ON_ENTRY: string;
|
|
457
|
+
DISABLE_MUTE_ON_ENTRY: string;
|
|
458
|
+
ENABLE_HARD_MUTE: string;
|
|
459
|
+
DISABLE_HARD_MUTE: string;
|
|
460
|
+
MUTE_ALL: string;
|
|
461
|
+
UNMUTE_ALL: string;
|
|
462
|
+
BREAKOUT_MANAGEMENT: string;
|
|
463
|
+
UCF_SUPPRESS_BREAKOUTS_SUPPORT: string;
|
|
464
|
+
DISABLE_ASK_FOR_HELP: string;
|
|
465
|
+
DISABLE_BREAKOUT_PREASSIGNMENTS: string;
|
|
466
|
+
DISABLE_LOBBY_TO_BREAKOUT: string;
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
// @public (undocumented)
|
|
470
|
+
const EMBEDDED_APP_TYPES: {
|
|
471
|
+
SLIDO: string;
|
|
472
|
+
OTHER: string;
|
|
473
|
+
};
|
|
474
|
+
|
|
475
|
+
// @public (undocumented)
|
|
476
|
+
const END = "end";
|
|
477
|
+
|
|
478
|
+
// @public (undocumented)
|
|
479
|
+
const ENDED = "ended";
|
|
480
|
+
|
|
481
|
+
// @public (undocumented)
|
|
482
|
+
const ERROR = "error";
|
|
483
|
+
|
|
484
|
+
// @public (undocumented)
|
|
485
|
+
const _ERROR_ = "ERROR";
|
|
486
|
+
|
|
487
|
+
// @public (undocumented)
|
|
488
|
+
const ERROR_DICTIONARY: {
|
|
489
|
+
PARAMETER: {
|
|
490
|
+
NAME: string;
|
|
491
|
+
MESSAGE: string;
|
|
492
|
+
CODE: number;
|
|
493
|
+
};
|
|
494
|
+
INTENT_TO_JOIN: {
|
|
495
|
+
NAME: string;
|
|
496
|
+
MESSAGE: string;
|
|
497
|
+
CODE: number;
|
|
498
|
+
};
|
|
499
|
+
JOIN_MEETING: {
|
|
500
|
+
NAME: string;
|
|
501
|
+
MESSAGE: string;
|
|
502
|
+
CODE: number;
|
|
503
|
+
};
|
|
504
|
+
RECONNECTION: {
|
|
505
|
+
NAME: string;
|
|
506
|
+
MESSAGE: string;
|
|
507
|
+
CODE: number;
|
|
508
|
+
};
|
|
509
|
+
MEDIA: {
|
|
510
|
+
NAME: string;
|
|
511
|
+
MESSAGE: string;
|
|
512
|
+
CODE: number;
|
|
513
|
+
};
|
|
514
|
+
PERMISSION: {
|
|
515
|
+
NAME: string;
|
|
516
|
+
MESSAGE: string;
|
|
517
|
+
CODE: number;
|
|
518
|
+
};
|
|
519
|
+
STATS: {
|
|
520
|
+
NAME: string;
|
|
521
|
+
MESSAGE: string;
|
|
522
|
+
CODE: number;
|
|
523
|
+
};
|
|
524
|
+
PASSWORD: {
|
|
525
|
+
NAME: string;
|
|
526
|
+
MESSAGE: string;
|
|
527
|
+
CODE: number;
|
|
528
|
+
};
|
|
529
|
+
CAPTCHA: {
|
|
530
|
+
NAME: string;
|
|
531
|
+
MESSAGE: string;
|
|
532
|
+
CODE: number;
|
|
533
|
+
};
|
|
534
|
+
BREAKOUT_EDIT: {
|
|
535
|
+
NAME: string;
|
|
536
|
+
MESSAGE: string;
|
|
537
|
+
CODE: number;
|
|
538
|
+
};
|
|
539
|
+
};
|
|
540
|
+
|
|
541
|
+
// @public (undocumented)
|
|
542
|
+
const EVENT_TRIGGERS: {
|
|
543
|
+
MEETINGS_READY: string;
|
|
544
|
+
MEETINGS_REGISTERED: string;
|
|
545
|
+
MEETINGS_UNREGISTERED: string;
|
|
546
|
+
MEDIA_READY: string;
|
|
547
|
+
MEDIA_STOPPED: string;
|
|
548
|
+
MEDIA_UPDATE: string;
|
|
549
|
+
MEDIA_CODEC_MISSING: string;
|
|
550
|
+
MEDIA_CODEC_LOADED: string;
|
|
551
|
+
MEETING_STARTED_SHARING_LOCAL: string;
|
|
552
|
+
MEETING_STOPPED_SHARING_LOCAL: string;
|
|
553
|
+
MEETING_STARTED_SHARING_REMOTE: string;
|
|
554
|
+
MEETING_STOPPED_SHARING_REMOTE: string;
|
|
555
|
+
MEETING_STARTED_SHARING_WHITEBOARD: string;
|
|
556
|
+
MEETING_STOPPED_SHARING_WHITEBOARD: string;
|
|
557
|
+
MEETING_MEDIA_LOCAL_STARTED: string;
|
|
558
|
+
MEETING_MEDIA_REMOTE_STARTED: string;
|
|
559
|
+
MEETING_STARTED_RECORDING: string;
|
|
560
|
+
MEETING_STOPPED_RECORDING: string;
|
|
561
|
+
MEETING_STARTED_RECEIVING_TRANSCRIPTION: string;
|
|
562
|
+
MEETING_STOPPED_RECEIVING_TRANSCRIPTION: string;
|
|
563
|
+
MEETING_RECEIVE_REACTIONS: string;
|
|
564
|
+
MEETING_PAUSED_RECORDING: string;
|
|
565
|
+
MEETING_RESUMED_RECORDING: string;
|
|
566
|
+
MEETING_ADDED: string;
|
|
567
|
+
MEETING_REMOVED: string;
|
|
568
|
+
MEETING_RINGING: string;
|
|
569
|
+
MEETING_RINGING_STOP: string;
|
|
570
|
+
MEETING_SELF_LOBBY_WAITING: string;
|
|
571
|
+
MEETING_SELF_GUEST_ADMITTED: string;
|
|
572
|
+
MEETING_SELF_VIDEO_MUTED_BY_OTHERS: string;
|
|
573
|
+
MEETING_SELF_VIDEO_UNMUTED_BY_OTHERS: string;
|
|
574
|
+
MEETING_SELF_MUTED_BY_OTHERS: string;
|
|
575
|
+
MEETING_SELF_UNMUTED_BY_OTHERS: string;
|
|
576
|
+
MEETING_SELF_REQUESTED_TO_UNMUTE: string;
|
|
577
|
+
MEETING_SELF_PHONE_AUDIO_UPDATE: string;
|
|
578
|
+
MEETING_SELF_CANNOT_VIEW_PARTICIPANT_LIST: string;
|
|
579
|
+
MEETING_SELF_IS_SHARING_BLOCKED: string;
|
|
580
|
+
MEETING_CONTROLS_LAYOUT_UPDATE: string;
|
|
581
|
+
MEETING_ENTRY_EXIT_TONE_UPDATE: string;
|
|
582
|
+
MEETING_BREAKOUTS_UPDATE: string;
|
|
583
|
+
MEETING_BREAKOUTS_CLOSING: string;
|
|
584
|
+
MEETING_BREAKOUTS_MESSAGE: string;
|
|
585
|
+
MEMBERS_UPDATE: string;
|
|
586
|
+
MEMBERS_CONTENT_UPDATE: string;
|
|
587
|
+
MEMBERS_HOST_UPDATE: string;
|
|
588
|
+
MEMBERS_SELF_UPDATE: string;
|
|
589
|
+
MEETING_RECONNECTION_STARTING: string;
|
|
590
|
+
MEETING_RECONNECTION_SUCCESS: string;
|
|
591
|
+
MEETING_RECONNECTION_FAILURE: string;
|
|
592
|
+
MEETING_UNLOCKED: string;
|
|
593
|
+
MEETING_LOCKED: string;
|
|
594
|
+
MEETING_INFO_AVAILABLE: string;
|
|
595
|
+
MEETING_LOG_UPLOAD_SUCCESS: string;
|
|
596
|
+
MEETING_LOG_UPLOAD_FAILURE: string;
|
|
597
|
+
MEETING_ACTIONS_UPDATE: string;
|
|
598
|
+
MEETING_STATE_CHANGE: string;
|
|
599
|
+
MEETING_MEETING_CONTAINER_UPDATE: string;
|
|
600
|
+
MEETING_EMBEDDED_APPS_UPDATE: string;
|
|
601
|
+
MEDIA_QUALITY: string;
|
|
602
|
+
MEETINGS_NETWORK_DISCONNECTED: string;
|
|
603
|
+
MEETINGS_NETWORK_CONNECTED: string;
|
|
604
|
+
MEETING_SELF_LEFT: string;
|
|
605
|
+
NETWORK_QUALITY: string;
|
|
606
|
+
MEDIA_NEGOTIATED: string;
|
|
607
|
+
ACTIVE_SPEAKER_CHANGED: string;
|
|
608
|
+
REMOTE_VIDEO_SOURCE_COUNT_CHANGED: string;
|
|
609
|
+
REMOTE_AUDIO_SOURCE_COUNT_CHANGED: string;
|
|
610
|
+
REMOTE_MEDIA_AUDIO_CREATED: string;
|
|
611
|
+
REMOTE_MEDIA_SCREEN_SHARE_AUDIO_CREATED: string;
|
|
612
|
+
REMOTE_MEDIA_VIDEO_LAYOUT_CHANGED: string;
|
|
613
|
+
};
|
|
614
|
+
|
|
615
|
+
// @public (undocumented)
|
|
616
|
+
const EVENT_TYPES: {
|
|
617
|
+
SELF: string;
|
|
618
|
+
OTHER: string;
|
|
619
|
+
LOCAL: string;
|
|
620
|
+
REMOTE: string;
|
|
621
|
+
REMOTE_AUDIO: string;
|
|
622
|
+
REMOTE_VIDEO: string;
|
|
623
|
+
REMOTE_SHARE: string;
|
|
624
|
+
LOCAL_SHARE: string;
|
|
625
|
+
ERROR: string;
|
|
626
|
+
};
|
|
627
|
+
|
|
628
|
+
// @public (undocumented)
|
|
629
|
+
const EVENTS: {
|
|
630
|
+
SELF_UNADMITTED_GUEST: string;
|
|
631
|
+
SELF_ADMITTED_GUEST: string;
|
|
632
|
+
MEDIA_INACTIVITY: string;
|
|
633
|
+
CONVERSATION_URL_UPDATE: string;
|
|
634
|
+
DESTROY_MEETING: string;
|
|
635
|
+
REQUEST_UPLOAD_LOGS: string;
|
|
636
|
+
REMOTE_RESPONSE: string;
|
|
637
|
+
LOCUS_INFO_UPDATE_PARTICIPANTS: string;
|
|
638
|
+
LOCUS_INFO_UPDATE_HOST: string;
|
|
639
|
+
LOCUS_INFO_UPDATE_MEDIA_SHARES: string;
|
|
640
|
+
LOCUS_INFO_UPDATE_SELF: string;
|
|
641
|
+
LOCUS_INFO_UPDATE_URL: string;
|
|
642
|
+
LOCUS_INFO_CAN_ASSIGN_HOST: string;
|
|
643
|
+
DISCONNECT_DUE_TO_INACTIVITY: string;
|
|
644
|
+
};
|
|
645
|
+
|
|
646
|
+
// @public (undocumented)
|
|
647
|
+
const FLOOR_ACTION: {
|
|
648
|
+
GRANTED: string;
|
|
649
|
+
RELEASED: string;
|
|
650
|
+
ACCEPTED: string;
|
|
651
|
+
};
|
|
652
|
+
|
|
653
|
+
// @public (undocumented)
|
|
654
|
+
const _FORCED_ = "FORCED";
|
|
655
|
+
|
|
656
|
+
// @public (undocumented)
|
|
657
|
+
const FULL_STATE: {
|
|
658
|
+
INITIALIZING: string;
|
|
659
|
+
INACTIVE: string;
|
|
660
|
+
ACTIVE: string;
|
|
661
|
+
TERMINATING: string;
|
|
662
|
+
UNKNOWN: string;
|
|
663
|
+
};
|
|
664
|
+
|
|
665
|
+
// @public (undocumented)
|
|
666
|
+
const GATHERING = "gathering";
|
|
667
|
+
|
|
668
|
+
// @public
|
|
669
|
+
function getMaxFs(paneSize: RemoteVideoResolution): number;
|
|
670
|
+
|
|
671
|
+
// @public (undocumented)
|
|
672
|
+
const HECATE = "hecate";
|
|
673
|
+
|
|
674
|
+
// @public (undocumented)
|
|
675
|
+
const HOST = "host";
|
|
676
|
+
|
|
677
|
+
// @public (undocumented)
|
|
678
|
+
const HTTP_VERBS: {
|
|
679
|
+
PUT: string;
|
|
680
|
+
POST: string;
|
|
681
|
+
GET: string;
|
|
682
|
+
PATCH: string;
|
|
683
|
+
DELETE: string;
|
|
684
|
+
};
|
|
685
|
+
|
|
686
|
+
// @public (undocumented)
|
|
687
|
+
const HTTPS_PROTOCOL = "https://";
|
|
688
|
+
|
|
689
|
+
// @public (undocumented)
|
|
690
|
+
const ICE_FAIL_TIMEOUT = 3000;
|
|
691
|
+
|
|
692
|
+
// @public (undocumented)
|
|
693
|
+
const ICE_GATHERING_STATE: {
|
|
694
|
+
NEW: string;
|
|
695
|
+
GATHERING: string;
|
|
696
|
+
COMPLETE: string;
|
|
697
|
+
};
|
|
698
|
+
|
|
699
|
+
// @public (undocumented)
|
|
700
|
+
const ICE_STATE: {
|
|
701
|
+
CHECKING: string;
|
|
702
|
+
CONNECTED: string;
|
|
703
|
+
CLOSED: string;
|
|
704
|
+
COMPLETED: string;
|
|
705
|
+
FAILED: string;
|
|
706
|
+
DISCONNECTED: string;
|
|
707
|
+
};
|
|
708
|
+
|
|
709
|
+
// @public (undocumented)
|
|
710
|
+
const ICE_TIMEOUT = 2000;
|
|
711
|
+
|
|
712
|
+
// @public (undocumented)
|
|
713
|
+
const _ID_ = "id";
|
|
714
|
+
|
|
715
|
+
// @public (undocumented)
|
|
716
|
+
const _IDLE_ = "IDLE";
|
|
717
|
+
|
|
718
|
+
// @public (undocumented)
|
|
719
|
+
const _IN_ = "IN";
|
|
720
|
+
|
|
721
|
+
// @public (undocumented)
|
|
722
|
+
const _IN_LOBBY_ = "IN_LOBBY";
|
|
723
|
+
|
|
724
|
+
// @public (undocumented)
|
|
725
|
+
const _IN_MEETING_ = "IN_MEETING";
|
|
726
|
+
|
|
727
|
+
// @public (undocumented)
|
|
728
|
+
const _INACTIVE_ = "INACTIVE";
|
|
729
|
+
|
|
730
|
+
// @public (undocumented)
|
|
731
|
+
const _INCOMING_ = "INCOMING";
|
|
732
|
+
|
|
733
|
+
// @public (undocumented)
|
|
734
|
+
const INTENT_TO_JOIN: number[];
|
|
735
|
+
|
|
736
|
+
// @public (undocumented)
|
|
737
|
+
const IPV4_REGEX: RegExp;
|
|
738
|
+
|
|
739
|
+
// @public (undocumented)
|
|
740
|
+
const JOIN = "join";
|
|
741
|
+
|
|
742
|
+
// @public (undocumented)
|
|
743
|
+
const _JOIN_ = "JOIN";
|
|
744
|
+
|
|
745
|
+
// @public (undocumented)
|
|
746
|
+
const _JOINED_ = "JOINED";
|
|
747
|
+
|
|
748
|
+
// @public
|
|
749
|
+
const LAYOUT_TYPES: string[];
|
|
750
|
+
|
|
751
|
+
// @public (undocumented)
|
|
752
|
+
const LEAVE = "leave";
|
|
753
|
+
|
|
754
|
+
// @public (undocumented)
|
|
755
|
+
const _LEFT_ = "LEFT";
|
|
756
|
+
|
|
757
|
+
// @public (undocumented)
|
|
758
|
+
const LIVE = "live";
|
|
759
|
+
|
|
760
|
+
// @public (undocumented)
|
|
761
|
+
const LOCAL = "local";
|
|
762
|
+
|
|
763
|
+
// @public (undocumented)
|
|
764
|
+
const LOCI = "loci";
|
|
765
|
+
|
|
766
|
+
// @public (undocumented)
|
|
767
|
+
const LOCUS: {
|
|
768
|
+
STATE: {
|
|
769
|
+
INACTIVE: string;
|
|
770
|
+
ENDED: string;
|
|
771
|
+
INITIALIZING: string;
|
|
772
|
+
};
|
|
773
|
+
SEQUENCE: {
|
|
774
|
+
UN_DEF: string;
|
|
775
|
+
EMPTY: string;
|
|
776
|
+
DEF: string;
|
|
777
|
+
NA: string;
|
|
778
|
+
RANGE_START: string;
|
|
779
|
+
RANGE_END: string;
|
|
780
|
+
};
|
|
781
|
+
SYNCDEBUG: string;
|
|
782
|
+
};
|
|
783
|
+
|
|
784
|
+
// @public (undocumented)
|
|
785
|
+
const _LOCUS_ID_ = "LOCUS_ID";
|
|
786
|
+
|
|
787
|
+
// @public (undocumented)
|
|
788
|
+
const LOCUS_URL = "locusUrl";
|
|
789
|
+
|
|
790
|
+
// @public (undocumented)
|
|
791
|
+
const LOCUSEVENT: {
|
|
792
|
+
LOCUS_MERCURY: string;
|
|
793
|
+
CONTROLS_UPDATED: string;
|
|
794
|
+
DIFFERENCE: string;
|
|
795
|
+
BREAKOUT_ROSTER: string;
|
|
796
|
+
FLOOR_GRANTED: string;
|
|
797
|
+
FLOOR_RELEASED: string;
|
|
798
|
+
MESSAGE_ROAP: string;
|
|
799
|
+
PARTICIPANT_JOIN: string;
|
|
800
|
+
PARTICIPANT_LEFT: string;
|
|
801
|
+
PARTICIPANT_DECLINED: string;
|
|
802
|
+
PARTICIPANT_UPDATED: string;
|
|
803
|
+
PARTICIPANT_CONTROLS_UPDATED: string;
|
|
804
|
+
PARTICIPANT_ROLES_UPDATED: string;
|
|
805
|
+
PARTICIPANT_AUDIO_MUTED: string;
|
|
806
|
+
PARTICIPANT_AUDIO_UNMUTED: string;
|
|
807
|
+
PARTICIPANT_VIDEO_MUTED: string;
|
|
808
|
+
PARTICIPANT_VIDEO_UNMUTED: string;
|
|
809
|
+
RECORDING_STARTED: string;
|
|
810
|
+
RECORDING_START_FAILED: string;
|
|
811
|
+
RECORDING_STOPPED: string;
|
|
812
|
+
SELF_CHANGED: string;
|
|
813
|
+
};
|
|
814
|
+
|
|
815
|
+
// @public (undocumented)
|
|
816
|
+
const LOCUSINFO: {
|
|
817
|
+
EVENTS: {
|
|
818
|
+
CONTROLS_MEETING_LAYOUT_UPDATED: string;
|
|
819
|
+
CONTROLS_RECORDING_UPDATED: string;
|
|
820
|
+
CONTROLS_MEETING_TRANSCRIBE_UPDATED: string;
|
|
821
|
+
CONTROLS_MEETING_BREAKOUT_UPDATED: string;
|
|
822
|
+
CONTROLS_MEETING_CONTAINER_UPDATED: string;
|
|
823
|
+
CONTROLS_ENTRY_EXIT_TONE_UPDATED: string;
|
|
824
|
+
SELF_UNADMITTED_GUEST: string;
|
|
825
|
+
SELF_ADMITTED_GUEST: string;
|
|
826
|
+
SELF_REMOTE_VIDEO_MUTE_STATUS_UPDATED: string;
|
|
827
|
+
SELF_REMOTE_MUTE_STATUS_UPDATED: string;
|
|
828
|
+
LOCAL_UNMUTE_REQUESTED: string;
|
|
829
|
+
LOCAL_UNMUTE_REQUIRED: string;
|
|
830
|
+
SELF_MODERATOR_CHANGED: string;
|
|
831
|
+
MEETING_UPDATE: string;
|
|
832
|
+
MEDIA_STATUS_CHANGE: string;
|
|
833
|
+
FULL_STATE_TYPE_UPDATE: string;
|
|
834
|
+
FULL_STATE_MEETING_STATE_CHANGE: string;
|
|
835
|
+
MEETING_STATE_CHANGE_TO_ACTIVE: string;
|
|
836
|
+
MEETING_INFO_UPDATED: string;
|
|
837
|
+
MEETING_LOCKED: string;
|
|
838
|
+
MEETING_UNLOCKED: string;
|
|
839
|
+
SELF_OBSERVING: string;
|
|
840
|
+
DISCONNECT_DUE_TO_INACTIVITY: string;
|
|
841
|
+
EMBEDDED_APPS_UPDATED: string;
|
|
842
|
+
SELF_CANNOT_VIEW_PARTICIPANT_LIST_CHANGE: string;
|
|
843
|
+
SELF_IS_SHARING_BLOCKED_CHANGE: string;
|
|
844
|
+
SELF_MEETING_BREAKOUTS_CHANGED: string;
|
|
845
|
+
MEDIA_INACTIVITY: string;
|
|
846
|
+
LINKS_SERVICES: string;
|
|
847
|
+
};
|
|
848
|
+
};
|
|
849
|
+
|
|
850
|
+
// @public (undocumented)
|
|
851
|
+
const MAX_RANDOM_DELAY_FOR_MEETING_INFO: number;
|
|
852
|
+
|
|
853
|
+
// @public (undocumented)
|
|
854
|
+
const MEDIA = "media";
|
|
855
|
+
|
|
856
|
+
// @public (undocumented)
|
|
857
|
+
const MEDIA_DEVICES: {
|
|
858
|
+
MICROPHONE: string;
|
|
859
|
+
SPEAKER: string;
|
|
860
|
+
CAMERA: string;
|
|
861
|
+
};
|
|
862
|
+
|
|
863
|
+
// @public (undocumented)
|
|
864
|
+
const MEDIA_PEER_CONNECTION_NAME = "MediaPeerConnection";
|
|
865
|
+
|
|
866
|
+
// @public (undocumented)
|
|
867
|
+
const MEDIA_STATE: {
|
|
868
|
+
active: string;
|
|
869
|
+
inactive: string;
|
|
870
|
+
};
|
|
871
|
+
|
|
872
|
+
// @public (undocumented)
|
|
873
|
+
const MEDIA_TRACK_CONSTRAINT: {
|
|
874
|
+
CURSOR: {
|
|
875
|
+
AWLAYS: string;
|
|
876
|
+
MOTION: string;
|
|
877
|
+
NEVER: string;
|
|
878
|
+
};
|
|
879
|
+
};
|
|
880
|
+
|
|
881
|
+
// @public (undocumented)
|
|
882
|
+
const MEDIA_UPDATE_TYPE: {
|
|
883
|
+
ALL: string;
|
|
884
|
+
AUDIO: string;
|
|
885
|
+
VIDEO: string;
|
|
886
|
+
SHARE: string;
|
|
887
|
+
LAMBDA: string;
|
|
888
|
+
};
|
|
889
|
+
|
|
890
|
+
// @public (undocumented)
|
|
891
|
+
const MediaContent: {
|
|
892
|
+
main: string;
|
|
893
|
+
slides: string;
|
|
894
|
+
};
|
|
895
|
+
|
|
896
|
+
// @public (undocumented)
|
|
897
|
+
const MEET = "meet";
|
|
898
|
+
|
|
899
|
+
// @public (undocumented)
|
|
900
|
+
const MEET_M = "m";
|
|
901
|
+
|
|
902
|
+
declare namespace Meeting {
|
|
903
|
+
export {
|
|
904
|
+
MEDIA_UPDATE_TYPE,
|
|
905
|
+
Meeting_2 as default
|
|
906
|
+
}
|
|
907
|
+
}
|
|
908
|
+
export { Meeting }
|
|
909
|
+
|
|
910
|
+
// @public (undocumented)
|
|
911
|
+
const _MEETING_ = "MEETING";
|
|
912
|
+
|
|
913
|
+
// @public
|
|
914
|
+
class Meeting_2 extends StatelessWebexPlugin {
|
|
915
|
+
constructor(attrs: any, options: object);
|
|
916
|
+
acknowledge(type: string): any;
|
|
917
|
+
addMedia(options?: any): any;
|
|
918
|
+
admit(memberIds: Array<any>, sessionLocusUrls?: {
|
|
919
|
+
authorizingLocusUrl: string;
|
|
920
|
+
mainLocusUrl: string;
|
|
921
|
+
}): any;
|
|
922
|
+
// (undocumented)
|
|
923
|
+
attrs: any;
|
|
924
|
+
// (undocumented)
|
|
925
|
+
audio: any;
|
|
926
|
+
// (undocumented)
|
|
927
|
+
breakouts: any;
|
|
928
|
+
// (undocumented)
|
|
929
|
+
callEvents: any[];
|
|
930
|
+
cancelPhoneInvite(invitee: {
|
|
931
|
+
phoneNumber: string;
|
|
932
|
+
}): any;
|
|
933
|
+
canUpdateMedia(): boolean;
|
|
934
|
+
changeVideoLayout(layoutType?: string, renderInfo?: {
|
|
935
|
+
main: {
|
|
936
|
+
width: number;
|
|
937
|
+
height: number;
|
|
938
|
+
};
|
|
939
|
+
content: {
|
|
940
|
+
width: number;
|
|
941
|
+
height: number;
|
|
942
|
+
};
|
|
943
|
+
}): any;
|
|
944
|
+
clearMeetingData: () => void;
|
|
945
|
+
closeLocalShare(): any;
|
|
946
|
+
closeLocalStream(): any;
|
|
947
|
+
closePeerConnections(): Promise<void>;
|
|
948
|
+
// @deprecated
|
|
949
|
+
closeRemoteStream(): void;
|
|
950
|
+
closeRemoteTracks(): Promise<[any, any, any]>;
|
|
951
|
+
// Warning: (ae-forgotten-export) The symbol "ControlsOptionsManager" needs to be exported by the entry point index.d.ts
|
|
952
|
+
//
|
|
953
|
+
// (undocumented)
|
|
954
|
+
controlsOptionsManager: ControlsOptionsManager;
|
|
955
|
+
// (undocumented)
|
|
956
|
+
conversationUrl: string;
|
|
957
|
+
// (undocumented)
|
|
958
|
+
correlationId: string;
|
|
959
|
+
createMediaConnection(turnServerInfo: any): any;
|
|
960
|
+
decline(reason: string): any;
|
|
961
|
+
// (undocumented)
|
|
962
|
+
deferJoin: Promise<any>;
|
|
963
|
+
// (undocumented)
|
|
964
|
+
destination: string;
|
|
965
|
+
// (undocumented)
|
|
966
|
+
destinationType: string;
|
|
967
|
+
// (undocumented)
|
|
968
|
+
deviceUrl: string;
|
|
969
|
+
// (undocumented)
|
|
970
|
+
dialInDeviceStatus: string;
|
|
971
|
+
// (undocumented)
|
|
972
|
+
dialInUrl: string;
|
|
973
|
+
// (undocumented)
|
|
974
|
+
dialOutDeviceStatus: string;
|
|
975
|
+
// (undocumented)
|
|
976
|
+
dialOutUrl: string;
|
|
977
|
+
disconnectPhoneAudio(): Promise<[any, any]>;
|
|
978
|
+
// (undocumented)
|
|
979
|
+
endCallInitiateJoinReq: any;
|
|
980
|
+
// (undocumented)
|
|
981
|
+
endJoinReqResp: any;
|
|
982
|
+
// (undocumented)
|
|
983
|
+
endLocalSDPGenRemoteSDPRecvDelay: any;
|
|
984
|
+
endMeetingForAll(): any;
|
|
985
|
+
fetchMeetingInfo({ password, captchaCode, }: {
|
|
986
|
+
password?: string;
|
|
987
|
+
captchaCode?: string;
|
|
988
|
+
}): Promise<void>;
|
|
989
|
+
// (undocumented)
|
|
990
|
+
fetchMeetingInfoTimeoutId: NodeJS.Timeout;
|
|
991
|
+
// (undocumented)
|
|
992
|
+
floorGrantPending: boolean;
|
|
993
|
+
forwardEvent(eventEmitter: any, eventTypeToForward: any, meetingEventType: any): void;
|
|
994
|
+
getAnalyzerMetricsPrePayload(options: {
|
|
995
|
+
event: string;
|
|
996
|
+
trackingId: string;
|
|
997
|
+
locus: object;
|
|
998
|
+
mediaConnections: Array<any>;
|
|
999
|
+
errors: object;
|
|
1000
|
+
} | any): {};
|
|
1001
|
+
// (undocumented)
|
|
1002
|
+
getCallInitiateJoinReq(): number;
|
|
1003
|
+
getDevices: () => any;
|
|
1004
|
+
// (undocumented)
|
|
1005
|
+
getJoinReqResp(): number;
|
|
1006
|
+
// (undocumented)
|
|
1007
|
+
getLocalSDPGenRemoteSDPRecvDelay(): number;
|
|
1008
|
+
// (undocumented)
|
|
1009
|
+
getMediaConnectionDebugId(): string;
|
|
1010
|
+
getMediaStreams: (mediaDirection: any, audioVideo?: any, sharePreferences?: any) => any;
|
|
1011
|
+
getMembers(): Members;
|
|
1012
|
+
// (undocumented)
|
|
1013
|
+
getSendingMediaDelayDuration(typeMedia: string): number;
|
|
1014
|
+
// (undocumented)
|
|
1015
|
+
getSetupDelayDuration(typeMedia: string): number;
|
|
1016
|
+
getSupportedDevices: ({ sendAudio, sendVideo, }: {
|
|
1017
|
+
sendAudio: boolean;
|
|
1018
|
+
sendVideo: boolean;
|
|
1019
|
+
}) => any;
|
|
1020
|
+
// (undocumented)
|
|
1021
|
+
getTotalJmt(): number;
|
|
1022
|
+
// (undocumented)
|
|
1023
|
+
guest: any;
|
|
1024
|
+
handleDataChannelUrlChange(datachannelUrl: any): void;
|
|
1025
|
+
handleRoapFailure: (error: any) => void;
|
|
1026
|
+
// (undocumented)
|
|
1027
|
+
hasJoinedOnce: boolean;
|
|
1028
|
+
// (undocumented)
|
|
1029
|
+
hasWebsocketConnected: boolean;
|
|
1030
|
+
// (undocumented)
|
|
1031
|
+
hostId: string;
|
|
1032
|
+
// (undocumented)
|
|
1033
|
+
id: string;
|
|
1034
|
+
// Warning: (ae-forgotten-export) The symbol "InMeetingActions" needs to be exported by the entry point index.d.ts
|
|
1035
|
+
//
|
|
1036
|
+
// (undocumented)
|
|
1037
|
+
inMeetingActions: InMeetingActions;
|
|
1038
|
+
invite(invitee: {
|
|
1039
|
+
emailAddress: string;
|
|
1040
|
+
email: string;
|
|
1041
|
+
phoneNumber: string;
|
|
1042
|
+
}, alertIfActive?: boolean): any;
|
|
1043
|
+
isAudioConnected(): boolean;
|
|
1044
|
+
isAudioMuted(): any;
|
|
1045
|
+
isAudioSelf(): any;
|
|
1046
|
+
// (undocumented)
|
|
1047
|
+
isLocalShareLive: boolean;
|
|
1048
|
+
// (undocumented)
|
|
1049
|
+
isMultistream: boolean;
|
|
1050
|
+
isReactionsSupported(): boolean;
|
|
1051
|
+
// (undocumented)
|
|
1052
|
+
isRoapInProgress: boolean;
|
|
1053
|
+
// (undocumented)
|
|
1054
|
+
isSharing: boolean;
|
|
1055
|
+
isTranscriptionSupported(): boolean;
|
|
1056
|
+
isVideoConnected(): boolean;
|
|
1057
|
+
isVideoMuted(): any;
|
|
1058
|
+
isVideoSelf(): any;
|
|
1059
|
+
join(options?: any): any;
|
|
1060
|
+
// (undocumented)
|
|
1061
|
+
joinedWith: any;
|
|
1062
|
+
joinWithMedia(options?: {
|
|
1063
|
+
joinOptions?: any;
|
|
1064
|
+
mediaSettings: any;
|
|
1065
|
+
audioVideoOptions?: any;
|
|
1066
|
+
}): any;
|
|
1067
|
+
// (undocumented)
|
|
1068
|
+
keepAliveTimerId: NodeJS.Timeout;
|
|
1069
|
+
// (undocumented)
|
|
1070
|
+
lastVideoLayoutInfo: any;
|
|
1071
|
+
leave(options?: {
|
|
1072
|
+
resourceId?: string;
|
|
1073
|
+
reason?: any;
|
|
1074
|
+
}): any;
|
|
1075
|
+
lockMeeting(): any;
|
|
1076
|
+
// (undocumented)
|
|
1077
|
+
locusId: any;
|
|
1078
|
+
// (undocumented)
|
|
1079
|
+
locusInfo: any;
|
|
1080
|
+
// (undocumented)
|
|
1081
|
+
locusUrl: string;
|
|
1082
|
+
// (undocumented)
|
|
1083
|
+
mediaConnections: any[];
|
|
1084
|
+
// (undocumented)
|
|
1085
|
+
mediaId?: string;
|
|
1086
|
+
mediaNegotiatedEvent: () => void;
|
|
1087
|
+
// Warning: (ae-forgotten-export) The symbol "MediaProperties" needs to be exported by the entry point index.d.ts
|
|
1088
|
+
//
|
|
1089
|
+
// (undocumented)
|
|
1090
|
+
mediaProperties: MediaProperties;
|
|
1091
|
+
// (undocumented)
|
|
1092
|
+
mediaRequestManagers: {
|
|
1093
|
+
audio: MediaRequestManager;
|
|
1094
|
+
video: MediaRequestManager;
|
|
1095
|
+
screenShareAudio: MediaRequestManager;
|
|
1096
|
+
screenShareVideo: MediaRequestManager;
|
|
1097
|
+
};
|
|
1098
|
+
// (undocumented)
|
|
1099
|
+
meetingFiniteStateMachine: any;
|
|
1100
|
+
// (undocumented)
|
|
1101
|
+
meetingInfo: object;
|
|
1102
|
+
// (undocumented)
|
|
1103
|
+
meetingInfoFailureReason: string;
|
|
1104
|
+
// (undocumented)
|
|
1105
|
+
meetingJoinUrl: any;
|
|
1106
|
+
// (undocumented)
|
|
1107
|
+
meetingNumber: any;
|
|
1108
|
+
// Warning: (ae-forgotten-export) The symbol "MeetingRequest" needs to be exported by the entry point index.d.ts
|
|
1109
|
+
//
|
|
1110
|
+
// (undocumented)
|
|
1111
|
+
meetingRequest: MeetingRequest;
|
|
1112
|
+
// (undocumented)
|
|
1113
|
+
meetingState: any;
|
|
1114
|
+
// Warning: (ae-forgotten-export) The symbol "Members" needs to be exported by the entry point index.d.ts
|
|
1115
|
+
//
|
|
1116
|
+
// (undocumented)
|
|
1117
|
+
members: Members;
|
|
1118
|
+
moveFrom(resourceId: string): any;
|
|
1119
|
+
moveTo(resourceId: string): any;
|
|
1120
|
+
mute(memberId: string, mute?: boolean): any;
|
|
1121
|
+
muteAudio(): any;
|
|
1122
|
+
muteVideo(): any;
|
|
1123
|
+
// (undocumented)
|
|
1124
|
+
namespace: string;
|
|
1125
|
+
// Warning: (ae-forgotten-export) The symbol "NetworkQualityMonitor" needs to be exported by the entry point index.d.ts
|
|
1126
|
+
//
|
|
1127
|
+
// (undocumented)
|
|
1128
|
+
networkQualityMonitor: NetworkQualityMonitor;
|
|
1129
|
+
// (undocumented)
|
|
1130
|
+
networkStatus: string;
|
|
1131
|
+
// (undocumented)
|
|
1132
|
+
options: object;
|
|
1133
|
+
// (undocumented)
|
|
1134
|
+
orgId: string;
|
|
1135
|
+
// (undocumented)
|
|
1136
|
+
owner: string;
|
|
1137
|
+
parseMeetingInfo(meetingInfo: {
|
|
1138
|
+
body: {
|
|
1139
|
+
conversationUrl: string;
|
|
1140
|
+
locusUrl: string;
|
|
1141
|
+
sipUri: string;
|
|
1142
|
+
owner: object;
|
|
1143
|
+
};
|
|
1144
|
+
} | any, destination?: object | string | null): void;
|
|
1145
|
+
// (undocumented)
|
|
1146
|
+
partner: any;
|
|
1147
|
+
// (undocumented)
|
|
1148
|
+
passwordStatus: string;
|
|
1149
|
+
pauseRecording(): Promise<any>;
|
|
1150
|
+
// (undocumented)
|
|
1151
|
+
permissionToken: any;
|
|
1152
|
+
// (undocumented)
|
|
1153
|
+
policy: string;
|
|
1154
|
+
processNextQueuedMediaUpdate: () => void;
|
|
1155
|
+
publishTracks(tracks: {
|
|
1156
|
+
microphone?: MediaStreamTrack;
|
|
1157
|
+
camera?: MediaStreamTrack;
|
|
1158
|
+
screenShare: {
|
|
1159
|
+
audio?: MediaStreamTrack;
|
|
1160
|
+
video?: MediaStreamTrack;
|
|
1161
|
+
};
|
|
1162
|
+
}): Promise<void>;
|
|
1163
|
+
// (undocumented)
|
|
1164
|
+
queuedMediaUpdates: any[];
|
|
1165
|
+
// Warning: (ae-forgotten-export) The symbol "ReceiveSlotManager" needs to be exported by the entry point index.d.ts
|
|
1166
|
+
//
|
|
1167
|
+
// (undocumented)
|
|
1168
|
+
receiveSlotManager: ReceiveSlotManager;
|
|
1169
|
+
reconnect(options?: object): any;
|
|
1170
|
+
// Warning: (ae-forgotten-export) The symbol "ReconnectionManager" needs to be exported by the entry point index.d.ts
|
|
1171
|
+
//
|
|
1172
|
+
// (undocumented)
|
|
1173
|
+
reconnectionManager: ReconnectionManager;
|
|
1174
|
+
// (undocumented)
|
|
1175
|
+
recording: any;
|
|
1176
|
+
// Warning: (ae-forgotten-export) The symbol "RecordingController" needs to be exported by the entry point index.d.ts
|
|
1177
|
+
//
|
|
1178
|
+
// (undocumented)
|
|
1179
|
+
recordingController: RecordingController;
|
|
1180
|
+
refreshCaptcha(): any;
|
|
1181
|
+
// Warning: (ae-forgotten-export) The symbol "RemoteMediaManager" needs to be exported by the entry point index.d.ts
|
|
1182
|
+
//
|
|
1183
|
+
// (undocumented)
|
|
1184
|
+
remoteMediaManager: RemoteMediaManager | null;
|
|
1185
|
+
remove(memberId: string): any;
|
|
1186
|
+
// (undocumented)
|
|
1187
|
+
requiredCaptcha: any;
|
|
1188
|
+
// (undocumented)
|
|
1189
|
+
resource: string;
|
|
1190
|
+
// (undocumented)
|
|
1191
|
+
resourceId: any;
|
|
1192
|
+
// (undocumented)
|
|
1193
|
+
resourceUrl: string;
|
|
1194
|
+
resumeRecording(): Promise<any>;
|
|
1195
|
+
// Warning: (ae-forgotten-export) The symbol "Roap" needs to be exported by the entry point index.d.ts
|
|
1196
|
+
//
|
|
1197
|
+
// (undocumented)
|
|
1198
|
+
roap: Roap;
|
|
1199
|
+
// (undocumented)
|
|
1200
|
+
roapSeq: number;
|
|
1201
|
+
// (undocumented)
|
|
1202
|
+
selfId: string;
|
|
1203
|
+
sendDTMF(tones: string): any;
|
|
1204
|
+
// Warning: (ae-forgotten-export) The symbol "ReactionServerType" needs to be exported by the entry point index.d.ts
|
|
1205
|
+
// Warning: (ae-forgotten-export) The symbol "SkinToneType" needs to be exported by the entry point index.d.ts
|
|
1206
|
+
sendReaction(reactionType: ReactionServerType, skinToneType?: SkinToneType): any;
|
|
1207
|
+
setDisallowUnmute(enabled: boolean): Promise<any>;
|
|
1208
|
+
// (undocumented)
|
|
1209
|
+
setEndCallInitiateJoinReq(): void;
|
|
1210
|
+
// (undocumented)
|
|
1211
|
+
setEndJoinReqResp(): void;
|
|
1212
|
+
// (undocumented)
|
|
1213
|
+
setEndLocalSDPGenRemoteSDPRecvDelay(): void;
|
|
1214
|
+
// (undocumented)
|
|
1215
|
+
setEndSendingMediaDelay(typeMedia: string): void;
|
|
1216
|
+
// (undocumented)
|
|
1217
|
+
setEndSetupDelay(typeMedia: string): void;
|
|
1218
|
+
setLocalShareTrack(rawLocalShareTrack: MediaStreamTrack | null): void;
|
|
1219
|
+
setLocalTracks(localStream: any): void;
|
|
1220
|
+
setLocalVideoQuality(level: string): any;
|
|
1221
|
+
// @deprecated
|
|
1222
|
+
setMeetingQuality(level: string): any;
|
|
1223
|
+
setMercuryListener(): void;
|
|
1224
|
+
setMuteAll(mutedEnabled: boolean, disallowUnmuteEnabled: boolean, muteOnEntryEnabled: boolean): Promise<any>;
|
|
1225
|
+
setMuteOnEntry(enabled: boolean): Promise<any>;
|
|
1226
|
+
setRemoteQualityLevel(level: string): any;
|
|
1227
|
+
setSipUri(sipUri: string): void;
|
|
1228
|
+
// (undocumented)
|
|
1229
|
+
setStartCallInitiateJoinReq(): void;
|
|
1230
|
+
// (undocumented)
|
|
1231
|
+
setStartJoinReqResp(): void;
|
|
1232
|
+
// (undocumented)
|
|
1233
|
+
setStartLocalSDPGenRemoteSDPRecvDelay(): void;
|
|
1234
|
+
// (undocumented)
|
|
1235
|
+
setStartSendingMediaDelay(typeMedia: string): void;
|
|
1236
|
+
// (undocumented)
|
|
1237
|
+
setStartSetupDelay(typeMedia: string): void;
|
|
1238
|
+
setUpBreakoutsListener(): void;
|
|
1239
|
+
// (undocumented)
|
|
1240
|
+
setupMediaConnectionListeners: () => void;
|
|
1241
|
+
setupStatsAnalyzerEventHandlers: () => void;
|
|
1242
|
+
shareScreen(options?: {
|
|
1243
|
+
sendAudio: boolean;
|
|
1244
|
+
sendShare: boolean;
|
|
1245
|
+
sharePreferences: {
|
|
1246
|
+
shareConstraints: MediaTrackConstraints;
|
|
1247
|
+
};
|
|
1248
|
+
}): any;
|
|
1249
|
+
// (undocumented)
|
|
1250
|
+
shareStatus: string;
|
|
1251
|
+
// (undocumented)
|
|
1252
|
+
sipUri: string;
|
|
1253
|
+
// (undocumented)
|
|
1254
|
+
startCallInitiateJoinReq: any;
|
|
1255
|
+
// (undocumented)
|
|
1256
|
+
startJoinReqResp: any;
|
|
1257
|
+
startKeepAlive: () => void;
|
|
1258
|
+
// (undocumented)
|
|
1259
|
+
startLocalSDPGenRemoteSDPRecvDelay: any;
|
|
1260
|
+
startRecording(): Promise<any>;
|
|
1261
|
+
startWhiteboardShare(channelUrl: string, resourceToken: string): any;
|
|
1262
|
+
// (undocumented)
|
|
1263
|
+
state: any;
|
|
1264
|
+
// Warning: (ae-forgotten-export) The symbol "StatsAnalyzer" needs to be exported by the entry point index.d.ts
|
|
1265
|
+
//
|
|
1266
|
+
// (undocumented)
|
|
1267
|
+
statsAnalyzer: StatsAnalyzer;
|
|
1268
|
+
stopKeepAlive: () => void;
|
|
1269
|
+
stopReceivingTranscription(): void;
|
|
1270
|
+
stopRecording(): Promise<any>;
|
|
1271
|
+
stopShare(options?: {}): any;
|
|
1272
|
+
stopWhiteboardShare(channelUrl: string): any;
|
|
1273
|
+
toggleReactions(enable: boolean): any;
|
|
1274
|
+
// Warning: (ae-forgotten-export) The symbol "Transcription" needs to be exported by the entry point index.d.ts
|
|
1275
|
+
//
|
|
1276
|
+
// (undocumented)
|
|
1277
|
+
transcription: Transcription;
|
|
1278
|
+
transfer(memberId: string, moderator?: boolean): any;
|
|
1279
|
+
// (undocumented)
|
|
1280
|
+
type: string;
|
|
1281
|
+
unlockMeeting(): any;
|
|
1282
|
+
unmuteAudio(): any;
|
|
1283
|
+
unmuteVideo(): any;
|
|
1284
|
+
unpublishTracks(tracks: MediaStreamTrack[]): Promise<void>;
|
|
1285
|
+
unsetLocalShareTrack(): void;
|
|
1286
|
+
unsetLocalVideoTrack(): void;
|
|
1287
|
+
unsetPeerConnections(): void;
|
|
1288
|
+
// @deprecated
|
|
1289
|
+
unsetRemoteStream(): void;
|
|
1290
|
+
unsetRemoteTracks(): void;
|
|
1291
|
+
updateAudio(options: {
|
|
1292
|
+
sendAudio: boolean;
|
|
1293
|
+
receiveAudio: boolean;
|
|
1294
|
+
stream: MediaStream;
|
|
1295
|
+
}): Promise<any>;
|
|
1296
|
+
updateLLMConnection(): Promise<any>;
|
|
1297
|
+
updateMedia(options?: {
|
|
1298
|
+
localStream?: MediaStream;
|
|
1299
|
+
localShare?: MediaStream;
|
|
1300
|
+
mediaSettings?: any;
|
|
1301
|
+
}): any;
|
|
1302
|
+
// (undocumented)
|
|
1303
|
+
updateMediaConnections: (mediaConnections: any[]) => void;
|
|
1304
|
+
updateShare(options: {
|
|
1305
|
+
sendShare?: boolean;
|
|
1306
|
+
receiveShare?: boolean;
|
|
1307
|
+
stream?: any;
|
|
1308
|
+
skipSignalingCheck?: boolean;
|
|
1309
|
+
}): any;
|
|
1310
|
+
updateVideo(options: {
|
|
1311
|
+
sendVideo: boolean;
|
|
1312
|
+
receiveVideo: boolean;
|
|
1313
|
+
stream: MediaStream;
|
|
1314
|
+
}): any;
|
|
1315
|
+
uploadLogs(options?: object): void;
|
|
1316
|
+
usePhoneAudio(phoneNumber: string): any;
|
|
1317
|
+
// (undocumented)
|
|
1318
|
+
userId: string;
|
|
1319
|
+
verifyPassword(password: string, captchaCode: string): Promise<{
|
|
1320
|
+
isPasswordValid: boolean;
|
|
1321
|
+
requiredCaptcha: any;
|
|
1322
|
+
failureReason: string;
|
|
1323
|
+
} | {
|
|
1324
|
+
isPasswordValid: boolean;
|
|
1325
|
+
requiredCaptcha: any;
|
|
1326
|
+
failureReason: string;
|
|
1327
|
+
}>;
|
|
1328
|
+
// (undocumented)
|
|
1329
|
+
video: any;
|
|
1330
|
+
// (undocumented)
|
|
1331
|
+
wirelessShare: any;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
// @public (undocumented)
|
|
1335
|
+
const MEETING_AUDIO_STATE_MACHINE: {
|
|
1336
|
+
TRANSITIONS: {
|
|
1337
|
+
TOGGLE: string;
|
|
1338
|
+
INIT: string;
|
|
1339
|
+
};
|
|
1340
|
+
STATES: {
|
|
1341
|
+
MUTE_SELF: string;
|
|
1342
|
+
UNMUTE_SELF: string;
|
|
1343
|
+
};
|
|
1344
|
+
};
|
|
1345
|
+
|
|
1346
|
+
// @public (undocumented)
|
|
1347
|
+
const _MEETING_CENTER_ = "MEETING_CENTER";
|
|
1348
|
+
|
|
1349
|
+
// @public (undocumented)
|
|
1350
|
+
const MEETING_END_REASON: {
|
|
1351
|
+
INACTIVE: string;
|
|
1352
|
+
MEDIA_RELEASED: string;
|
|
1353
|
+
};
|
|
1354
|
+
|
|
1355
|
+
// @public (undocumented)
|
|
1356
|
+
const MEETING_ERRORS: {
|
|
1357
|
+
METRICS_NOT_SERVER_OR_CLIENT_EXCEPTION: string;
|
|
1358
|
+
BIDIRECTIONAL_ROSTER_NOT_ALLOWED: string;
|
|
1359
|
+
INVALID_LOCUS_URL: string;
|
|
1360
|
+
ARGUMENT_NULL_OR_EMPTY: string;
|
|
1361
|
+
INVALID_USER: string;
|
|
1362
|
+
INVALID_PHONE_NUMBER_OR_COUNTRY_CODE: string;
|
|
1363
|
+
EMPTY_PHONE_NUMBER_OR_COUNTRY_CODE: string;
|
|
1364
|
+
PHONE_NUMBER_INVALID_COUNTRY_CODE: string;
|
|
1365
|
+
PHONE_NUMBER_NOT_A_NUMBER: string;
|
|
1366
|
+
PHONE_NUMBER_TOO_SHORT_AFTER_IDD: string;
|
|
1367
|
+
PHONE_NUMBER_TOO_SHORT_NSN: string;
|
|
1368
|
+
PHONE_NUMBER_TOO_LONG: string;
|
|
1369
|
+
INVALID_DIALABLE_KEY: string;
|
|
1370
|
+
INVALID_MEETING_LINK: string;
|
|
1371
|
+
INVALID_SINCE_OR_SEQUENCE_HASH_IN_REQUEST: string;
|
|
1372
|
+
INVALID_LOCUS_ID: string;
|
|
1373
|
+
EMPTY_SCHEDULED_MEETING_START_TIME: string;
|
|
1374
|
+
INVALID_SCHEDULED_MEETING_DURATION_MINUTES: string;
|
|
1375
|
+
INVALID_SCHEDULED_MEETING_REMINDER_DURATION_MINUTES: string;
|
|
1376
|
+
EMPTY_SCHEDULED_MEETING_ORGANIZER: string;
|
|
1377
|
+
INVALID_MEETING_ID_FORMAT: string;
|
|
1378
|
+
INVALID_SIP_URL_FORMAT: string;
|
|
1379
|
+
EMPTY_INVITEE_RECORD: string;
|
|
1380
|
+
EMPTY_INVITEE_ADDRESS: string;
|
|
1381
|
+
DESKPHONE_NOTHING_DIALABLE_FOUND: string;
|
|
1382
|
+
INVALID_INVITEE_ADDRESS: string;
|
|
1383
|
+
INVALID_ATTENDEE_ID: string;
|
|
1384
|
+
INVALID_IN_LOBBY: string;
|
|
1385
|
+
MISSING_REQUESTING_PARTICIPANT_ID: string;
|
|
1386
|
+
INVALID_REQUESTING_PARTICIPANT_ID: string;
|
|
1387
|
+
SUPPLEMENTARY_USER_INFO_NOT_FOUND: string;
|
|
1388
|
+
UNAUTHORIZED: string;
|
|
1389
|
+
REMOVED_PARTICIPANT: string;
|
|
1390
|
+
FREE_USER_MAX_PARTICIPANTS_EXCEEDED: string;
|
|
1391
|
+
PAID_USER_MAX_PARTICIPANTS_EXCEEDED: string;
|
|
1392
|
+
SERVICE_MAX_PARTICIPANTS_EXCEEDED: string;
|
|
1393
|
+
INACTIVE: string;
|
|
1394
|
+
ONE_ON_ONE_TO_SELF_NOT_ALLOWED: string;
|
|
1395
|
+
JOIN_RESTRICTED_USER: string;
|
|
1396
|
+
GET_RESTRICTED_USER: string;
|
|
1397
|
+
JOIN_RESTRICTED_USER_NOT_IN_ROOM: string;
|
|
1398
|
+
CREATE_MEDIA_RESTRICTED_USER: string;
|
|
1399
|
+
DUPLICATE_RESOURCE_CREATION_REQUEST: string;
|
|
1400
|
+
MEETING_NOT_FOUND: string;
|
|
1401
|
+
NOT_WEBEX_SITE: string;
|
|
1402
|
+
INVALID_SCHEDULED_MEETING_ORGANIZER: string;
|
|
1403
|
+
FREE_USER_MAX_PARTICIPANTS_JOINED_EXCEEDED: string;
|
|
1404
|
+
PAID_USER_MAX_PARTICIPANTS_JOINED_EXCEEDED: string;
|
|
1405
|
+
SERVICE_MAX_PARTICIPANTS_ROSTER_EXCEEDED: string;
|
|
1406
|
+
SERVICE_INITIAL_PARTICIPANTS_ROSTER_EXCEEDED: string;
|
|
1407
|
+
RESOURCE_GUEST_FORBIDDEN: string;
|
|
1408
|
+
SERVICE_NO_MACHINE_OR_SERVICE_ACCOUNT: string;
|
|
1409
|
+
MODERATOR_ROLE_REMOVAL_NOT_ALLOWED: string;
|
|
1410
|
+
RECORDING_CONTROL_NOT_SUPPORTED: string;
|
|
1411
|
+
HOST_PIN_LOCKED: string;
|
|
1412
|
+
INVALID_HOST_PIN: string;
|
|
1413
|
+
REQUESTING_PARTICIPANT_NOT_MODERATOR: string;
|
|
1414
|
+
CONVERSATION_NOT_FOUND: string;
|
|
1415
|
+
MEETING_LINK_NOT_FOUND: string;
|
|
1416
|
+
MEETING_INFO_NOT_FOUND: string;
|
|
1417
|
+
SCHEDULED_MEETING_NOT_FOUND: string;
|
|
1418
|
+
RECORDING_NOT_STARTED: string;
|
|
1419
|
+
RECORDING_NOT_ENABLED: string;
|
|
1420
|
+
RECORDING_USER_STORAGE_FULL: string;
|
|
1421
|
+
RECORDING_SITE_STORAGE_FULL: string;
|
|
1422
|
+
NO_SCHEDULED_MEETING: string;
|
|
1423
|
+
MEETING_FULL_UPDATE_NOT_ALLOWED: string;
|
|
1424
|
+
MODERATOR_ROLE_REMOVAL_NOT_VALID: string;
|
|
1425
|
+
MODERATOR_ROLE_ADDITION_NOT_VALID: string;
|
|
1426
|
+
INVALID_CALL_START_TIME: string;
|
|
1427
|
+
MEETING_STARTED_UPDATE_NOT_ALLOWED: string;
|
|
1428
|
+
EXCEEDED_MAX_JOINED_PARTICIPANTS: string;
|
|
1429
|
+
EXCEEDED_SERVICE_MAX_PARTICIPANTS: string;
|
|
1430
|
+
MEETING_IS_LOCKED: string;
|
|
1431
|
+
MEETING_IS_TERMINATING: string;
|
|
1432
|
+
MEETING_REQUIRE_MODERATOR_PIN_INTENT: string;
|
|
1433
|
+
MEETING_REQUIRE_MODERATOR_PIN: string;
|
|
1434
|
+
MEETING_REQUIRE_MODERATOR_ROLE: string;
|
|
1435
|
+
PMR_ACCOUNT_SUSPENDED: string;
|
|
1436
|
+
PMR_ACCOUNT_LOCKED: string;
|
|
1437
|
+
INVALID_JOIN_TIME: string;
|
|
1438
|
+
REQUIRES_WEBEX_LOGIN: string;
|
|
1439
|
+
TOO_MANY_REQUESTS: string;
|
|
1440
|
+
UNABLE_TO_LOOK_UP_DEVICE_INFORMATION: string;
|
|
1441
|
+
UNABLE_TO_LOOK_UP_CONVERSATION: string;
|
|
1442
|
+
UNABLE_TO_LOOK_UP_CI_USER: string;
|
|
1443
|
+
UNABLE_TO_CREATE_CONFLUENCE: string;
|
|
1444
|
+
SERVICE_UNAVAILABLE: string;
|
|
1445
|
+
SOCKET_TIMEOUT: string;
|
|
1446
|
+
NO_HTTP_RESPONSE: string;
|
|
1447
|
+
};
|
|
1448
|
+
|
|
1449
|
+
// @public (undocumented)
|
|
1450
|
+
const _MEETING_ID_ = "MEETING_ID";
|
|
1451
|
+
|
|
1452
|
+
// @public (undocumented)
|
|
1453
|
+
const MEETING_INFO_FAILURE_REASON: {
|
|
1454
|
+
NONE: string;
|
|
1455
|
+
WRONG_PASSWORD: string;
|
|
1456
|
+
WRONG_CAPTCHA: string;
|
|
1457
|
+
OTHER: string;
|
|
1458
|
+
};
|
|
1459
|
+
|
|
1460
|
+
// @public (undocumented)
|
|
1461
|
+
const _MEETING_LINK_ = "MEETING_LINK";
|
|
1462
|
+
|
|
1463
|
+
// @public (undocumented)
|
|
1464
|
+
const MEETING_REMOVED_REASON: {
|
|
1465
|
+
SELF_REMOVED: string;
|
|
1466
|
+
FULLSTATE_REMOVED: string;
|
|
1467
|
+
MEETING_INACTIVE_TERMINATING: string;
|
|
1468
|
+
CLIENT_LEAVE_REQUEST: string;
|
|
1469
|
+
USER_ENDED_SHARE_STREAMS: string;
|
|
1470
|
+
NO_MEETINGS_TO_SYNC: string;
|
|
1471
|
+
MEETING_CONNECTION_FAILED: string;
|
|
1472
|
+
};
|
|
1473
|
+
|
|
1474
|
+
// @public (undocumented)
|
|
1475
|
+
const MEETING_STATE: {
|
|
1476
|
+
STATES: {
|
|
1477
|
+
IDLE: string;
|
|
1478
|
+
INCOMING: string;
|
|
1479
|
+
DIALING: string;
|
|
1480
|
+
NOTIFIED: string;
|
|
1481
|
+
DECLINED: string;
|
|
1482
|
+
ON_GOING: string;
|
|
1483
|
+
JOINED: string;
|
|
1484
|
+
TERMINATING: string;
|
|
1485
|
+
LEFT: string;
|
|
1486
|
+
ENDED: string;
|
|
1487
|
+
ERROR: string;
|
|
1488
|
+
};
|
|
1489
|
+
};
|
|
1490
|
+
|
|
1491
|
+
// @public (undocumented)
|
|
1492
|
+
const MEETING_STATE_MACHINE: {
|
|
1493
|
+
TRANSITIONS: {
|
|
1494
|
+
FAIL: string;
|
|
1495
|
+
RING: string;
|
|
1496
|
+
REMOTE: string;
|
|
1497
|
+
JOIN: string;
|
|
1498
|
+
DECLINE: string;
|
|
1499
|
+
LEAVE: string;
|
|
1500
|
+
END: string;
|
|
1501
|
+
RESET: string;
|
|
1502
|
+
};
|
|
1503
|
+
STATES: {
|
|
1504
|
+
ERROR: string;
|
|
1505
|
+
IDLE: string;
|
|
1506
|
+
ENDED: string;
|
|
1507
|
+
DECLINED: string;
|
|
1508
|
+
RINGING: string;
|
|
1509
|
+
JOINED: string;
|
|
1510
|
+
ANSWERED: string;
|
|
1511
|
+
};
|
|
1512
|
+
};
|
|
1513
|
+
|
|
1514
|
+
// @public (undocumented)
|
|
1515
|
+
const _MEETING_UUID_ = "MEETING_UUID";
|
|
1516
|
+
|
|
1517
|
+
// @public (undocumented)
|
|
1518
|
+
const MEETING_VIDEO_STATE_MACHINE: {
|
|
1519
|
+
TRANSITIONS: {
|
|
1520
|
+
TOGGLE: string;
|
|
1521
|
+
INIT: string;
|
|
1522
|
+
};
|
|
1523
|
+
STATES: {
|
|
1524
|
+
MUTE_SELF: string;
|
|
1525
|
+
UNMUTE_SELF: string;
|
|
1526
|
+
};
|
|
1527
|
+
};
|
|
1528
|
+
|
|
1529
|
+
// @public (undocumented)
|
|
1530
|
+
const MEETINGINFO = "meetingInfo";
|
|
1531
|
+
|
|
1532
|
+
// @public (undocumented)
|
|
1533
|
+
const MEETINGS = "Meetings";
|
|
1534
|
+
|
|
1535
|
+
// @public
|
|
1536
|
+
class Meetings extends WebexPlugin {
|
|
1537
|
+
constructor(...args: any[]);
|
|
1538
|
+
create(destination: string, type?: string, useRandomDelayForInfo?: boolean): any;
|
|
1539
|
+
fetchUserPreferredWebexSite(): any;
|
|
1540
|
+
// (undocumented)
|
|
1541
|
+
geoHintInfo: any;
|
|
1542
|
+
getAllMeetings(options?: {
|
|
1543
|
+
startDate: object;
|
|
1544
|
+
endDate: object;
|
|
1545
|
+
}): any;
|
|
1546
|
+
getGeoHint(): any;
|
|
1547
|
+
getLogger(): any;
|
|
1548
|
+
getMeetingByType(type: string, value: object): any;
|
|
1549
|
+
getPersonalMeetingRoom(): any;
|
|
1550
|
+
getReachability(): any;
|
|
1551
|
+
getScheduledMeetings(): any;
|
|
1552
|
+
// (undocumented)
|
|
1553
|
+
loggerRequest: any;
|
|
1554
|
+
// (undocumented)
|
|
1555
|
+
media: any;
|
|
1556
|
+
// (undocumented)
|
|
1557
|
+
meetingCollection: any;
|
|
1558
|
+
// (undocumented)
|
|
1559
|
+
meetingInfo: any;
|
|
1560
|
+
// (undocumented)
|
|
1561
|
+
namespace: string;
|
|
1562
|
+
// (undocumented)
|
|
1563
|
+
personalMeetingRoom: any;
|
|
1564
|
+
// (undocumented)
|
|
1565
|
+
preferredWebexSite: any;
|
|
1566
|
+
// (undocumented)
|
|
1567
|
+
reachability: any;
|
|
1568
|
+
register(): Promise<void>;
|
|
1569
|
+
// (undocumented)
|
|
1570
|
+
registered: any;
|
|
1571
|
+
// (undocumented)
|
|
1572
|
+
request: any;
|
|
1573
|
+
setReachability(): void;
|
|
1574
|
+
startReachability(): any;
|
|
1575
|
+
syncMeetings(): any;
|
|
1576
|
+
unregister(): any;
|
|
1577
|
+
uploadLogs(options?: {
|
|
1578
|
+
callStart?: string;
|
|
1579
|
+
feedbackId?: string;
|
|
1580
|
+
locusId?: string;
|
|
1581
|
+
correlationId?: string;
|
|
1582
|
+
meetingId?: string;
|
|
1583
|
+
userId?: string;
|
|
1584
|
+
orgId?: string;
|
|
1585
|
+
}): any;
|
|
1586
|
+
}
|
|
1587
|
+
export default Meetings;
|
|
1588
|
+
|
|
1589
|
+
// @public (undocumented)
|
|
1590
|
+
const METRICS_JOIN_TIMES_MAX_DURATION = 1200000;
|
|
1591
|
+
|
|
1592
|
+
// @public (undocumented)
|
|
1593
|
+
const MODERATOR_FALSE = false;
|
|
1594
|
+
|
|
1595
|
+
// @public (undocumented)
|
|
1596
|
+
const MODERATOR_TRUE = true;
|
|
1597
|
+
|
|
1598
|
+
// @public (undocumented)
|
|
1599
|
+
const _MOVE_MEDIA_ = "MOVE_MEDIA";
|
|
1600
|
+
|
|
1601
|
+
// @public (undocumented)
|
|
1602
|
+
const MQA_INTEVAL = 60000;
|
|
1603
|
+
|
|
1604
|
+
// @public (undocumented)
|
|
1605
|
+
const MQA_STATS: {
|
|
1606
|
+
MQA_SIZE: number;
|
|
1607
|
+
CA_TYPE: string;
|
|
1608
|
+
DEFAULT_IP: string;
|
|
1609
|
+
DEFAULT_SHARE_SENDER_STATS: {
|
|
1610
|
+
common: {
|
|
1611
|
+
common: {
|
|
1612
|
+
direction: string;
|
|
1613
|
+
isMain: boolean;
|
|
1614
|
+
mariFecEnabled: boolean;
|
|
1615
|
+
mariQosEnabled: boolean;
|
|
1616
|
+
multistreamEnabled: boolean;
|
|
1617
|
+
};
|
|
1618
|
+
availableBitrate: number;
|
|
1619
|
+
dtlsBitrate: number;
|
|
1620
|
+
dtlsPackets: number;
|
|
1621
|
+
fecBitrate: number;
|
|
1622
|
+
fecPackets: number;
|
|
1623
|
+
maxBitrate: number;
|
|
1624
|
+
queueDelay: number;
|
|
1625
|
+
remoteJitter: number;
|
|
1626
|
+
remoteLossRate: number;
|
|
1627
|
+
remoteReceiveRate: number;
|
|
1628
|
+
roundTripTime: number;
|
|
1629
|
+
rtcpBitrate: number;
|
|
1630
|
+
rtcpPackets: number;
|
|
1631
|
+
rtpBitrate: number;
|
|
1632
|
+
rtpPackets: number;
|
|
1633
|
+
stunBitrate: number;
|
|
1634
|
+
stunPackets: number;
|
|
1635
|
+
transportType: string;
|
|
1636
|
+
};
|
|
1637
|
+
streams: {
|
|
1638
|
+
common: {
|
|
1639
|
+
codec: string;
|
|
1640
|
+
duplicateSsci: number;
|
|
1641
|
+
requestedBitrate: number;
|
|
1642
|
+
requestedFrames: number;
|
|
1643
|
+
rtpPackets: number;
|
|
1644
|
+
ssci: number;
|
|
1645
|
+
transmittedBitrate: number;
|
|
1646
|
+
transmittedFrameRate: number;
|
|
1647
|
+
};
|
|
1648
|
+
h264CodecProfile: string;
|
|
1649
|
+
localConfigurationChanges: number;
|
|
1650
|
+
remoteConfigurationChanges: number;
|
|
1651
|
+
requestedFrameSize: number;
|
|
1652
|
+
requestedKeyFrames: number;
|
|
1653
|
+
transmittedFrameSize: number;
|
|
1654
|
+
transmittedHeight: number;
|
|
1655
|
+
transmittedKeyFrames: number;
|
|
1656
|
+
transmittedWidth: number;
|
|
1657
|
+
}[];
|
|
1658
|
+
};
|
|
1659
|
+
intervalMetadata: {
|
|
1660
|
+
memoryUsage: {
|
|
1661
|
+
cpuBitWidth: number;
|
|
1662
|
+
mainProcessMaximumMemoryBytes: number;
|
|
1663
|
+
osBitWidth: number;
|
|
1664
|
+
processAverageMemoryUsage: number;
|
|
1665
|
+
processMaximumMemoryBytes: number;
|
|
1666
|
+
processMaximumMemoryUsage: number;
|
|
1667
|
+
systemAverageMemoryUsage: number;
|
|
1668
|
+
systemMaximumMemoryUsage: number;
|
|
1669
|
+
};
|
|
1670
|
+
peerReflexiveIP: string;
|
|
1671
|
+
processAverageCPU: number;
|
|
1672
|
+
processMaximumCPU: number;
|
|
1673
|
+
systemAverageCPU: number;
|
|
1674
|
+
systemMaximumCPU: number;
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
|
|
1678
|
+
// @public (undocumented)
|
|
1679
|
+
const NETWORK_STATUS: {
|
|
1680
|
+
DISCONNECTED: string;
|
|
1681
|
+
RECONNECTING: string;
|
|
1682
|
+
CONNECTED: string;
|
|
1683
|
+
};
|
|
1684
|
+
|
|
1685
|
+
// @public (undocumented)
|
|
1686
|
+
const NETWORK_TYPE: {
|
|
1687
|
+
VPN: string;
|
|
1688
|
+
UNKNOWN: string;
|
|
1689
|
+
WIFI: string;
|
|
1690
|
+
ETHERNET: string;
|
|
1691
|
+
};
|
|
1692
|
+
|
|
1693
|
+
// @public (undocumented)
|
|
1694
|
+
const _NONE_ = "NONE";
|
|
1695
|
+
|
|
1696
|
+
// @public (undocumented)
|
|
1697
|
+
const _NOT_IN_MEETING_ = "NOT_IN_MEETING";
|
|
1698
|
+
|
|
1699
|
+
// @public (undocumented)
|
|
1700
|
+
const _OBSERVE_ = "OBSERVE";
|
|
1701
|
+
|
|
1702
|
+
// @public (undocumented)
|
|
1703
|
+
const OFFLINE = "offline";
|
|
1704
|
+
|
|
1705
|
+
// @public (undocumented)
|
|
1706
|
+
const ONLINE = "online";
|
|
1707
|
+
|
|
1708
|
+
// @public (undocumented)
|
|
1709
|
+
const PARTICIPANT = "participant";
|
|
1710
|
+
|
|
1711
|
+
// @public (undocumented)
|
|
1712
|
+
const PARTICIPANT_DELTAS: {
|
|
1713
|
+
TARGETS: {
|
|
1714
|
+
AUDIO: string;
|
|
1715
|
+
VIDEO: string;
|
|
1716
|
+
};
|
|
1717
|
+
STATES: {
|
|
1718
|
+
DISABLED: string;
|
|
1719
|
+
MUTED: string;
|
|
1720
|
+
UNKNOWN: string;
|
|
1721
|
+
UNMUTED: string;
|
|
1722
|
+
};
|
|
1723
|
+
};
|
|
1724
|
+
|
|
1725
|
+
// @public (undocumented)
|
|
1726
|
+
const PASSWORD_STATUS: {
|
|
1727
|
+
NOT_REQUIRED: string;
|
|
1728
|
+
REQUIRED: string;
|
|
1729
|
+
UNKNOWN: string;
|
|
1730
|
+
VERIFIED: string;
|
|
1731
|
+
};
|
|
1732
|
+
|
|
1733
|
+
// @public (undocumented)
|
|
1734
|
+
const PC_BAIL_TIMEOUT = 8000;
|
|
1735
|
+
|
|
1736
|
+
// @public (undocumented)
|
|
1737
|
+
const PEER_CONNECTION_STATE: {
|
|
1738
|
+
CLOSED: string;
|
|
1739
|
+
FAILED: string;
|
|
1740
|
+
};
|
|
1741
|
+
|
|
1742
|
+
// @public (undocumented)
|
|
1743
|
+
const _PEOPLE_: any;
|
|
1744
|
+
|
|
1745
|
+
// @public (undocumented)
|
|
1746
|
+
const _PERSONAL_ROOM_ = "PERSONAL_ROOM";
|
|
1747
|
+
|
|
1748
|
+
// @public (undocumented)
|
|
1749
|
+
const PROVISIONAL_TYPE_DIAL_IN = "DIAL_IN";
|
|
1750
|
+
|
|
1751
|
+
// @public (undocumented)
|
|
1752
|
+
const PROVISIONAL_TYPE_DIAL_OUT = "DIAL_OUT";
|
|
1753
|
+
|
|
1754
|
+
// @public (undocumented)
|
|
1755
|
+
const PSTN_STATUS: {
|
|
1756
|
+
JOINED: string;
|
|
1757
|
+
CONNECTED: string;
|
|
1758
|
+
LEFT: string;
|
|
1759
|
+
TRANSFERRING: string;
|
|
1760
|
+
SUCCESS: string;
|
|
1761
|
+
UNKNOWN: string;
|
|
1762
|
+
};
|
|
1763
|
+
|
|
1764
|
+
// @public (undocumented)
|
|
1765
|
+
const QUALITY_LEVELS: {
|
|
1766
|
+
LOW: string;
|
|
1767
|
+
MEDIUM: string;
|
|
1768
|
+
HIGH: string;
|
|
1769
|
+
'360p': string;
|
|
1770
|
+
'480p': string;
|
|
1771
|
+
'720p': string;
|
|
1772
|
+
'1080p': string;
|
|
1773
|
+
};
|
|
1774
|
+
|
|
1775
|
+
// @public (undocumented)
|
|
1776
|
+
const REACHABILITY: {
|
|
1777
|
+
localStorageResult: string;
|
|
1778
|
+
localStorageJoinCookie: string;
|
|
1779
|
+
namespace: string;
|
|
1780
|
+
};
|
|
1781
|
+
|
|
1782
|
+
declare namespace REACTIONS {
|
|
1783
|
+
export {
|
|
1784
|
+
Reactions,
|
|
1785
|
+
SkinTones
|
|
1786
|
+
}
|
|
1787
|
+
}
|
|
1788
|
+
export { REACTIONS }
|
|
1789
|
+
|
|
1790
|
+
// Warning: (ae-forgotten-export) The symbol "Reaction" needs to be exported by the entry point index.d.ts
|
|
1791
|
+
//
|
|
1792
|
+
// @public (undocumented)
|
|
1793
|
+
const Reactions: Record<ReactionServerType, Reaction>;
|
|
1794
|
+
|
|
1795
|
+
// @public (undocumented)
|
|
1796
|
+
const READY = "ready";
|
|
1797
|
+
|
|
1798
|
+
// @public (undocumented)
|
|
1799
|
+
const _RECEIVE_ONLY_ = "RECVONLY";
|
|
1800
|
+
|
|
1801
|
+
// @public (undocumented)
|
|
1802
|
+
const RECONNECTION: {
|
|
1803
|
+
STATE: {
|
|
1804
|
+
IN_PROGRESS: string;
|
|
1805
|
+
COMPLETE: string;
|
|
1806
|
+
FAILURE: string;
|
|
1807
|
+
DEFAULT_TRY_COUNT: number;
|
|
1808
|
+
DEFAULT_STATUS: string;
|
|
1809
|
+
};
|
|
1810
|
+
};
|
|
1811
|
+
|
|
1812
|
+
// @public (undocumented)
|
|
1813
|
+
const RECORDING_STATE: {
|
|
1814
|
+
RECORDING: string;
|
|
1815
|
+
IDLE: string;
|
|
1816
|
+
PAUSED: string;
|
|
1817
|
+
RESUMED: string;
|
|
1818
|
+
};
|
|
1819
|
+
|
|
1820
|
+
// @public (undocumented)
|
|
1821
|
+
const REMOTE = "remote";
|
|
1822
|
+
|
|
1823
|
+
// Warning: (ae-forgotten-export) The symbol "EventsScope" needs to be exported by the entry point index.d.ts
|
|
1824
|
+
//
|
|
1825
|
+
// @public
|
|
1826
|
+
class RemoteMedia extends EventsScope {
|
|
1827
|
+
// Warning: (ae-forgotten-export) The symbol "ReceiveSlot_2" needs to be exported by the entry point index.d.ts
|
|
1828
|
+
// Warning: (ae-forgotten-export) The symbol "Options" needs to be exported by the entry point index.d.ts
|
|
1829
|
+
constructor(receiveSlot: ReceiveSlot_2, mediaRequestManager: MediaRequestManager, options?: Options);
|
|
1830
|
+
// @internal (undocumented)
|
|
1831
|
+
cancelMediaRequest(commit: boolean): void;
|
|
1832
|
+
get csi(): number;
|
|
1833
|
+
// @internal (undocumented)
|
|
1834
|
+
getUnderlyingReceiveSlot(): ReceiveSlot_2;
|
|
1835
|
+
// (undocumented)
|
|
1836
|
+
readonly id: RemoteMediaId;
|
|
1837
|
+
get mediaType(): MediaType;
|
|
1838
|
+
get memberId(): string;
|
|
1839
|
+
// Warning: (ae-forgotten-export) The symbol "CSI" needs to be exported by the entry point index.d.ts
|
|
1840
|
+
//
|
|
1841
|
+
// @internal
|
|
1842
|
+
sendMediaRequest(csi: CSI, commit: boolean): void;
|
|
1843
|
+
setSizeHint(width: any, height: any): void;
|
|
1844
|
+
get sourceState(): SourceState;
|
|
1845
|
+
// @internal
|
|
1846
|
+
stop(commit?: boolean): void;
|
|
1847
|
+
get stream(): MediaStream;
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1850
|
+
declare namespace remoteMedia {
|
|
1851
|
+
export {
|
|
1852
|
+
getMaxFs,
|
|
1853
|
+
RemoteMediaEvents,
|
|
1854
|
+
RemoteVideoResolution,
|
|
1855
|
+
RemoteMediaId,
|
|
1856
|
+
RemoteMedia
|
|
1857
|
+
}
|
|
1858
|
+
}
|
|
1859
|
+
export { remoteMedia }
|
|
1860
|
+
|
|
1861
|
+
// @public (undocumented)
|
|
1862
|
+
const RemoteMediaEvents: {
|
|
1863
|
+
SourceUpdate: string;
|
|
1864
|
+
Stopped: string;
|
|
1865
|
+
};
|
|
1866
|
+
|
|
1867
|
+
// @public (undocumented)
|
|
1868
|
+
class RemoteMediaGroup {
|
|
1869
|
+
// Warning: (ae-forgotten-export) The symbol "Options_2" needs to be exported by the entry point index.d.ts
|
|
1870
|
+
constructor(mediaRequestManager: MediaRequestManager, receiveSlots: ReceiveSlot_2[], priority: number, commitMediaRequest: boolean, options?: Options_2);
|
|
1871
|
+
getRemoteMedia(filter?: 'all' | 'pinned' | 'unpinned'): RemoteMedia[];
|
|
1872
|
+
includes(remoteMedia: RemoteMedia, filter?: 'all' | 'pinned' | 'unpinned'): boolean;
|
|
1873
|
+
// (undocumented)
|
|
1874
|
+
isPinned(remoteMedia: RemoteMedia): boolean;
|
|
1875
|
+
pin(remoteMedia: RemoteMedia, csi?: CSI): void;
|
|
1876
|
+
// @internal
|
|
1877
|
+
stop(commit?: boolean): void;
|
|
1878
|
+
unpin(remoteMedia: RemoteMedia): void;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
declare namespace remoteMediaGroup {
|
|
1882
|
+
export {
|
|
1883
|
+
RemoteMediaGroup
|
|
1884
|
+
}
|
|
1885
|
+
}
|
|
1886
|
+
export { remoteMediaGroup }
|
|
1887
|
+
|
|
1888
|
+
// @public (undocumented)
|
|
1889
|
+
type RemoteMediaId = string;
|
|
1890
|
+
|
|
1891
|
+
// @public (undocumented)
|
|
1892
|
+
type RemoteVideoResolution = 'thumbnail' | 'very small' | 'small' | 'medium' | 'large' | 'best';
|
|
1893
|
+
|
|
1894
|
+
// @public (undocumented)
|
|
1895
|
+
const _REMOVE_ = "REMOVE";
|
|
1896
|
+
|
|
1897
|
+
// @public (undocumented)
|
|
1898
|
+
const _REQUESTED_ = "REQUESTED";
|
|
1899
|
+
|
|
1900
|
+
// @public (undocumented)
|
|
1901
|
+
const RESOURCE: {
|
|
1902
|
+
CLUSTERS: string;
|
|
1903
|
+
REACHABILITY: string;
|
|
1904
|
+
LOCI: string;
|
|
1905
|
+
};
|
|
1906
|
+
|
|
1907
|
+
// @public (undocumented)
|
|
1908
|
+
const _RESOURCE_ROOM_ = "RESOURCE_ROOM";
|
|
1909
|
+
|
|
1910
|
+
// @public (undocumented)
|
|
1911
|
+
const RETRY_TIMEOUT = 3000;
|
|
1912
|
+
|
|
1913
|
+
// @public (undocumented)
|
|
1914
|
+
const ROAP: {
|
|
1915
|
+
ROAP_TYPES: {
|
|
1916
|
+
OFFER: string;
|
|
1917
|
+
ANSWER: string;
|
|
1918
|
+
OK: string;
|
|
1919
|
+
ERROR: string;
|
|
1920
|
+
TURN_DISCOVERY_REQUEST: string;
|
|
1921
|
+
TURN_DISCOVERY_RESPONSE: string;
|
|
1922
|
+
};
|
|
1923
|
+
ROAP_MERCURY: string;
|
|
1924
|
+
ROAP_VERSION: string;
|
|
1925
|
+
};
|
|
1926
|
+
|
|
1927
|
+
// @public (undocumented)
|
|
1928
|
+
const _ROOM_: any;
|
|
1929
|
+
|
|
1930
|
+
// @public (undocumented)
|
|
1931
|
+
const _S_LINE = "s=-";
|
|
1932
|
+
|
|
1933
|
+
// @public (undocumented)
|
|
1934
|
+
const SELF_ROLES: {
|
|
1935
|
+
COHOST: string;
|
|
1936
|
+
MODERATOR: string;
|
|
1937
|
+
};
|
|
1938
|
+
|
|
1939
|
+
// @public (undocumented)
|
|
1940
|
+
const SEND_DTMF_ENDPOINT = "sendDtmf";
|
|
1941
|
+
|
|
1942
|
+
// @public (undocumented)
|
|
1943
|
+
const _SEND_ONLY_ = "SENDONLY";
|
|
1944
|
+
|
|
1945
|
+
// @public (undocumented)
|
|
1946
|
+
const _SEND_RECEIVE_ = "SENDRECV";
|
|
1947
|
+
|
|
1948
|
+
// @public (undocumented)
|
|
1949
|
+
const SENDRECV = "sendrecv";
|
|
1950
|
+
|
|
1951
|
+
// @public (undocumented)
|
|
1952
|
+
const SHARE = "share";
|
|
1953
|
+
|
|
1954
|
+
// @public (undocumented)
|
|
1955
|
+
const SHARE_PEER_CONNECTION_NAME = "SharePeerConnection";
|
|
1956
|
+
|
|
1957
|
+
// @public (undocumented)
|
|
1958
|
+
const SHARE_STATUS: {
|
|
1959
|
+
NO_SHARE: string;
|
|
1960
|
+
REMOTE_SHARE_ACTIVE: string;
|
|
1961
|
+
LOCAL_SHARE_ACTIVE: string;
|
|
1962
|
+
WHITEBOARD_SHARE_ACTIVE: string;
|
|
1963
|
+
};
|
|
1964
|
+
|
|
1965
|
+
// @public (undocumented)
|
|
1966
|
+
const SHARE_STOPPED_REASON: {
|
|
1967
|
+
SELF_STOPPED: string;
|
|
1968
|
+
MEETING_REJOIN: string;
|
|
1969
|
+
};
|
|
1970
|
+
|
|
1971
|
+
// @public (undocumented)
|
|
1972
|
+
const _SIP_BRIDGE_ = "SIP_BRIDGE";
|
|
1973
|
+
|
|
1974
|
+
// @public (undocumented)
|
|
1975
|
+
const SIP_URI = "sipUri";
|
|
1976
|
+
|
|
1977
|
+
// @public (undocumented)
|
|
1978
|
+
const _SIP_URI_ = "SIP_URI";
|
|
1979
|
+
|
|
1980
|
+
// Warning: (ae-forgotten-export) The symbol "SkinTone" needs to be exported by the entry point index.d.ts
|
|
1981
|
+
//
|
|
1982
|
+
// @public (undocumented)
|
|
1983
|
+
const SkinTones: Record<SkinToneType, SkinTone>;
|
|
1984
|
+
|
|
1985
|
+
// @public (undocumented)
|
|
1986
|
+
const _SLIDES_ = "SLIDES";
|
|
1987
|
+
|
|
1988
|
+
// @public (undocumented)
|
|
1989
|
+
const STATS: {
|
|
1990
|
+
SEND_DIRECTION: string;
|
|
1991
|
+
RECEIVE_DIRECTION: string;
|
|
1992
|
+
REMOTE: string;
|
|
1993
|
+
LOCAL: string;
|
|
1994
|
+
};
|
|
1995
|
+
|
|
1996
|
+
// @public (undocumented)
|
|
1997
|
+
export const TriggerProxy: any;
|
|
1998
|
+
|
|
1999
|
+
// @public (undocumented)
|
|
2000
|
+
const TYPE = "type";
|
|
2001
|
+
|
|
2002
|
+
// @public (undocumented)
|
|
2003
|
+
const _UNKNOWN_ = "UNKNOWN";
|
|
2004
|
+
|
|
2005
|
+
// @public (undocumented)
|
|
2006
|
+
const USE_URI_LOOKUP_FALSE = "useUriLookup=false";
|
|
2007
|
+
|
|
2008
|
+
// @public (undocumented)
|
|
2009
|
+
const _USER_ = "USER";
|
|
2010
|
+
|
|
2011
|
+
// @public (undocumented)
|
|
2012
|
+
const UUID_REG: RegExp;
|
|
2013
|
+
|
|
2014
|
+
// @public (undocumented)
|
|
2015
|
+
const VALID_EMAIL_ADDRESS: RegExp;
|
|
2016
|
+
|
|
2017
|
+
// @public (undocumented)
|
|
2018
|
+
const VALID_PIN: RegExp;
|
|
2019
|
+
|
|
2020
|
+
// @public (undocumented)
|
|
2021
|
+
const VALID_PMR_ADDRESS: RegExp;
|
|
2022
|
+
|
|
2023
|
+
// @public (undocumented)
|
|
2024
|
+
const VALID_PMR_LINK: RegExp;
|
|
2025
|
+
|
|
2026
|
+
// @public (undocumented)
|
|
2027
|
+
const VIDEO = "video";
|
|
2028
|
+
|
|
2029
|
+
// @public (undocumented)
|
|
2030
|
+
const VIDEO_INPUT = "videoinput";
|
|
2031
|
+
|
|
2032
|
+
// @public (undocumented)
|
|
2033
|
+
const VIDEO_RESOLUTIONS: {
|
|
2034
|
+
[x: string]: {
|
|
2035
|
+
video: {
|
|
2036
|
+
width: {
|
|
2037
|
+
max: number;
|
|
2038
|
+
ideal: number;
|
|
2039
|
+
};
|
|
2040
|
+
height: {
|
|
2041
|
+
max: number;
|
|
2042
|
+
ideal: number;
|
|
2043
|
+
};
|
|
2044
|
+
};
|
|
2045
|
+
};
|
|
2046
|
+
};
|
|
2047
|
+
|
|
2048
|
+
// @public (undocumented)
|
|
2049
|
+
const VIDEO_STATUS = "videoStatus";
|
|
2050
|
+
|
|
2051
|
+
// @public (undocumented)
|
|
2052
|
+
const _WAIT_ = "WAIT";
|
|
2053
|
+
|
|
2054
|
+
// @public (undocumented)
|
|
2055
|
+
const WBXAPPAPI_SERVICE = "webex-appapi-service";
|
|
2056
|
+
|
|
2057
|
+
// @public (undocumented)
|
|
2058
|
+
const WEBEX_DOT_COM = "webex.com";
|
|
2059
|
+
|
|
2060
|
+
// @public (undocumented)
|
|
2061
|
+
const _WEBEX_MEETING_ = "WEBEX_MEETING";
|
|
2062
|
+
|
|
2063
|
+
// @public (undocumented)
|
|
2064
|
+
const WHITEBOARD = "whiteboard";
|
|
2065
|
+
|
|
2066
|
+
// @public (undocumented)
|
|
2067
|
+
const WWW_DOT = "www.";
|
|
2068
|
+
|
|
2069
|
+
// Warnings were encountered during analysis:
|
|
2070
|
+
//
|
|
2071
|
+
// dist/types/meeting/index.d.ts:335:9 - (ae-forgotten-export) The symbol "MediaRequestManager" needs to be exported by the entry point index.d.ts
|
|
2072
|
+
|
|
2073
|
+
// (No @packageDocumentation comment for this package)
|
|
2074
|
+
|
|
2075
|
+
```
|