@webex/plugin-meetings 3.0.0-beta.9 → 3.0.0-bnr.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/UPGRADING.md +9 -9
- package/browsers.js +19 -24
- package/dist/breakouts/breakout.js +178 -0
- package/dist/breakouts/breakout.js.map +1 -0
- package/dist/breakouts/collection.js +23 -0
- package/dist/breakouts/collection.js.map +1 -0
- package/dist/breakouts/edit-lock-error.js +52 -0
- package/dist/breakouts/edit-lock-error.js.map +1 -0
- package/dist/breakouts/index.js +843 -0
- package/dist/breakouts/index.js.map +1 -0
- package/dist/breakouts/request.js +78 -0
- package/dist/breakouts/request.js.map +1 -0
- package/dist/breakouts/utils.js +56 -0
- package/dist/breakouts/utils.js.map +1 -0
- package/dist/common/browser-detection.d.ts +9 -0
- package/dist/common/browser-detection.js +1 -20
- package/dist/common/browser-detection.js.map +1 -1
- package/dist/common/collection.d.ts +48 -0
- package/dist/common/collection.js +5 -20
- package/dist/common/collection.js.map +1 -1
- package/dist/common/config.d.ts +2 -0
- package/dist/common/config.js +0 -7
- package/dist/common/config.js.map +1 -1
- package/dist/common/errors/captcha-error.d.ts +15 -0
- package/dist/common/errors/captcha-error.js +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 +143 -52
- package/dist/constants.js.map +1 -1
- package/dist/controls-options-manager/constants.d.ts +4 -0
- package/dist/controls-options-manager/constants.js +14 -0
- package/dist/controls-options-manager/constants.js.map +1 -0
- package/dist/controls-options-manager/enums.d.ts +5 -0
- package/dist/controls-options-manager/enums.js +16 -0
- package/dist/controls-options-manager/enums.js.map +1 -0
- package/dist/controls-options-manager/index.d.ts +120 -0
- package/dist/controls-options-manager/index.js +261 -0
- package/dist/controls-options-manager/index.js.map +1 -0
- package/dist/controls-options-manager/util.d.ts +7 -0
- package/dist/controls-options-manager/util.js +39 -0
- package/dist/controls-options-manager/util.js.map +1 -0
- package/dist/docs/markdown/index.md +12 -0
- package/dist/docs/markdown/plugin-meetings.constants._active_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._answer_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._call_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._conflict_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._conversation_url_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._created_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._error_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._forced_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._id_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._idle_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._in_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._in_lobby_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._in_meeting_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._inactive_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._incoming_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._join_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._joined_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._left_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._locus_id_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_center_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_id_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_link_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._meeting_uuid_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._move_media_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._none_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._not_in_meeting_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._observe_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._people_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._personal_room_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._receive_only_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._remove_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._requested_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._resource_room_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._room_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._s_line.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._send_only_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._send_receive_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._sip_bridge_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._sip_uri_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._slides_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._unknown_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._user_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._wait_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants._webex_meeting_.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.alert.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.alternate_redirect_true.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.answer.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.api.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.audio.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.audio_input.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.audio_status.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.available_resolutions.md +60 -0
- package/dist/docs/markdown/plugin-meetings.constants.bnr_status.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.breakouts.md +51 -0
- package/dist/docs/markdown/plugin-meetings.constants.calendar.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.calendar_events.md +17 -0
- package/dist/docs/markdown/plugin-meetings.constants.calendar_events_api.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.call.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.call_removed_reason.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.claim.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.cmr_meetings.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.complete.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.connection_state.md +18 -0
- package/dist/docs/markdown/plugin-meetings.constants.content.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.controls.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.conversation_service.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.conversation_url.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.correlation_id.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.decline.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.default_excluded_stats.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.default_get_stats_filter.md +13 -0
- package/dist/docs/markdown/plugin-meetings.constants.development.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.dialer_regex.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.display_hints.md +51 -0
- package/dist/docs/markdown/plugin-meetings.constants.embedded_app_types.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.end.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.ended.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.error.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.error_dictionary.md +62 -0
- package/dist/docs/markdown/plugin-meetings.constants.event_triggers.md +82 -0
- package/dist/docs/markdown/plugin-meetings.constants.event_types.md +21 -0
- package/dist/docs/markdown/plugin-meetings.constants.events.md +26 -0
- package/dist/docs/markdown/plugin-meetings.constants.floor_action.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.full_state.md +17 -0
- package/dist/docs/markdown/plugin-meetings.constants.gathering.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.hecate.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.host.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.http_verbs.md +17 -0
- package/dist/docs/markdown/plugin-meetings.constants.https_protocol.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.ice_fail_timeout.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.ice_gathering_state.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.ice_state.md +18 -0
- package/dist/docs/markdown/plugin-meetings.constants.ice_timeout.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.intent_to_join.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.ipv4_regex.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.join.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.layout_types.md +13 -0
- package/dist/docs/markdown/plugin-meetings.constants.leave.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.live.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.local.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.loci.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.locus.md +26 -0
- package/dist/docs/markdown/plugin-meetings.constants.locus_url.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.locusevent.md +33 -0
- package/dist/docs/markdown/plugin-meetings.constants.locusinfo.md +43 -0
- package/dist/docs/markdown/plugin-meetings.constants.max_random_delay_for_meeting_info.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.md +186 -0
- package/dist/docs/markdown/plugin-meetings.constants.media.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.media_devices.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.media_peer_connection_name.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.media_state.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.media_track_constraint.md +17 -0
- package/dist/docs/markdown/plugin-meetings.constants.mediacontent.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.meet.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.meet_m.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_audio_state_machine.md +20 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_end_reason.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_errors.md +102 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_info_failure_reason.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_removed_reason.md +19 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_state.md +25 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_state_machine.md +31 -0
- package/dist/docs/markdown/plugin-meetings.constants.meeting_video_state_machine.md +20 -0
- package/dist/docs/markdown/plugin-meetings.constants.meetinginfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.meetings.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.metrics_join_times_max_duration.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.moderator_false.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.moderator_true.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.mqa_inteval.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.mqa_stats.md +82 -0
- package/dist/docs/markdown/plugin-meetings.constants.network_status.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.network_type.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.offline.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.online.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.participant.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.participant_deltas.md +22 -0
- package/dist/docs/markdown/plugin-meetings.constants.password_status.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.pc_bail_timeout.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.peer_connection_state.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.provisional_type_dial_in.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.provisional_type_dial_out.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.pstn_status.md +18 -0
- package/dist/docs/markdown/plugin-meetings.constants.quality_levels.md +19 -0
- package/dist/docs/markdown/plugin-meetings.constants.reachability.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.ready.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.reconnection.md +19 -0
- package/dist/docs/markdown/plugin-meetings.constants.recording_state.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.remote.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.resource.md +15 -0
- package/dist/docs/markdown/plugin-meetings.constants.retry_timeout.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.roap.md +22 -0
- package/dist/docs/markdown/plugin-meetings.constants.self_roles.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.send_dtmf_endpoint.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.sendrecv.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.share.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.share_peer_connection_name.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.share_status.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.share_stopped_reason.md +14 -0
- package/dist/docs/markdown/plugin-meetings.constants.sip_uri.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.stats.md +16 -0
- package/dist/docs/markdown/plugin-meetings.constants.type.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.use_uri_lookup_false.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.uuid_reg.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.valid_email_address.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.valid_pin.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.valid_pmr_address.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.valid_pmr_link.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.video.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.video_input.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.video_resolutions.md +24 -0
- package/dist/docs/markdown/plugin-meetings.constants.video_status.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.wbxappapi_service.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.webex_dot_com.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.whiteboard.md +11 -0
- package/dist/docs/markdown/plugin-meetings.constants.www_dot.md +11 -0
- package/dist/docs/markdown/plugin-meetings.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default._constructor_.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.acknowledge.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.addmedia.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.admit.md +32 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.attrs.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.audio.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.breakouts.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.callevents.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.cancelphoneinvite.md +30 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.canupdatemedia.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.changevideolayout.md +38 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.clearmeetingdata.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closelocalshare.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closelocalstream.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closepeerconnections.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closeremotestream.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.closeremotetracks.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.controlsoptionsmanager.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.conversationurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.correlationid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.createmediaconnection.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.decline.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.deferjoin.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.destination.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.destinationtype.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.deviceurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.dialindevicestatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.dialinurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.dialoutdevicestatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.dialouturl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.disconnectphoneaudio.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.endcallinitiatejoinreq.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.endjoinreqresp.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.endlocalsdpgenremotesdprecvdelay.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.endmeetingforall.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.fetchmeetinginfo.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.fetchmeetinginfotimeoutid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.floorgrantpending.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.forwardevent.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getanalyzermetricsprepayload.md +32 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getcallinitiatejoinreq.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getdevices.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getjoinreqresp.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getlocalsdpgenremotesdprecvdelay.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getmediaconnectiondebugid.md +15 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getmediastreams.md +15 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getmembers.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getsendingmediadelayduration.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getsetupdelayduration.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.getsupporteddevices.md +16 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.gettotaljmt.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.guest.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.handledatachannelurlchange.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.handleroapfailure.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.hasjoinedonce.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.haswebsocketconnected.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.hostid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.id.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.inmeetingactions.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.invite.md +33 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isaudioconnected.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isaudiomuted.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isaudioself.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.islocalsharelive.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.ismultistream.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isreactionssupported.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isroapinprogress.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.issharing.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.istranscriptionsupported.md +23 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isvideoconnected.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isvideomuted.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.isvideoself.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.join.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.joinedwith.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.joinwithmedia.md +36 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.keepalivetimerid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.lastvideolayoutinfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.leave.md +31 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.lockmeeting.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.locusid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.locusinfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.locusurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.md +227 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mediaconnections.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mediaid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.medianegotiatedevent.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mediaproperties.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mediarequestmanagers.md +16 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingfinitestatemachine.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetinginfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetinginfofailurereason.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingjoinurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingnumber.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingrequest.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.meetingstate.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.members.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.movefrom.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.moveto.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mute.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.muteaudio.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.mutevideo.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.namespace.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.networkqualitymonitor.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.networkstatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.options.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.orgid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.owner.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.parsemeetinginfo.md +34 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.partner.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.passwordstatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.pauserecording.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.permissiontoken.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.policy.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.processnextqueuedmediaupdate.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.publishtracks.md +33 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.queuedmediaupdates.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.receiveslotmanager.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.reconnect.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.reconnectionmanager.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.recording.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.recordingcontroller.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.refreshcaptcha.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.remotemediamanager.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.remove.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.requiredcaptcha.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.resource.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.resourceid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.resourceurl.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.resumerecording.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.roap.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.roapseq.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.selfid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.senddtmf.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.sendreaction.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setdisallowunmute.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendcallinitiatejoinreq.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendjoinreqresp.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendlocalsdpgenremotesdprecvdelay.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendsendingmediadelay.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setendsetupdelay.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setlocalsharetrack.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setlocaltracks.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setlocalvideoquality.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setmeetingquality.md +31 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setmercurylistener.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setmuteall.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setmuteonentry.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setremotequalitylevel.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setsipuri.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartcallinitiatejoinreq.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartjoinreqresp.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartlocalsdpgenremotesdprecvdelay.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartsendingmediadelay.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setstartsetupdelay.md +24 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setupbreakoutslistener.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setupmediaconnectionlisteners.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.setupstatsanalyzereventhandlers.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.sharescreen.md +32 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.sharestatus.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.sipuri.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startcallinitiatejoinreq.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startjoinreqresp.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startkeepalive.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startlocalsdpgenremotesdprecvdelay.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startrecording.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.startwhiteboardshare.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.state.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.statsanalyzer.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stopkeepalive.md +13 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stopreceivingtranscription.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stoprecording.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stopshare.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.stopwhiteboardshare.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.togglereactions.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.transcription.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.transfer.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.type.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unlockmeeting.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unmuteaudio.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unmutevideo.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unpublishtracks.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetlocalsharetrack.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetlocalvideotrack.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetpeerconnections.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetremotestream.md +26 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.unsetremotetracks.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updateaudio.md +34 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updatellmconnection.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updatemedia.md +32 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updatemediaconnections.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updateshare.md +35 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.updatevideo.md +34 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.uploadlogs.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.usephoneaudio.md +28 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.userid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.verifypassword.md +35 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.video.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.default.wirelessshare.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meeting.md +18 -0
- package/dist/docs/markdown/plugin-meetings.meeting.media_update_type.md +17 -0
- package/dist/docs/markdown/plugin-meetings.meetings._constructor_.md +22 -0
- package/dist/docs/markdown/plugin-meetings.meetings.create.md +30 -0
- package/dist/docs/markdown/plugin-meetings.meetings.fetchuserpreferredwebexsite.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meetings.geohintinfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getallmeetings.md +31 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getgeohint.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getlogger.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getmeetingbytype.md +29 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getpersonalmeetingroom.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getreachability.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.getscheduledmeetings.md +19 -0
- package/dist/docs/markdown/plugin-meetings.meetings.loggerrequest.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.md +57 -0
- package/dist/docs/markdown/plugin-meetings.meetings.media.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.meetingcollection.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.meetinginfo.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.namespace.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.personalmeetingroom.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.preferredwebexsite.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.reachability.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.register.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.registered.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.request.md +11 -0
- package/dist/docs/markdown/plugin-meetings.meetings.setreachability.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.startreachability.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.syncmeetings.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.unregister.md +21 -0
- package/dist/docs/markdown/plugin-meetings.meetings.uploadlogs.md +34 -0
- package/dist/docs/markdown/plugin-meetings.reactions.md +13 -0
- package/dist/docs/markdown/plugin-meetings.reactions.reactions.md +11 -0
- package/dist/docs/markdown/plugin-meetings.reactions.skintones.md +11 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.getmaxfs.md +26 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.md +31 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia._constructor_.md +22 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.csi.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.id.md +11 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.md +40 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.mediatype.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.memberid.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.setsizehint.md +25 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.sourcestate.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.stream.md +13 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemediaevents.md +14 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotemediaid.md +11 -0
- package/dist/docs/markdown/plugin-meetings.remotemedia.remotevideoresolution.md +11 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.md +12 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup._constructor_.md +24 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.getremotemedia.md +26 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.includes.md +27 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.ispinned.md +22 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.md +28 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.pin.md +25 -0
- package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.unpin.md +24 -0
- package/dist/docs/markdown/plugin-meetings.triggerproxy.md +11 -0
- package/dist/docs/metadata/index.api.json +14144 -0
- package/dist/docs/metadata/index.api.md +2075 -0
- package/dist/docs/metadata/index.d.ts +5594 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +72 -17
- package/dist/index.js.map +1 -1
- package/dist/locus-info/controlsUtils.d.ts +2 -0
- package/dist/locus-info/controlsUtils.js +31 -29
- package/dist/locus-info/controlsUtils.js.map +1 -1
- package/dist/locus-info/embeddedAppsUtils.d.ts +2 -0
- package/dist/locus-info/embeddedAppsUtils.js +3 -26
- package/dist/locus-info/embeddedAppsUtils.js.map +1 -1
- package/dist/locus-info/fullState.d.ts +2 -0
- package/dist/locus-info/fullState.js +0 -15
- package/dist/locus-info/fullState.js.map +1 -1
- package/dist/locus-info/hostUtils.d.ts +2 -0
- package/dist/locus-info/hostUtils.js +4 -12
- package/dist/locus-info/hostUtils.js.map +1 -1
- package/dist/locus-info/index.d.ts +269 -0
- package/dist/locus-info/index.js +202 -201
- 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 +80 -89
- package/dist/locus-info/selfUtils.js.map +1 -1
- package/dist/media/index.d.ts +32 -0
- package/dist/media/index.js +56 -146
- package/dist/media/index.js.map +1 -1
- package/dist/media/properties.d.ts +108 -0
- package/dist/media/properties.js +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 +31 -14
- package/dist/meeting/in-meeting-actions.js.map +1 -1
- package/dist/meeting/index.d.ts +1621 -0
- package/dist/meeting/index.js +2175 -2266
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting/muteState.d.ts +116 -0
- package/dist/meeting/muteState.js +252 -113
- 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 +63 -217
- package/dist/meeting/util.js.map +1 -1
- package/dist/meeting-info/collection.d.ts +20 -0
- package/dist/meeting-info/collection.js +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 +24 -20
- package/dist/meetings/collection.js.map +1 -1
- package/dist/meetings/index.d.ts +297 -0
- package/dist/meetings/index.js +566 -587
- package/dist/meetings/index.js.map +1 -1
- package/dist/meetings/request.d.ts +27 -0
- package/dist/meetings/request.js +23 -42
- package/dist/meetings/request.js.map +1 -1
- package/dist/meetings/util.d.ts +18 -0
- package/dist/meetings/util.js +151 -155
- package/dist/meetings/util.js.map +1 -1
- package/dist/member/index.d.ts +145 -0
- package/dist/member/index.js +80 -88
- package/dist/member/index.js.map +1 -1
- package/dist/member/types.js +15 -0
- package/dist/member/types.js.map +1 -0
- package/dist/member/util.d.ts +2 -0
- package/dist/member/util.js +90 -69
- package/dist/member/util.js.map +1 -1
- package/dist/members/collection.d.ts +24 -0
- package/dist/members/collection.js +12 -12
- package/dist/members/collection.js.map +1 -1
- package/dist/members/index.d.ts +298 -0
- package/dist/members/index.js +139 -204
- package/dist/members/index.js.map +1 -1
- package/dist/members/request.d.ts +50 -0
- package/dist/members/request.js +41 -55
- package/dist/members/request.js.map +1 -1
- package/dist/members/types.js +15 -0
- package/dist/members/types.js.map +1 -0
- package/dist/members/util.d.ts +2 -0
- package/dist/members/util.js +76 -46
- package/dist/members/util.js.map +1 -1
- package/dist/metrics/config.d.ts +169 -0
- package/dist/metrics/config.js +4 -14
- package/dist/metrics/config.js.map +1 -1
- package/dist/metrics/constants.d.ts +57 -0
- package/dist/metrics/constants.js +1 -6
- package/dist/metrics/constants.js.map +1 -1
- package/dist/metrics/index.d.ts +152 -0
- package/dist/metrics/index.js +53 -158
- package/dist/metrics/index.js.map +1 -1
- package/dist/multistream/mediaRequestManager.js +116 -52
- package/dist/multistream/mediaRequestManager.js.map +1 -1
- package/dist/multistream/receiveSlot.js +58 -65
- package/dist/multistream/receiveSlot.js.map +1 -1
- package/dist/multistream/receiveSlotManager.js +58 -93
- package/dist/multistream/receiveSlotManager.js.map +1 -1
- package/dist/multistream/remoteMedia.js +55 -74
- package/dist/multistream/remoteMedia.js.map +1 -1
- package/dist/multistream/remoteMediaGroup.js +6 -40
- package/dist/multistream/remoteMediaGroup.js.map +1 -1
- package/dist/multistream/remoteMediaManager.js +466 -442
- package/dist/multistream/remoteMediaManager.js.map +1 -1
- package/dist/networkQualityMonitor/index.d.ts +70 -0
- package/dist/networkQualityMonitor/index.js +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 +328 -465
- 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 +944 -0
- package/dist/types/controls-options-manager/constants.d.ts +4 -0
- package/dist/types/controls-options-manager/enums.d.ts +6 -0
- package/dist/types/controls-options-manager/index.d.ts +128 -0
- package/dist/types/controls-options-manager/util.d.ts +9 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/locus-info/controlsUtils.d.ts +2 -0
- package/dist/types/locus-info/embeddedAppsUtils.d.ts +2 -0
- package/dist/types/locus-info/fullState.d.ts +2 -0
- package/dist/types/locus-info/hostUtils.d.ts +2 -0
- package/dist/types/locus-info/index.d.ts +276 -0
- package/dist/types/locus-info/infoUtils.d.ts +2 -0
- package/dist/types/locus-info/mediaSharesUtils.d.ts +2 -0
- package/dist/types/locus-info/parser.d.ts +212 -0
- package/dist/types/locus-info/selfUtils.d.ts +2 -0
- package/dist/types/media/index.d.ts +32 -0
- package/dist/types/media/properties.d.ts +108 -0
- package/dist/types/media/util.d.ts +2 -0
- package/dist/types/mediaQualityMetrics/config.d.ts +365 -0
- package/dist/types/meeting/effectsState.d.ts +42 -0
- package/dist/types/meeting/in-meeting-actions.d.ts +101 -0
- package/dist/types/meeting/index.d.ts +1723 -0
- package/dist/types/meeting/muteState.d.ts +185 -0
- package/dist/types/meeting/request.d.ts +271 -0
- package/dist/types/meeting/request.type.d.ts +11 -0
- package/dist/types/meeting/state.d.ts +9 -0
- package/dist/types/meeting/util.d.ts +2 -0
- package/dist/types/meeting-info/collection.d.ts +20 -0
- package/dist/types/meeting-info/index.d.ts +57 -0
- package/dist/types/meeting-info/meeting-info-v2.d.ts +93 -0
- package/dist/types/meeting-info/request.d.ts +22 -0
- package/dist/types/meeting-info/util.d.ts +2 -0
- package/dist/types/meeting-info/utilv2.d.ts +2 -0
- package/dist/types/meetings/collection.d.ts +31 -0
- package/dist/types/meetings/index.d.ts +316 -0
- package/dist/types/meetings/request.d.ts +27 -0
- package/dist/types/meetings/util.d.ts +18 -0
- package/dist/types/member/index.d.ts +156 -0
- package/dist/types/member/types.d.ts +21 -0
- package/dist/types/member/util.d.ts +2 -0
- package/dist/types/members/collection.d.ts +29 -0
- package/dist/types/members/index.d.ts +343 -0
- package/dist/types/members/request.d.ts +58 -0
- package/dist/types/members/types.d.ts +24 -0
- package/dist/types/members/util.d.ts +2 -0
- package/dist/types/metrics/config.d.ts +171 -0
- package/dist/types/metrics/constants.d.ts +53 -0
- package/dist/types/metrics/index.d.ts +152 -0
- package/dist/types/multistream/mediaRequestManager.d.ts +68 -0
- package/dist/types/multistream/receiveSlot.d.ts +68 -0
- package/dist/types/multistream/receiveSlotManager.d.ts +49 -0
- package/dist/types/multistream/remoteMedia.d.ts +72 -0
- package/dist/types/multistream/remoteMediaGroup.d.ts +47 -0
- package/dist/types/multistream/remoteMediaManager.d.ts +263 -0
- package/dist/types/networkQualityMonitor/index.d.ts +70 -0
- package/dist/types/personal-meeting-room/index.d.ts +47 -0
- package/dist/types/personal-meeting-room/request.d.ts +14 -0
- package/dist/types/personal-meeting-room/util.d.ts +2 -0
- package/dist/types/reachability/index.d.ts +152 -0
- package/dist/types/reachability/request.d.ts +37 -0
- package/dist/types/reactions/constants.d.ts +3 -0
- package/dist/types/reactions/reactions.d.ts +4 -0
- package/dist/types/reactions/reactions.type.d.ts +52 -0
- package/dist/types/reconnection-manager/index.d.ts +126 -0
- package/dist/types/recording-controller/enums.d.ts +7 -0
- package/dist/types/recording-controller/index.d.ts +193 -0
- package/dist/types/recording-controller/util.d.ts +13 -0
- package/dist/types/roap/index.d.ts +77 -0
- package/dist/types/roap/request.d.ts +38 -0
- package/dist/types/roap/turnDiscovery.d.ts +74 -0
- package/dist/types/statsAnalyzer/global.d.ts +36 -0
- package/dist/types/statsAnalyzer/index.d.ts +195 -0
- package/dist/types/statsAnalyzer/mqaUtil.d.ts +24 -0
- package/dist/types/transcription/index.d.ts +64 -0
- package/dist/types/tsdoc-metadata.json +11 -0
- package/internal-README.md +7 -6
- package/package.json +28 -20
- package/src/breakouts/README.md +219 -0
- package/src/breakouts/breakout.ts +153 -0
- package/src/breakouts/collection.ts +19 -0
- package/src/breakouts/edit-lock-error.ts +25 -0
- package/src/breakouts/index.ts +745 -0
- package/src/breakouts/request.ts +55 -0
- package/src/breakouts/utils.ts +44 -0
- package/src/common/browser-detection.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 +92 -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 +240 -0
- package/src/controls-options-manager/util.ts +30 -0
- package/src/index.ts +33 -0
- package/src/locus-info/controlsUtils.ts +63 -24
- package/src/locus-info/fullState.ts +15 -11
- package/src/locus-info/hostUtils.ts +4 -3
- package/src/locus-info/index.ts +148 -43
- 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 +174 -56
- package/src/media/index.ts +131 -179
- package/src/media/properties.ts +43 -36
- package/src/media/util.ts +1 -1
- package/src/mediaQualityMetrics/config.ts +380 -378
- package/src/meeting/in-meeting-actions.ts +67 -3
- package/src/meeting/index.ts +2395 -1523
- package/src/meeting/muteState.ts +271 -68
- 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 +127 -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 +21 -1
- package/src/meetings/index.ts +673 -466
- package/src/meetings/request.ts +29 -25
- package/src/meetings/util.ts +94 -30
- package/src/member/index.ts +86 -49
- package/src/member/types.ts +24 -0
- package/src/member/util.ts +92 -13
- package/src/members/collection.ts +8 -1
- package/src/members/index.ts +246 -129
- package/src/members/request.ts +67 -14
- package/src/members/types.ts +28 -0
- package/src/members/util.ts +103 -50
- package/src/metrics/config.ts +255 -90
- package/src/metrics/constants.ts +0 -6
- package/src/metrics/index.ts +90 -93
- package/src/multistream/mediaRequestManager.ts +144 -40
- package/src/multistream/receiveSlot.ts +69 -26
- package/src/multistream/receiveSlotManager.ts +50 -38
- package/src/multistream/remoteMedia.ts +30 -4
- package/src/multistream/remoteMediaGroup.ts +4 -3
- package/src/multistream/remoteMediaManager.ts +230 -66
- package/src/networkQualityMonitor/index.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 +190 -111
- 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 +178 -0
- package/test/unit/spec/breakouts/collection.ts +15 -0
- package/test/unit/spec/breakouts/edit-lock-error.ts +30 -0
- package/test/unit/spec/breakouts/index.ts +1252 -0
- package/test/unit/spec/breakouts/request.ts +104 -0
- package/test/unit/spec/breakouts/utils.js +54 -0
- package/test/unit/spec/common/browser-detection.js +9 -28
- package/test/unit/spec/controls-options-manager/index.js +204 -0
- package/test/unit/spec/controls-options-manager/util.js +86 -0
- package/test/unit/spec/fixture/locus.js +92 -90
- package/test/unit/spec/locus-info/controlsUtils.js +133 -34
- package/test/unit/spec/locus-info/embeddedAppsUtils.js +8 -6
- package/test/unit/spec/locus-info/index.js +303 -2
- package/test/unit/spec/locus-info/infoUtils.js +41 -32
- package/test/unit/spec/locus-info/lib/BasicSeqCmp.json +88 -430
- package/test/unit/spec/locus-info/lib/SeqCmp.json +513 -685
- package/test/unit/spec/locus-info/parser.js +3 -9
- package/test/unit/spec/locus-info/selfConstant.js +101 -103
- package/test/unit/spec/locus-info/selfUtils.js +165 -12
- package/test/unit/spec/media/index.ts +72 -8
- package/test/unit/spec/media/properties.ts +9 -9
- package/test/unit/spec/meeting/in-meeting-actions.ts +29 -2
- package/test/unit/spec/meeting/index.js +2479 -794
- package/test/unit/spec/meeting/muteState.js +164 -70
- package/test/unit/spec/meeting/request.js +141 -43
- package/test/unit/spec/meeting/utils.js +135 -164
- package/test/unit/spec/meeting-info/meetinginfov2.js +100 -73
- package/test/unit/spec/meeting-info/request.js +7 -9
- package/test/unit/spec/meeting-info/util.js +11 -12
- package/test/unit/spec/meeting-info/utilv2.js +110 -74
- package/test/unit/spec/meetings/collection.js +15 -1
- package/test/unit/spec/meetings/index.js +622 -263
- package/test/unit/spec/meetings/utils.js +65 -14
- package/test/unit/spec/member/index.js +24 -1
- package/test/unit/spec/member/util.js +359 -32
- package/test/unit/spec/members/index.js +294 -54
- package/test/unit/spec/members/request.js +50 -20
- package/test/unit/spec/members/utils.js +147 -4
- package/test/unit/spec/metrics/index.js +16 -21
- package/test/unit/spec/multistream/mediaRequestManager.ts +369 -68
- package/test/unit/spec/multistream/receiveSlot.ts +76 -17
- package/test/unit/spec/multistream/receiveSlotManager.ts +60 -38
- package/test/unit/spec/multistream/remoteMedia.ts +32 -2
- package/test/unit/spec/multistream/remoteMediaGroup.ts +5 -5
- package/test/unit/spec/multistream/remoteMediaManager.ts +549 -65
- package/test/unit/spec/networkQualityMonitor/index.js +24 -18
- package/test/unit/spec/personal-meeting-room/personal-meeting-room.js +2 -7
- package/test/unit/spec/reachability/index.ts +176 -27
- package/test/unit/spec/reachability/request.js +66 -0
- package/test/unit/spec/reconnection-manager/index.js +58 -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/index.js +0 -15
- 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,32 +284,33 @@ 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;
|
|
297
|
+
var isReplaceMembers = _controlsUtils.default.isNeedReplaceMembers(this.controls, locus.controls);
|
|
329
298
|
this.updateLocusInfo(locus);
|
|
330
|
-
this.updateParticipants(locus.participants);
|
|
299
|
+
this.updateParticipants(locus.participants, isReplaceMembers);
|
|
331
300
|
this.isMeetingActive();
|
|
332
301
|
this.handleOneOnOneEvent(eventType);
|
|
333
|
-
this.updateEmbeddedApps(locus.embeddedApps);
|
|
334
|
-
|
|
302
|
+
this.updateEmbeddedApps(locus.embeddedApps);
|
|
303
|
+
// set current (working copy) for parser
|
|
335
304
|
this.locusParser.workingCopy = locus;
|
|
336
|
-
}
|
|
305
|
+
}
|
|
337
306
|
|
|
307
|
+
// used for ringing stops on one on one
|
|
338
308
|
/**
|
|
339
309
|
* @param {String} eventType
|
|
340
310
|
* @returns {undefined}
|
|
341
311
|
* @memberof LocusInfo
|
|
342
312
|
*/
|
|
343
|
-
|
|
313
|
+
// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
344
314
|
}, {
|
|
345
315
|
key: "handleOneOnOneEvent",
|
|
346
316
|
value: function handleOneOnOneEvent(eventType) {
|
|
@@ -355,9 +325,8 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
355
325
|
remoteDeclined: true,
|
|
356
326
|
remoteAnswered: false
|
|
357
327
|
});
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
|
|
328
|
+
}
|
|
329
|
+
// for 1:1 bob calls alice and alice answers, notify the meeting state
|
|
361
330
|
if (eventType === _constants.LOCUSEVENT.PARTICIPANT_JOIN) {
|
|
362
331
|
// trigger the event for stop ringing
|
|
363
332
|
this.emitScoped({
|
|
@@ -370,28 +339,36 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
370
339
|
}
|
|
371
340
|
}
|
|
372
341
|
}
|
|
342
|
+
|
|
373
343
|
/**
|
|
374
344
|
* @param {Object} locus
|
|
375
345
|
* @returns {undefined}
|
|
376
346
|
* @memberof LocusInfo
|
|
377
347
|
*/
|
|
378
|
-
|
|
379
348
|
}, {
|
|
380
349
|
key: "onDeltaLocus",
|
|
381
350
|
value: function onDeltaLocus(locus) {
|
|
351
|
+
var isReplaceMembers = _controlsUtils.default.isNeedReplaceMembers(this.controls, locus.controls);
|
|
382
352
|
this.updateLocusInfo(locus);
|
|
383
|
-
this.updateParticipants(locus.participants);
|
|
353
|
+
this.updateParticipants(locus.participants, isReplaceMembers);
|
|
384
354
|
this.isMeetingActive();
|
|
385
355
|
}
|
|
356
|
+
|
|
386
357
|
/**
|
|
387
358
|
* @param {Object} locus
|
|
388
359
|
* @returns {undefined}
|
|
389
360
|
* @memberof LocusInfo
|
|
390
361
|
*/
|
|
391
|
-
|
|
392
362
|
}, {
|
|
393
363
|
key: "updateLocusInfo",
|
|
394
364
|
value: function updateLocusInfo(locus) {
|
|
365
|
+
var _locus$self, _locus$self2, _locus$links2;
|
|
366
|
+
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') {
|
|
367
|
+
// When moved to a breakout session locus sends a message for the previous locus
|
|
368
|
+
// indicating that we have been moved. It isn't helpful to continue parsing this
|
|
369
|
+
// as it gets interpreted as if we have left the call
|
|
370
|
+
return;
|
|
371
|
+
}
|
|
395
372
|
this.updateControls(locus.controls);
|
|
396
373
|
this.updateConversationUrl(locus.conversationUrl, locus.info);
|
|
397
374
|
this.updateCreated(locus.created);
|
|
@@ -409,33 +386,35 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
409
386
|
this.updateMemberShip(locus.membership);
|
|
410
387
|
this.updateIdentifiers(locus.identities);
|
|
411
388
|
this.updateEmbeddedApps(locus.embeddedApps);
|
|
412
|
-
this.
|
|
389
|
+
this.updateServices((_locus$links2 = locus.links) === null || _locus$links2 === void 0 ? void 0 : _locus$links2.services);
|
|
390
|
+
this.compareAndUpdate();
|
|
391
|
+
// update which required to compare different objects from locus
|
|
413
392
|
}
|
|
393
|
+
|
|
414
394
|
/**
|
|
415
395
|
* @param {Array} participants
|
|
416
396
|
* @param {Object} self
|
|
417
397
|
* @returns {Array}
|
|
418
398
|
* @memberof LocusInfo
|
|
419
399
|
*/
|
|
420
|
-
|
|
421
400
|
}, {
|
|
422
401
|
key: "getLocusPartner",
|
|
423
402
|
value: function getLocusPartner(participants, self) {
|
|
424
403
|
if (!participants || participants.length === 0) {
|
|
425
404
|
return null;
|
|
426
405
|
}
|
|
427
|
-
|
|
428
406
|
return participants.find(function (participant) {
|
|
429
407
|
return self && participant.identity !== self.identity && (participants.length <= 2 || participant.type === _constants._USER_ && !participant.removed);
|
|
430
|
-
}
|
|
408
|
+
}
|
|
409
|
+
// @ts-ignore
|
|
431
410
|
) || this.partner;
|
|
432
|
-
}
|
|
411
|
+
}
|
|
433
412
|
|
|
413
|
+
// TODO: all the leave states need to be checked
|
|
434
414
|
/**
|
|
435
415
|
* @returns {undefined}
|
|
436
416
|
* @memberof LocusInfo
|
|
437
417
|
*/
|
|
438
|
-
|
|
439
418
|
}, {
|
|
440
419
|
key: "isMeetingActive",
|
|
441
420
|
value: function isMeetingActive() {
|
|
@@ -444,20 +423,22 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
444
423
|
var partner = this.getLocusPartner(this.participants, this.self);
|
|
445
424
|
this.updateMeeting({
|
|
446
425
|
partner: partner
|
|
447
|
-
});
|
|
426
|
+
});
|
|
427
|
+
|
|
428
|
+
// Check if guest user needs to be checked here
|
|
429
|
+
|
|
448
430
|
// 1) when bob declines call from bob, (bob='DECLINED')
|
|
449
431
|
// 2) When alice rejects call to bob , (bob='NOTIFIED')
|
|
432
|
+
|
|
450
433
|
// When we dont add MEDIA for condition 2. The state of bob='IDLE'
|
|
451
434
|
|
|
452
435
|
if (this.fullState && this.fullState.state === _constants.LOCUS.STATE.INACTIVE) {
|
|
453
436
|
// TODO: update the meeting state
|
|
454
437
|
_loggerProxy.default.logger.warn('Locus-info:index#isMeetingActive --> Call Ended, locus state is inactive.');
|
|
455
|
-
|
|
456
438
|
_metrics.default.postEvent({
|
|
457
439
|
event: _config.eventType.REMOTE_ENDED,
|
|
458
440
|
meetingId: this.meetingId
|
|
459
441
|
});
|
|
460
|
-
|
|
461
442
|
this.emitScoped({
|
|
462
443
|
file: 'locus-info',
|
|
463
444
|
function: 'isMeetingActive'
|
|
@@ -470,7 +451,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
470
451
|
event: _config.eventType.REMOTE_ENDED,
|
|
471
452
|
meetingId: this.meetingId
|
|
472
453
|
});
|
|
473
|
-
|
|
474
454
|
this.emitScoped({
|
|
475
455
|
file: 'locus-info',
|
|
476
456
|
function: 'isMeetingActive'
|
|
@@ -484,7 +464,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
484
464
|
event: _config.eventType.REMOTE_ENDED,
|
|
485
465
|
meetingId: this.meetingId
|
|
486
466
|
});
|
|
487
|
-
|
|
488
467
|
this.emitScoped({
|
|
489
468
|
file: 'locus-info',
|
|
490
469
|
function: 'isMeetingActive'
|
|
@@ -494,15 +473,14 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
494
473
|
});
|
|
495
474
|
}
|
|
496
475
|
} else if (this.parsedLocus.fullState.type === _constants._MEETING_) {
|
|
497
|
-
if (this.fullState && (this.fullState.state === _constants.LOCUS.STATE.INACTIVE ||
|
|
476
|
+
if (this.fullState && (this.fullState.state === _constants.LOCUS.STATE.INACTIVE ||
|
|
477
|
+
// @ts-ignore
|
|
498
478
|
this.fullState.state === _constants.LOCUS.STATE.TERMINATING)) {
|
|
499
479
|
_loggerProxy.default.logger.warn('Locus-info:index#isMeetingActive --> Meeting is ending due to inactive or terminating');
|
|
500
|
-
|
|
501
480
|
_metrics.default.postEvent({
|
|
502
481
|
event: _config.eventType.REMOTE_ENDED,
|
|
503
482
|
meetingId: this.meetingId
|
|
504
483
|
});
|
|
505
|
-
|
|
506
484
|
this.emitScoped({
|
|
507
485
|
file: 'locus-info',
|
|
508
486
|
function: 'isMeetingActive'
|
|
@@ -516,7 +494,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
516
494
|
event: _config.eventType.REMOTE_ENDED,
|
|
517
495
|
meetingId: this.meetingId
|
|
518
496
|
});
|
|
519
|
-
|
|
520
497
|
this.emitScoped({
|
|
521
498
|
file: 'locus-info',
|
|
522
499
|
function: 'isMeetingActive'
|
|
@@ -524,7 +501,8 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
524
501
|
reason: _constants.MEETING_REMOVED_REASON.FULLSTATE_REMOVED,
|
|
525
502
|
shouldLeave: false
|
|
526
503
|
});
|
|
527
|
-
}
|
|
504
|
+
}
|
|
505
|
+
// If you are guest and you are removed from the meeting
|
|
528
506
|
// You wont get any further events
|
|
529
507
|
else if (this.parsedLocus.self && this.parsedLocus.self.removed) {
|
|
530
508
|
// Check if we need to send an event
|
|
@@ -540,13 +518,13 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
540
518
|
_loggerProxy.default.logger.warn('Locus-info:index#isMeetingActive --> Meeting Type is unknown.');
|
|
541
519
|
}
|
|
542
520
|
}
|
|
521
|
+
|
|
543
522
|
/**
|
|
544
523
|
* checks if the host permissions have changed while in the meeting
|
|
545
524
|
* This would be the case if your role as host or moderator has been updated
|
|
546
525
|
* @returns {undefined}
|
|
547
526
|
* @memberof LocusInfo
|
|
548
527
|
*/
|
|
549
|
-
|
|
550
528
|
}, {
|
|
551
529
|
key: "compareAndUpdate",
|
|
552
530
|
value: function compareAndUpdate() {
|
|
@@ -556,17 +534,16 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
556
534
|
this.compareSelfAndHost();
|
|
557
535
|
}
|
|
558
536
|
}
|
|
537
|
+
|
|
559
538
|
/**
|
|
560
539
|
* compared the self object to check if the user has host permissions
|
|
561
540
|
* @returns {undefined}
|
|
562
541
|
* @memberof LocusInfo
|
|
563
542
|
*/
|
|
564
|
-
|
|
565
543
|
}, {
|
|
566
544
|
key: "compareSelfAndHost",
|
|
567
545
|
value: function compareSelfAndHost() {
|
|
568
546
|
var _this$parsedLocus$hos;
|
|
569
|
-
|
|
570
547
|
// In some cases the host info is not present but the moderator values changes from null to false so it triggers an update
|
|
571
548
|
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
549
|
this.emitScoped({
|
|
@@ -584,6 +561,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
584
561
|
});
|
|
585
562
|
}
|
|
586
563
|
}
|
|
564
|
+
|
|
587
565
|
/**
|
|
588
566
|
* Update the deltaParticipants property of this object based on a list of
|
|
589
567
|
* provided participants.
|
|
@@ -591,22 +569,19 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
591
569
|
* @param {Array} [participants] - The participants to update against.
|
|
592
570
|
* @returns {void}
|
|
593
571
|
*/
|
|
594
|
-
|
|
595
572
|
}, {
|
|
596
573
|
key: "updateParticipantDeltas",
|
|
597
574
|
value: function updateParticipantDeltas() {
|
|
598
575
|
var _this4 = this;
|
|
599
|
-
|
|
600
576
|
var participants = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
601
|
-
|
|
602
577
|
// Used to find a participant within a participants collection.
|
|
603
578
|
var findParticipant = function findParticipant(participant, collection) {
|
|
604
579
|
return collection.find(function (item) {
|
|
605
580
|
return item.person.id === participant.person.id;
|
|
606
581
|
});
|
|
607
|
-
};
|
|
608
|
-
|
|
582
|
+
};
|
|
609
583
|
|
|
584
|
+
// Generates an object that indicates which state properties have changed.
|
|
610
585
|
var generateDelta = function generateDelta() {
|
|
611
586
|
var prevState = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
612
587
|
var newState = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
@@ -615,8 +590,9 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
615
590
|
audioStatus: prevState.audioStatus !== newState.audioStatus,
|
|
616
591
|
videoSlidesStatus: prevState.videoSlidesStatus !== newState.videoSlidesStatus,
|
|
617
592
|
videoStatus: prevState.videoStatus !== newState.videoStatus
|
|
618
|
-
};
|
|
593
|
+
};
|
|
619
594
|
|
|
595
|
+
// Clean the object
|
|
620
596
|
(0, _keys.default)(deltas).forEach(function (key) {
|
|
621
597
|
if (deltas[key] !== true) {
|
|
622
598
|
delete deltas[key];
|
|
@@ -624,35 +600,31 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
624
600
|
});
|
|
625
601
|
return deltas;
|
|
626
602
|
};
|
|
627
|
-
|
|
628
603
|
this.deltaParticipants = participants.reduce(function (collection, participant) {
|
|
629
604
|
var existingParticipant = findParticipant(participant, _this4.participants || []) || {};
|
|
630
605
|
var delta = generateDelta(existingParticipant.status, participant.status);
|
|
631
606
|
var changed = (0, _keys.default)(delta).length > 0;
|
|
632
|
-
|
|
633
607
|
if (changed) {
|
|
634
608
|
collection.push({
|
|
635
609
|
person: participant.person,
|
|
636
610
|
delta: delta
|
|
637
611
|
});
|
|
638
612
|
}
|
|
639
|
-
|
|
640
613
|
return collection;
|
|
641
614
|
}, []);
|
|
642
615
|
}
|
|
616
|
+
|
|
643
617
|
/**
|
|
644
|
-
*
|
|
618
|
+
* update meeting's members
|
|
645
619
|
* @param {Object} participants new participants object
|
|
646
|
-
* @param {
|
|
620
|
+
* @param {Boolean} isReplace is replace the whole members
|
|
647
621
|
* @returns {Array} updatedParticipants
|
|
648
622
|
* @memberof LocusInfo
|
|
649
623
|
*/
|
|
650
|
-
|
|
651
624
|
}, {
|
|
652
625
|
key: "updateParticipants",
|
|
653
|
-
value: function updateParticipants(participants) {
|
|
626
|
+
value: function updateParticipants(participants, isReplace) {
|
|
654
627
|
var _this$parsedLocus$con;
|
|
655
|
-
|
|
656
628
|
this.emitScoped({
|
|
657
629
|
file: 'locus-info',
|
|
658
630
|
function: 'updateParticipants'
|
|
@@ -661,33 +633,33 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
661
633
|
recordingId: this.parsedLocus.controls && ((_this$parsedLocus$con = this.parsedLocus.controls.record) === null || _this$parsedLocus$con === void 0 ? void 0 : _this$parsedLocus$con.modifiedBy),
|
|
662
634
|
selfIdentity: this.parsedLocus.self && this.parsedLocus.self.selfIdentity,
|
|
663
635
|
selfId: this.parsedLocus.self && this.parsedLocus.self.selfId,
|
|
664
|
-
hostId: this.parsedLocus.host && this.parsedLocus.host.hostId
|
|
636
|
+
hostId: this.parsedLocus.host && this.parsedLocus.host.hostId,
|
|
637
|
+
isReplace: isReplace
|
|
665
638
|
});
|
|
666
639
|
}
|
|
640
|
+
|
|
667
641
|
/**
|
|
668
642
|
* @param {Object} controls
|
|
669
643
|
* @returns {undefined}
|
|
670
644
|
* @memberof LocusInfo
|
|
671
645
|
*/
|
|
672
|
-
|
|
673
646
|
}, {
|
|
674
647
|
key: "updateControls",
|
|
675
648
|
value: function updateControls(controls) {
|
|
676
649
|
if (controls && !(0, _isEqual2.default)(this.controls, controls)) {
|
|
677
650
|
this.parsedLocus.controls = _controlsUtils.default.parse(controls);
|
|
678
|
-
|
|
679
651
|
var _ControlsUtils$getCon = _controlsUtils.default.getControls(this.controls, controls),
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
652
|
+
_ControlsUtils$getCon2 = _ControlsUtils$getCon.updates,
|
|
653
|
+
hasRecordingChanged = _ControlsUtils$getCon2.hasRecordingChanged,
|
|
654
|
+
hasRecordingPausedChanged = _ControlsUtils$getCon2.hasRecordingPausedChanged,
|
|
655
|
+
hasMeetingContainerChanged = _ControlsUtils$getCon2.hasMeetingContainerChanged,
|
|
656
|
+
hasTranscribeChanged = _ControlsUtils$getCon2.hasTranscribeChanged,
|
|
657
|
+
hasEntryExitToneChanged = _ControlsUtils$getCon2.hasEntryExitToneChanged,
|
|
658
|
+
hasBreakoutChanged = _ControlsUtils$getCon2.hasBreakoutChanged,
|
|
659
|
+
hasVideoEnabledChanged = _ControlsUtils$getCon2.hasVideoEnabledChanged,
|
|
660
|
+
current = _ControlsUtils$getCon.current;
|
|
688
661
|
if (hasRecordingChanged || hasRecordingPausedChanged) {
|
|
689
662
|
var state = null;
|
|
690
|
-
|
|
691
663
|
if (hasRecordingPausedChanged) {
|
|
692
664
|
if (current.record.paused) {
|
|
693
665
|
state = _constants.RECORDING_STATE.PAUSED;
|
|
@@ -698,7 +670,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
698
670
|
} else if (hasRecordingChanged) {
|
|
699
671
|
state = current.record.recording ? _constants.RECORDING_STATE.RECORDING : _constants.RECORDING_STATE.IDLE;
|
|
700
672
|
}
|
|
701
|
-
|
|
702
673
|
this.emitScoped({
|
|
703
674
|
file: 'locus-info',
|
|
704
675
|
function: 'updateControls'
|
|
@@ -708,7 +679,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
708
679
|
lastModified: current.record.lastModified
|
|
709
680
|
});
|
|
710
681
|
}
|
|
711
|
-
|
|
712
682
|
if (hasMeetingContainerChanged) {
|
|
713
683
|
var meetingContainerUrl = current.meetingContainer.meetingContainerUrl;
|
|
714
684
|
this.emitScoped({
|
|
@@ -718,11 +688,10 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
718
688
|
meetingContainerUrl: meetingContainerUrl
|
|
719
689
|
});
|
|
720
690
|
}
|
|
721
|
-
|
|
722
691
|
if (hasTranscribeChanged) {
|
|
723
692
|
var _current$transcribe = current.transcribe,
|
|
724
|
-
|
|
725
|
-
|
|
693
|
+
transcribing = _current$transcribe.transcribing,
|
|
694
|
+
caption = _current$transcribe.caption;
|
|
726
695
|
this.emitScoped({
|
|
727
696
|
file: 'locus-info',
|
|
728
697
|
function: 'updateControls'
|
|
@@ -731,30 +700,53 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
731
700
|
caption: caption
|
|
732
701
|
});
|
|
733
702
|
}
|
|
734
|
-
|
|
703
|
+
if (hasBreakoutChanged) {
|
|
704
|
+
var breakout = current.breakout;
|
|
705
|
+
this.emitScoped({
|
|
706
|
+
file: 'locus-info',
|
|
707
|
+
function: 'updateControls'
|
|
708
|
+
}, _constants.LOCUSINFO.EVENTS.CONTROLS_MEETING_BREAKOUT_UPDATED, {
|
|
709
|
+
breakout: breakout
|
|
710
|
+
});
|
|
711
|
+
}
|
|
735
712
|
if (hasEntryExitToneChanged) {
|
|
736
713
|
var entryExitTone = current.entryExitTone;
|
|
714
|
+
this.updateMeeting({
|
|
715
|
+
entryExitTone: entryExitTone
|
|
716
|
+
});
|
|
737
717
|
this.emitScoped({
|
|
738
718
|
file: 'locus-info',
|
|
739
719
|
function: 'updateControls'
|
|
740
720
|
}, _constants.LOCUSINFO.EVENTS.CONTROLS_ENTRY_EXIT_TONE_UPDATED, {
|
|
741
721
|
entryExitTone: entryExitTone
|
|
742
722
|
});
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
// videoEnabled is handled differently than other controls,
|
|
726
|
+
// to fit with audio mute status logic
|
|
727
|
+
if (hasVideoEnabledChanged) {
|
|
728
|
+
var videoEnabled = current.videoEnabled;
|
|
743
729
|
this.updateMeeting({
|
|
744
|
-
|
|
730
|
+
unmuteVideoAllowed: videoEnabled
|
|
731
|
+
});
|
|
732
|
+
this.emitScoped({
|
|
733
|
+
file: 'locus-info',
|
|
734
|
+
function: 'updateControls'
|
|
735
|
+
}, _constants.LOCUSINFO.EVENTS.SELF_REMOTE_VIDEO_MUTE_STATUS_UPDATED, {
|
|
736
|
+
// muted: not part of locus.controls
|
|
737
|
+
unmuteAllowed: videoEnabled
|
|
745
738
|
});
|
|
746
739
|
}
|
|
747
|
-
|
|
748
740
|
this.controls = controls;
|
|
749
741
|
}
|
|
750
742
|
}
|
|
743
|
+
|
|
751
744
|
/**
|
|
752
745
|
* @param {String} conversationUrl
|
|
753
746
|
* @param {Object} info
|
|
754
747
|
* @returns {undefined}
|
|
755
748
|
* @memberof LocusInfo
|
|
756
749
|
*/
|
|
757
|
-
|
|
758
750
|
}, {
|
|
759
751
|
key: "updateConversationUrl",
|
|
760
752
|
value: function updateConversationUrl(conversationUrl, info) {
|
|
@@ -770,12 +762,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
770
762
|
});
|
|
771
763
|
}
|
|
772
764
|
}
|
|
765
|
+
|
|
773
766
|
/**
|
|
774
767
|
* @param {Object} created
|
|
775
768
|
* @returns {undefined}
|
|
776
769
|
* @memberof LocusInfo
|
|
777
770
|
*/
|
|
778
|
-
|
|
779
771
|
}, {
|
|
780
772
|
key: "updateCreated",
|
|
781
773
|
value: function updateCreated(created) {
|
|
@@ -783,20 +775,37 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
783
775
|
this.created = created;
|
|
784
776
|
}
|
|
785
777
|
}
|
|
778
|
+
|
|
786
779
|
/**
|
|
787
|
-
* @param {Object}
|
|
780
|
+
* @param {Object} services
|
|
788
781
|
* @returns {undefined}
|
|
789
782
|
* @memberof LocusInfo
|
|
790
783
|
*/
|
|
784
|
+
}, {
|
|
785
|
+
key: "updateServices",
|
|
786
|
+
value: function updateServices(services) {
|
|
787
|
+
if (services && !(0, _isEqual2.default)(this.services, services)) {
|
|
788
|
+
this.services = services;
|
|
789
|
+
this.emitScoped({
|
|
790
|
+
file: 'locus-info',
|
|
791
|
+
function: 'updateServices'
|
|
792
|
+
}, _constants.LOCUSINFO.EVENTS.LINKS_SERVICES, {
|
|
793
|
+
services: services
|
|
794
|
+
});
|
|
795
|
+
}
|
|
796
|
+
}
|
|
791
797
|
|
|
798
|
+
/**
|
|
799
|
+
* @param {Object} fullState
|
|
800
|
+
* @returns {undefined}
|
|
801
|
+
* @memberof LocusInfo
|
|
802
|
+
*/
|
|
792
803
|
}, {
|
|
793
804
|
key: "updateFullState",
|
|
794
805
|
value: function updateFullState(fullState) {
|
|
795
806
|
if (fullState && !(0, _isEqual2.default)(this.fullState, fullState)) {
|
|
796
807
|
var result = _fullState.default.getFullState(this.fullState, fullState);
|
|
797
|
-
|
|
798
808
|
this.updateMeeting(result.current);
|
|
799
|
-
|
|
800
809
|
if (result.updates.meetingStateChangedTo) {
|
|
801
810
|
this.emitScoped({
|
|
802
811
|
file: 'locus-info',
|
|
@@ -806,7 +815,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
806
815
|
currentState: result.current.meetingState
|
|
807
816
|
});
|
|
808
817
|
}
|
|
809
|
-
|
|
810
818
|
if (result.updates.meetingTypeChangedTo) {
|
|
811
819
|
this.emitScoped({
|
|
812
820
|
file: 'locus-info',
|
|
@@ -815,11 +823,11 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
815
823
|
type: result.current.type
|
|
816
824
|
});
|
|
817
825
|
}
|
|
818
|
-
|
|
819
826
|
this.parsedLocus.fullState = result.current;
|
|
820
827
|
this.fullState = fullState;
|
|
821
828
|
}
|
|
822
829
|
}
|
|
830
|
+
|
|
823
831
|
/**
|
|
824
832
|
* handles when the locus.host is updated
|
|
825
833
|
* @param {Object} host the locus.host property
|
|
@@ -827,16 +835,13 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
827
835
|
* @memberof LocusInfo
|
|
828
836
|
* emits internal event locus_info_update_host
|
|
829
837
|
*/
|
|
830
|
-
|
|
831
838
|
}, {
|
|
832
839
|
key: "updateHostInfo",
|
|
833
840
|
value: function updateHostInfo(host) {
|
|
834
841
|
if (host && !(0, _isEqual2.default)(this.host, host)) {
|
|
835
842
|
var parsedHosts = _hostUtils.default.getHosts(this.host, host);
|
|
836
|
-
|
|
837
843
|
this.updateMeeting(parsedHosts.current);
|
|
838
844
|
this.parsedLocus.host = parsedHosts.current;
|
|
839
|
-
|
|
840
845
|
if (parsedHosts.updates.isNewHost) {
|
|
841
846
|
this.compareAndUpdateFlags.compareSelfAndHost = true;
|
|
842
847
|
this.emitScoped({
|
|
@@ -847,31 +852,26 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
847
852
|
oldHost: parsedHosts.previous
|
|
848
853
|
});
|
|
849
854
|
}
|
|
850
|
-
|
|
851
855
|
this.host = host;
|
|
852
856
|
} else {
|
|
853
857
|
this.compareAndUpdateFlags.compareSelfAndHost = false;
|
|
854
858
|
}
|
|
855
859
|
}
|
|
860
|
+
|
|
856
861
|
/**
|
|
857
862
|
* @param {Object} info
|
|
858
863
|
* @param {Object} self
|
|
859
864
|
* @returns {undefined}
|
|
860
865
|
* @memberof LocusInfo
|
|
861
866
|
*/
|
|
862
|
-
|
|
863
867
|
}, {
|
|
864
868
|
key: "updateMeetingInfo",
|
|
865
869
|
value: function updateMeetingInfo(info, self) {
|
|
866
870
|
if (info && !(0, _isEqual2.default)(this.info, info)) {
|
|
867
871
|
var _this$parsedLocus$sel;
|
|
868
|
-
|
|
869
872
|
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
873
|
var isJoined = _selfUtils.default.isJoined(self || this.parsedLocus.self);
|
|
872
|
-
|
|
873
874
|
var parsedInfo = _infoUtils.default.getInfos(this.parsedLocus.info, info, roles, isJoined);
|
|
874
|
-
|
|
875
875
|
this.emitScoped({
|
|
876
876
|
file: 'locus-info',
|
|
877
877
|
function: 'updateMeetingInfo'
|
|
@@ -879,33 +879,30 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
879
879
|
info: parsedInfo.current,
|
|
880
880
|
self: self
|
|
881
881
|
});
|
|
882
|
-
|
|
883
882
|
if (parsedInfo.updates.isLocked) {
|
|
884
883
|
this.emitScoped({
|
|
885
884
|
file: 'locus-info',
|
|
886
885
|
function: 'updateMeetingInfo'
|
|
887
886
|
}, _constants.LOCUSINFO.EVENTS.MEETING_LOCKED, info);
|
|
888
887
|
}
|
|
889
|
-
|
|
890
888
|
if (parsedInfo.updates.isUnlocked) {
|
|
891
889
|
this.emitScoped({
|
|
892
890
|
file: 'locus-info',
|
|
893
891
|
function: 'updateMeetingInfo'
|
|
894
892
|
}, _constants.LOCUSINFO.EVENTS.MEETING_UNLOCKED, info);
|
|
895
893
|
}
|
|
896
|
-
|
|
897
894
|
this.info = info;
|
|
898
|
-
this.parsedLocus.info = parsedInfo.current;
|
|
899
|
-
|
|
895
|
+
this.parsedLocus.info = parsedInfo.current;
|
|
896
|
+
// Parses the info and adds necessary values
|
|
900
897
|
this.updateMeeting(parsedInfo.current);
|
|
901
898
|
}
|
|
902
899
|
}
|
|
900
|
+
|
|
903
901
|
/**
|
|
904
902
|
* @param {Object} embeddedApps
|
|
905
903
|
* @returns {undefined}
|
|
906
904
|
* @memberof LocusInfo
|
|
907
905
|
*/
|
|
908
|
-
|
|
909
906
|
}, {
|
|
910
907
|
key: "updateEmbeddedApps",
|
|
911
908
|
value: function updateEmbeddedApps(embeddedApps) {
|
|
@@ -913,9 +910,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
913
910
|
if (_embeddedAppsUtils.default.areSimilar(this.embeddedApps, embeddedApps)) {
|
|
914
911
|
return;
|
|
915
912
|
}
|
|
916
|
-
|
|
917
913
|
var parsedEmbeddedApps = _embeddedAppsUtils.default.parse(embeddedApps);
|
|
918
|
-
|
|
919
914
|
this.updateMeeting({
|
|
920
915
|
embeddedApps: parsedEmbeddedApps
|
|
921
916
|
});
|
|
@@ -925,6 +920,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
925
920
|
}, _constants.LOCUSINFO.EVENTS.EMBEDDED_APPS_UPDATED, parsedEmbeddedApps);
|
|
926
921
|
this.embeddedApps = embeddedApps;
|
|
927
922
|
}
|
|
923
|
+
|
|
928
924
|
/**
|
|
929
925
|
* handles when the locus.mediaShares is updated
|
|
930
926
|
* @param {Object} mediaShares the locus.mediaShares property
|
|
@@ -932,14 +928,14 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
932
928
|
* @memberof LocusInfo
|
|
933
929
|
* emits internal event locus_info_update_media_shares
|
|
934
930
|
*/
|
|
935
|
-
|
|
936
931
|
}, {
|
|
937
932
|
key: "updateMediaShares",
|
|
938
933
|
value: function updateMediaShares(mediaShares) {
|
|
939
934
|
if (mediaShares && !(0, _isEqual2.default)(this.mediaShares, mediaShares)) {
|
|
940
935
|
var parsedMediaShares = _mediaSharesUtils.default.getMediaShares(this.mediaShares, mediaShares);
|
|
941
|
-
|
|
942
936
|
this.updateMeeting(parsedMediaShares.current);
|
|
937
|
+
this.parsedLocus.mediaShares = parsedMediaShares.current;
|
|
938
|
+
this.mediaShares = mediaShares;
|
|
943
939
|
this.emitScoped({
|
|
944
940
|
file: 'locus-info',
|
|
945
941
|
function: 'updateMediaShares'
|
|
@@ -947,16 +943,14 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
947
943
|
current: parsedMediaShares.current,
|
|
948
944
|
previous: parsedMediaShares.previous
|
|
949
945
|
});
|
|
950
|
-
this.parsedLocus.mediaShares = parsedMediaShares.current;
|
|
951
|
-
this.mediaShares = mediaShares;
|
|
952
946
|
}
|
|
953
947
|
}
|
|
948
|
+
|
|
954
949
|
/**
|
|
955
950
|
* @param {String} participantsUrl
|
|
956
951
|
* @returns {undefined}
|
|
957
952
|
* @memberof LocusInfo
|
|
958
953
|
*/
|
|
959
|
-
|
|
960
954
|
}, {
|
|
961
955
|
key: "updateParticipantsUrl",
|
|
962
956
|
value: function updateParticipantsUrl(participantsUrl) {
|
|
@@ -964,12 +958,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
964
958
|
this.participantsUrl = participantsUrl;
|
|
965
959
|
}
|
|
966
960
|
}
|
|
961
|
+
|
|
967
962
|
/**
|
|
968
963
|
* @param {Object} replace
|
|
969
964
|
* @returns {undefined}
|
|
970
965
|
* @memberof LocusInfo
|
|
971
966
|
*/
|
|
972
|
-
|
|
973
967
|
}, {
|
|
974
968
|
key: "updateReplace",
|
|
975
969
|
value: function updateReplace(replace) {
|
|
@@ -977,6 +971,7 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
977
971
|
this.replace = replace;
|
|
978
972
|
}
|
|
979
973
|
}
|
|
974
|
+
|
|
980
975
|
/**
|
|
981
976
|
* handles when the locus.self is updated
|
|
982
977
|
* @param {Object} self the locus.mediaShares property
|
|
@@ -985,7 +980,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
985
980
|
* @memberof LocusInfo
|
|
986
981
|
* emits internal events self_admitted_guest, self_unadmitted_guest, locus_info_update_self
|
|
987
982
|
*/
|
|
988
|
-
|
|
989
983
|
}, {
|
|
990
984
|
key: "updateSelf",
|
|
991
985
|
value: function updateSelf(self, participants) {
|
|
@@ -993,29 +987,24 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
993
987
|
if (self && !(0, _isEqual2.default)(this.self, self)) {
|
|
994
988
|
// @ts-ignore
|
|
995
989
|
var parsedSelves = _selfUtils.default.getSelves(this.self, self, this.webex.internal.device.url);
|
|
996
|
-
|
|
997
990
|
this.updateMeeting(parsedSelves.current);
|
|
998
991
|
this.parsedLocus.self = parsedSelves.current;
|
|
999
992
|
var element = this.parsedLocus.states[this.parsedLocus.states.length - 1];
|
|
1000
|
-
|
|
1001
993
|
if (element !== parsedSelves.current.state) {
|
|
1002
994
|
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
|
-
|
|
995
|
+
}
|
|
1006
996
|
|
|
997
|
+
// TODO: check if we need to save the sipUri here as well
|
|
998
|
+
// this.emit(LOCUSINFO.EVENTS.MEETING_UPDATE, SelfUtils.getSipUrl(this.getLocusPartner(participants, self), this.parsedLocus.fullState.type, this.parsedLocus.info.sipUri));
|
|
1007
999
|
var result = _selfUtils.default.getSipUrl(this.getLocusPartner(participants, self), this.parsedLocus.fullState.type, this.parsedLocus.info.sipUri);
|
|
1008
|
-
|
|
1009
1000
|
if (result.sipUri) {
|
|
1010
1001
|
this.updateMeeting(result);
|
|
1011
1002
|
}
|
|
1012
|
-
|
|
1013
1003
|
if (parsedSelves.updates.moderatorChanged) {
|
|
1014
1004
|
this.compareAndUpdateFlags.compareHostAndSelf = true;
|
|
1015
1005
|
} else {
|
|
1016
1006
|
this.compareAndUpdateFlags.compareHostAndSelf = false;
|
|
1017
1007
|
}
|
|
1018
|
-
|
|
1019
1008
|
if (parsedSelves.updates.layoutChanged) {
|
|
1020
1009
|
this.emitScoped({
|
|
1021
1010
|
file: 'locus-info',
|
|
@@ -1024,7 +1013,14 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1024
1013
|
layout: parsedSelves.current.layout
|
|
1025
1014
|
});
|
|
1026
1015
|
}
|
|
1027
|
-
|
|
1016
|
+
if (parsedSelves.updates.breakoutsChanged) {
|
|
1017
|
+
this.emitScoped({
|
|
1018
|
+
file: 'locus-info',
|
|
1019
|
+
function: 'updateSelf'
|
|
1020
|
+
}, _constants.LOCUSINFO.EVENTS.SELF_MEETING_BREAKOUTS_CHANGED, {
|
|
1021
|
+
breakoutSessions: parsedSelves.current.breakoutSessions
|
|
1022
|
+
});
|
|
1023
|
+
}
|
|
1028
1024
|
if (parsedSelves.updates.isMediaInactiveOrReleased) {
|
|
1029
1025
|
this.emitScoped({
|
|
1030
1026
|
file: 'locus-info',
|
|
@@ -1033,13 +1029,29 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1033
1029
|
reason: self.reason
|
|
1034
1030
|
});
|
|
1035
1031
|
}
|
|
1036
|
-
|
|
1037
1032
|
if (parsedSelves.updates.moderatorChanged) {
|
|
1038
1033
|
this.emitScoped({
|
|
1039
1034
|
file: 'locus-info',
|
|
1040
1035
|
function: 'updateSelf'
|
|
1041
1036
|
}, _constants.LOCUSINFO.EVENTS.SELF_MODERATOR_CHANGED, self);
|
|
1042
1037
|
}
|
|
1038
|
+
// When the user upgrades to moderator or cohost
|
|
1039
|
+
if (parsedSelves.updates.isUpgradeToModeratorOrCohost) {
|
|
1040
|
+
this.emitScoped({
|
|
1041
|
+
file: 'locus-info',
|
|
1042
|
+
function: 'updateSelf'
|
|
1043
|
+
}, _constants.LOCUSINFO.EVENTS.SELF_MODERATOR_OR_COHOST_UPGRADE, self);
|
|
1044
|
+
}
|
|
1045
|
+
//
|
|
1046
|
+
if (parsedSelves.updates.isVideoMutedByOthersChanged) {
|
|
1047
|
+
this.emitScoped({
|
|
1048
|
+
file: 'locus-info',
|
|
1049
|
+
function: 'updateSelf'
|
|
1050
|
+
}, _constants.LOCUSINFO.EVENTS.SELF_REMOTE_VIDEO_MUTE_STATUS_UPDATED, {
|
|
1051
|
+
muted: parsedSelves.current.remoteVideoMuted
|
|
1052
|
+
// unmuteAllowed: not part of .self
|
|
1053
|
+
});
|
|
1054
|
+
}
|
|
1043
1055
|
|
|
1044
1056
|
if (parsedSelves.updates.localAudioUnmuteRequiredByServer) {
|
|
1045
1057
|
this.emitScoped({
|
|
@@ -1050,7 +1062,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1050
1062
|
unmuteAllowed: parsedSelves.current.unmuteAllowed
|
|
1051
1063
|
});
|
|
1052
1064
|
}
|
|
1053
|
-
|
|
1054
1065
|
if (parsedSelves.updates.isMutedByOthersChanged) {
|
|
1055
1066
|
this.emitScoped({
|
|
1056
1067
|
file: 'locus-info',
|
|
@@ -1060,39 +1071,34 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1060
1071
|
unmuteAllowed: parsedSelves.current.unmuteAllowed
|
|
1061
1072
|
});
|
|
1062
1073
|
}
|
|
1063
|
-
|
|
1064
1074
|
if (parsedSelves.updates.localAudioUnmuteRequestedByServer) {
|
|
1065
1075
|
this.emitScoped({
|
|
1066
1076
|
file: 'locus-info',
|
|
1067
1077
|
function: 'updateSelf'
|
|
1068
1078
|
}, _constants.LOCUSINFO.EVENTS.LOCAL_UNMUTE_REQUESTED, {});
|
|
1069
1079
|
}
|
|
1070
|
-
|
|
1071
1080
|
if (parsedSelves.updates.isUserUnadmitted) {
|
|
1072
1081
|
this.emitScoped({
|
|
1073
1082
|
file: 'locus-info',
|
|
1074
1083
|
function: 'updateSelf'
|
|
1075
1084
|
}, _constants.LOCUSINFO.EVENTS.SELF_UNADMITTED_GUEST, self);
|
|
1076
1085
|
}
|
|
1077
|
-
|
|
1078
1086
|
if (parsedSelves.updates.isUserAdmitted) {
|
|
1079
1087
|
this.emitScoped({
|
|
1080
1088
|
file: 'locus-info',
|
|
1081
1089
|
function: 'updateSelf'
|
|
1082
1090
|
}, _constants.LOCUSINFO.EVENTS.SELF_ADMITTED_GUEST, self);
|
|
1083
1091
|
}
|
|
1084
|
-
|
|
1085
1092
|
if (parsedSelves.updates.isMediaInactive) {
|
|
1086
1093
|
this.emitScoped({
|
|
1087
1094
|
file: 'locus-info',
|
|
1088
1095
|
function: 'updateSelf'
|
|
1089
|
-
},
|
|
1096
|
+
},
|
|
1097
|
+
// @ts-ignore
|
|
1090
1098
|
_constants.LOCUSINFO.EVENTS.MEDIA_INACTIVITY, _selfUtils.default.getMediaStatus(self.mediaSessions));
|
|
1091
1099
|
}
|
|
1092
|
-
|
|
1093
1100
|
if (parsedSelves.updates.audioStateChange || parsedSelves.updates.videoStateChange || parsedSelves.updates.shareStateChange) {
|
|
1094
1101
|
var _parsedSelves$current, _parsedSelves$current2, _parsedSelves$current3;
|
|
1095
|
-
|
|
1096
1102
|
this.emitScoped({
|
|
1097
1103
|
file: 'locus-info',
|
|
1098
1104
|
function: 'updateSelf'
|
|
@@ -1102,14 +1108,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1102
1108
|
shareStatus: (_parsedSelves$current3 = parsedSelves.current.currentMediaStatus) === null || _parsedSelves$current3 === void 0 ? void 0 : _parsedSelves$current3.share
|
|
1103
1109
|
});
|
|
1104
1110
|
}
|
|
1105
|
-
|
|
1106
1111
|
if (parsedSelves.updates.isUserObserving) {
|
|
1107
1112
|
this.emitScoped({
|
|
1108
1113
|
file: 'locus-info',
|
|
1109
1114
|
function: 'updateSelf'
|
|
1110
1115
|
}, _constants.LOCUSINFO.EVENTS.SELF_OBSERVING);
|
|
1111
1116
|
}
|
|
1112
|
-
|
|
1113
1117
|
if (parsedSelves.updates.canNotViewTheParticipantListChanged) {
|
|
1114
1118
|
this.emitScoped({
|
|
1115
1119
|
file: 'locus-info',
|
|
@@ -1118,7 +1122,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1118
1122
|
canNotViewTheParticipantList: parsedSelves.current.canNotViewTheParticipantList
|
|
1119
1123
|
});
|
|
1120
1124
|
}
|
|
1121
|
-
|
|
1122
1125
|
if (parsedSelves.updates.isSharingBlockedChanged) {
|
|
1123
1126
|
this.emitScoped({
|
|
1124
1127
|
file: 'locus-info',
|
|
@@ -1127,7 +1130,6 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1127
1130
|
isSharingBlocked: parsedSelves.current.isSharingBlocked
|
|
1128
1131
|
});
|
|
1129
1132
|
}
|
|
1130
|
-
|
|
1131
1133
|
this.emitScoped({
|
|
1132
1134
|
file: 'locus-info',
|
|
1133
1135
|
function: 'updateSelf'
|
|
@@ -1135,20 +1137,20 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1135
1137
|
oldSelf: parsedSelves.previous,
|
|
1136
1138
|
newSelf: parsedSelves.current
|
|
1137
1139
|
});
|
|
1138
|
-
this.parsedLocus.self = parsedSelves.current;
|
|
1139
|
-
|
|
1140
|
+
this.parsedLocus.self = parsedSelves.current;
|
|
1141
|
+
// @ts-ignore
|
|
1140
1142
|
this.self = self;
|
|
1141
1143
|
} else {
|
|
1142
1144
|
this.compareAndUpdateFlags.compareHostAndSelf = false;
|
|
1143
1145
|
}
|
|
1144
1146
|
}
|
|
1147
|
+
|
|
1145
1148
|
/**
|
|
1146
1149
|
* handles when the locus.url is updated
|
|
1147
1150
|
* @param {String} url
|
|
1148
1151
|
* @returns {undefined}
|
|
1149
1152
|
* emits internal event locus_info_update_url
|
|
1150
1153
|
*/
|
|
1151
|
-
|
|
1152
1154
|
}, {
|
|
1153
1155
|
key: "updateLocusUrl",
|
|
1154
1156
|
value: function updateLocusUrl(url) {
|
|
@@ -1163,12 +1165,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1163
1165
|
}, _constants.EVENTS.LOCUS_INFO_UPDATE_URL, url);
|
|
1164
1166
|
}
|
|
1165
1167
|
}
|
|
1168
|
+
|
|
1166
1169
|
/**
|
|
1167
1170
|
* @param {String} aclUrl
|
|
1168
1171
|
* @returns {undefined}
|
|
1169
1172
|
* @memberof LocusInfo
|
|
1170
1173
|
*/
|
|
1171
|
-
|
|
1172
1174
|
}, {
|
|
1173
1175
|
key: "updateAclUrl",
|
|
1174
1176
|
value: function updateAclUrl(aclUrl) {
|
|
@@ -1176,12 +1178,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1176
1178
|
this.aclUrl = aclUrl;
|
|
1177
1179
|
}
|
|
1178
1180
|
}
|
|
1181
|
+
|
|
1179
1182
|
/**
|
|
1180
1183
|
* @param {Number} baseSequence
|
|
1181
1184
|
* @returns {undefined}
|
|
1182
1185
|
* @memberof LocusInfo
|
|
1183
1186
|
*/
|
|
1184
|
-
|
|
1185
1187
|
}, {
|
|
1186
1188
|
key: "updateBasequence",
|
|
1187
1189
|
value: function updateBasequence(baseSequence) {
|
|
@@ -1189,12 +1191,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1189
1191
|
this.baseSequence = baseSequence;
|
|
1190
1192
|
}
|
|
1191
1193
|
}
|
|
1194
|
+
|
|
1192
1195
|
/**
|
|
1193
1196
|
* @param {Number} sequence
|
|
1194
1197
|
* @returns {undefined}
|
|
1195
1198
|
* @memberof LocusInfo
|
|
1196
1199
|
*/
|
|
1197
|
-
|
|
1198
1200
|
}, {
|
|
1199
1201
|
key: "updateSequence",
|
|
1200
1202
|
value: function updateSequence(sequence) {
|
|
@@ -1202,12 +1204,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1202
1204
|
this.sequence = sequence;
|
|
1203
1205
|
}
|
|
1204
1206
|
}
|
|
1207
|
+
|
|
1205
1208
|
/**
|
|
1206
1209
|
* @param {Object} membership
|
|
1207
1210
|
* @returns {undefined}
|
|
1208
1211
|
* @memberof LocusInfo
|
|
1209
1212
|
*/
|
|
1210
|
-
|
|
1211
1213
|
}, {
|
|
1212
1214
|
key: "updateMemberShip",
|
|
1213
1215
|
value: function updateMemberShip(membership) {
|
|
@@ -1215,12 +1217,12 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1215
1217
|
this.membership = membership;
|
|
1216
1218
|
}
|
|
1217
1219
|
}
|
|
1220
|
+
|
|
1218
1221
|
/**
|
|
1219
1222
|
* @param {Array} identities
|
|
1220
1223
|
* @returns {undefined}
|
|
1221
1224
|
* @memberof LocusInfo
|
|
1222
1225
|
*/
|
|
1223
|
-
|
|
1224
1226
|
}, {
|
|
1225
1227
|
key: "updateIdentifiers",
|
|
1226
1228
|
value: function updateIdentifiers(identities) {
|
|
@@ -1231,6 +1233,5 @@ var LocusInfo = /*#__PURE__*/function (_EventsScope) {
|
|
|
1231
1233
|
}]);
|
|
1232
1234
|
return LocusInfo;
|
|
1233
1235
|
}(_eventsScope.default);
|
|
1234
|
-
|
|
1235
1236
|
exports.default = LocusInfo;
|
|
1236
1237
|
//# sourceMappingURL=index.js.map
|