@webex/plugin-meetings 3.0.0-beta.9 → 3.0.0-bnr.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/UPGRADING.md +9 -9
- package/browsers.js +19 -24
- package/dist/breakouts/breakout.js +137 -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 +724 -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 +52 -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 +5 -26
- 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 +5 -26
- 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 +6 -27
- 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 +5 -26
- 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 +5 -26
- 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 +4 -25
- 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 +5 -26
- package/dist/common/errors/reconnection.js.map +1 -1
- package/dist/common/errors/stats.d.ts +15 -0
- package/dist/common/errors/stats.js +5 -26
- 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 +1 -24
- 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 +35 -61
- 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 +131 -50
- 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 +240 -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 +11 -18
- package/dist/index.js.map +1 -1
- package/dist/locus-info/controlsUtils.d.ts +2 -0
- package/dist/locus-info/controlsUtils.js +17 -30
- 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 +185 -195
- 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 +88 -123
- package/dist/locus-info/parser.js.map +1 -1
- package/dist/locus-info/selfUtils.d.ts +2 -0
- package/dist/locus-info/selfUtils.js +61 -90
- 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 +71 -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 +118 -192
- 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 +25 -14
- package/dist/meeting/in-meeting-actions.js.map +1 -1
- package/dist/meeting/index.d.ts +1621 -0
- package/dist/meeting/index.js +2100 -2229
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/muteState.d.ts +116 -0
- package/dist/meeting/muteState.js +97 -101
- package/dist/meeting/muteState.js.map +1 -1
- package/dist/meeting/request.d.ts +255 -0
- package/dist/meeting/request.js +297 -283
- 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 +60 -217
- package/dist/meeting/util.js.map +1 -1
- package/dist/meeting-info/collection.d.ts +20 -0
- package/dist/meeting-info/collection.js +3 -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 +10 -33
- 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 +181 -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 +1 -16
- 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 +3 -21
- package/dist/meetings/collection.js.map +1 -1
- package/dist/meetings/index.d.ts +297 -0
- package/dist/meetings/index.js +472 -594
- package/dist/meetings/index.js.map +1 -1
- package/dist/meetings/request.d.ts +27 -0
- package/dist/meetings/request.js +21 -42
- package/dist/meetings/request.js.map +1 -1
- package/dist/meetings/util.d.ts +18 -0
- package/dist/meetings/util.js +116 -155
- package/dist/meetings/util.js.map +1 -1
- package/dist/member/index.d.ts +145 -0
- package/dist/member/index.js +58 -89
- 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 +31 -69
- package/dist/member/util.js.map +1 -1
- package/dist/members/collection.d.ts +24 -0
- package/dist/members/collection.js +2 -12
- package/dist/members/collection.js.map +1 -1
- package/dist/members/index.d.ts +298 -0
- package/dist/members/index.js +97 -203
- package/dist/members/index.js.map +1 -1
- package/dist/members/request.d.ts +50 -0
- package/dist/members/request.js +24 -57
- 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 +42 -50
- package/dist/members/util.js.map +1 -1
- package/dist/metrics/config.d.ts +169 -0
- package/dist/metrics/config.js +1 -13
- 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 +48 -158
- package/dist/metrics/index.js.map +1 -1
- package/dist/multistream/mediaRequestManager.js +74 -52
- package/dist/multistream/mediaRequestManager.js.map +1 -1
- package/dist/multistream/receiveSlot.js +48 -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 +53 -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 +446 -442
- package/dist/multistream/remoteMediaManager.js.map +1 -1
- package/dist/networkQualityMonitor/index.d.ts +70 -0
- package/dist/networkQualityMonitor/index.js +32 -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 +10 -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 +2 -33
- 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 +190 -199
- package/dist/reachability/index.js.map +1 -1
- package/dist/reachability/request.d.ts +35 -0
- package/dist/reachability/request.js +14 -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 +308 -461
- 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 +27 -59
- package/dist/roap/index.js.map +1 -1
- package/dist/roap/request.d.ts +35 -0
- package/dist/roap/request.js +143 -134
- 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 +86 -101
- 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 +356 -457
- package/dist/statsAnalyzer/index.js.map +1 -1
- package/dist/statsAnalyzer/mqaUtil.d.ts +22 -0
- package/dist/statsAnalyzer/mqaUtil.js +144 -94
- package/dist/statsAnalyzer/mqaUtil.js.map +1 -1
- package/dist/transcription/index.d.ts +64 -0
- package/dist/transcription/index.js +13 -45
- 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 +936 -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 +6 -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 +95 -0
- package/dist/types/meeting/index.d.ts +1719 -0
- package/dist/types/meeting/muteState.d.ts +132 -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 +23 -0
- package/dist/types/meetings/index.d.ts +297 -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 +146 -0
- package/dist/types/member/util.d.ts +2 -0
- package/dist/types/members/collection.d.ts +24 -0
- package/dist/types/members/index.d.ts +325 -0
- package/dist/types/members/request.d.ts +50 -0
- package/dist/types/members/util.d.ts +2 -0
- package/dist/types/metrics/config.d.ts +169 -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 +51 -0
- package/dist/types/multistream/receiveSlot.d.ts +64 -0
- package/dist/types/multistream/receiveSlotManager.d.ts +49 -0
- package/dist/types/multistream/remoteMedia.d.ts +100 -0
- package/dist/types/multistream/remoteMediaGroup.d.ts +56 -0
- package/dist/types/multistream/remoteMediaManager.d.ts +259 -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 +117 -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 +27 -20
- package/src/breakouts/README.md +208 -0
- package/src/breakouts/breakout.ts +129 -0
- package/src/breakouts/collection.ts +19 -0
- package/src/breakouts/edit-lock-error.ts +25 -0
- package/src/breakouts/index.ts +658 -0
- package/src/breakouts/request.ts +55 -0
- package/src/breakouts/utils.ts +39 -0
- package/src/common/browser-detection.ts +9 -6
- package/src/common/collection.ts +3 -1
- package/src/common/errors/captcha-error.ts +6 -6
- package/src/common/errors/intent-to-join.ts +6 -6
- package/src/common/errors/join-meeting.ts +12 -8
- package/src/common/errors/media.ts +6 -6
- package/src/common/errors/parameter.ts +9 -6
- package/src/common/errors/password-error.ts +6 -6
- package/src/common/errors/permission.ts +5 -5
- package/src/common/errors/reconnection.ts +6 -6
- package/src/common/errors/stats.ts +6 -6
- package/src/common/errors/webex-errors.ts +7 -5
- package/src/common/errors/webex-meetings-error.ts +1 -1
- package/src/common/events/events-scope.ts +5 -1
- package/src/common/events/events.ts +5 -1
- package/src/common/events/trigger-proxy.ts +8 -3
- package/src/common/events/util.ts +1 -2
- package/src/common/logs/logger-proxy.ts +21 -10
- package/src/common/logs/request.ts +11 -8
- package/src/config.ts +16 -12
- package/src/constants.ts +84 -6
- 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 +218 -0
- package/src/controls-options-manager/util.ts +30 -0
- package/src/index.js +4 -1
- package/src/locus-info/controlsUtils.ts +44 -24
- package/src/locus-info/fullState.ts +15 -11
- package/src/locus-info/hostUtils.ts +4 -3
- package/src/locus-info/index.ts +128 -38
- package/src/locus-info/infoUtils.ts +16 -4
- package/src/locus-info/mediaSharesUtils.ts +4 -4
- package/src/locus-info/parser.ts +46 -68
- package/src/locus-info/selfUtils.ts +148 -57
- package/src/media/index.ts +136 -179
- package/src/media/properties.ts +47 -36
- package/src/media/util.ts +1 -1
- package/src/mediaQualityMetrics/config.ts +380 -378
- package/src/meeting/in-meeting-actions.ts +55 -3
- package/src/meeting/index.ts +2331 -1502
- package/src/meeting/muteState.ts +122 -62
- package/src/meeting/request.ts +228 -132
- package/src/meeting/request.type.ts +13 -0
- package/src/meeting/state.ts +45 -30
- package/src/meeting/util.ts +124 -111
- package/src/meeting-info/collection.ts +2 -1
- package/src/meeting-info/index.ts +32 -30
- package/src/meeting-info/meeting-info-v2.ts +108 -108
- package/src/meeting-info/request.ts +9 -3
- package/src/meeting-info/util.ts +54 -46
- package/src/meeting-info/utilv2.ts +59 -53
- package/src/meetings/collection.ts +1 -1
- package/src/meetings/index.ts +520 -443
- package/src/meetings/request.ts +27 -25
- package/src/meetings/util.ts +53 -29
- package/src/member/index.ts +64 -49
- package/src/member/util.ts +39 -13
- package/src/members/collection.ts +0 -1
- package/src/members/index.ts +196 -129
- package/src/members/request.ts +47 -14
- package/src/members/util.ts +64 -49
- package/src/metrics/config.ts +253 -90
- package/src/metrics/constants.ts +0 -6
- package/src/metrics/index.ts +85 -93
- package/src/multistream/mediaRequestManager.ts +101 -39
- package/src/multistream/receiveSlot.ts +62 -26
- package/src/multistream/receiveSlotManager.ts +50 -38
- package/src/multistream/remoteMedia.ts +28 -4
- package/src/multistream/remoteMediaGroup.ts +4 -3
- package/src/multistream/remoteMediaManager.ts +209 -62
- package/src/networkQualityMonitor/index.ts +24 -27
- package/src/personal-meeting-room/index.ts +12 -16
- package/src/personal-meeting-room/request.ts +10 -3
- package/src/personal-meeting-room/util.ts +3 -3
- package/src/reachability/index.ts +131 -79
- package/src/reachability/request.ts +43 -34
- 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.ts +158 -94
- 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.ts +50 -42
- package/src/roap/request.ts +86 -53
- package/src/roap/turnDiscovery.ts +69 -38
- package/src/statsAnalyzer/global.ts +8 -104
- package/src/statsAnalyzer/index.ts +593 -376
- package/src/statsAnalyzer/mqaUtil.ts +203 -90
- package/src/transcription/index.ts +34 -32
- 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 +319 -204
- package/test/integration/spec/transcription.js +7 -8
- package/test/unit/spec/breakouts/breakout.ts +146 -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 +965 -0
- package/test/unit/spec/breakouts/request.ts +104 -0
- package/test/unit/spec/breakouts/utils.js +47 -0
- package/test/unit/spec/common/browser-detection.js +9 -28
- package/test/unit/spec/controls-options-manager/index.js +180 -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 +112 -34
- package/test/unit/spec/locus-info/embeddedAppsUtils.js +8 -6
- package/test/unit/spec/locus-info/index.js +219 -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 +128 -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 +23 -2
- package/test/unit/spec/meeting/index.js +2469 -793
- package/test/unit/spec/meeting/muteState.js +146 -61
- package/test/unit/spec/meeting/request.js +141 -43
- package/test/unit/spec/meeting/utils.js +134 -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 +1 -1
- package/test/unit/spec/meetings/index.js +439 -257
- package/test/unit/spec/meetings/utils.js +14 -12
- package/test/unit/spec/member/index.js +0 -1
- package/test/unit/spec/member/util.js +31 -7
- package/test/unit/spec/members/index.js +179 -54
- package/test/unit/spec/members/request.js +29 -20
- package/test/unit/spec/members/utils.js +119 -4
- package/test/unit/spec/metrics/index.js +16 -21
- package/test/unit/spec/multistream/mediaRequestManager.ts +318 -64
- package/test/unit/spec/multistream/receiveSlot.ts +68 -17
- package/test/unit/spec/multistream/receiveSlotManager.ts +60 -38
- package/test/unit/spec/multistream/remoteMedia.ts +30 -2
- package/test/unit/spec/multistream/remoteMediaGroup.ts +5 -5
- package/test/unit/spec/multistream/remoteMediaManager.ts +481 -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 -31
- 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/media/internal-media-core-wrapper.ts +0 -9
- package/src/meeting/effectsState.ts +0 -211
- package/src/multistream/multistreamMedia.ts +0 -92
- package/test/unit/spec/meeting/effectsState.js +0 -291
package/dist/locus-info/index.js
CHANGED
|
@@ -1,65 +1,36 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _Reflect$construct = require("@babel/runtime-corejs2/core-js/reflect/construct");
|
|
4
|
-
|
|
5
4
|
var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
|
|
6
|
-
|
|
7
5
|
var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
|
|
8
|
-
|
|
9
6
|
_Object$defineProperty(exports, "__esModule", {
|
|
10
7
|
value: true
|
|
11
8
|
});
|
|
12
|
-
|
|
13
9
|
exports.default = void 0;
|
|
14
|
-
|
|
15
10
|
var _keys = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/object/keys"));
|
|
16
|
-
|
|
17
11
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/classCallCheck"));
|
|
18
|
-
|
|
19
12
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/createClass"));
|
|
20
|
-
|
|
21
13
|
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/assertThisInitialized"));
|
|
22
|
-
|
|
23
14
|
var _inherits2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/inherits"));
|
|
24
|
-
|
|
25
15
|
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/possibleConstructorReturn"));
|
|
26
|
-
|
|
27
16
|
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/getPrototypeOf"));
|
|
28
|
-
|
|
29
17
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/defineProperty"));
|
|
30
|
-
|
|
31
18
|
var _isEqual2 = _interopRequireDefault(require("lodash/isEqual"));
|
|
32
|
-
|
|
33
19
|
var _loggerProxy = _interopRequireDefault(require("../common/logs/logger-proxy"));
|
|
34
|
-
|
|
35
20
|
var _eventsScope = _interopRequireDefault(require("../common/events/events-scope"));
|
|
36
|
-
|
|
37
21
|
var _constants = require("../constants");
|
|
38
|
-
|
|
39
22
|
var _metrics = _interopRequireDefault(require("../metrics"));
|
|
40
|
-
|
|
41
23
|
var _config = require("../metrics/config");
|
|
42
|
-
|
|
43
|
-
var
|
|
44
|
-
|
|
45
|
-
var
|
|
46
|
-
|
|
47
|
-
var
|
|
48
|
-
|
|
49
|
-
var
|
|
50
|
-
|
|
51
|
-
var _controlsUtils = _interopRequireDefault(require("../locus-info/controlsUtils"));
|
|
52
|
-
|
|
53
|
-
var _embeddedAppsUtils = _interopRequireDefault(require("../locus-info/embeddedAppsUtils"));
|
|
54
|
-
|
|
55
|
-
var _mediaSharesUtils = _interopRequireDefault(require("../locus-info/mediaSharesUtils"));
|
|
56
|
-
|
|
57
|
-
var _parser = _interopRequireDefault(require("../locus-info/parser"));
|
|
58
|
-
|
|
24
|
+
var _infoUtils = _interopRequireDefault(require("./infoUtils"));
|
|
25
|
+
var _fullState = _interopRequireDefault(require("./fullState"));
|
|
26
|
+
var _selfUtils = _interopRequireDefault(require("./selfUtils"));
|
|
27
|
+
var _hostUtils = _interopRequireDefault(require("./hostUtils"));
|
|
28
|
+
var _controlsUtils = _interopRequireDefault(require("./controlsUtils"));
|
|
29
|
+
var _embeddedAppsUtils = _interopRequireDefault(require("./embeddedAppsUtils"));
|
|
30
|
+
var _mediaSharesUtils = _interopRequireDefault(require("./mediaSharesUtils"));
|
|
31
|
+
var _parser = _interopRequireDefault(require("./parser"));
|
|
59
32
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
60
|
-
|
|
61
33
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
62
|
-
|
|
63
34
|
/**
|
|
64
35
|
* @description LocusInfo extends ChildEmitter to convert locusInfo info a private emitter to parent object
|
|
65
36
|
* @export
|
|
@@ -68,12 +39,16 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_R
|
|
|
68
39
|
*/
|
|
69
40
|
var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
70
41
|
(0, _inherits2.default)(LocusInfo, _EventsScope);
|
|
71
|
-
|
|
72
42
|
var _super = _createSuper(LocusInfo);
|
|
73
|
-
|
|
43
|
+
/**
|
|
44
|
+
* Constructor
|
|
45
|
+
* @param {boolean} updateMeeting true if the meeting should be updated
|
|
46
|
+
* @param {object} webex
|
|
47
|
+
* @param {string} meetingId
|
|
48
|
+
* @returns {undefined}
|
|
49
|
+
*/
|
|
74
50
|
function LocusInfo(updateMeeting, webex, meetingId) {
|
|
75
51
|
var _this;
|
|
76
|
-
|
|
77
52
|
(0, _classCallCheck2.default)(this, LocusInfo);
|
|
78
53
|
_this = _super.call(this);
|
|
79
54
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "compareAndUpdateFlags", void 0);
|
|
@@ -103,6 +78,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
103
78
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "mediaShares", void 0);
|
|
104
79
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "replace", void 0);
|
|
105
80
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "url", void 0);
|
|
81
|
+
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "services", void 0);
|
|
106
82
|
_this.parsedLocus = {
|
|
107
83
|
states: []
|
|
108
84
|
};
|
|
@@ -114,6 +90,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
114
90
|
_this.locusParser = new _parser.default();
|
|
115
91
|
return _this;
|
|
116
92
|
}
|
|
93
|
+
|
|
117
94
|
/**
|
|
118
95
|
* Apply locus delta data to meeting
|
|
119
96
|
* @param {string} action Locus delta action
|
|
@@ -121,45 +98,38 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
121
98
|
* @param {Meeting} meeting
|
|
122
99
|
* @returns {undefined}
|
|
123
100
|
*/
|
|
124
|
-
|
|
125
|
-
|
|
126
101
|
(0, _createClass2.default)(LocusInfo, [{
|
|
127
102
|
key: "applyLocusDeltaData",
|
|
128
103
|
value: function applyLocusDeltaData(action, locus, meeting) {
|
|
129
104
|
var _this2 = this;
|
|
130
|
-
|
|
131
105
|
var _LocusDeltaParser$loc = _parser.default.loci,
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
106
|
+
DESYNC = _LocusDeltaParser$loc.DESYNC,
|
|
107
|
+
USE_CURRENT = _LocusDeltaParser$loc.USE_CURRENT,
|
|
108
|
+
USE_INCOMING = _LocusDeltaParser$loc.USE_INCOMING;
|
|
136
109
|
switch (action) {
|
|
137
110
|
case USE_INCOMING:
|
|
138
111
|
meeting.locusInfo.onDeltaLocus(locus);
|
|
139
112
|
break;
|
|
140
|
-
|
|
141
113
|
case USE_CURRENT:
|
|
142
114
|
meeting.locusDesync = false;
|
|
143
115
|
meeting.needToGetFullLocus = false;
|
|
144
116
|
break;
|
|
145
|
-
|
|
146
117
|
case DESYNC:
|
|
147
118
|
meeting.meetingRequest.getFullLocus({
|
|
148
119
|
desync: true,
|
|
149
120
|
locusUrl: meeting.locusUrl
|
|
150
121
|
}).then(function (res) {
|
|
151
|
-
meeting.locusInfo.onFullLocus(res.body);
|
|
122
|
+
meeting.locusInfo.onFullLocus(res.body);
|
|
123
|
+
// Notify parser to resume processing delta events
|
|
152
124
|
// now that we have full locus from DESYNC.
|
|
153
|
-
|
|
154
125
|
_this2.locusParser.resume();
|
|
155
126
|
});
|
|
156
127
|
break;
|
|
157
|
-
|
|
158
128
|
default:
|
|
159
129
|
_loggerProxy.default.logger.info("Locus-info:index#applyLocusDeltaData --> Unknown locus delta action: ".concat(action));
|
|
160
|
-
|
|
161
130
|
}
|
|
162
131
|
}
|
|
132
|
+
|
|
163
133
|
/**
|
|
164
134
|
* Adds locus delta to parser's queue
|
|
165
135
|
* and registers a function handler
|
|
@@ -168,12 +138,10 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
168
138
|
* @param {Meeting} meeting
|
|
169
139
|
* @returns {undefined}
|
|
170
140
|
*/
|
|
171
|
-
|
|
172
141
|
}, {
|
|
173
142
|
key: "handleLocusDelta",
|
|
174
143
|
value: function handleLocusDelta(locus, meeting) {
|
|
175
144
|
var _this3 = this;
|
|
176
|
-
|
|
177
145
|
// register a function to process delta actions
|
|
178
146
|
if (!this.locusParser.onDeltaAction) {
|
|
179
147
|
// delta action, along with associated loci
|
|
@@ -181,20 +149,20 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
181
149
|
this.locusParser.onDeltaAction = function (action, parsedLoci) {
|
|
182
150
|
_this3.applyLocusDeltaData(action, parsedLoci, meeting);
|
|
183
151
|
};
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
|
|
152
|
+
}
|
|
153
|
+
// queue delta event with parser
|
|
187
154
|
this.locusParser.onDeltaEvent(locus);
|
|
188
155
|
}
|
|
156
|
+
|
|
189
157
|
/**
|
|
190
158
|
* @param {Locus} locus
|
|
191
159
|
* @returns {undefined}
|
|
192
160
|
* @memberof LocusInfo
|
|
193
161
|
*/
|
|
194
|
-
|
|
195
162
|
}, {
|
|
196
163
|
key: "init",
|
|
197
164
|
value: function init() {
|
|
165
|
+
var _locus$links;
|
|
198
166
|
var locus = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
199
167
|
this.created = locus.created || null;
|
|
200
168
|
this.scheduledMeeting = locus.meeting || null;
|
|
@@ -206,6 +174,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
206
174
|
this.membership = locus.membership || null;
|
|
207
175
|
this.identities = locus.identities || null;
|
|
208
176
|
this.participants = locus.participants || null;
|
|
177
|
+
|
|
209
178
|
/**
|
|
210
179
|
* Stores the delta values for a changed participant.
|
|
211
180
|
*
|
|
@@ -223,50 +192,51 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
223
192
|
* @private
|
|
224
193
|
* @member LocusInfo
|
|
225
194
|
*/
|
|
195
|
+
this.deltaParticipants = [];
|
|
226
196
|
|
|
227
|
-
|
|
197
|
+
// above section only updates the locusInfo object
|
|
228
198
|
// The below section makes sure it updates the locusInfo as well as updates the meeting object
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
199
|
+
this.updateParticipants(locus.participants);
|
|
200
|
+
// For 1:1 space meeting the conversation Url does not exist in locus.conversation
|
|
232
201
|
this.updateConversationUrl(locus.conversationUrl, locus.info);
|
|
233
202
|
this.updateControls(locus.controls);
|
|
234
203
|
this.updateLocusUrl(locus.url);
|
|
235
204
|
this.updateFullState(locus.fullState);
|
|
236
205
|
this.updateMeetingInfo(locus.info);
|
|
237
|
-
this.updateEmbeddedApps(locus.embeddedApps);
|
|
238
|
-
|
|
206
|
+
this.updateEmbeddedApps(locus.embeddedApps);
|
|
207
|
+
// self and participants generate sipUrl for 1:1 meeting
|
|
239
208
|
this.updateSelf(locus.self, locus.participants);
|
|
240
209
|
this.updateHostInfo(locus.host);
|
|
241
210
|
this.updateMediaShares(locus.mediaShares);
|
|
211
|
+
this.updateServices((_locus$links = locus.links) === null || _locus$links === void 0 ? void 0 : _locus$links.services);
|
|
242
212
|
}
|
|
213
|
+
|
|
243
214
|
/**
|
|
244
215
|
* @param {Object} locus
|
|
245
216
|
* @returns {undefined}
|
|
246
217
|
* @memberof LocusInfo
|
|
247
218
|
*/
|
|
248
|
-
|
|
249
219
|
}, {
|
|
250
220
|
key: "initialSetup",
|
|
251
221
|
value: function initialSetup(locus) {
|
|
252
|
-
this.onFullLocus(locus);
|
|
222
|
+
this.onFullLocus(locus);
|
|
253
223
|
|
|
224
|
+
// Change it to true after it receives it first locus object
|
|
254
225
|
this.emitChange = true;
|
|
255
226
|
}
|
|
227
|
+
|
|
256
228
|
/**
|
|
257
229
|
* @param {Meeting} meeting
|
|
258
230
|
* @param {Object} data
|
|
259
231
|
* @returns {undefined}
|
|
260
232
|
* @memberof LocusInfo
|
|
261
233
|
*/
|
|
262
|
-
|
|
263
234
|
}, {
|
|
264
235
|
key: "parse",
|
|
265
236
|
value: function parse(meeting, data) {
|
|
237
|
+
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
266
238
|
var eventType = data.eventType;
|
|
267
|
-
|
|
268
239
|
_loggerProxy.default.logger.info("Locus-info:index#parse --> received locus data: ".concat(eventType));
|
|
269
|
-
|
|
270
240
|
switch (eventType) {
|
|
271
241
|
case _constants.LOCUSEVENT.PARTICIPANT_JOIN:
|
|
272
242
|
case _constants.LOCUSEVENT.PARTICIPANT_LEFT:
|
|
@@ -284,17 +254,16 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
284
254
|
case _constants.LOCUSEVENT.FLOOR_RELEASED:
|
|
285
255
|
this.onFullLocus(data.locus, eventType);
|
|
286
256
|
break;
|
|
287
|
-
|
|
288
257
|
case _constants.LOCUSEVENT.DIFFERENCE:
|
|
289
258
|
this.handleLocusDelta(data.locus, meeting);
|
|
290
259
|
break;
|
|
291
|
-
|
|
292
260
|
default:
|
|
293
261
|
// Why will there be a event with no eventType ????
|
|
294
262
|
// we may not need this, we can get full locus
|
|
295
263
|
this.handleLocusDelta(data.locus, meeting);
|
|
296
264
|
}
|
|
297
265
|
}
|
|
266
|
+
|
|
298
267
|
/**
|
|
299
268
|
* @param {String} scope
|
|
300
269
|
* @param {String} eventName
|
|
@@ -302,12 +271,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
302
271
|
* @returns {undefined}
|
|
303
272
|
* @memberof LocusInfo
|
|
304
273
|
*/
|
|
305
|
-
|
|
306
274
|
}, {
|
|
307
275
|
key: "emitScoped",
|
|
308
276
|
value: function emitScoped(scope, eventName, args) {
|
|
309
277
|
return this.emit(scope, eventName, args);
|
|
310
278
|
}
|
|
279
|
+
|
|
311
280
|
/**
|
|
312
281
|
* updates the locus with full locus object
|
|
313
282
|
* @param {object} locus locus object
|
|
@@ -315,14 +284,13 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
315
284
|
* @returns {object} null
|
|
316
285
|
* @memberof LocusInfo
|
|
317
286
|
*/
|
|
318
|
-
|
|
287
|
+
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
319
288
|
}, {
|
|
320
289
|
key: "onFullLocus",
|
|
321
290
|
value: function onFullLocus(locus, eventType) {
|
|
322
291
|
if (!locus) {
|
|
323
292
|
_loggerProxy.default.logger.error('Locus-info:index#onFullLocus --> object passed as argument was invalid, continuing.');
|
|
324
293
|
}
|
|
325
|
-
|
|
326
294
|
this.updateParticipantDeltas(locus.participants);
|
|
327
295
|
this.scheduledMeeting = locus.meeting || null;
|
|
328
296
|
this.participants = locus.participants;
|
|
@@ -330,17 +298,18 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
330
298
|
this.updateParticipants(locus.participants);
|
|
331
299
|
this.isMeetingActive();
|
|
332
300
|
this.handleOneOnOneEvent(eventType);
|
|
333
|
-
this.updateEmbeddedApps(locus.embeddedApps);
|
|
334
|
-
|
|
301
|
+
this.updateEmbeddedApps(locus.embeddedApps);
|
|
302
|
+
// set current (working copy) for parser
|
|
335
303
|
this.locusParser.workingCopy = locus;
|
|
336
|
-
}
|
|
304
|
+
}
|
|
337
305
|
|
|
306
|
+
// used for ringing stops on one on one
|
|
338
307
|
/**
|
|
339
308
|
* @param {String} eventType
|
|
340
309
|
* @returns {undefined}
|
|
341
310
|
* @memberof LocusInfo
|
|
342
311
|
*/
|
|
343
|
-
|
|
312
|
+
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
344
313
|
}, {
|
|
345
314
|
key: "handleOneOnOneEvent",
|
|
346
315
|
value: function handleOneOnOneEvent(eventType) {
|
|
@@ -355,9 +324,8 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
355
324
|
remoteDeclined: true,
|
|
356
325
|
remoteAnswered: false
|
|
357
326
|
});
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
|
|
327
|
+
}
|
|
328
|
+
// for 1:1 bob calls alice and alice answers, notify the meeting state
|
|
361
329
|
if (eventType === _constants.LOCUSEVENT.PARTICIPANT_JOIN) {
|
|
362
330
|
// trigger the event for stop ringing
|
|
363
331
|
this.emitScoped({
|
|
@@ -370,12 +338,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
370
338
|
}
|
|
371
339
|
}
|
|
372
340
|
}
|
|
341
|
+
|
|
373
342
|
/**
|
|
374
343
|
* @param {Object} locus
|
|
375
344
|
* @returns {undefined}
|
|
376
345
|
* @memberof LocusInfo
|
|
377
346
|
*/
|
|
378
|
-
|
|
379
347
|
}, {
|
|
380
348
|
key: "onDeltaLocus",
|
|
381
349
|
value: function onDeltaLocus(locus) {
|
|
@@ -383,15 +351,22 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
383
351
|
this.updateParticipants(locus.participants);
|
|
384
352
|
this.isMeetingActive();
|
|
385
353
|
}
|
|
354
|
+
|
|
386
355
|
/**
|
|
387
356
|
* @param {Object} locus
|
|
388
357
|
* @returns {undefined}
|
|
389
358
|
* @memberof LocusInfo
|
|
390
359
|
*/
|
|
391
|
-
|
|
392
360
|
}, {
|
|
393
361
|
key: "updateLocusInfo",
|
|
394
362
|
value: function updateLocusInfo(locus) {
|
|
363
|
+
var _locus$self, _locus$self2, _locus$links2;
|
|
364
|
+
if (((_locus$self = locus.self) === null || _locus$self === void 0 ? void 0 : _locus$self.reason) === 'MOVED' && ((_locus$self2 = locus.self) === null || _locus$self2 === void 0 ? void 0 : _locus$self2.state) === 'LEFT') {
|
|
365
|
+
// When moved to a breakout session locus sends a message for the previous locus
|
|
366
|
+
// indicating that we have been moved. It isn't helpful to continue parsing this
|
|
367
|
+
// as it gets interpreted as if we have left the call
|
|
368
|
+
return;
|
|
369
|
+
}
|
|
395
370
|
this.updateControls(locus.controls);
|
|
396
371
|
this.updateConversationUrl(locus.conversationUrl, locus.info);
|
|
397
372
|
this.updateCreated(locus.created);
|
|
@@ -409,33 +384,35 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
409
384
|
this.updateMemberShip(locus.membership);
|
|
410
385
|
this.updateIdentifiers(locus.identities);
|
|
411
386
|
this.updateEmbeddedApps(locus.embeddedApps);
|
|
412
|
-
this.
|
|
387
|
+
this.updateServices((_locus$links2 = locus.links) === null || _locus$links2 === void 0 ? void 0 : _locus$links2.services);
|
|
388
|
+
this.compareAndUpdate();
|
|
389
|
+
// update which required to compare different objects from locus
|
|
413
390
|
}
|
|
391
|
+
|
|
414
392
|
/**
|
|
415
393
|
* @param {Array} participants
|
|
416
394
|
* @param {Object} self
|
|
417
395
|
* @returns {Array}
|
|
418
396
|
* @memberof LocusInfo
|
|
419
397
|
*/
|
|
420
|
-
|
|
421
398
|
}, {
|
|
422
399
|
key: "getLocusPartner",
|
|
423
400
|
value: function getLocusPartner(participants, self) {
|
|
424
401
|
if (!participants || participants.length === 0) {
|
|
425
402
|
return null;
|
|
426
403
|
}
|
|
427
|
-
|
|
428
404
|
return participants.find(function (participant) {
|
|
429
405
|
return self && participant.identity !== self.identity && (participants.length <= 2 || participant.type === _constants._USER_ && !participant.removed);
|
|
430
|
-
}
|
|
406
|
+
}
|
|
407
|
+
// @ts-ignore
|
|
431
408
|
) || this.partner;
|
|
432
|
-
}
|
|
409
|
+
}
|
|
433
410
|
|
|
411
|
+
// TODO: all the leave states need to be checked
|
|
434
412
|
/**
|
|
435
413
|
* @returns {undefined}
|
|
436
414
|
* @memberof LocusInfo
|
|
437
415
|
*/
|
|
438
|
-
|
|
439
416
|
}, {
|
|
440
417
|
key: "isMeetingActive",
|
|
441
418
|
value: function isMeetingActive() {
|
|
@@ -444,20 +421,22 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
444
421
|
var partner = this.getLocusPartner(this.participants, this.self);
|
|
445
422
|
this.updateMeeting({
|
|
446
423
|
partner: partner
|
|
447
|
-
});
|
|
424
|
+
});
|
|
425
|
+
|
|
426
|
+
// Check if guest user needs to be checked here
|
|
427
|
+
|
|
448
428
|
// 1) when bob declines call from bob, (bob='DECLINED')
|
|
449
429
|
// 2) When alice rejects call to bob , (bob='NOTIFIED')
|
|
430
|
+
|
|
450
431
|
// When we dont add MEDIA for condition 2. The state of bob='IDLE'
|
|
451
432
|
|
|
452
433
|
if (this.fullState && this.fullState.state === _constants.LOCUS.STATE.INACTIVE) {
|
|
453
434
|
// TODO: update the meeting state
|
|
454
435
|
_loggerProxy.default.logger.warn('Locus-info:index#isMeetingActive --> Call Ended, locus state is inactive.');
|
|
455
|
-
|
|
456
436
|
_metrics.default.postEvent({
|
|
457
437
|
event: _config.eventType.REMOTE_ENDED,
|
|
458
438
|
meetingId: this.meetingId
|
|
459
439
|
});
|
|
460
|
-
|
|
461
440
|
this.emitScoped({
|
|
462
441
|
file: 'locus-info',
|
|
463
442
|
function: 'isMeetingActive'
|
|
@@ -470,7 +449,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
470
449
|
event: _config.eventType.REMOTE_ENDED,
|
|
471
450
|
meetingId: this.meetingId
|
|
472
451
|
});
|
|
473
|
-
|
|
474
452
|
this.emitScoped({
|
|
475
453
|
file: 'locus-info',
|
|
476
454
|
function: 'isMeetingActive'
|
|
@@ -484,7 +462,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
484
462
|
event: _config.eventType.REMOTE_ENDED,
|
|
485
463
|
meetingId: this.meetingId
|
|
486
464
|
});
|
|
487
|
-
|
|
488
465
|
this.emitScoped({
|
|
489
466
|
file: 'locus-info',
|
|
490
467
|
function: 'isMeetingActive'
|
|
@@ -494,15 +471,14 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
494
471
|
});
|
|
495
472
|
}
|
|
496
473
|
} else if (this.parsedLocus.fullState.type === _constants._MEETING_) {
|
|
497
|
-
if (this.fullState && (this.fullState.state === _constants.LOCUS.STATE.INACTIVE ||
|
|
474
|
+
if (this.fullState && (this.fullState.state === _constants.LOCUS.STATE.INACTIVE ||
|
|
475
|
+
// @ts-ignore
|
|
498
476
|
this.fullState.state === _constants.LOCUS.STATE.TERMINATING)) {
|
|
499
477
|
_loggerProxy.default.logger.warn('Locus-info:index#isMeetingActive --> Meeting is ending due to inactive or terminating');
|
|
500
|
-
|
|
501
478
|
_metrics.default.postEvent({
|
|
502
479
|
event: _config.eventType.REMOTE_ENDED,
|
|
503
480
|
meetingId: this.meetingId
|
|
504
481
|
});
|
|
505
|
-
|
|
506
482
|
this.emitScoped({
|
|
507
483
|
file: 'locus-info',
|
|
508
484
|
function: 'isMeetingActive'
|
|
@@ -516,7 +492,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
516
492
|
event: _config.eventType.REMOTE_ENDED,
|
|
517
493
|
meetingId: this.meetingId
|
|
518
494
|
});
|
|
519
|
-
|
|
520
495
|
this.emitScoped({
|
|
521
496
|
file: 'locus-info',
|
|
522
497
|
function: 'isMeetingActive'
|
|
@@ -524,7 +499,8 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
524
499
|
reason: _constants.MEETING_REMOVED_REASON.FULLSTATE_REMOVED,
|
|
525
500
|
shouldLeave: false
|
|
526
501
|
});
|
|
527
|
-
}
|
|
502
|
+
}
|
|
503
|
+
// If you are guest and you are removed from the meeting
|
|
528
504
|
// You wont get any further events
|
|
529
505
|
else if (this.parsedLocus.self && this.parsedLocus.self.removed) {
|
|
530
506
|
// Check if we need to send an event
|
|
@@ -540,13 +516,13 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
540
516
|
_loggerProxy.default.logger.warn('Locus-info:index#isMeetingActive --> Meeting Type is unknown.');
|
|
541
517
|
}
|
|
542
518
|
}
|
|
519
|
+
|
|
543
520
|
/**
|
|
544
521
|
* checks if the host permissions have changed while in the meeting
|
|
545
522
|
* This would be the case if your role as host or moderator has been updated
|
|
546
523
|
* @returns {undefined}
|
|
547
524
|
* @memberof LocusInfo
|
|
548
525
|
*/
|
|
549
|
-
|
|
550
526
|
}, {
|
|
551
527
|
key: "compareAndUpdate",
|
|
552
528
|
value: function compareAndUpdate() {
|
|
@@ -556,17 +532,16 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
556
532
|
this.compareSelfAndHost();
|
|
557
533
|
}
|
|
558
534
|
}
|
|
535
|
+
|
|
559
536
|
/**
|
|
560
537
|
* compared the self object to check if the user has host permissions
|
|
561
538
|
* @returns {undefined}
|
|
562
539
|
* @memberof LocusInfo
|
|
563
540
|
*/
|
|
564
|
-
|
|
565
541
|
}, {
|
|
566
542
|
key: "compareSelfAndHost",
|
|
567
543
|
value: function compareSelfAndHost() {
|
|
568
544
|
var _this$parsedLocus$hos;
|
|
569
|
-
|
|
570
545
|
// In some cases the host info is not present but the moderator values changes from null to false so it triggers an update
|
|
571
546
|
if (this.parsedLocus.self.selfIdentity === ((_this$parsedLocus$hos = this.parsedLocus.host) === null || _this$parsedLocus$hos === void 0 ? void 0 : _this$parsedLocus$hos.hostId) && this.parsedLocus.self.moderator) {
|
|
572
547
|
this.emitScoped({
|
|
@@ -584,6 +559,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
584
559
|
});
|
|
585
560
|
}
|
|
586
561
|
}
|
|
562
|
+
|
|
587
563
|
/**
|
|
588
564
|
* Update the deltaParticipants property of this object based on a list of
|
|
589
565
|
* provided participants.
|
|
@@ -591,22 +567,19 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
591
567
|
* @param {Array} [participants] - The participants to update against.
|
|
592
568
|
* @returns {void}
|
|
593
569
|
*/
|
|
594
|
-
|
|
595
570
|
}, {
|
|
596
571
|
key: "updateParticipantDeltas",
|
|
597
572
|
value: function updateParticipantDeltas() {
|
|
598
573
|
var _this4 = this;
|
|
599
|
-
|
|
600
574
|
var participants = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
601
|
-
|
|
602
575
|
// Used to find a participant within a participants collection.
|
|
603
576
|
var findParticipant = function findParticipant(participant, collection) {
|
|
604
577
|
return collection.find(function (item) {
|
|
605
578
|
return item.person.id === participant.person.id;
|
|
606
579
|
});
|
|
607
|
-
};
|
|
608
|
-
|
|
580
|
+
};
|
|
609
581
|
|
|
582
|
+
// Generates an object that indicates which state properties have changed.
|
|
610
583
|
var generateDelta = function generateDelta() {
|
|
611
584
|
var prevState = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
612
585
|
var newState = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
@@ -615,8 +588,9 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
615
588
|
audioStatus: prevState.audioStatus !== newState.audioStatus,
|
|
616
589
|
videoSlidesStatus: prevState.videoSlidesStatus !== newState.videoSlidesStatus,
|
|
617
590
|
videoStatus: prevState.videoStatus !== newState.videoStatus
|
|
618
|
-
};
|
|
591
|
+
};
|
|
619
592
|
|
|
593
|
+
// Clean the object
|
|
620
594
|
(0, _keys.default)(deltas).forEach(function (key) {
|
|
621
595
|
if (deltas[key] !== true) {
|
|
622
596
|
delete deltas[key];
|
|
@@ -624,22 +598,20 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
624
598
|
});
|
|
625
599
|
return deltas;
|
|
626
600
|
};
|
|
627
|
-
|
|
628
601
|
this.deltaParticipants = participants.reduce(function (collection, participant) {
|
|
629
602
|
var existingParticipant = findParticipant(participant, _this4.participants || []) || {};
|
|
630
603
|
var delta = generateDelta(existingParticipant.status, participant.status);
|
|
631
604
|
var changed = (0, _keys.default)(delta).length > 0;
|
|
632
|
-
|
|
633
605
|
if (changed) {
|
|
634
606
|
collection.push({
|
|
635
607
|
person: participant.person,
|
|
636
608
|
delta: delta
|
|
637
609
|
});
|
|
638
610
|
}
|
|
639
|
-
|
|
640
611
|
return collection;
|
|
641
612
|
}, []);
|
|
642
613
|
}
|
|
614
|
+
|
|
643
615
|
/**
|
|
644
616
|
*
|
|
645
617
|
* @param {Object} participants new participants object
|
|
@@ -647,12 +619,10 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
647
619
|
* @returns {Array} updatedParticipants
|
|
648
620
|
* @memberof LocusInfo
|
|
649
621
|
*/
|
|
650
|
-
|
|
651
622
|
}, {
|
|
652
623
|
key: "updateParticipants",
|
|
653
624
|
value: function updateParticipants(participants) {
|
|
654
625
|
var _this$parsedLocus$con;
|
|
655
|
-
|
|
656
626
|
this.emitScoped({
|
|
657
627
|
file: 'locus-info',
|
|
658
628
|
function: 'updateParticipants'
|
|
@@ -664,30 +634,29 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
664
634
|
hostId: this.parsedLocus.host && this.parsedLocus.host.hostId
|
|
665
635
|
});
|
|
666
636
|
}
|
|
637
|
+
|
|
667
638
|
/**
|
|
668
639
|
* @param {Object} controls
|
|
669
640
|
* @returns {undefined}
|
|
670
641
|
* @memberof LocusInfo
|
|
671
642
|
*/
|
|
672
|
-
|
|
673
643
|
}, {
|
|
674
644
|
key: "updateControls",
|
|
675
645
|
value: function updateControls(controls) {
|
|
676
646
|
if (controls && !(0, _isEqual2.default)(this.controls, controls)) {
|
|
677
647
|
this.parsedLocus.controls = _controlsUtils.default.parse(controls);
|
|
678
|
-
|
|
679
648
|
var _ControlsUtils$getCon = _controlsUtils.default.getControls(this.controls, controls),
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
649
|
+
_ControlsUtils$getCon2 = _ControlsUtils$getCon.updates,
|
|
650
|
+
hasRecordingChanged = _ControlsUtils$getCon2.hasRecordingChanged,
|
|
651
|
+
hasRecordingPausedChanged = _ControlsUtils$getCon2.hasRecordingPausedChanged,
|
|
652
|
+
hasMeetingContainerChanged = _ControlsUtils$getCon2.hasMeetingContainerChanged,
|
|
653
|
+
hasTranscribeChanged = _ControlsUtils$getCon2.hasTranscribeChanged,
|
|
654
|
+
hasEntryExitToneChanged = _ControlsUtils$getCon2.hasEntryExitToneChanged,
|
|
655
|
+
hasBreakoutChanged = _ControlsUtils$getCon2.hasBreakoutChanged,
|
|
656
|
+
hasVideoEnabledChanged = _ControlsUtils$getCon2.hasVideoEnabledChanged,
|
|
657
|
+
current = _ControlsUtils$getCon.current;
|
|
688
658
|
if (hasRecordingChanged || hasRecordingPausedChanged) {
|
|
689
659
|
var state = null;
|
|
690
|
-
|
|
691
660
|
if (hasRecordingPausedChanged) {
|
|
692
661
|
if (current.record.paused) {
|
|
693
662
|
state = _constants.RECORDING_STATE.PAUSED;
|
|
@@ -698,7 +667,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
698
667
|
} else if (hasRecordingChanged) {
|
|
699
668
|
state = current.record.recording ? _constants.RECORDING_STATE.RECORDING : _constants.RECORDING_STATE.IDLE;
|
|
700
669
|
}
|
|
701
|
-
|
|
702
670
|
this.emitScoped({
|
|
703
671
|
file: 'locus-info',
|
|
704
672
|
function: 'updateControls'
|
|
@@ -708,7 +676,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
708
676
|
lastModified: current.record.lastModified
|
|
709
677
|
});
|
|
710
678
|
}
|
|
711
|
-
|
|
712
679
|
if (hasMeetingContainerChanged) {
|
|
713
680
|
var meetingContainerUrl = current.meetingContainer.meetingContainerUrl;
|
|
714
681
|
this.emitScoped({
|
|
@@ -718,11 +685,10 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
718
685
|
meetingContainerUrl: meetingContainerUrl
|
|
719
686
|
});
|
|
720
687
|
}
|
|
721
|
-
|
|
722
688
|
if (hasTranscribeChanged) {
|
|
723
689
|
var _current$transcribe = current.transcribe,
|
|
724
|
-
|
|
725
|
-
|
|
690
|
+
transcribing = _current$transcribe.transcribing,
|
|
691
|
+
caption = _current$transcribe.caption;
|
|
726
692
|
this.emitScoped({
|
|
727
693
|
file: 'locus-info',
|
|
728
694
|
function: 'updateControls'
|
|
@@ -731,30 +697,53 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
731
697
|
caption: caption
|
|
732
698
|
});
|
|
733
699
|
}
|
|
734
|
-
|
|
700
|
+
if (hasBreakoutChanged) {
|
|
701
|
+
var breakout = current.breakout;
|
|
702
|
+
this.emitScoped({
|
|
703
|
+
file: 'locus-info',
|
|
704
|
+
function: 'updateControls'
|
|
705
|
+
}, _constants.LOCUSINFO.EVENTS.CONTROLS_MEETING_BREAKOUT_UPDATED, {
|
|
706
|
+
breakout: breakout
|
|
707
|
+
});
|
|
708
|
+
}
|
|
735
709
|
if (hasEntryExitToneChanged) {
|
|
736
710
|
var entryExitTone = current.entryExitTone;
|
|
711
|
+
this.updateMeeting({
|
|
712
|
+
entryExitTone: entryExitTone
|
|
713
|
+
});
|
|
737
714
|
this.emitScoped({
|
|
738
715
|
file: 'locus-info',
|
|
739
716
|
function: 'updateControls'
|
|
740
717
|
}, _constants.LOCUSINFO.EVENTS.CONTROLS_ENTRY_EXIT_TONE_UPDATED, {
|
|
741
718
|
entryExitTone: entryExitTone
|
|
742
719
|
});
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
// videoEnabled is handled differently than other controls,
|
|
723
|
+
// to fit with audio mute status logic
|
|
724
|
+
if (hasVideoEnabledChanged) {
|
|
725
|
+
var videoEnabled = current.videoEnabled;
|
|
743
726
|
this.updateMeeting({
|
|
744
|
-
|
|
727
|
+
unmuteVideoAllowed: videoEnabled
|
|
728
|
+
});
|
|
729
|
+
this.emitScoped({
|
|
730
|
+
file: 'locus-info',
|
|
731
|
+
function: 'updateControls'
|
|
732
|
+
}, _constants.LOCUSINFO.EVENTS.SELF_REMOTE_VIDEO_MUTE_STATUS_UPDATED, {
|
|
733
|
+
// muted: not part of locus.controls
|
|
734
|
+
unmuteAllowed: videoEnabled
|
|
745
735
|
});
|
|
746
736
|
}
|
|
747
|
-
|
|
748
737
|
this.controls = controls;
|
|
749
738
|
}
|
|
750
739
|
}
|
|
740
|
+
|
|
751
741
|
/**
|
|
752
742
|
* @param {String} conversationUrl
|
|
753
743
|
* @param {Object} info
|
|
754
744
|
* @returns {undefined}
|
|
755
745
|
* @memberof LocusInfo
|
|
756
746
|
*/
|
|
757
|
-
|
|
758
747
|
}, {
|
|
759
748
|
key: "updateConversationUrl",
|
|
760
749
|
value: function updateConversationUrl(conversationUrl, info) {
|
|
@@ -770,12 +759,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
770
759
|
});
|
|
771
760
|
}
|
|
772
761
|
}
|
|
762
|
+
|
|
773
763
|
/**
|
|
774
764
|
* @param {Object} created
|
|
775
765
|
* @returns {undefined}
|
|
776
766
|
* @memberof LocusInfo
|
|
777
767
|
*/
|
|
778
|
-
|
|
779
768
|
}, {
|
|
780
769
|
key: "updateCreated",
|
|
781
770
|
value: function updateCreated(created) {
|
|
@@ -783,20 +772,37 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
783
772
|
this.created = created;
|
|
784
773
|
}
|
|
785
774
|
}
|
|
775
|
+
|
|
786
776
|
/**
|
|
787
|
-
* @param {Object}
|
|
777
|
+
* @param {Object} services
|
|
788
778
|
* @returns {undefined}
|
|
789
779
|
* @memberof LocusInfo
|
|
790
780
|
*/
|
|
781
|
+
}, {
|
|
782
|
+
key: "updateServices",
|
|
783
|
+
value: function updateServices(services) {
|
|
784
|
+
if (services && !(0, _isEqual2.default)(this.services, services)) {
|
|
785
|
+
this.services = services;
|
|
786
|
+
this.emitScoped({
|
|
787
|
+
file: 'locus-info',
|
|
788
|
+
function: 'updateServices'
|
|
789
|
+
}, _constants.LOCUSINFO.EVENTS.LINKS_SERVICES, {
|
|
790
|
+
services: services
|
|
791
|
+
});
|
|
792
|
+
}
|
|
793
|
+
}
|
|
791
794
|
|
|
795
|
+
/**
|
|
796
|
+
* @param {Object} fullState
|
|
797
|
+
* @returns {undefined}
|
|
798
|
+
* @memberof LocusInfo
|
|
799
|
+
*/
|
|
792
800
|
}, {
|
|
793
801
|
key: "updateFullState",
|
|
794
802
|
value: function updateFullState(fullState) {
|
|
795
803
|
if (fullState && !(0, _isEqual2.default)(this.fullState, fullState)) {
|
|
796
804
|
var result = _fullState.default.getFullState(this.fullState, fullState);
|
|
797
|
-
|
|
798
805
|
this.updateMeeting(result.current);
|
|
799
|
-
|
|
800
806
|
if (result.updates.meetingStateChangedTo) {
|
|
801
807
|
this.emitScoped({
|
|
802
808
|
file: 'locus-info',
|
|
@@ -806,7 +812,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
806
812
|
currentState: result.current.meetingState
|
|
807
813
|
});
|
|
808
814
|
}
|
|
809
|
-
|
|
810
815
|
if (result.updates.meetingTypeChangedTo) {
|
|
811
816
|
this.emitScoped({
|
|
812
817
|
file: 'locus-info',
|
|
@@ -815,11 +820,11 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
815
820
|
type: result.current.type
|
|
816
821
|
});
|
|
817
822
|
}
|
|
818
|
-
|
|
819
823
|
this.parsedLocus.fullState = result.current;
|
|
820
824
|
this.fullState = fullState;
|
|
821
825
|
}
|
|
822
826
|
}
|
|
827
|
+
|
|
823
828
|
/**
|
|
824
829
|
* handles when the locus.host is updated
|
|
825
830
|
* @param {Object} host the locus.host property
|
|
@@ -827,16 +832,13 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
827
832
|
* @memberof LocusInfo
|
|
828
833
|
* emits internal event locus_info_update_host
|
|
829
834
|
*/
|
|
830
|
-
|
|
831
835
|
}, {
|
|
832
836
|
key: "updateHostInfo",
|
|
833
837
|
value: function updateHostInfo(host) {
|
|
834
838
|
if (host && !(0, _isEqual2.default)(this.host, host)) {
|
|
835
839
|
var parsedHosts = _hostUtils.default.getHosts(this.host, host);
|
|
836
|
-
|
|
837
840
|
this.updateMeeting(parsedHosts.current);
|
|
838
841
|
this.parsedLocus.host = parsedHosts.current;
|
|
839
|
-
|
|
840
842
|
if (parsedHosts.updates.isNewHost) {
|
|
841
843
|
this.compareAndUpdateFlags.compareSelfAndHost = true;
|
|
842
844
|
this.emitScoped({
|
|
@@ -847,31 +849,26 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
847
849
|
oldHost: parsedHosts.previous
|
|
848
850
|
});
|
|
849
851
|
}
|
|
850
|
-
|
|
851
852
|
this.host = host;
|
|
852
853
|
} else {
|
|
853
854
|
this.compareAndUpdateFlags.compareSelfAndHost = false;
|
|
854
855
|
}
|
|
855
856
|
}
|
|
857
|
+
|
|
856
858
|
/**
|
|
857
859
|
* @param {Object} info
|
|
858
860
|
* @param {Object} self
|
|
859
861
|
* @returns {undefined}
|
|
860
862
|
* @memberof LocusInfo
|
|
861
863
|
*/
|
|
862
|
-
|
|
863
864
|
}, {
|
|
864
865
|
key: "updateMeetingInfo",
|
|
865
866
|
value: function updateMeetingInfo(info, self) {
|
|
866
867
|
if (info && !(0, _isEqual2.default)(this.info, info)) {
|
|
867
868
|
var _this$parsedLocus$sel;
|
|
868
|
-
|
|
869
869
|
var roles = self ? _selfUtils.default.getRoles(self) : ((_this$parsedLocus$sel = this.parsedLocus.self) === null || _this$parsedLocus$sel === void 0 ? void 0 : _this$parsedLocus$sel.roles) || [];
|
|
870
|
-
|
|
871
870
|
var isJoined = _selfUtils.default.isJoined(self || this.parsedLocus.self);
|
|
872
|
-
|
|
873
871
|
var parsedInfo = _infoUtils.default.getInfos(this.parsedLocus.info, info, roles, isJoined);
|
|
874
|
-
|
|
875
872
|
this.emitScoped({
|
|
876
873
|
file: 'locus-info',
|
|
877
874
|
function: 'updateMeetingInfo'
|
|
@@ -879,33 +876,30 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
879
876
|
info: parsedInfo.current,
|
|
880
877
|
self: self
|
|
881
878
|
});
|
|
882
|
-
|
|
883
879
|
if (parsedInfo.updates.isLocked) {
|
|
884
880
|
this.emitScoped({
|
|
885
881
|
file: 'locus-info',
|
|
886
882
|
function: 'updateMeetingInfo'
|
|
887
883
|
}, _constants.LOCUSINFO.EVENTS.MEETING_LOCKED, info);
|
|
888
884
|
}
|
|
889
|
-
|
|
890
885
|
if (parsedInfo.updates.isUnlocked) {
|
|
891
886
|
this.emitScoped({
|
|
892
887
|
file: 'locus-info',
|
|
893
888
|
function: 'updateMeetingInfo'
|
|
894
889
|
}, _constants.LOCUSINFO.EVENTS.MEETING_UNLOCKED, info);
|
|
895
890
|
}
|
|
896
|
-
|
|
897
891
|
this.info = info;
|
|
898
|
-
this.parsedLocus.info = parsedInfo.current;
|
|
899
|
-
|
|
892
|
+
this.parsedLocus.info = parsedInfo.current;
|
|
893
|
+
// Parses the info and adds necessary values
|
|
900
894
|
this.updateMeeting(parsedInfo.current);
|
|
901
895
|
}
|
|
902
896
|
}
|
|
897
|
+
|
|
903
898
|
/**
|
|
904
899
|
* @param {Object} embeddedApps
|
|
905
900
|
* @returns {undefined}
|
|
906
901
|
* @memberof LocusInfo
|
|
907
902
|
*/
|
|
908
|
-
|
|
909
903
|
}, {
|
|
910
904
|
key: "updateEmbeddedApps",
|
|
911
905
|
value: function updateEmbeddedApps(embeddedApps) {
|
|
@@ -913,9 +907,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
913
907
|
if (_embeddedAppsUtils.default.areSimilar(this.embeddedApps, embeddedApps)) {
|
|
914
908
|
return;
|
|
915
909
|
}
|
|
916
|
-
|
|
917
910
|
var parsedEmbeddedApps = _embeddedAppsUtils.default.parse(embeddedApps);
|
|
918
|
-
|
|
919
911
|
this.updateMeeting({
|
|
920
912
|
embeddedApps: parsedEmbeddedApps
|
|
921
913
|
});
|
|
@@ -925,6 +917,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
925
917
|
}, _constants.LOCUSINFO.EVENTS.EMBEDDED_APPS_UPDATED, parsedEmbeddedApps);
|
|
926
918
|
this.embeddedApps = embeddedApps;
|
|
927
919
|
}
|
|
920
|
+
|
|
928
921
|
/**
|
|
929
922
|
* handles when the locus.mediaShares is updated
|
|
930
923
|
* @param {Object} mediaShares the locus.mediaShares property
|
|
@@ -932,14 +925,14 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
932
925
|
* @memberof LocusInfo
|
|
933
926
|
* emits internal event locus_info_update_media_shares
|
|
934
927
|
*/
|
|
935
|
-
|
|
936
928
|
}, {
|
|
937
929
|
key: "updateMediaShares",
|
|
938
930
|
value: function updateMediaShares(mediaShares) {
|
|
939
931
|
if (mediaShares && !(0, _isEqual2.default)(this.mediaShares, mediaShares)) {
|
|
940
932
|
var parsedMediaShares = _mediaSharesUtils.default.getMediaShares(this.mediaShares, mediaShares);
|
|
941
|
-
|
|
942
933
|
this.updateMeeting(parsedMediaShares.current);
|
|
934
|
+
this.parsedLocus.mediaShares = parsedMediaShares.current;
|
|
935
|
+
this.mediaShares = mediaShares;
|
|
943
936
|
this.emitScoped({
|
|
944
937
|
file: 'locus-info',
|
|
945
938
|
function: 'updateMediaShares'
|
|
@@ -947,16 +940,14 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
947
940
|
current: parsedMediaShares.current,
|
|
948
941
|
previous: parsedMediaShares.previous
|
|
949
942
|
});
|
|
950
|
-
this.parsedLocus.mediaShares = parsedMediaShares.current;
|
|
951
|
-
this.mediaShares = mediaShares;
|
|
952
943
|
}
|
|
953
944
|
}
|
|
945
|
+
|
|
954
946
|
/**
|
|
955
947
|
* @param {String} participantsUrl
|
|
956
948
|
* @returns {undefined}
|
|
957
949
|
* @memberof LocusInfo
|
|
958
950
|
*/
|
|
959
|
-
|
|
960
951
|
}, {
|
|
961
952
|
key: "updateParticipantsUrl",
|
|
962
953
|
value: function updateParticipantsUrl(participantsUrl) {
|
|
@@ -964,12 +955,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
964
955
|
this.participantsUrl = participantsUrl;
|
|
965
956
|
}
|
|
966
957
|
}
|
|
958
|
+
|
|
967
959
|
/**
|
|
968
960
|
* @param {Object} replace
|
|
969
961
|
* @returns {undefined}
|
|
970
962
|
* @memberof LocusInfo
|
|
971
963
|
*/
|
|
972
|
-
|
|
973
964
|
}, {
|
|
974
965
|
key: "updateReplace",
|
|
975
966
|
value: function updateReplace(replace) {
|
|
@@ -977,6 +968,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
977
968
|
this.replace = replace;
|
|
978
969
|
}
|
|
979
970
|
}
|
|
971
|
+
|
|
980
972
|
/**
|
|
981
973
|
* handles when the locus.self is updated
|
|
982
974
|
* @param {Object} self the locus.mediaShares property
|
|
@@ -985,7 +977,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
985
977
|
* @memberof LocusInfo
|
|
986
978
|
* emits internal events self_admitted_guest, self_unadmitted_guest, locus_info_update_self
|
|
987
979
|
*/
|
|
988
|
-
|
|
989
980
|
}, {
|
|
990
981
|
key: "updateSelf",
|
|
991
982
|
value: function updateSelf(self, participants) {
|
|
@@ -993,29 +984,24 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
993
984
|
if (self && !(0, _isEqual2.default)(this.self, self)) {
|
|
994
985
|
// @ts-ignore
|
|
995
986
|
var parsedSelves = _selfUtils.default.getSelves(this.self, self, this.webex.internal.device.url);
|
|
996
|
-
|
|
997
987
|
this.updateMeeting(parsedSelves.current);
|
|
998
988
|
this.parsedLocus.self = parsedSelves.current;
|
|
999
989
|
var element = this.parsedLocus.states[this.parsedLocus.states.length - 1];
|
|
1000
|
-
|
|
1001
990
|
if (element !== parsedSelves.current.state) {
|
|
1002
991
|
this.parsedLocus.states.push(parsedSelves.current.state);
|
|
1003
|
-
}
|
|
1004
|
-
// this.emit(LOCUSINFO.EVENTS.MEETING_UPDATE, SelfUtils.getSipUrl(this.getLocusPartner(participants, self), this.parsedLocus.fullState.type, this.parsedLocus.info.sipUri));
|
|
1005
|
-
|
|
992
|
+
}
|
|
1006
993
|
|
|
994
|
+
// TODO: check if we need to save the sipUri here as well
|
|
995
|
+
// this.emit(LOCUSINFO.EVENTS.MEETING_UPDATE, SelfUtils.getSipUrl(this.getLocusPartner(participants, self), this.parsedLocus.fullState.type, this.parsedLocus.info.sipUri));
|
|
1007
996
|
var result = _selfUtils.default.getSipUrl(this.getLocusPartner(participants, self), this.parsedLocus.fullState.type, this.parsedLocus.info.sipUri);
|
|
1008
|
-
|
|
1009
997
|
if (result.sipUri) {
|
|
1010
998
|
this.updateMeeting(result);
|
|
1011
999
|
}
|
|
1012
|
-
|
|
1013
1000
|
if (parsedSelves.updates.moderatorChanged) {
|
|
1014
1001
|
this.compareAndUpdateFlags.compareHostAndSelf = true;
|
|
1015
1002
|
} else {
|
|
1016
1003
|
this.compareAndUpdateFlags.compareHostAndSelf = false;
|
|
1017
1004
|
}
|
|
1018
|
-
|
|
1019
1005
|
if (parsedSelves.updates.layoutChanged) {
|
|
1020
1006
|
this.emitScoped({
|
|
1021
1007
|
file: 'locus-info',
|
|
@@ -1024,7 +1010,14 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1024
1010
|
layout: parsedSelves.current.layout
|
|
1025
1011
|
});
|
|
1026
1012
|
}
|
|
1027
|
-
|
|
1013
|
+
if (parsedSelves.updates.breakoutsChanged) {
|
|
1014
|
+
this.emitScoped({
|
|
1015
|
+
file: 'locus-info',
|
|
1016
|
+
function: 'updateSelf'
|
|
1017
|
+
}, _constants.LOCUSINFO.EVENTS.SELF_MEETING_BREAKOUTS_CHANGED, {
|
|
1018
|
+
breakoutSessions: parsedSelves.current.breakoutSessions
|
|
1019
|
+
});
|
|
1020
|
+
}
|
|
1028
1021
|
if (parsedSelves.updates.isMediaInactiveOrReleased) {
|
|
1029
1022
|
this.emitScoped({
|
|
1030
1023
|
file: 'locus-info',
|
|
@@ -1033,13 +1026,21 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1033
1026
|
reason: self.reason
|
|
1034
1027
|
});
|
|
1035
1028
|
}
|
|
1036
|
-
|
|
1037
1029
|
if (parsedSelves.updates.moderatorChanged) {
|
|
1038
1030
|
this.emitScoped({
|
|
1039
1031
|
file: 'locus-info',
|
|
1040
1032
|
function: 'updateSelf'
|
|
1041
1033
|
}, _constants.LOCUSINFO.EVENTS.SELF_MODERATOR_CHANGED, self);
|
|
1042
1034
|
}
|
|
1035
|
+
if (parsedSelves.updates.isVideoMutedByOthersChanged) {
|
|
1036
|
+
this.emitScoped({
|
|
1037
|
+
file: 'locus-info',
|
|
1038
|
+
function: 'updateSelf'
|
|
1039
|
+
}, _constants.LOCUSINFO.EVENTS.SELF_REMOTE_VIDEO_MUTE_STATUS_UPDATED, {
|
|
1040
|
+
muted: parsedSelves.current.remoteVideoMuted
|
|
1041
|
+
// unmuteAllowed: not part of .self
|
|
1042
|
+
});
|
|
1043
|
+
}
|
|
1043
1044
|
|
|
1044
1045
|
if (parsedSelves.updates.localAudioUnmuteRequiredByServer) {
|
|
1045
1046
|
this.emitScoped({
|
|
@@ -1050,7 +1051,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1050
1051
|
unmuteAllowed: parsedSelves.current.unmuteAllowed
|
|
1051
1052
|
});
|
|
1052
1053
|
}
|
|
1053
|
-
|
|
1054
1054
|
if (parsedSelves.updates.isMutedByOthersChanged) {
|
|
1055
1055
|
this.emitScoped({
|
|
1056
1056
|
file: 'locus-info',
|
|
@@ -1060,39 +1060,34 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1060
1060
|
unmuteAllowed: parsedSelves.current.unmuteAllowed
|
|
1061
1061
|
});
|
|
1062
1062
|
}
|
|
1063
|
-
|
|
1064
1063
|
if (parsedSelves.updates.localAudioUnmuteRequestedByServer) {
|
|
1065
1064
|
this.emitScoped({
|
|
1066
1065
|
file: 'locus-info',
|
|
1067
1066
|
function: 'updateSelf'
|
|
1068
1067
|
}, _constants.LOCUSINFO.EVENTS.LOCAL_UNMUTE_REQUESTED, {});
|
|
1069
1068
|
}
|
|
1070
|
-
|
|
1071
1069
|
if (parsedSelves.updates.isUserUnadmitted) {
|
|
1072
1070
|
this.emitScoped({
|
|
1073
1071
|
file: 'locus-info',
|
|
1074
1072
|
function: 'updateSelf'
|
|
1075
1073
|
}, _constants.LOCUSINFO.EVENTS.SELF_UNADMITTED_GUEST, self);
|
|
1076
1074
|
}
|
|
1077
|
-
|
|
1078
1075
|
if (parsedSelves.updates.isUserAdmitted) {
|
|
1079
1076
|
this.emitScoped({
|
|
1080
1077
|
file: 'locus-info',
|
|
1081
1078
|
function: 'updateSelf'
|
|
1082
1079
|
}, _constants.LOCUSINFO.EVENTS.SELF_ADMITTED_GUEST, self);
|
|
1083
1080
|
}
|
|
1084
|
-
|
|
1085
1081
|
if (parsedSelves.updates.isMediaInactive) {
|
|
1086
1082
|
this.emitScoped({
|
|
1087
1083
|
file: 'locus-info',
|
|
1088
1084
|
function: 'updateSelf'
|
|
1089
|
-
},
|
|
1085
|
+
},
|
|
1086
|
+
// @ts-ignore
|
|
1090
1087
|
_constants.LOCUSINFO.EVENTS.MEDIA_INACTIVITY, _selfUtils.default.getMediaStatus(self.mediaSessions));
|
|
1091
1088
|
}
|
|
1092
|
-
|
|
1093
1089
|
if (parsedSelves.updates.audioStateChange || parsedSelves.updates.videoStateChange || parsedSelves.updates.shareStateChange) {
|
|
1094
1090
|
var _parsedSelves$current, _parsedSelves$current2, _parsedSelves$current3;
|
|
1095
|
-
|
|
1096
1091
|
this.emitScoped({
|
|
1097
1092
|
file: 'locus-info',
|
|
1098
1093
|
function: 'updateSelf'
|
|
@@ -1102,14 +1097,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1102
1097
|
shareStatus: (_parsedSelves$current3 = parsedSelves.current.currentMediaStatus) === null || _parsedSelves$current3 === void 0 ? void 0 : _parsedSelves$current3.share
|
|
1103
1098
|
});
|
|
1104
1099
|
}
|
|
1105
|
-
|
|
1106
1100
|
if (parsedSelves.updates.isUserObserving) {
|
|
1107
1101
|
this.emitScoped({
|
|
1108
1102
|
file: 'locus-info',
|
|
1109
1103
|
function: 'updateSelf'
|
|
1110
1104
|
}, _constants.LOCUSINFO.EVENTS.SELF_OBSERVING);
|
|
1111
1105
|
}
|
|
1112
|
-
|
|
1113
1106
|
if (parsedSelves.updates.canNotViewTheParticipantListChanged) {
|
|
1114
1107
|
this.emitScoped({
|
|
1115
1108
|
file: 'locus-info',
|
|
@@ -1118,7 +1111,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1118
1111
|
canNotViewTheParticipantList: parsedSelves.current.canNotViewTheParticipantList
|
|
1119
1112
|
});
|
|
1120
1113
|
}
|
|
1121
|
-
|
|
1122
1114
|
if (parsedSelves.updates.isSharingBlockedChanged) {
|
|
1123
1115
|
this.emitScoped({
|
|
1124
1116
|
file: 'locus-info',
|
|
@@ -1127,7 +1119,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1127
1119
|
isSharingBlocked: parsedSelves.current.isSharingBlocked
|
|
1128
1120
|
});
|
|
1129
1121
|
}
|
|
1130
|
-
|
|
1131
1122
|
this.emitScoped({
|
|
1132
1123
|
file: 'locus-info',
|
|
1133
1124
|
function: 'updateSelf'
|
|
@@ -1135,20 +1126,20 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1135
1126
|
oldSelf: parsedSelves.previous,
|
|
1136
1127
|
newSelf: parsedSelves.current
|
|
1137
1128
|
});
|
|
1138
|
-
this.parsedLocus.self = parsedSelves.current;
|
|
1139
|
-
|
|
1129
|
+
this.parsedLocus.self = parsedSelves.current;
|
|
1130
|
+
// @ts-ignore
|
|
1140
1131
|
this.self = self;
|
|
1141
1132
|
} else {
|
|
1142
1133
|
this.compareAndUpdateFlags.compareHostAndSelf = false;
|
|
1143
1134
|
}
|
|
1144
1135
|
}
|
|
1136
|
+
|
|
1145
1137
|
/**
|
|
1146
1138
|
* handles when the locus.url is updated
|
|
1147
1139
|
* @param {String} url
|
|
1148
1140
|
* @returns {undefined}
|
|
1149
1141
|
* emits internal event locus_info_update_url
|
|
1150
1142
|
*/
|
|
1151
|
-
|
|
1152
1143
|
}, {
|
|
1153
1144
|
key: "updateLocusUrl",
|
|
1154
1145
|
value: function updateLocusUrl(url) {
|
|
@@ -1163,12 +1154,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1163
1154
|
}, _constants.EVENTS.LOCUS_INFO_UPDATE_URL, url);
|
|
1164
1155
|
}
|
|
1165
1156
|
}
|
|
1157
|
+
|
|
1166
1158
|
/**
|
|
1167
1159
|
* @param {String} aclUrl
|
|
1168
1160
|
* @returns {undefined}
|
|
1169
1161
|
* @memberof LocusInfo
|
|
1170
1162
|
*/
|
|
1171
|
-
|
|
1172
1163
|
}, {
|
|
1173
1164
|
key: "updateAclUrl",
|
|
1174
1165
|
value: function updateAclUrl(aclUrl) {
|
|
@@ -1176,12 +1167,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1176
1167
|
this.aclUrl = aclUrl;
|
|
1177
1168
|
}
|
|
1178
1169
|
}
|
|
1170
|
+
|
|
1179
1171
|
/**
|
|
1180
1172
|
* @param {Number} baseSequence
|
|
1181
1173
|
* @returns {undefined}
|
|
1182
1174
|
* @memberof LocusInfo
|
|
1183
1175
|
*/
|
|
1184
|
-
|
|
1185
1176
|
}, {
|
|
1186
1177
|
key: "updateBasequence",
|
|
1187
1178
|
value: function updateBasequence(baseSequence) {
|
|
@@ -1189,12 +1180,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1189
1180
|
this.baseSequence = baseSequence;
|
|
1190
1181
|
}
|
|
1191
1182
|
}
|
|
1183
|
+
|
|
1192
1184
|
/**
|
|
1193
1185
|
* @param {Number} sequence
|
|
1194
1186
|
* @returns {undefined}
|
|
1195
1187
|
* @memberof LocusInfo
|
|
1196
1188
|
*/
|
|
1197
|
-
|
|
1198
1189
|
}, {
|
|
1199
1190
|
key: "updateSequence",
|
|
1200
1191
|
value: function updateSequence(sequence) {
|
|
@@ -1202,12 +1193,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1202
1193
|
this.sequence = sequence;
|
|
1203
1194
|
}
|
|
1204
1195
|
}
|
|
1196
|
+
|
|
1205
1197
|
/**
|
|
1206
1198
|
* @param {Object} membership
|
|
1207
1199
|
* @returns {undefined}
|
|
1208
1200
|
* @memberof LocusInfo
|
|
1209
1201
|
*/
|
|
1210
|
-
|
|
1211
1202
|
}, {
|
|
1212
1203
|
key: "updateMemberShip",
|
|
1213
1204
|
value: function updateMemberShip(membership) {
|
|
@@ -1215,12 +1206,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1215
1206
|
this.membership = membership;
|
|
1216
1207
|
}
|
|
1217
1208
|
}
|
|
1209
|
+
|
|
1218
1210
|
/**
|
|
1219
1211
|
* @param {Array} identities
|
|
1220
1212
|
* @returns {undefined}
|
|
1221
1213
|
* @memberof LocusInfo
|
|
1222
1214
|
*/
|
|
1223
|
-
|
|
1224
1215
|
}, {
|
|
1225
1216
|
key: "updateIdentifiers",
|
|
1226
1217
|
value: function updateIdentifiers(identities) {
|
|
@@ -1231,6 +1222,5 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1231
1222
|
}]);
|
|
1232
1223
|
return LocusInfo;
|
|
1233
1224
|
}(_eventsScope.default);
|
|
1234
|
-
|
|
1235
1225
|
exports.default = LocusInfo;
|
|
1236
1226
|
//# sourceMappingURL=index.js.map
|