@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
|
@@ -532,784 +532,442 @@
|
|
|
532
532
|
"version": "1.0",
|
|
533
533
|
"sequences": {
|
|
534
534
|
"test_ne2_09_b": {
|
|
535
|
-
"entries": [
|
|
536
|
-
52,
|
|
537
|
-
53,
|
|
538
|
-
64
|
|
539
|
-
],
|
|
535
|
+
"entries": [52, 53, 64],
|
|
540
536
|
"rangeEnd": 5,
|
|
541
537
|
"rangeStart": 4
|
|
542
538
|
},
|
|
543
539
|
"test_desync15_b": {
|
|
544
|
-
"entries": [
|
|
545
|
-
4,
|
|
546
|
-
5,
|
|
547
|
-
6,
|
|
548
|
-
7,
|
|
549
|
-
8,
|
|
550
|
-
9
|
|
551
|
-
],
|
|
540
|
+
"entries": [4, 5, 6, 7, 8, 9],
|
|
552
541
|
"rangeEnd": 0,
|
|
553
542
|
"rangeStart": 0
|
|
554
543
|
},
|
|
555
544
|
"test_desync15_a": {
|
|
556
|
-
"entries": [
|
|
557
|
-
1,
|
|
558
|
-
2,
|
|
559
|
-
3,
|
|
560
|
-
4,
|
|
561
|
-
5,
|
|
562
|
-
6
|
|
563
|
-
],
|
|
545
|
+
"entries": [1, 2, 3, 4, 5, 6],
|
|
564
546
|
"rangeEnd": 0,
|
|
565
547
|
"rangeStart": 0
|
|
566
548
|
},
|
|
567
549
|
"test_ne2_03_b": {
|
|
568
|
-
"entries": [
|
|
569
|
-
52,
|
|
570
|
-
53,
|
|
571
|
-
64
|
|
572
|
-
],
|
|
550
|
+
"entries": [52, 53, 64],
|
|
573
551
|
"rangeEnd": 20,
|
|
574
552
|
"rangeStart": 10
|
|
575
553
|
},
|
|
576
554
|
"test_ne2_03_a": {
|
|
577
|
-
"entries": [
|
|
578
|
-
52,
|
|
579
|
-
53,
|
|
580
|
-
64
|
|
581
|
-
],
|
|
555
|
+
"entries": [52, 53, 64],
|
|
582
556
|
"rangeEnd": 24,
|
|
583
557
|
"rangeStart": 10
|
|
584
558
|
},
|
|
585
559
|
"test_ne3_06_a": {
|
|
586
|
-
"entries": [
|
|
587
|
-
32,
|
|
588
|
-
33,
|
|
589
|
-
34
|
|
590
|
-
],
|
|
560
|
+
"entries": [32, 33, 34],
|
|
591
561
|
"rangeEnd": 30,
|
|
592
562
|
"rangeStart": 5
|
|
593
563
|
},
|
|
594
564
|
"test_ne2_01_a": {
|
|
595
|
-
"entries": [
|
|
596
|
-
52,
|
|
597
|
-
53,
|
|
598
|
-
64
|
|
599
|
-
],
|
|
565
|
+
"entries": [52, 53, 64],
|
|
600
566
|
"rangeEnd": 20,
|
|
601
567
|
"rangeStart": 10
|
|
602
568
|
},
|
|
603
569
|
"test_ne2_01_b": {
|
|
604
|
-
"entries": [
|
|
605
|
-
52,
|
|
606
|
-
53,
|
|
607
|
-
64
|
|
608
|
-
],
|
|
570
|
+
"entries": [52, 53, 64],
|
|
609
571
|
"rangeEnd": 20,
|
|
610
572
|
"rangeStart": 14
|
|
611
573
|
},
|
|
612
574
|
"test_desync01_b": {
|
|
613
|
-
"entries": [
|
|
614
|
-
32,
|
|
615
|
-
33,
|
|
616
|
-
34
|
|
617
|
-
],
|
|
575
|
+
"entries": [32, 33, 34],
|
|
618
576
|
"rangeEnd": 20,
|
|
619
577
|
"rangeStart": 5
|
|
620
578
|
},
|
|
621
579
|
"test_desync11_b": {
|
|
622
|
-
"entries": [
|
|
623
|
-
22,
|
|
624
|
-
23,
|
|
625
|
-
24
|
|
626
|
-
],
|
|
580
|
+
"entries": [22, 23, 24],
|
|
627
581
|
"rangeEnd": 0,
|
|
628
582
|
"rangeStart": 0
|
|
629
583
|
},
|
|
630
584
|
"test_desync11_a": {
|
|
631
|
-
"entries": [
|
|
632
|
-
52,
|
|
633
|
-
53,
|
|
634
|
-
54
|
|
635
|
-
],
|
|
585
|
+
"entries": [52, 53, 54],
|
|
636
586
|
"rangeEnd": 10,
|
|
637
587
|
"rangeStart": 1
|
|
638
588
|
},
|
|
639
589
|
"test_ne4_02_a": {
|
|
640
|
-
"entries": [
|
|
641
|
-
32,
|
|
642
|
-
33,
|
|
643
|
-
34
|
|
644
|
-
],
|
|
590
|
+
"entries": [32, 33, 34],
|
|
645
591
|
"rangeEnd": 30,
|
|
646
592
|
"rangeStart": 20
|
|
647
593
|
},
|
|
648
594
|
"test_ne4_02_b": {
|
|
649
|
-
"entries": [
|
|
650
|
-
12,
|
|
651
|
-
13,
|
|
652
|
-
27
|
|
653
|
-
],
|
|
595
|
+
"entries": [12, 13, 27],
|
|
654
596
|
"rangeEnd": 7,
|
|
655
597
|
"rangeStart": 2
|
|
656
598
|
},
|
|
657
599
|
"test_equals04_b": {
|
|
658
|
-
"entries": [
|
|
659
|
-
52,
|
|
660
|
-
53,
|
|
661
|
-
64
|
|
662
|
-
],
|
|
600
|
+
"entries": [52, 53, 64],
|
|
663
601
|
"rangeEnd": 20,
|
|
664
602
|
"rangeStart": 15
|
|
665
603
|
},
|
|
666
604
|
"test_equals04_a": {
|
|
667
|
-
"entries": [
|
|
668
|
-
16,
|
|
669
|
-
52,
|
|
670
|
-
53,
|
|
671
|
-
64
|
|
672
|
-
],
|
|
605
|
+
"entries": [16, 52, 53, 64],
|
|
673
606
|
"rangeEnd": 10,
|
|
674
607
|
"rangeStart": 5
|
|
675
608
|
},
|
|
676
609
|
"test_ne2_11_b": {
|
|
677
|
-
"entries": [
|
|
678
|
-
12,
|
|
679
|
-
21,
|
|
680
|
-
50
|
|
681
|
-
],
|
|
610
|
+
"entries": [12, 21, 50],
|
|
682
611
|
"rangeEnd": 10,
|
|
683
612
|
"rangeStart": 1
|
|
684
613
|
},
|
|
685
614
|
"test_ne2_11_a": {
|
|
686
|
-
"entries": [
|
|
687
|
-
12,
|
|
688
|
-
21,
|
|
689
|
-
50
|
|
690
|
-
],
|
|
615
|
+
"entries": [12, 21, 50],
|
|
691
616
|
"rangeEnd": 15,
|
|
692
617
|
"rangeStart": 1
|
|
693
618
|
},
|
|
694
619
|
"test_equals02_a": {
|
|
695
|
-
"entries": [
|
|
696
|
-
1,
|
|
697
|
-
2
|
|
698
|
-
],
|
|
620
|
+
"entries": [1, 2],
|
|
699
621
|
"rangeEnd": 0,
|
|
700
622
|
"rangeStart": 0
|
|
701
623
|
},
|
|
702
624
|
"test_equals02_b": {
|
|
703
|
-
"entries": [
|
|
704
|
-
1,
|
|
705
|
-
2
|
|
706
|
-
],
|
|
625
|
+
"entries": [1, 2],
|
|
707
626
|
"rangeEnd": 0,
|
|
708
627
|
"rangeStart": 0
|
|
709
628
|
},
|
|
710
629
|
"test_ne2_07_a": {
|
|
711
|
-
"entries": [
|
|
712
|
-
57
|
|
713
|
-
],
|
|
630
|
+
"entries": [57],
|
|
714
631
|
"rangeEnd": 57,
|
|
715
632
|
"rangeStart": 38
|
|
716
633
|
},
|
|
717
634
|
"test_desync07_b": {
|
|
718
|
-
"entries": [
|
|
719
|
-
22,
|
|
720
|
-
23,
|
|
721
|
-
34
|
|
722
|
-
],
|
|
635
|
+
"entries": [22, 23, 34],
|
|
723
636
|
"rangeEnd": 20,
|
|
724
637
|
"rangeStart": 5
|
|
725
638
|
},
|
|
726
639
|
"test_desync13_a": {
|
|
727
|
-
"entries": [
|
|
728
|
-
55,
|
|
729
|
-
58,
|
|
730
|
-
64
|
|
731
|
-
],
|
|
640
|
+
"entries": [55, 58, 64],
|
|
732
641
|
"rangeEnd": 0,
|
|
733
642
|
"rangeStart": 0
|
|
734
643
|
},
|
|
735
644
|
"test_desync09_a": {
|
|
736
|
-
"entries": [
|
|
737
|
-
55,
|
|
738
|
-
58,
|
|
739
|
-
64
|
|
740
|
-
],
|
|
645
|
+
"entries": [55, 58, 64],
|
|
741
646
|
"rangeEnd": 20,
|
|
742
647
|
"rangeStart": 10
|
|
743
648
|
},
|
|
744
649
|
"test_desync09_b": {
|
|
745
|
-
"entries": [
|
|
746
|
-
2,
|
|
747
|
-
3,
|
|
748
|
-
21
|
|
749
|
-
],
|
|
650
|
+
"entries": [2, 3, 21],
|
|
750
651
|
"rangeEnd": 0,
|
|
751
652
|
"rangeStart": 0
|
|
752
653
|
},
|
|
753
654
|
"test_desync13_b": {
|
|
754
|
-
"entries": [
|
|
755
|
-
2,
|
|
756
|
-
3,
|
|
757
|
-
56
|
|
758
|
-
],
|
|
655
|
+
"entries": [2, 3, 56],
|
|
759
656
|
"rangeEnd": 0,
|
|
760
657
|
"rangeStart": 0
|
|
761
658
|
},
|
|
762
659
|
"test_ne3_07_b": {
|
|
763
|
-
"entries": [
|
|
764
|
-
22,
|
|
765
|
-
23,
|
|
766
|
-
30
|
|
767
|
-
],
|
|
660
|
+
"entries": [22, 23, 30],
|
|
768
661
|
"rangeEnd": 10,
|
|
769
662
|
"rangeStart": 1
|
|
770
663
|
},
|
|
771
664
|
"test_ne2_06_b": {
|
|
772
|
-
"entries": [
|
|
773
|
-
50,
|
|
774
|
-
57,
|
|
775
|
-
60,
|
|
776
|
-
61
|
|
777
|
-
],
|
|
665
|
+
"entries": [50, 57, 60, 61],
|
|
778
666
|
"rangeEnd": 38,
|
|
779
667
|
"rangeStart": 38
|
|
780
668
|
},
|
|
781
669
|
"test_ne2_06_a": {
|
|
782
|
-
"entries": [
|
|
783
|
-
50,
|
|
784
|
-
57,
|
|
785
|
-
60,
|
|
786
|
-
61
|
|
787
|
-
],
|
|
670
|
+
"entries": [50, 57, 60, 61],
|
|
788
671
|
"rangeEnd": 47,
|
|
789
672
|
"rangeStart": 38
|
|
790
673
|
},
|
|
791
674
|
"test_desync10_b": {
|
|
792
|
-
"entries": [
|
|
793
|
-
11,
|
|
794
|
-
12,
|
|
795
|
-
21
|
|
796
|
-
],
|
|
675
|
+
"entries": [11, 12, 21],
|
|
797
676
|
"rangeEnd": 0,
|
|
798
677
|
"rangeStart": 0
|
|
799
678
|
},
|
|
800
679
|
"test_desync10_a": {
|
|
801
|
-
"entries": [
|
|
802
|
-
55,
|
|
803
|
-
58,
|
|
804
|
-
64
|
|
805
|
-
],
|
|
680
|
+
"entries": [55, 58, 64],
|
|
806
681
|
"rangeEnd": 20,
|
|
807
682
|
"rangeStart": 10
|
|
808
683
|
},
|
|
809
684
|
"test_ne2_10_b": {
|
|
810
|
-
"entries": [
|
|
811
|
-
64
|
|
812
|
-
],
|
|
685
|
+
"entries": [64],
|
|
813
686
|
"rangeEnd": 5,
|
|
814
687
|
"rangeStart": 1
|
|
815
688
|
},
|
|
816
689
|
"test_ne2_10_a": {
|
|
817
|
-
"entries": [
|
|
818
|
-
64
|
|
819
|
-
],
|
|
690
|
+
"entries": [64],
|
|
820
691
|
"rangeEnd": 20,
|
|
821
692
|
"rangeStart": 1
|
|
822
693
|
},
|
|
823
694
|
"test_ne3_07_a": {
|
|
824
|
-
"entries": [
|
|
825
|
-
32,
|
|
826
|
-
33,
|
|
827
|
-
34
|
|
828
|
-
],
|
|
695
|
+
"entries": [32, 33, 34],
|
|
829
696
|
"rangeEnd": 30,
|
|
830
697
|
"rangeStart": 5
|
|
831
698
|
},
|
|
832
699
|
"test_desync07_a": {
|
|
833
|
-
"entries": [
|
|
834
|
-
52,
|
|
835
|
-
53,
|
|
836
|
-
54
|
|
837
|
-
],
|
|
700
|
+
"entries": [52, 53, 54],
|
|
838
701
|
"rangeEnd": 30,
|
|
839
702
|
"rangeStart": 1
|
|
840
703
|
},
|
|
841
704
|
"test_equals03_a": {
|
|
842
|
-
"entries": [
|
|
843
|
-
52,
|
|
844
|
-
53,
|
|
845
|
-
64
|
|
846
|
-
],
|
|
705
|
+
"entries": [52, 53, 64],
|
|
847
706
|
"rangeEnd": 10,
|
|
848
707
|
"rangeStart": 5
|
|
849
708
|
},
|
|
850
709
|
"test_equals03_b": {
|
|
851
|
-
"entries": [
|
|
852
|
-
52,
|
|
853
|
-
53,
|
|
854
|
-
64
|
|
855
|
-
],
|
|
710
|
+
"entries": [52, 53, 64],
|
|
856
711
|
"rangeEnd": 20,
|
|
857
712
|
"rangeStart": 15
|
|
858
713
|
},
|
|
859
714
|
"test_equals01_b": {
|
|
860
|
-
"entries": [
|
|
861
|
-
12,
|
|
862
|
-
13,
|
|
863
|
-
14
|
|
864
|
-
],
|
|
715
|
+
"entries": [12, 13, 14],
|
|
865
716
|
"rangeEnd": 10,
|
|
866
717
|
"rangeStart": 1
|
|
867
718
|
},
|
|
868
719
|
"test_ne3_09_a": {
|
|
869
|
-
"entries": [
|
|
870
|
-
52,
|
|
871
|
-
53,
|
|
872
|
-
54
|
|
873
|
-
],
|
|
720
|
+
"entries": [52, 53, 54],
|
|
874
721
|
"rangeEnd": 30,
|
|
875
722
|
"rangeStart": 1
|
|
876
723
|
},
|
|
877
724
|
"test_desync03_b": {
|
|
878
|
-
"entries": [
|
|
879
|
-
52
|
|
880
|
-
],
|
|
725
|
+
"entries": [52],
|
|
881
726
|
"rangeEnd": 20,
|
|
882
727
|
"rangeStart": 3
|
|
883
728
|
},
|
|
884
729
|
"test_desync03_a": {
|
|
885
|
-
"entries": [
|
|
886
|
-
64
|
|
887
|
-
],
|
|
730
|
+
"entries": [64],
|
|
888
731
|
"rangeEnd": 5,
|
|
889
732
|
"rangeStart": 4
|
|
890
733
|
},
|
|
891
734
|
"test_equals01_a": {
|
|
892
|
-
"entries": [
|
|
893
|
-
12,
|
|
894
|
-
13,
|
|
895
|
-
14
|
|
896
|
-
],
|
|
735
|
+
"entries": [12, 13, 14],
|
|
897
736
|
"rangeEnd": 10,
|
|
898
737
|
"rangeStart": 1
|
|
899
738
|
},
|
|
900
739
|
"test_desync05_a": {
|
|
901
|
-
"entries": [
|
|
902
|
-
12,
|
|
903
|
-
21,
|
|
904
|
-
50
|
|
905
|
-
],
|
|
740
|
+
"entries": [12, 21, 50],
|
|
906
741
|
"rangeEnd": 10,
|
|
907
742
|
"rangeStart": 1
|
|
908
743
|
},
|
|
909
744
|
"test_desync05_b": {
|
|
910
|
-
"entries": [
|
|
911
|
-
21,
|
|
912
|
-
45,
|
|
913
|
-
48
|
|
914
|
-
],
|
|
745
|
+
"entries": [21, 45, 48],
|
|
915
746
|
"rangeEnd": 20,
|
|
916
747
|
"rangeStart": 1
|
|
917
748
|
},
|
|
918
749
|
"test_desync14_b": {
|
|
919
|
-
"entries": [
|
|
920
|
-
2,
|
|
921
|
-
3,
|
|
922
|
-
76
|
|
923
|
-
],
|
|
750
|
+
"entries": [2, 3, 76],
|
|
924
751
|
"rangeEnd": 0,
|
|
925
752
|
"rangeStart": 0
|
|
926
753
|
},
|
|
927
754
|
"test_desync08_a": {
|
|
928
|
-
"entries": [
|
|
929
|
-
34,
|
|
930
|
-
35,
|
|
931
|
-
45
|
|
932
|
-
],
|
|
755
|
+
"entries": [34, 35, 45],
|
|
933
756
|
"rangeEnd": 20,
|
|
934
757
|
"rangeStart": 10
|
|
935
758
|
},
|
|
936
759
|
"test_desync08_b": {
|
|
937
|
-
"entries": [
|
|
938
|
-
52,
|
|
939
|
-
53,
|
|
940
|
-
64
|
|
941
|
-
],
|
|
760
|
+
"entries": [52, 53, 64],
|
|
942
761
|
"rangeEnd": 40,
|
|
943
762
|
"rangeStart": 30
|
|
944
763
|
},
|
|
945
764
|
"test_ne2_07_b": {
|
|
946
|
-
"entries": [
|
|
947
|
-
48,
|
|
948
|
-
50,
|
|
949
|
-
52,
|
|
950
|
-
54,
|
|
951
|
-
57
|
|
952
|
-
],
|
|
765
|
+
"entries": [48, 50, 52, 54, 57],
|
|
953
766
|
"rangeEnd": 42,
|
|
954
767
|
"rangeStart": 38
|
|
955
768
|
},
|
|
956
769
|
"test_desync14_a": {
|
|
957
|
-
"entries": [
|
|
958
|
-
55,
|
|
959
|
-
58,
|
|
960
|
-
64
|
|
961
|
-
],
|
|
770
|
+
"entries": [55, 58, 64],
|
|
962
771
|
"rangeEnd": 0,
|
|
963
772
|
"rangeStart": 0
|
|
964
773
|
},
|
|
965
774
|
"test_desync12_a": {
|
|
966
|
-
"entries": [
|
|
967
|
-
55,
|
|
968
|
-
58,
|
|
969
|
-
64
|
|
970
|
-
],
|
|
775
|
+
"entries": [55, 58, 64],
|
|
971
776
|
"rangeEnd": 0,
|
|
972
777
|
"rangeStart": 0
|
|
973
778
|
},
|
|
974
779
|
"test_desync12_b": {
|
|
975
|
-
"entries": [
|
|
976
|
-
2,
|
|
977
|
-
3,
|
|
978
|
-
55
|
|
979
|
-
],
|
|
780
|
+
"entries": [2, 3, 55],
|
|
980
781
|
"rangeEnd": 0,
|
|
981
782
|
"rangeStart": 0
|
|
982
783
|
},
|
|
983
784
|
"test_ne3_08_b": {
|
|
984
|
-
"entries": [
|
|
985
|
-
22,
|
|
986
|
-
23,
|
|
987
|
-
24
|
|
988
|
-
],
|
|
785
|
+
"entries": [22, 23, 24],
|
|
989
786
|
"rangeEnd": 20,
|
|
990
787
|
"rangeStart": 5
|
|
991
788
|
},
|
|
992
789
|
"test_ne3_08_a": {
|
|
993
|
-
"entries": [
|
|
994
|
-
52,
|
|
995
|
-
53,
|
|
996
|
-
54
|
|
997
|
-
],
|
|
790
|
+
"entries": [52, 53, 54],
|
|
998
791
|
"rangeEnd": 30,
|
|
999
792
|
"rangeStart": 1
|
|
1000
793
|
},
|
|
1001
794
|
"test_ne1_04_a": {
|
|
1002
|
-
"entries": [
|
|
1003
|
-
2
|
|
1004
|
-
],
|
|
795
|
+
"entries": [2],
|
|
1005
796
|
"rangeEnd": 0,
|
|
1006
797
|
"rangeStart": 0
|
|
1007
798
|
},
|
|
1008
799
|
"test_ne1_04_b": {
|
|
1009
|
-
"entries": [
|
|
1010
|
-
1
|
|
1011
|
-
],
|
|
800
|
+
"entries": [1],
|
|
1012
801
|
"rangeEnd": 0,
|
|
1013
802
|
"rangeStart": 0
|
|
1014
803
|
},
|
|
1015
804
|
"test_ne3_02_a": {
|
|
1016
|
-
"entries": [
|
|
1017
|
-
64
|
|
1018
|
-
],
|
|
805
|
+
"entries": [64],
|
|
1019
806
|
"rangeEnd": 20,
|
|
1020
807
|
"rangeStart": 1
|
|
1021
808
|
},
|
|
1022
809
|
"test_ne3_02_b": {
|
|
1023
|
-
"entries": [
|
|
1024
|
-
14
|
|
1025
|
-
],
|
|
810
|
+
"entries": [14],
|
|
1026
811
|
"rangeEnd": 5,
|
|
1027
812
|
"rangeStart": 1
|
|
1028
813
|
},
|
|
1029
814
|
"test_ne1_02_b": {
|
|
1030
|
-
"entries": [
|
|
1031
|
-
22,
|
|
1032
|
-
23,
|
|
1033
|
-
24
|
|
1034
|
-
],
|
|
815
|
+
"entries": [22, 23, 24],
|
|
1035
816
|
"rangeEnd": 10,
|
|
1036
817
|
"rangeStart": 1
|
|
1037
818
|
},
|
|
1038
819
|
"test_ne1_02_a": {
|
|
1039
|
-
"entries": [
|
|
1040
|
-
52,
|
|
1041
|
-
53,
|
|
1042
|
-
54
|
|
1043
|
-
],
|
|
820
|
+
"entries": [52, 53, 54],
|
|
1044
821
|
"rangeEnd": 0,
|
|
1045
822
|
"rangeStart": 0
|
|
1046
823
|
},
|
|
1047
824
|
"test_ne3_04_b": {
|
|
1048
|
-
"entries": [
|
|
1049
|
-
12,
|
|
1050
|
-
21
|
|
1051
|
-
],
|
|
825
|
+
"entries": [12, 21],
|
|
1052
826
|
"rangeEnd": 10,
|
|
1053
827
|
"rangeStart": 1
|
|
1054
828
|
},
|
|
1055
829
|
"test_ne3_04_a": {
|
|
1056
|
-
"entries": [
|
|
1057
|
-
21,
|
|
1058
|
-
45,
|
|
1059
|
-
48
|
|
1060
|
-
],
|
|
830
|
+
"entries": [21, 45, 48],
|
|
1061
831
|
"rangeEnd": 20,
|
|
1062
832
|
"rangeStart": 1
|
|
1063
833
|
},
|
|
1064
834
|
"test_ne2_08_a": {
|
|
1065
|
-
"entries": [
|
|
1066
|
-
52,
|
|
1067
|
-
53,
|
|
1068
|
-
64
|
|
1069
|
-
],
|
|
835
|
+
"entries": [52, 53, 64],
|
|
1070
836
|
"rangeEnd": 20,
|
|
1071
837
|
"rangeStart": 3
|
|
1072
838
|
},
|
|
1073
839
|
"test_desync01_a": {
|
|
1074
|
-
"entries": [
|
|
1075
|
-
22,
|
|
1076
|
-
23,
|
|
1077
|
-
24
|
|
1078
|
-
],
|
|
840
|
+
"entries": [22, 23, 24],
|
|
1079
841
|
"rangeEnd": 10,
|
|
1080
842
|
"rangeStart": 1
|
|
1081
843
|
},
|
|
1082
844
|
"test_ne3_06_b": {
|
|
1083
|
-
"entries": [
|
|
1084
|
-
22,
|
|
1085
|
-
23,
|
|
1086
|
-
24
|
|
1087
|
-
],
|
|
845
|
+
"entries": [22, 23, 24],
|
|
1088
846
|
"rangeEnd": 10,
|
|
1089
847
|
"rangeStart": 1
|
|
1090
848
|
},
|
|
1091
849
|
"test_ne2_08_b": {
|
|
1092
|
-
"entries": [
|
|
1093
|
-
52,
|
|
1094
|
-
53,
|
|
1095
|
-
64
|
|
1096
|
-
],
|
|
850
|
+
"entries": [52, 53, 64],
|
|
1097
851
|
"rangeEnd": 5,
|
|
1098
852
|
"rangeStart": 1
|
|
1099
853
|
},
|
|
1100
854
|
"test_ne2_04_a": {
|
|
1101
|
-
"entries": [
|
|
1102
|
-
52,
|
|
1103
|
-
53,
|
|
1104
|
-
64
|
|
1105
|
-
],
|
|
855
|
+
"entries": [52, 53, 64],
|
|
1106
856
|
"rangeEnd": 20,
|
|
1107
857
|
"rangeStart": 10
|
|
1108
858
|
},
|
|
1109
859
|
"test_ne2_04_b": {
|
|
1110
|
-
"entries": [
|
|
1111
|
-
52,
|
|
1112
|
-
53,
|
|
1113
|
-
64
|
|
1114
|
-
],
|
|
860
|
+
"entries": [52, 53, 64],
|
|
1115
861
|
"rangeEnd": 0,
|
|
1116
862
|
"rangeStart": 0
|
|
1117
863
|
},
|
|
1118
864
|
"test_desync02_b": {
|
|
1119
|
-
"entries": [
|
|
1120
|
-
22,
|
|
1121
|
-
23,
|
|
1122
|
-
24
|
|
1123
|
-
],
|
|
865
|
+
"entries": [22, 23, 24],
|
|
1124
866
|
"rangeEnd": 20,
|
|
1125
867
|
"rangeStart": 5
|
|
1126
868
|
},
|
|
1127
869
|
"test_desync02_a": {
|
|
1128
|
-
"entries": [
|
|
1129
|
-
32,
|
|
1130
|
-
33,
|
|
1131
|
-
34
|
|
1132
|
-
],
|
|
870
|
+
"entries": [32, 33, 34],
|
|
1133
871
|
"rangeEnd": 10,
|
|
1134
872
|
"rangeStart": 1
|
|
1135
873
|
},
|
|
1136
874
|
"test_ne2_02_b": {
|
|
1137
|
-
"entries": [
|
|
1138
|
-
52,
|
|
1139
|
-
53,
|
|
1140
|
-
64
|
|
1141
|
-
],
|
|
875
|
+
"entries": [52, 53, 64],
|
|
1142
876
|
"rangeEnd": 20,
|
|
1143
877
|
"rangeStart": 14
|
|
1144
878
|
},
|
|
1145
879
|
"test_ne2_02_a": {
|
|
1146
|
-
"entries": [
|
|
1147
|
-
52,
|
|
1148
|
-
53,
|
|
1149
|
-
64
|
|
1150
|
-
],
|
|
880
|
+
"entries": [52, 53, 64],
|
|
1151
881
|
"rangeEnd": 22,
|
|
1152
882
|
"rangeStart": 10
|
|
1153
883
|
},
|
|
1154
884
|
"test_ne3_09_b": {
|
|
1155
|
-
"entries": [
|
|
1156
|
-
22,
|
|
1157
|
-
23,
|
|
1158
|
-
24
|
|
1159
|
-
],
|
|
885
|
+
"entries": [22, 23, 24],
|
|
1160
886
|
"rangeEnd": 0,
|
|
1161
887
|
"rangeStart": 0
|
|
1162
888
|
},
|
|
1163
889
|
"test_desync04_a": {
|
|
1164
|
-
"entries": [
|
|
1165
|
-
52
|
|
1166
|
-
],
|
|
890
|
+
"entries": [52],
|
|
1167
891
|
"rangeEnd": 5,
|
|
1168
892
|
"rangeStart": 1
|
|
1169
893
|
},
|
|
1170
894
|
"test_desync04_b": {
|
|
1171
|
-
"entries": [
|
|
1172
|
-
64
|
|
1173
|
-
],
|
|
895
|
+
"entries": [64],
|
|
1174
896
|
"rangeEnd": 20,
|
|
1175
897
|
"rangeStart": 1
|
|
1176
898
|
},
|
|
1177
899
|
"test_ne3_03_a": {
|
|
1178
|
-
"entries": [
|
|
1179
|
-
50,
|
|
1180
|
-
52,
|
|
1181
|
-
53,
|
|
1182
|
-
64,
|
|
1183
|
-
68
|
|
1184
|
-
],
|
|
900
|
+
"entries": [50, 52, 53, 64, 68],
|
|
1185
901
|
"rangeEnd": 20,
|
|
1186
902
|
"rangeStart": 15
|
|
1187
903
|
},
|
|
1188
904
|
"test_ne3_03_b": {
|
|
1189
|
-
"entries": [
|
|
1190
|
-
52,
|
|
1191
|
-
53,
|
|
1192
|
-
64
|
|
1193
|
-
],
|
|
905
|
+
"entries": [52, 53, 64],
|
|
1194
906
|
"rangeEnd": 10,
|
|
1195
907
|
"rangeStart": 5
|
|
1196
908
|
},
|
|
1197
909
|
"test_ne4_01_b": {
|
|
1198
|
-
"entries": [
|
|
1199
|
-
2,
|
|
1200
|
-
3,
|
|
1201
|
-
17
|
|
1202
|
-
],
|
|
910
|
+
"entries": [2, 3, 17],
|
|
1203
911
|
"rangeEnd": 0,
|
|
1204
912
|
"rangeStart": 0
|
|
1205
913
|
},
|
|
1206
914
|
"test_ne3_05_b": {
|
|
1207
|
-
"entries": [
|
|
1208
|
-
12,
|
|
1209
|
-
21,
|
|
1210
|
-
50
|
|
1211
|
-
],
|
|
915
|
+
"entries": [12, 21, 50],
|
|
1212
916
|
"rangeEnd": 15,
|
|
1213
917
|
"rangeStart": 1
|
|
1214
918
|
},
|
|
1215
919
|
"test_ne3_05_a": {
|
|
1216
|
-
"entries": [
|
|
1217
|
-
12,
|
|
1218
|
-
21,
|
|
1219
|
-
50,
|
|
1220
|
-
90,
|
|
1221
|
-
91
|
|
1222
|
-
],
|
|
920
|
+
"entries": [12, 21, 50, 90, 91],
|
|
1223
921
|
"rangeEnd": 10,
|
|
1224
922
|
"rangeStart": 1
|
|
1225
923
|
},
|
|
1226
924
|
"test_ne4_01_a": {
|
|
1227
|
-
"entries": [
|
|
1228
|
-
22,
|
|
1229
|
-
23,
|
|
1230
|
-
24
|
|
1231
|
-
],
|
|
925
|
+
"entries": [22, 23, 24],
|
|
1232
926
|
"rangeEnd": 20,
|
|
1233
927
|
"rangeStart": 10
|
|
1234
928
|
},
|
|
1235
929
|
"test_ne1_05_a": {
|
|
1236
|
-
"entries": [
|
|
1237
|
-
55,
|
|
1238
|
-
58,
|
|
1239
|
-
64
|
|
1240
|
-
],
|
|
930
|
+
"entries": [55, 58, 64],
|
|
1241
931
|
"rangeEnd": 0,
|
|
1242
932
|
"rangeStart": 0
|
|
1243
933
|
},
|
|
1244
934
|
"test_ne1_05_b": {
|
|
1245
|
-
"entries": [
|
|
1246
|
-
2,
|
|
1247
|
-
3,
|
|
1248
|
-
7
|
|
1249
|
-
],
|
|
935
|
+
"entries": [2, 3, 7],
|
|
1250
936
|
"rangeEnd": 0,
|
|
1251
937
|
"rangeStart": 0
|
|
1252
938
|
},
|
|
1253
939
|
"test_ne3_01_b": {
|
|
1254
|
-
"entries": [
|
|
1255
|
-
22,
|
|
1256
|
-
23,
|
|
1257
|
-
24
|
|
1258
|
-
],
|
|
940
|
+
"entries": [22, 23, 24],
|
|
1259
941
|
"rangeEnd": 10,
|
|
1260
942
|
"rangeStart": 1
|
|
1261
943
|
},
|
|
1262
944
|
"test_ne3_01_a": {
|
|
1263
|
-
"entries": [
|
|
1264
|
-
32,
|
|
1265
|
-
33,
|
|
1266
|
-
34
|
|
1267
|
-
],
|
|
945
|
+
"entries": [32, 33, 34],
|
|
1268
946
|
"rangeEnd": 30,
|
|
1269
947
|
"rangeStart": 20
|
|
1270
948
|
},
|
|
1271
949
|
"test_ne1_01_a": {
|
|
1272
|
-
"entries": [
|
|
1273
|
-
120,
|
|
1274
|
-
130,
|
|
1275
|
-
140
|
|
1276
|
-
],
|
|
950
|
+
"entries": [120, 130, 140],
|
|
1277
951
|
"rangeEnd": 100,
|
|
1278
952
|
"rangeStart": 20
|
|
1279
953
|
},
|
|
1280
954
|
"test_ne1_01_b": {
|
|
1281
|
-
"entries": [
|
|
1282
|
-
12,
|
|
1283
|
-
13,
|
|
1284
|
-
14
|
|
1285
|
-
],
|
|
955
|
+
"entries": [12, 13, 14],
|
|
1286
956
|
"rangeEnd": 10,
|
|
1287
957
|
"rangeStart": 1
|
|
1288
958
|
},
|
|
1289
959
|
"test_ne2_09_a": {
|
|
1290
|
-
"entries": [
|
|
1291
|
-
52,
|
|
1292
|
-
53,
|
|
1293
|
-
64
|
|
1294
|
-
],
|
|
960
|
+
"entries": [52, 53, 64],
|
|
1295
961
|
"rangeEnd": 20,
|
|
1296
962
|
"rangeStart": 3
|
|
1297
963
|
},
|
|
1298
964
|
"test_ne1_03_b": {
|
|
1299
|
-
"entries": [
|
|
1300
|
-
2,
|
|
1301
|
-
3,
|
|
1302
|
-
7
|
|
1303
|
-
],
|
|
965
|
+
"entries": [2, 3, 7],
|
|
1304
966
|
"rangeEnd": 0,
|
|
1305
967
|
"rangeStart": 0
|
|
1306
968
|
},
|
|
1307
969
|
"test_ne1_03_a": {
|
|
1308
|
-
"entries": [
|
|
1309
|
-
22,
|
|
1310
|
-
23,
|
|
1311
|
-
24
|
|
1312
|
-
],
|
|
970
|
+
"entries": [22, 23, 24],
|
|
1313
971
|
"rangeEnd": 20,
|
|
1314
972
|
"rangeStart": 10
|
|
1315
973
|
}
|