@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.
Files changed (1033) hide show
  1. package/UPGRADING.md +9 -9
  2. package/browsers.js +19 -24
  3. package/dist/breakouts/breakout.js +178 -0
  4. package/dist/breakouts/breakout.js.map +1 -0
  5. package/dist/breakouts/collection.js +23 -0
  6. package/dist/breakouts/collection.js.map +1 -0
  7. package/dist/breakouts/edit-lock-error.js +52 -0
  8. package/dist/breakouts/edit-lock-error.js.map +1 -0
  9. package/dist/breakouts/index.js +843 -0
  10. package/dist/breakouts/index.js.map +1 -0
  11. package/dist/breakouts/request.js +78 -0
  12. package/dist/breakouts/request.js.map +1 -0
  13. package/dist/breakouts/utils.js +56 -0
  14. package/dist/breakouts/utils.js.map +1 -0
  15. package/dist/common/browser-detection.d.ts +9 -0
  16. package/dist/common/browser-detection.js +1 -20
  17. package/dist/common/browser-detection.js.map +1 -1
  18. package/dist/common/collection.d.ts +48 -0
  19. package/dist/common/collection.js +5 -20
  20. package/dist/common/collection.js.map +1 -1
  21. package/dist/common/config.d.ts +2 -0
  22. package/dist/common/config.js +0 -7
  23. package/dist/common/config.js.map +1 -1
  24. package/dist/common/errors/captcha-error.d.ts +15 -0
  25. package/dist/common/errors/captcha-error.js +5 -26
  26. package/dist/common/errors/captcha-error.js.map +1 -1
  27. package/dist/common/errors/intent-to-join.d.ts +16 -0
  28. package/dist/common/errors/intent-to-join.js +5 -26
  29. package/dist/common/errors/intent-to-join.js.map +1 -1
  30. package/dist/common/errors/join-meeting.d.ts +17 -0
  31. package/dist/common/errors/join-meeting.js +6 -27
  32. package/dist/common/errors/join-meeting.js.map +1 -1
  33. package/dist/common/errors/media.d.ts +15 -0
  34. package/dist/common/errors/media.js +5 -26
  35. package/dist/common/errors/media.js.map +1 -1
  36. package/dist/common/errors/parameter.d.ts +15 -0
  37. package/dist/common/errors/parameter.js +5 -33
  38. package/dist/common/errors/parameter.js.map +1 -1
  39. package/dist/common/errors/password-error.d.ts +15 -0
  40. package/dist/common/errors/password-error.js +5 -26
  41. package/dist/common/errors/password-error.js.map +1 -1
  42. package/dist/common/errors/permission.d.ts +14 -0
  43. package/dist/common/errors/permission.js +4 -25
  44. package/dist/common/errors/permission.js.map +1 -1
  45. package/dist/common/errors/reconnection-in-progress.d.ts +9 -0
  46. package/dist/common/errors/reconnection-in-progress.js +0 -17
  47. package/dist/common/errors/reconnection-in-progress.js.map +1 -1
  48. package/dist/common/errors/reconnection.d.ts +15 -0
  49. package/dist/common/errors/reconnection.js +5 -26
  50. package/dist/common/errors/reconnection.js.map +1 -1
  51. package/dist/common/errors/stats.d.ts +15 -0
  52. package/dist/common/errors/stats.js +5 -26
  53. package/dist/common/errors/stats.js.map +1 -1
  54. package/dist/common/errors/webex-errors.d.ts +81 -0
  55. package/dist/common/errors/webex-errors.js +6 -41
  56. package/dist/common/errors/webex-errors.js.map +1 -1
  57. package/dist/common/errors/webex-meetings-error.d.ts +20 -0
  58. package/dist/common/errors/webex-meetings-error.js +1 -24
  59. package/dist/common/errors/webex-meetings-error.js.map +1 -1
  60. package/dist/common/events/events-scope.d.ts +17 -0
  61. package/dist/common/events/events-scope.js +0 -22
  62. package/dist/common/events/events-scope.js.map +1 -1
  63. package/dist/common/events/events.d.ts +12 -0
  64. package/dist/common/events/events.js +0 -23
  65. package/dist/common/events/events.js.map +1 -1
  66. package/dist/common/events/trigger-proxy.d.ts +2 -0
  67. package/dist/common/events/trigger-proxy.js +0 -12
  68. package/dist/common/events/trigger-proxy.js.map +1 -1
  69. package/dist/common/events/util.d.ts +2 -0
  70. package/dist/common/events/util.js +0 -15
  71. package/dist/common/events/util.js.map +1 -1
  72. package/dist/common/logs/logger-config.d.ts +2 -0
  73. package/dist/common/logs/logger-config.js +0 -4
  74. package/dist/common/logs/logger-config.js.map +1 -1
  75. package/dist/common/logs/logger-proxy.d.ts +2 -0
  76. package/dist/common/logs/logger-proxy.js +1 -8
  77. package/dist/common/logs/logger-proxy.js.map +1 -1
  78. package/dist/common/logs/request.d.ts +34 -0
  79. package/dist/common/logs/request.js +35 -61
  80. package/dist/common/logs/request.js.map +1 -1
  81. package/dist/common/queue.d.ts +32 -0
  82. package/dist/common/queue.js +4 -14
  83. package/dist/common/queue.js.map +1 -1
  84. package/dist/config.d.ts +73 -0
  85. package/dist/config.js +6 -6
  86. package/dist/config.js.map +1 -1
  87. package/dist/constants.d.ts +924 -0
  88. package/dist/constants.js +143 -52
  89. package/dist/constants.js.map +1 -1
  90. package/dist/controls-options-manager/constants.d.ts +4 -0
  91. package/dist/controls-options-manager/constants.js +14 -0
  92. package/dist/controls-options-manager/constants.js.map +1 -0
  93. package/dist/controls-options-manager/enums.d.ts +5 -0
  94. package/dist/controls-options-manager/enums.js +16 -0
  95. package/dist/controls-options-manager/enums.js.map +1 -0
  96. package/dist/controls-options-manager/index.d.ts +120 -0
  97. package/dist/controls-options-manager/index.js +261 -0
  98. package/dist/controls-options-manager/index.js.map +1 -0
  99. package/dist/controls-options-manager/util.d.ts +7 -0
  100. package/dist/controls-options-manager/util.js +39 -0
  101. package/dist/controls-options-manager/util.js.map +1 -0
  102. package/dist/docs/markdown/index.md +12 -0
  103. package/dist/docs/markdown/plugin-meetings.constants._active_.md +11 -0
  104. package/dist/docs/markdown/plugin-meetings.constants._answer_.md +11 -0
  105. package/dist/docs/markdown/plugin-meetings.constants._call_.md +11 -0
  106. package/dist/docs/markdown/plugin-meetings.constants._conflict_.md +11 -0
  107. package/dist/docs/markdown/plugin-meetings.constants._conversation_url_.md +11 -0
  108. package/dist/docs/markdown/plugin-meetings.constants._created_.md +11 -0
  109. package/dist/docs/markdown/plugin-meetings.constants._error_.md +11 -0
  110. package/dist/docs/markdown/plugin-meetings.constants._forced_.md +11 -0
  111. package/dist/docs/markdown/plugin-meetings.constants._id_.md +11 -0
  112. package/dist/docs/markdown/plugin-meetings.constants._idle_.md +11 -0
  113. package/dist/docs/markdown/plugin-meetings.constants._in_.md +11 -0
  114. package/dist/docs/markdown/plugin-meetings.constants._in_lobby_.md +11 -0
  115. package/dist/docs/markdown/plugin-meetings.constants._in_meeting_.md +11 -0
  116. package/dist/docs/markdown/plugin-meetings.constants._inactive_.md +11 -0
  117. package/dist/docs/markdown/plugin-meetings.constants._incoming_.md +11 -0
  118. package/dist/docs/markdown/plugin-meetings.constants._join_.md +11 -0
  119. package/dist/docs/markdown/plugin-meetings.constants._joined_.md +11 -0
  120. package/dist/docs/markdown/plugin-meetings.constants._left_.md +11 -0
  121. package/dist/docs/markdown/plugin-meetings.constants._locus_id_.md +11 -0
  122. package/dist/docs/markdown/plugin-meetings.constants._meeting_.md +11 -0
  123. package/dist/docs/markdown/plugin-meetings.constants._meeting_center_.md +11 -0
  124. package/dist/docs/markdown/plugin-meetings.constants._meeting_id_.md +11 -0
  125. package/dist/docs/markdown/plugin-meetings.constants._meeting_link_.md +11 -0
  126. package/dist/docs/markdown/plugin-meetings.constants._meeting_uuid_.md +11 -0
  127. package/dist/docs/markdown/plugin-meetings.constants._move_media_.md +11 -0
  128. package/dist/docs/markdown/plugin-meetings.constants._none_.md +11 -0
  129. package/dist/docs/markdown/plugin-meetings.constants._not_in_meeting_.md +11 -0
  130. package/dist/docs/markdown/plugin-meetings.constants._observe_.md +11 -0
  131. package/dist/docs/markdown/plugin-meetings.constants._people_.md +11 -0
  132. package/dist/docs/markdown/plugin-meetings.constants._personal_room_.md +11 -0
  133. package/dist/docs/markdown/plugin-meetings.constants._receive_only_.md +11 -0
  134. package/dist/docs/markdown/plugin-meetings.constants._remove_.md +11 -0
  135. package/dist/docs/markdown/plugin-meetings.constants._requested_.md +11 -0
  136. package/dist/docs/markdown/plugin-meetings.constants._resource_room_.md +11 -0
  137. package/dist/docs/markdown/plugin-meetings.constants._room_.md +11 -0
  138. package/dist/docs/markdown/plugin-meetings.constants._s_line.md +11 -0
  139. package/dist/docs/markdown/plugin-meetings.constants._send_only_.md +11 -0
  140. package/dist/docs/markdown/plugin-meetings.constants._send_receive_.md +11 -0
  141. package/dist/docs/markdown/plugin-meetings.constants._sip_bridge_.md +11 -0
  142. package/dist/docs/markdown/plugin-meetings.constants._sip_uri_.md +11 -0
  143. package/dist/docs/markdown/plugin-meetings.constants._slides_.md +11 -0
  144. package/dist/docs/markdown/plugin-meetings.constants._unknown_.md +11 -0
  145. package/dist/docs/markdown/plugin-meetings.constants._user_.md +11 -0
  146. package/dist/docs/markdown/plugin-meetings.constants._wait_.md +11 -0
  147. package/dist/docs/markdown/plugin-meetings.constants._webex_meeting_.md +11 -0
  148. package/dist/docs/markdown/plugin-meetings.constants.alert.md +11 -0
  149. package/dist/docs/markdown/plugin-meetings.constants.alternate_redirect_true.md +11 -0
  150. package/dist/docs/markdown/plugin-meetings.constants.answer.md +11 -0
  151. package/dist/docs/markdown/plugin-meetings.constants.api.md +14 -0
  152. package/dist/docs/markdown/plugin-meetings.constants.audio.md +11 -0
  153. package/dist/docs/markdown/plugin-meetings.constants.audio_input.md +11 -0
  154. package/dist/docs/markdown/plugin-meetings.constants.audio_status.md +11 -0
  155. package/dist/docs/markdown/plugin-meetings.constants.available_resolutions.md +60 -0
  156. package/dist/docs/markdown/plugin-meetings.constants.bnr_status.md +16 -0
  157. package/dist/docs/markdown/plugin-meetings.constants.breakouts.md +51 -0
  158. package/dist/docs/markdown/plugin-meetings.constants.calendar.md +11 -0
  159. package/dist/docs/markdown/plugin-meetings.constants.calendar_events.md +17 -0
  160. package/dist/docs/markdown/plugin-meetings.constants.calendar_events_api.md +11 -0
  161. package/dist/docs/markdown/plugin-meetings.constants.call.md +11 -0
  162. package/dist/docs/markdown/plugin-meetings.constants.call_removed_reason.md +15 -0
  163. package/dist/docs/markdown/plugin-meetings.constants.claim.md +11 -0
  164. package/dist/docs/markdown/plugin-meetings.constants.cmr_meetings.md +11 -0
  165. package/dist/docs/markdown/plugin-meetings.constants.complete.md +11 -0
  166. package/dist/docs/markdown/plugin-meetings.constants.connection_state.md +18 -0
  167. package/dist/docs/markdown/plugin-meetings.constants.content.md +11 -0
  168. package/dist/docs/markdown/plugin-meetings.constants.controls.md +11 -0
  169. package/dist/docs/markdown/plugin-meetings.constants.conversation_service.md +11 -0
  170. package/dist/docs/markdown/plugin-meetings.constants.conversation_url.md +11 -0
  171. package/dist/docs/markdown/plugin-meetings.constants.correlation_id.md +11 -0
  172. package/dist/docs/markdown/plugin-meetings.constants.decline.md +11 -0
  173. package/dist/docs/markdown/plugin-meetings.constants.default_excluded_stats.md +11 -0
  174. package/dist/docs/markdown/plugin-meetings.constants.default_get_stats_filter.md +13 -0
  175. package/dist/docs/markdown/plugin-meetings.constants.development.md +11 -0
  176. package/dist/docs/markdown/plugin-meetings.constants.dialer_regex.md +15 -0
  177. package/dist/docs/markdown/plugin-meetings.constants.display_hints.md +51 -0
  178. package/dist/docs/markdown/plugin-meetings.constants.embedded_app_types.md +14 -0
  179. package/dist/docs/markdown/plugin-meetings.constants.end.md +11 -0
  180. package/dist/docs/markdown/plugin-meetings.constants.ended.md +11 -0
  181. package/dist/docs/markdown/plugin-meetings.constants.error.md +11 -0
  182. package/dist/docs/markdown/plugin-meetings.constants.error_dictionary.md +62 -0
  183. package/dist/docs/markdown/plugin-meetings.constants.event_triggers.md +82 -0
  184. package/dist/docs/markdown/plugin-meetings.constants.event_types.md +21 -0
  185. package/dist/docs/markdown/plugin-meetings.constants.events.md +26 -0
  186. package/dist/docs/markdown/plugin-meetings.constants.floor_action.md +15 -0
  187. package/dist/docs/markdown/plugin-meetings.constants.full_state.md +17 -0
  188. package/dist/docs/markdown/plugin-meetings.constants.gathering.md +11 -0
  189. package/dist/docs/markdown/plugin-meetings.constants.hecate.md +11 -0
  190. package/dist/docs/markdown/plugin-meetings.constants.host.md +11 -0
  191. package/dist/docs/markdown/plugin-meetings.constants.http_verbs.md +17 -0
  192. package/dist/docs/markdown/plugin-meetings.constants.https_protocol.md +11 -0
  193. package/dist/docs/markdown/plugin-meetings.constants.ice_fail_timeout.md +11 -0
  194. package/dist/docs/markdown/plugin-meetings.constants.ice_gathering_state.md +15 -0
  195. package/dist/docs/markdown/plugin-meetings.constants.ice_state.md +18 -0
  196. package/dist/docs/markdown/plugin-meetings.constants.ice_timeout.md +11 -0
  197. package/dist/docs/markdown/plugin-meetings.constants.intent_to_join.md +11 -0
  198. package/dist/docs/markdown/plugin-meetings.constants.ipv4_regex.md +11 -0
  199. package/dist/docs/markdown/plugin-meetings.constants.join.md +11 -0
  200. package/dist/docs/markdown/plugin-meetings.constants.layout_types.md +13 -0
  201. package/dist/docs/markdown/plugin-meetings.constants.leave.md +11 -0
  202. package/dist/docs/markdown/plugin-meetings.constants.live.md +11 -0
  203. package/dist/docs/markdown/plugin-meetings.constants.local.md +11 -0
  204. package/dist/docs/markdown/plugin-meetings.constants.loci.md +11 -0
  205. package/dist/docs/markdown/plugin-meetings.constants.locus.md +26 -0
  206. package/dist/docs/markdown/plugin-meetings.constants.locus_url.md +11 -0
  207. package/dist/docs/markdown/plugin-meetings.constants.locusevent.md +33 -0
  208. package/dist/docs/markdown/plugin-meetings.constants.locusinfo.md +43 -0
  209. package/dist/docs/markdown/plugin-meetings.constants.max_random_delay_for_meeting_info.md +11 -0
  210. package/dist/docs/markdown/plugin-meetings.constants.md +186 -0
  211. package/dist/docs/markdown/plugin-meetings.constants.media.md +11 -0
  212. package/dist/docs/markdown/plugin-meetings.constants.media_devices.md +15 -0
  213. package/dist/docs/markdown/plugin-meetings.constants.media_peer_connection_name.md +11 -0
  214. package/dist/docs/markdown/plugin-meetings.constants.media_state.md +14 -0
  215. package/dist/docs/markdown/plugin-meetings.constants.media_track_constraint.md +17 -0
  216. package/dist/docs/markdown/plugin-meetings.constants.mediacontent.md +14 -0
  217. package/dist/docs/markdown/plugin-meetings.constants.meet.md +11 -0
  218. package/dist/docs/markdown/plugin-meetings.constants.meet_m.md +11 -0
  219. package/dist/docs/markdown/plugin-meetings.constants.meeting_audio_state_machine.md +20 -0
  220. package/dist/docs/markdown/plugin-meetings.constants.meeting_end_reason.md +14 -0
  221. package/dist/docs/markdown/plugin-meetings.constants.meeting_errors.md +102 -0
  222. package/dist/docs/markdown/plugin-meetings.constants.meeting_info_failure_reason.md +16 -0
  223. package/dist/docs/markdown/plugin-meetings.constants.meeting_removed_reason.md +19 -0
  224. package/dist/docs/markdown/plugin-meetings.constants.meeting_state.md +25 -0
  225. package/dist/docs/markdown/plugin-meetings.constants.meeting_state_machine.md +31 -0
  226. package/dist/docs/markdown/plugin-meetings.constants.meeting_video_state_machine.md +20 -0
  227. package/dist/docs/markdown/plugin-meetings.constants.meetinginfo.md +11 -0
  228. package/dist/docs/markdown/plugin-meetings.constants.meetings.md +11 -0
  229. package/dist/docs/markdown/plugin-meetings.constants.metrics_join_times_max_duration.md +11 -0
  230. package/dist/docs/markdown/plugin-meetings.constants.moderator_false.md +11 -0
  231. package/dist/docs/markdown/plugin-meetings.constants.moderator_true.md +11 -0
  232. package/dist/docs/markdown/plugin-meetings.constants.mqa_inteval.md +11 -0
  233. package/dist/docs/markdown/plugin-meetings.constants.mqa_stats.md +82 -0
  234. package/dist/docs/markdown/plugin-meetings.constants.network_status.md +15 -0
  235. package/dist/docs/markdown/plugin-meetings.constants.network_type.md +16 -0
  236. package/dist/docs/markdown/plugin-meetings.constants.offline.md +11 -0
  237. package/dist/docs/markdown/plugin-meetings.constants.online.md +11 -0
  238. package/dist/docs/markdown/plugin-meetings.constants.participant.md +11 -0
  239. package/dist/docs/markdown/plugin-meetings.constants.participant_deltas.md +22 -0
  240. package/dist/docs/markdown/plugin-meetings.constants.password_status.md +16 -0
  241. package/dist/docs/markdown/plugin-meetings.constants.pc_bail_timeout.md +11 -0
  242. package/dist/docs/markdown/plugin-meetings.constants.peer_connection_state.md +14 -0
  243. package/dist/docs/markdown/plugin-meetings.constants.provisional_type_dial_in.md +11 -0
  244. package/dist/docs/markdown/plugin-meetings.constants.provisional_type_dial_out.md +11 -0
  245. package/dist/docs/markdown/plugin-meetings.constants.pstn_status.md +18 -0
  246. package/dist/docs/markdown/plugin-meetings.constants.quality_levels.md +19 -0
  247. package/dist/docs/markdown/plugin-meetings.constants.reachability.md +15 -0
  248. package/dist/docs/markdown/plugin-meetings.constants.ready.md +11 -0
  249. package/dist/docs/markdown/plugin-meetings.constants.reconnection.md +19 -0
  250. package/dist/docs/markdown/plugin-meetings.constants.recording_state.md +16 -0
  251. package/dist/docs/markdown/plugin-meetings.constants.remote.md +11 -0
  252. package/dist/docs/markdown/plugin-meetings.constants.resource.md +15 -0
  253. package/dist/docs/markdown/plugin-meetings.constants.retry_timeout.md +11 -0
  254. package/dist/docs/markdown/plugin-meetings.constants.roap.md +22 -0
  255. package/dist/docs/markdown/plugin-meetings.constants.self_roles.md +14 -0
  256. package/dist/docs/markdown/plugin-meetings.constants.send_dtmf_endpoint.md +11 -0
  257. package/dist/docs/markdown/plugin-meetings.constants.sendrecv.md +11 -0
  258. package/dist/docs/markdown/plugin-meetings.constants.share.md +11 -0
  259. package/dist/docs/markdown/plugin-meetings.constants.share_peer_connection_name.md +11 -0
  260. package/dist/docs/markdown/plugin-meetings.constants.share_status.md +16 -0
  261. package/dist/docs/markdown/plugin-meetings.constants.share_stopped_reason.md +14 -0
  262. package/dist/docs/markdown/plugin-meetings.constants.sip_uri.md +11 -0
  263. package/dist/docs/markdown/plugin-meetings.constants.stats.md +16 -0
  264. package/dist/docs/markdown/plugin-meetings.constants.type.md +11 -0
  265. package/dist/docs/markdown/plugin-meetings.constants.use_uri_lookup_false.md +11 -0
  266. package/dist/docs/markdown/plugin-meetings.constants.uuid_reg.md +11 -0
  267. package/dist/docs/markdown/plugin-meetings.constants.valid_email_address.md +11 -0
  268. package/dist/docs/markdown/plugin-meetings.constants.valid_pin.md +11 -0
  269. package/dist/docs/markdown/plugin-meetings.constants.valid_pmr_address.md +11 -0
  270. package/dist/docs/markdown/plugin-meetings.constants.valid_pmr_link.md +11 -0
  271. package/dist/docs/markdown/plugin-meetings.constants.video.md +11 -0
  272. package/dist/docs/markdown/plugin-meetings.constants.video_input.md +11 -0
  273. package/dist/docs/markdown/plugin-meetings.constants.video_resolutions.md +24 -0
  274. package/dist/docs/markdown/plugin-meetings.constants.video_status.md +11 -0
  275. package/dist/docs/markdown/plugin-meetings.constants.wbxappapi_service.md +11 -0
  276. package/dist/docs/markdown/plugin-meetings.constants.webex_dot_com.md +11 -0
  277. package/dist/docs/markdown/plugin-meetings.constants.whiteboard.md +11 -0
  278. package/dist/docs/markdown/plugin-meetings.constants.www_dot.md +11 -0
  279. package/dist/docs/markdown/plugin-meetings.md +28 -0
  280. package/dist/docs/markdown/plugin-meetings.meeting.default._constructor_.md +21 -0
  281. package/dist/docs/markdown/plugin-meetings.meeting.default.acknowledge.md +28 -0
  282. package/dist/docs/markdown/plugin-meetings.meeting.default.addmedia.md +28 -0
  283. package/dist/docs/markdown/plugin-meetings.meeting.default.admit.md +32 -0
  284. package/dist/docs/markdown/plugin-meetings.meeting.default.attrs.md +11 -0
  285. package/dist/docs/markdown/plugin-meetings.meeting.default.audio.md +11 -0
  286. package/dist/docs/markdown/plugin-meetings.meeting.default.breakouts.md +11 -0
  287. package/dist/docs/markdown/plugin-meetings.meeting.default.callevents.md +11 -0
  288. package/dist/docs/markdown/plugin-meetings.meeting.default.cancelphoneinvite.md +30 -0
  289. package/dist/docs/markdown/plugin-meetings.meeting.default.canupdatemedia.md +19 -0
  290. package/dist/docs/markdown/plugin-meetings.meeting.default.changevideolayout.md +38 -0
  291. package/dist/docs/markdown/plugin-meetings.meeting.default.clearmeetingdata.md +13 -0
  292. package/dist/docs/markdown/plugin-meetings.meeting.default.closelocalshare.md +21 -0
  293. package/dist/docs/markdown/plugin-meetings.meeting.default.closelocalstream.md +21 -0
  294. package/dist/docs/markdown/plugin-meetings.meeting.default.closepeerconnections.md +21 -0
  295. package/dist/docs/markdown/plugin-meetings.meeting.default.closeremotestream.md +26 -0
  296. package/dist/docs/markdown/plugin-meetings.meeting.default.closeremotetracks.md +19 -0
  297. package/dist/docs/markdown/plugin-meetings.meeting.default.controlsoptionsmanager.md +11 -0
  298. package/dist/docs/markdown/plugin-meetings.meeting.default.conversationurl.md +11 -0
  299. package/dist/docs/markdown/plugin-meetings.meeting.default.correlationid.md +11 -0
  300. package/dist/docs/markdown/plugin-meetings.meeting.default.createmediaconnection.md +26 -0
  301. package/dist/docs/markdown/plugin-meetings.meeting.default.decline.md +28 -0
  302. package/dist/docs/markdown/plugin-meetings.meeting.default.deferjoin.md +11 -0
  303. package/dist/docs/markdown/plugin-meetings.meeting.default.destination.md +11 -0
  304. package/dist/docs/markdown/plugin-meetings.meeting.default.destinationtype.md +11 -0
  305. package/dist/docs/markdown/plugin-meetings.meeting.default.deviceurl.md +11 -0
  306. package/dist/docs/markdown/plugin-meetings.meeting.default.dialindevicestatus.md +11 -0
  307. package/dist/docs/markdown/plugin-meetings.meeting.default.dialinurl.md +11 -0
  308. package/dist/docs/markdown/plugin-meetings.meeting.default.dialoutdevicestatus.md +11 -0
  309. package/dist/docs/markdown/plugin-meetings.meeting.default.dialouturl.md +11 -0
  310. package/dist/docs/markdown/plugin-meetings.meeting.default.disconnectphoneaudio.md +19 -0
  311. package/dist/docs/markdown/plugin-meetings.meeting.default.endcallinitiatejoinreq.md +11 -0
  312. package/dist/docs/markdown/plugin-meetings.meeting.default.endjoinreqresp.md +11 -0
  313. package/dist/docs/markdown/plugin-meetings.meeting.default.endlocalsdpgenremotesdprecvdelay.md +11 -0
  314. package/dist/docs/markdown/plugin-meetings.meeting.default.endmeetingforall.md +21 -0
  315. package/dist/docs/markdown/plugin-meetings.meeting.default.fetchmeetinginfo.md +29 -0
  316. package/dist/docs/markdown/plugin-meetings.meeting.default.fetchmeetinginfotimeoutid.md +11 -0
  317. package/dist/docs/markdown/plugin-meetings.meeting.default.floorgrantpending.md +11 -0
  318. package/dist/docs/markdown/plugin-meetings.meeting.default.forwardevent.md +29 -0
  319. package/dist/docs/markdown/plugin-meetings.meeting.default.getanalyzermetricsprepayload.md +32 -0
  320. package/dist/docs/markdown/plugin-meetings.meeting.default.getcallinitiatejoinreq.md +17 -0
  321. package/dist/docs/markdown/plugin-meetings.meeting.default.getdevices.md +13 -0
  322. package/dist/docs/markdown/plugin-meetings.meeting.default.getjoinreqresp.md +17 -0
  323. package/dist/docs/markdown/plugin-meetings.meeting.default.getlocalsdpgenremotesdprecvdelay.md +17 -0
  324. package/dist/docs/markdown/plugin-meetings.meeting.default.getmediaconnectiondebugid.md +15 -0
  325. package/dist/docs/markdown/plugin-meetings.meeting.default.getmediastreams.md +15 -0
  326. package/dist/docs/markdown/plugin-meetings.meeting.default.getmembers.md +21 -0
  327. package/dist/docs/markdown/plugin-meetings.meeting.default.getsendingmediadelayduration.md +24 -0
  328. package/dist/docs/markdown/plugin-meetings.meeting.default.getsetupdelayduration.md +24 -0
  329. package/dist/docs/markdown/plugin-meetings.meeting.default.getsupporteddevices.md +16 -0
  330. package/dist/docs/markdown/plugin-meetings.meeting.default.gettotaljmt.md +17 -0
  331. package/dist/docs/markdown/plugin-meetings.meeting.default.guest.md +11 -0
  332. package/dist/docs/markdown/plugin-meetings.meeting.default.handledatachannelurlchange.md +26 -0
  333. package/dist/docs/markdown/plugin-meetings.meeting.default.handleroapfailure.md +13 -0
  334. package/dist/docs/markdown/plugin-meetings.meeting.default.hasjoinedonce.md +11 -0
  335. package/dist/docs/markdown/plugin-meetings.meeting.default.haswebsocketconnected.md +11 -0
  336. package/dist/docs/markdown/plugin-meetings.meeting.default.hostid.md +11 -0
  337. package/dist/docs/markdown/plugin-meetings.meeting.default.id.md +11 -0
  338. package/dist/docs/markdown/plugin-meetings.meeting.default.inmeetingactions.md +11 -0
  339. package/dist/docs/markdown/plugin-meetings.meeting.default.invite.md +33 -0
  340. package/dist/docs/markdown/plugin-meetings.meeting.default.isaudioconnected.md +21 -0
  341. package/dist/docs/markdown/plugin-meetings.meeting.default.isaudiomuted.md +21 -0
  342. package/dist/docs/markdown/plugin-meetings.meeting.default.isaudioself.md +21 -0
  343. package/dist/docs/markdown/plugin-meetings.meeting.default.islocalsharelive.md +11 -0
  344. package/dist/docs/markdown/plugin-meetings.meeting.default.ismultistream.md +11 -0
  345. package/dist/docs/markdown/plugin-meetings.meeting.default.isreactionssupported.md +19 -0
  346. package/dist/docs/markdown/plugin-meetings.meeting.default.isroapinprogress.md +11 -0
  347. package/dist/docs/markdown/plugin-meetings.meeting.default.issharing.md +11 -0
  348. package/dist/docs/markdown/plugin-meetings.meeting.default.istranscriptionsupported.md +23 -0
  349. package/dist/docs/markdown/plugin-meetings.meeting.default.isvideoconnected.md +21 -0
  350. package/dist/docs/markdown/plugin-meetings.meeting.default.isvideomuted.md +21 -0
  351. package/dist/docs/markdown/plugin-meetings.meeting.default.isvideoself.md +21 -0
  352. package/dist/docs/markdown/plugin-meetings.meeting.default.join.md +28 -0
  353. package/dist/docs/markdown/plugin-meetings.meeting.default.joinedwith.md +11 -0
  354. package/dist/docs/markdown/plugin-meetings.meeting.default.joinwithmedia.md +36 -0
  355. package/dist/docs/markdown/plugin-meetings.meeting.default.keepalivetimerid.md +11 -0
  356. package/dist/docs/markdown/plugin-meetings.meeting.default.lastvideolayoutinfo.md +11 -0
  357. package/dist/docs/markdown/plugin-meetings.meeting.default.leave.md +31 -0
  358. package/dist/docs/markdown/plugin-meetings.meeting.default.lockmeeting.md +21 -0
  359. package/dist/docs/markdown/plugin-meetings.meeting.default.locusid.md +11 -0
  360. package/dist/docs/markdown/plugin-meetings.meeting.default.locusinfo.md +11 -0
  361. package/dist/docs/markdown/plugin-meetings.meeting.default.locusurl.md +11 -0
  362. package/dist/docs/markdown/plugin-meetings.meeting.default.md +227 -0
  363. package/dist/docs/markdown/plugin-meetings.meeting.default.mediaconnections.md +11 -0
  364. package/dist/docs/markdown/plugin-meetings.meeting.default.mediaid.md +11 -0
  365. package/dist/docs/markdown/plugin-meetings.meeting.default.medianegotiatedevent.md +13 -0
  366. package/dist/docs/markdown/plugin-meetings.meeting.default.mediaproperties.md +11 -0
  367. package/dist/docs/markdown/plugin-meetings.meeting.default.mediarequestmanagers.md +16 -0
  368. package/dist/docs/markdown/plugin-meetings.meeting.default.meetingfinitestatemachine.md +11 -0
  369. package/dist/docs/markdown/plugin-meetings.meeting.default.meetinginfo.md +11 -0
  370. package/dist/docs/markdown/plugin-meetings.meeting.default.meetinginfofailurereason.md +11 -0
  371. package/dist/docs/markdown/plugin-meetings.meeting.default.meetingjoinurl.md +11 -0
  372. package/dist/docs/markdown/plugin-meetings.meeting.default.meetingnumber.md +11 -0
  373. package/dist/docs/markdown/plugin-meetings.meeting.default.meetingrequest.md +11 -0
  374. package/dist/docs/markdown/plugin-meetings.meeting.default.meetingstate.md +11 -0
  375. package/dist/docs/markdown/plugin-meetings.meeting.default.members.md +11 -0
  376. package/dist/docs/markdown/plugin-meetings.meeting.default.movefrom.md +28 -0
  377. package/dist/docs/markdown/plugin-meetings.meeting.default.moveto.md +28 -0
  378. package/dist/docs/markdown/plugin-meetings.meeting.default.mute.md +29 -0
  379. package/dist/docs/markdown/plugin-meetings.meeting.default.muteaudio.md +21 -0
  380. package/dist/docs/markdown/plugin-meetings.meeting.default.mutevideo.md +21 -0
  381. package/dist/docs/markdown/plugin-meetings.meeting.default.namespace.md +11 -0
  382. package/dist/docs/markdown/plugin-meetings.meeting.default.networkqualitymonitor.md +11 -0
  383. package/dist/docs/markdown/plugin-meetings.meeting.default.networkstatus.md +11 -0
  384. package/dist/docs/markdown/plugin-meetings.meeting.default.options.md +11 -0
  385. package/dist/docs/markdown/plugin-meetings.meeting.default.orgid.md +11 -0
  386. package/dist/docs/markdown/plugin-meetings.meeting.default.owner.md +11 -0
  387. package/dist/docs/markdown/plugin-meetings.meeting.default.parsemeetinginfo.md +34 -0
  388. package/dist/docs/markdown/plugin-meetings.meeting.default.partner.md +11 -0
  389. package/dist/docs/markdown/plugin-meetings.meeting.default.passwordstatus.md +11 -0
  390. package/dist/docs/markdown/plugin-meetings.meeting.default.pauserecording.md +21 -0
  391. package/dist/docs/markdown/plugin-meetings.meeting.default.permissiontoken.md +11 -0
  392. package/dist/docs/markdown/plugin-meetings.meeting.default.policy.md +11 -0
  393. package/dist/docs/markdown/plugin-meetings.meeting.default.processnextqueuedmediaupdate.md +13 -0
  394. package/dist/docs/markdown/plugin-meetings.meeting.default.publishtracks.md +33 -0
  395. package/dist/docs/markdown/plugin-meetings.meeting.default.queuedmediaupdates.md +11 -0
  396. package/dist/docs/markdown/plugin-meetings.meeting.default.receiveslotmanager.md +11 -0
  397. package/dist/docs/markdown/plugin-meetings.meeting.default.reconnect.md +28 -0
  398. package/dist/docs/markdown/plugin-meetings.meeting.default.reconnectionmanager.md +11 -0
  399. package/dist/docs/markdown/plugin-meetings.meeting.default.recording.md +11 -0
  400. package/dist/docs/markdown/plugin-meetings.meeting.default.recordingcontroller.md +11 -0
  401. package/dist/docs/markdown/plugin-meetings.meeting.default.refreshcaptcha.md +21 -0
  402. package/dist/docs/markdown/plugin-meetings.meeting.default.remotemediamanager.md +11 -0
  403. package/dist/docs/markdown/plugin-meetings.meeting.default.remove.md +28 -0
  404. package/dist/docs/markdown/plugin-meetings.meeting.default.requiredcaptcha.md +11 -0
  405. package/dist/docs/markdown/plugin-meetings.meeting.default.resource.md +11 -0
  406. package/dist/docs/markdown/plugin-meetings.meeting.default.resourceid.md +11 -0
  407. package/dist/docs/markdown/plugin-meetings.meeting.default.resourceurl.md +11 -0
  408. package/dist/docs/markdown/plugin-meetings.meeting.default.resumerecording.md +21 -0
  409. package/dist/docs/markdown/plugin-meetings.meeting.default.roap.md +11 -0
  410. package/dist/docs/markdown/plugin-meetings.meeting.default.roapseq.md +11 -0
  411. package/dist/docs/markdown/plugin-meetings.meeting.default.selfid.md +11 -0
  412. package/dist/docs/markdown/plugin-meetings.meeting.default.senddtmf.md +28 -0
  413. package/dist/docs/markdown/plugin-meetings.meeting.default.sendreaction.md +29 -0
  414. package/dist/docs/markdown/plugin-meetings.meeting.default.setdisallowunmute.md +26 -0
  415. package/dist/docs/markdown/plugin-meetings.meeting.default.setendcallinitiatejoinreq.md +17 -0
  416. package/dist/docs/markdown/plugin-meetings.meeting.default.setendjoinreqresp.md +17 -0
  417. package/dist/docs/markdown/plugin-meetings.meeting.default.setendlocalsdpgenremotesdprecvdelay.md +17 -0
  418. package/dist/docs/markdown/plugin-meetings.meeting.default.setendsendingmediadelay.md +24 -0
  419. package/dist/docs/markdown/plugin-meetings.meeting.default.setendsetupdelay.md +24 -0
  420. package/dist/docs/markdown/plugin-meetings.meeting.default.setlocalsharetrack.md +28 -0
  421. package/dist/docs/markdown/plugin-meetings.meeting.default.setlocaltracks.md +28 -0
  422. package/dist/docs/markdown/plugin-meetings.meeting.default.setlocalvideoquality.md +26 -0
  423. package/dist/docs/markdown/plugin-meetings.meeting.default.setmeetingquality.md +31 -0
  424. package/dist/docs/markdown/plugin-meetings.meeting.default.setmercurylistener.md +21 -0
  425. package/dist/docs/markdown/plugin-meetings.meeting.default.setmuteall.md +28 -0
  426. package/dist/docs/markdown/plugin-meetings.meeting.default.setmuteonentry.md +26 -0
  427. package/dist/docs/markdown/plugin-meetings.meeting.default.setremotequalitylevel.md +26 -0
  428. package/dist/docs/markdown/plugin-meetings.meeting.default.setsipuri.md +26 -0
  429. package/dist/docs/markdown/plugin-meetings.meeting.default.setstartcallinitiatejoinreq.md +17 -0
  430. package/dist/docs/markdown/plugin-meetings.meeting.default.setstartjoinreqresp.md +17 -0
  431. package/dist/docs/markdown/plugin-meetings.meeting.default.setstartlocalsdpgenremotesdprecvdelay.md +17 -0
  432. package/dist/docs/markdown/plugin-meetings.meeting.default.setstartsendingmediadelay.md +24 -0
  433. package/dist/docs/markdown/plugin-meetings.meeting.default.setstartsetupdelay.md +24 -0
  434. package/dist/docs/markdown/plugin-meetings.meeting.default.setupbreakoutslistener.md +19 -0
  435. package/dist/docs/markdown/plugin-meetings.meeting.default.setupmediaconnectionlisteners.md +11 -0
  436. package/dist/docs/markdown/plugin-meetings.meeting.default.setupstatsanalyzereventhandlers.md +13 -0
  437. package/dist/docs/markdown/plugin-meetings.meeting.default.sharescreen.md +32 -0
  438. package/dist/docs/markdown/plugin-meetings.meeting.default.sharestatus.md +11 -0
  439. package/dist/docs/markdown/plugin-meetings.meeting.default.sipuri.md +11 -0
  440. package/dist/docs/markdown/plugin-meetings.meeting.default.startcallinitiatejoinreq.md +11 -0
  441. package/dist/docs/markdown/plugin-meetings.meeting.default.startjoinreqresp.md +11 -0
  442. package/dist/docs/markdown/plugin-meetings.meeting.default.startkeepalive.md +13 -0
  443. package/dist/docs/markdown/plugin-meetings.meeting.default.startlocalsdpgenremotesdprecvdelay.md +11 -0
  444. package/dist/docs/markdown/plugin-meetings.meeting.default.startrecording.md +21 -0
  445. package/dist/docs/markdown/plugin-meetings.meeting.default.startwhiteboardshare.md +29 -0
  446. package/dist/docs/markdown/plugin-meetings.meeting.default.state.md +11 -0
  447. package/dist/docs/markdown/plugin-meetings.meeting.default.statsanalyzer.md +11 -0
  448. package/dist/docs/markdown/plugin-meetings.meeting.default.stopkeepalive.md +13 -0
  449. package/dist/docs/markdown/plugin-meetings.meeting.default.stopreceivingtranscription.md +19 -0
  450. package/dist/docs/markdown/plugin-meetings.meeting.default.stoprecording.md +21 -0
  451. package/dist/docs/markdown/plugin-meetings.meeting.default.stopshare.md +28 -0
  452. package/dist/docs/markdown/plugin-meetings.meeting.default.stopwhiteboardshare.md +28 -0
  453. package/dist/docs/markdown/plugin-meetings.meeting.default.togglereactions.md +28 -0
  454. package/dist/docs/markdown/plugin-meetings.meeting.default.transcription.md +11 -0
  455. package/dist/docs/markdown/plugin-meetings.meeting.default.transfer.md +29 -0
  456. package/dist/docs/markdown/plugin-meetings.meeting.default.type.md +11 -0
  457. package/dist/docs/markdown/plugin-meetings.meeting.default.unlockmeeting.md +21 -0
  458. package/dist/docs/markdown/plugin-meetings.meeting.default.unmuteaudio.md +21 -0
  459. package/dist/docs/markdown/plugin-meetings.meeting.default.unmutevideo.md +21 -0
  460. package/dist/docs/markdown/plugin-meetings.meeting.default.unpublishtracks.md +26 -0
  461. package/dist/docs/markdown/plugin-meetings.meeting.default.unsetlocalsharetrack.md +21 -0
  462. package/dist/docs/markdown/plugin-meetings.meeting.default.unsetlocalvideotrack.md +21 -0
  463. package/dist/docs/markdown/plugin-meetings.meeting.default.unsetpeerconnections.md +21 -0
  464. package/dist/docs/markdown/plugin-meetings.meeting.default.unsetremotestream.md +26 -0
  465. package/dist/docs/markdown/plugin-meetings.meeting.default.unsetremotetracks.md +19 -0
  466. package/dist/docs/markdown/plugin-meetings.meeting.default.updateaudio.md +34 -0
  467. package/dist/docs/markdown/plugin-meetings.meeting.default.updatellmconnection.md +19 -0
  468. package/dist/docs/markdown/plugin-meetings.meeting.default.updatemedia.md +32 -0
  469. package/dist/docs/markdown/plugin-meetings.meeting.default.updatemediaconnections.md +11 -0
  470. package/dist/docs/markdown/plugin-meetings.meeting.default.updateshare.md +35 -0
  471. package/dist/docs/markdown/plugin-meetings.meeting.default.updatevideo.md +34 -0
  472. package/dist/docs/markdown/plugin-meetings.meeting.default.uploadlogs.md +28 -0
  473. package/dist/docs/markdown/plugin-meetings.meeting.default.usephoneaudio.md +28 -0
  474. package/dist/docs/markdown/plugin-meetings.meeting.default.userid.md +11 -0
  475. package/dist/docs/markdown/plugin-meetings.meeting.default.verifypassword.md +35 -0
  476. package/dist/docs/markdown/plugin-meetings.meeting.default.video.md +11 -0
  477. package/dist/docs/markdown/plugin-meetings.meeting.default.wirelessshare.md +11 -0
  478. package/dist/docs/markdown/plugin-meetings.meeting.md +18 -0
  479. package/dist/docs/markdown/plugin-meetings.meeting.media_update_type.md +17 -0
  480. package/dist/docs/markdown/plugin-meetings.meetings._constructor_.md +22 -0
  481. package/dist/docs/markdown/plugin-meetings.meetings.create.md +30 -0
  482. package/dist/docs/markdown/plugin-meetings.meetings.fetchuserpreferredwebexsite.md +19 -0
  483. package/dist/docs/markdown/plugin-meetings.meetings.geohintinfo.md +11 -0
  484. package/dist/docs/markdown/plugin-meetings.meetings.getallmeetings.md +31 -0
  485. package/dist/docs/markdown/plugin-meetings.meetings.getgeohint.md +19 -0
  486. package/dist/docs/markdown/plugin-meetings.meetings.getlogger.md +19 -0
  487. package/dist/docs/markdown/plugin-meetings.meetings.getmeetingbytype.md +29 -0
  488. package/dist/docs/markdown/plugin-meetings.meetings.getpersonalmeetingroom.md +21 -0
  489. package/dist/docs/markdown/plugin-meetings.meetings.getreachability.md +21 -0
  490. package/dist/docs/markdown/plugin-meetings.meetings.getscheduledmeetings.md +19 -0
  491. package/dist/docs/markdown/plugin-meetings.meetings.loggerrequest.md +11 -0
  492. package/dist/docs/markdown/plugin-meetings.meetings.md +57 -0
  493. package/dist/docs/markdown/plugin-meetings.meetings.media.md +11 -0
  494. package/dist/docs/markdown/plugin-meetings.meetings.meetingcollection.md +11 -0
  495. package/dist/docs/markdown/plugin-meetings.meetings.meetinginfo.md +11 -0
  496. package/dist/docs/markdown/plugin-meetings.meetings.namespace.md +11 -0
  497. package/dist/docs/markdown/plugin-meetings.meetings.personalmeetingroom.md +11 -0
  498. package/dist/docs/markdown/plugin-meetings.meetings.preferredwebexsite.md +11 -0
  499. package/dist/docs/markdown/plugin-meetings.meetings.reachability.md +11 -0
  500. package/dist/docs/markdown/plugin-meetings.meetings.register.md +21 -0
  501. package/dist/docs/markdown/plugin-meetings.meetings.registered.md +11 -0
  502. package/dist/docs/markdown/plugin-meetings.meetings.request.md +11 -0
  503. package/dist/docs/markdown/plugin-meetings.meetings.setreachability.md +21 -0
  504. package/dist/docs/markdown/plugin-meetings.meetings.startreachability.md +21 -0
  505. package/dist/docs/markdown/plugin-meetings.meetings.syncmeetings.md +21 -0
  506. package/dist/docs/markdown/plugin-meetings.meetings.unregister.md +21 -0
  507. package/dist/docs/markdown/plugin-meetings.meetings.uploadlogs.md +34 -0
  508. package/dist/docs/markdown/plugin-meetings.reactions.md +13 -0
  509. package/dist/docs/markdown/plugin-meetings.reactions.reactions.md +11 -0
  510. package/dist/docs/markdown/plugin-meetings.reactions.skintones.md +11 -0
  511. package/dist/docs/markdown/plugin-meetings.remotemedia.getmaxfs.md +26 -0
  512. package/dist/docs/markdown/plugin-meetings.remotemedia.md +31 -0
  513. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia._constructor_.md +22 -0
  514. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.csi.md +13 -0
  515. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.id.md +11 -0
  516. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.md +40 -0
  517. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.mediatype.md +13 -0
  518. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.memberid.md +13 -0
  519. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.setsizehint.md +25 -0
  520. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.sourcestate.md +13 -0
  521. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemedia.stream.md +13 -0
  522. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemediaevents.md +14 -0
  523. package/dist/docs/markdown/plugin-meetings.remotemedia.remotemediaid.md +11 -0
  524. package/dist/docs/markdown/plugin-meetings.remotemedia.remotevideoresolution.md +11 -0
  525. package/dist/docs/markdown/plugin-meetings.remotemediagroup.md +12 -0
  526. package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup._constructor_.md +24 -0
  527. package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.getremotemedia.md +26 -0
  528. package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.includes.md +27 -0
  529. package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.ispinned.md +22 -0
  530. package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.md +28 -0
  531. package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.pin.md +25 -0
  532. package/dist/docs/markdown/plugin-meetings.remotemediagroup.remotemediagroup.unpin.md +24 -0
  533. package/dist/docs/markdown/plugin-meetings.triggerproxy.md +11 -0
  534. package/dist/docs/metadata/index.api.json +14144 -0
  535. package/dist/docs/metadata/index.api.md +2075 -0
  536. package/dist/docs/metadata/index.d.ts +5594 -0
  537. package/dist/index.d.ts +4 -0
  538. package/dist/index.js +72 -17
  539. package/dist/index.js.map +1 -1
  540. package/dist/locus-info/controlsUtils.d.ts +2 -0
  541. package/dist/locus-info/controlsUtils.js +31 -29
  542. package/dist/locus-info/controlsUtils.js.map +1 -1
  543. package/dist/locus-info/embeddedAppsUtils.d.ts +2 -0
  544. package/dist/locus-info/embeddedAppsUtils.js +3 -26
  545. package/dist/locus-info/embeddedAppsUtils.js.map +1 -1
  546. package/dist/locus-info/fullState.d.ts +2 -0
  547. package/dist/locus-info/fullState.js +0 -15
  548. package/dist/locus-info/fullState.js.map +1 -1
  549. package/dist/locus-info/hostUtils.d.ts +2 -0
  550. package/dist/locus-info/hostUtils.js +4 -12
  551. package/dist/locus-info/hostUtils.js.map +1 -1
  552. package/dist/locus-info/index.d.ts +269 -0
  553. package/dist/locus-info/index.js +202 -201
  554. package/dist/locus-info/index.js.map +1 -1
  555. package/dist/locus-info/infoUtils.d.ts +2 -0
  556. package/dist/locus-info/infoUtils.js +3 -37
  557. package/dist/locus-info/infoUtils.js.map +1 -1
  558. package/dist/locus-info/mediaSharesUtils.d.ts +2 -0
  559. package/dist/locus-info/mediaSharesUtils.js +12 -38
  560. package/dist/locus-info/mediaSharesUtils.js.map +1 -1
  561. package/dist/locus-info/parser.d.ts +212 -0
  562. package/dist/locus-info/parser.js +88 -123
  563. package/dist/locus-info/parser.js.map +1 -1
  564. package/dist/locus-info/selfUtils.d.ts +2 -0
  565. package/dist/locus-info/selfUtils.js +80 -89
  566. package/dist/locus-info/selfUtils.js.map +1 -1
  567. package/dist/media/index.d.ts +32 -0
  568. package/dist/media/index.js +56 -146
  569. package/dist/media/index.js.map +1 -1
  570. package/dist/media/properties.d.ts +108 -0
  571. package/dist/media/properties.js +71 -117
  572. package/dist/media/properties.js.map +1 -1
  573. package/dist/media/util.d.ts +2 -0
  574. package/dist/media/util.js +2 -9
  575. package/dist/media/util.js.map +1 -1
  576. package/dist/mediaQualityMetrics/config.d.ts +233 -0
  577. package/dist/mediaQualityMetrics/config.js +505 -495
  578. package/dist/mediaQualityMetrics/config.js.map +1 -1
  579. package/dist/meeting/effectsState.d.ts +42 -0
  580. package/dist/meeting/effectsState.js +118 -192
  581. package/dist/meeting/effectsState.js.map +1 -1
  582. package/dist/meeting/in-meeting-actions.d.ts +79 -0
  583. package/dist/meeting/in-meeting-actions.js +31 -14
  584. package/dist/meeting/in-meeting-actions.js.map +1 -1
  585. package/dist/meeting/index.d.ts +1621 -0
  586. package/dist/meeting/index.js +2175 -2266
  587. package/dist/meeting/index.js.map +1 -1
  588. package/dist/meeting/muteState.d.ts +116 -0
  589. package/dist/meeting/muteState.js +252 -113
  590. package/dist/meeting/muteState.js.map +1 -1
  591. package/dist/meeting/request.d.ts +255 -0
  592. package/dist/meeting/request.js +297 -283
  593. package/dist/meeting/request.js.map +1 -1
  594. package/dist/meeting/request.type.js +7 -0
  595. package/dist/meeting/request.type.js.map +1 -0
  596. package/dist/meeting/state.d.ts +9 -0
  597. package/dist/meeting/state.js +21 -31
  598. package/dist/meeting/state.js.map +1 -1
  599. package/dist/meeting/util.d.ts +2 -0
  600. package/dist/meeting/util.js +63 -217
  601. package/dist/meeting/util.js.map +1 -1
  602. package/dist/meeting-info/collection.d.ts +20 -0
  603. package/dist/meeting-info/collection.js +3 -25
  604. package/dist/meeting-info/collection.js.map +1 -1
  605. package/dist/meeting-info/index.d.ts +57 -0
  606. package/dist/meeting-info/index.js +10 -33
  607. package/dist/meeting-info/index.js.map +1 -1
  608. package/dist/meeting-info/meeting-info-v2.d.ts +93 -0
  609. package/dist/meeting-info/meeting-info-v2.js +181 -268
  610. package/dist/meeting-info/meeting-info-v2.js.map +1 -1
  611. package/dist/meeting-info/request.d.ts +22 -0
  612. package/dist/meeting-info/request.js +1 -16
  613. package/dist/meeting-info/request.js.map +1 -1
  614. package/dist/meeting-info/util.d.ts +2 -0
  615. package/dist/meeting-info/util.js +98 -183
  616. package/dist/meeting-info/util.js.map +1 -1
  617. package/dist/meeting-info/utilv2.d.ts +2 -0
  618. package/dist/meeting-info/utilv2.js +137 -228
  619. package/dist/meeting-info/utilv2.js.map +1 -1
  620. package/dist/meetings/collection.d.ts +23 -0
  621. package/dist/meetings/collection.js +24 -20
  622. package/dist/meetings/collection.js.map +1 -1
  623. package/dist/meetings/index.d.ts +297 -0
  624. package/dist/meetings/index.js +566 -587
  625. package/dist/meetings/index.js.map +1 -1
  626. package/dist/meetings/request.d.ts +27 -0
  627. package/dist/meetings/request.js +23 -42
  628. package/dist/meetings/request.js.map +1 -1
  629. package/dist/meetings/util.d.ts +18 -0
  630. package/dist/meetings/util.js +151 -155
  631. package/dist/meetings/util.js.map +1 -1
  632. package/dist/member/index.d.ts +145 -0
  633. package/dist/member/index.js +80 -88
  634. package/dist/member/index.js.map +1 -1
  635. package/dist/member/types.js +15 -0
  636. package/dist/member/types.js.map +1 -0
  637. package/dist/member/util.d.ts +2 -0
  638. package/dist/member/util.js +90 -69
  639. package/dist/member/util.js.map +1 -1
  640. package/dist/members/collection.d.ts +24 -0
  641. package/dist/members/collection.js +12 -12
  642. package/dist/members/collection.js.map +1 -1
  643. package/dist/members/index.d.ts +298 -0
  644. package/dist/members/index.js +139 -204
  645. package/dist/members/index.js.map +1 -1
  646. package/dist/members/request.d.ts +50 -0
  647. package/dist/members/request.js +41 -55
  648. package/dist/members/request.js.map +1 -1
  649. package/dist/members/types.js +15 -0
  650. package/dist/members/types.js.map +1 -0
  651. package/dist/members/util.d.ts +2 -0
  652. package/dist/members/util.js +76 -46
  653. package/dist/members/util.js.map +1 -1
  654. package/dist/metrics/config.d.ts +169 -0
  655. package/dist/metrics/config.js +4 -14
  656. package/dist/metrics/config.js.map +1 -1
  657. package/dist/metrics/constants.d.ts +57 -0
  658. package/dist/metrics/constants.js +1 -6
  659. package/dist/metrics/constants.js.map +1 -1
  660. package/dist/metrics/index.d.ts +152 -0
  661. package/dist/metrics/index.js +53 -158
  662. package/dist/metrics/index.js.map +1 -1
  663. package/dist/multistream/mediaRequestManager.js +116 -52
  664. package/dist/multistream/mediaRequestManager.js.map +1 -1
  665. package/dist/multistream/receiveSlot.js +58 -65
  666. package/dist/multistream/receiveSlot.js.map +1 -1
  667. package/dist/multistream/receiveSlotManager.js +58 -93
  668. package/dist/multistream/receiveSlotManager.js.map +1 -1
  669. package/dist/multistream/remoteMedia.js +55 -74
  670. package/dist/multistream/remoteMedia.js.map +1 -1
  671. package/dist/multistream/remoteMediaGroup.js +6 -40
  672. package/dist/multistream/remoteMediaGroup.js.map +1 -1
  673. package/dist/multistream/remoteMediaManager.js +466 -442
  674. package/dist/multistream/remoteMediaManager.js.map +1 -1
  675. package/dist/networkQualityMonitor/index.d.ts +70 -0
  676. package/dist/networkQualityMonitor/index.js +32 -59
  677. package/dist/networkQualityMonitor/index.js.map +1 -1
  678. package/dist/peer-connection-manager/index.d.ts +6 -0
  679. package/dist/peer-connection-manager/index.js +671 -0
  680. package/dist/peer-connection-manager/index.js.map +1 -0
  681. package/dist/peer-connection-manager/util.d.ts +6 -0
  682. package/dist/peer-connection-manager/util.js +110 -0
  683. package/dist/peer-connection-manager/util.js.map +1 -0
  684. package/dist/personal-meeting-room/index.d.ts +47 -0
  685. package/dist/personal-meeting-room/index.js +10 -45
  686. package/dist/personal-meeting-room/index.js.map +1 -1
  687. package/dist/personal-meeting-room/request.d.ts +14 -0
  688. package/dist/personal-meeting-room/request.js +2 -33
  689. package/dist/personal-meeting-room/request.js.map +1 -1
  690. package/dist/personal-meeting-room/util.d.ts +2 -0
  691. package/dist/personal-meeting-room/util.js +0 -13
  692. package/dist/personal-meeting-room/util.js.map +1 -1
  693. package/dist/plugin-meetings.d.ts +5399 -0
  694. package/dist/reachability/index.d.ts +139 -0
  695. package/dist/reachability/index.js +190 -199
  696. package/dist/reachability/index.js.map +1 -1
  697. package/dist/reachability/request.d.ts +35 -0
  698. package/dist/reachability/request.js +14 -23
  699. package/dist/reachability/request.js.map +1 -1
  700. package/dist/reactions/constants.js +13 -0
  701. package/dist/reactions/constants.js.map +1 -0
  702. package/dist/reactions/reactions.d.ts +4 -0
  703. package/dist/reactions/reactions.js +109 -0
  704. package/dist/reactions/reactions.js.map +1 -0
  705. package/dist/reactions/reactions.type.d.ts +32 -0
  706. package/dist/reactions/reactions.type.js +36 -0
  707. package/dist/reactions/reactions.type.js.map +1 -0
  708. package/dist/reconnection-manager/index.d.ts +112 -0
  709. package/dist/reconnection-manager/index.js +328 -465
  710. package/dist/reconnection-manager/index.js.map +1 -1
  711. package/dist/recording-controller/enums.d.ts +7 -0
  712. package/dist/recording-controller/enums.js +17 -0
  713. package/dist/recording-controller/enums.js.map +1 -0
  714. package/dist/recording-controller/index.d.ts +193 -0
  715. package/dist/recording-controller/index.js +343 -0
  716. package/dist/recording-controller/index.js.map +1 -0
  717. package/dist/recording-controller/util.d.ts +13 -0
  718. package/dist/recording-controller/util.js +63 -0
  719. package/dist/recording-controller/util.js.map +1 -0
  720. package/dist/roap/collection.d.ts +10 -0
  721. package/dist/roap/collection.js +63 -0
  722. package/dist/roap/collection.js.map +1 -0
  723. package/dist/roap/handler.d.ts +47 -0
  724. package/dist/roap/handler.js +279 -0
  725. package/dist/roap/handler.js.map +1 -0
  726. package/dist/roap/index.d.ts +116 -0
  727. package/dist/roap/index.js +27 -59
  728. package/dist/roap/index.js.map +1 -1
  729. package/dist/roap/request.d.ts +35 -0
  730. package/dist/roap/request.js +143 -134
  731. package/dist/roap/request.js.map +1 -1
  732. package/dist/roap/state.d.ts +9 -0
  733. package/dist/roap/state.js +127 -0
  734. package/dist/roap/state.js.map +1 -0
  735. package/dist/roap/turnDiscovery.d.ts +67 -0
  736. package/dist/roap/turnDiscovery.js +86 -101
  737. package/dist/roap/turnDiscovery.js.map +1 -1
  738. package/dist/roap/util.d.ts +2 -0
  739. package/dist/roap/util.js +76 -0
  740. package/dist/roap/util.js.map +1 -0
  741. package/dist/statsAnalyzer/global.d.ts +126 -0
  742. package/dist/statsAnalyzer/global.js +1 -95
  743. package/dist/statsAnalyzer/global.js.map +1 -1
  744. package/dist/statsAnalyzer/index.d.ts +190 -0
  745. package/dist/statsAnalyzer/index.js +356 -457
  746. package/dist/statsAnalyzer/index.js.map +1 -1
  747. package/dist/statsAnalyzer/mqaUtil.d.ts +22 -0
  748. package/dist/statsAnalyzer/mqaUtil.js +144 -94
  749. package/dist/statsAnalyzer/mqaUtil.js.map +1 -1
  750. package/dist/transcription/index.d.ts +64 -0
  751. package/dist/transcription/index.js +13 -45
  752. package/dist/transcription/index.js.map +1 -1
  753. package/dist/types/breakouts/breakout.d.ts +8 -0
  754. package/dist/types/breakouts/collection.d.ts +5 -0
  755. package/dist/types/breakouts/edit-lock-error.d.ts +15 -0
  756. package/dist/types/breakouts/index.d.ts +5 -0
  757. package/dist/types/breakouts/request.d.ts +22 -0
  758. package/dist/types/breakouts/utils.d.ts +8 -0
  759. package/dist/types/common/browser-detection.d.ts +9 -0
  760. package/dist/types/common/collection.d.ts +48 -0
  761. package/dist/types/common/config.d.ts +2 -0
  762. package/dist/types/common/errors/captcha-error.d.ts +15 -0
  763. package/dist/types/common/errors/intent-to-join.d.ts +16 -0
  764. package/dist/types/common/errors/join-meeting.d.ts +17 -0
  765. package/dist/types/common/errors/media.d.ts +15 -0
  766. package/dist/types/common/errors/parameter.d.ts +15 -0
  767. package/dist/types/common/errors/password-error.d.ts +15 -0
  768. package/dist/types/common/errors/permission.d.ts +14 -0
  769. package/dist/types/common/errors/reconnection-in-progress.d.ts +9 -0
  770. package/dist/types/common/errors/reconnection.d.ts +15 -0
  771. package/dist/types/common/errors/stats.d.ts +15 -0
  772. package/dist/types/common/errors/webex-errors.d.ts +69 -0
  773. package/dist/types/common/errors/webex-meetings-error.d.ts +20 -0
  774. package/dist/types/common/events/events-scope.d.ts +17 -0
  775. package/dist/types/common/events/events.d.ts +12 -0
  776. package/dist/types/common/events/trigger-proxy.d.ts +2 -0
  777. package/dist/types/common/events/util.d.ts +2 -0
  778. package/dist/types/common/logs/logger-config.d.ts +2 -0
  779. package/dist/types/common/logs/logger-proxy.d.ts +2 -0
  780. package/dist/types/common/logs/request.d.ts +34 -0
  781. package/dist/types/common/queue.d.ts +32 -0
  782. package/dist/types/config.d.ts +77 -0
  783. package/dist/types/constants.d.ts +944 -0
  784. package/dist/types/controls-options-manager/constants.d.ts +4 -0
  785. package/dist/types/controls-options-manager/enums.d.ts +6 -0
  786. package/dist/types/controls-options-manager/index.d.ts +128 -0
  787. package/dist/types/controls-options-manager/util.d.ts +9 -0
  788. package/dist/types/index.d.ts +7 -0
  789. package/dist/types/locus-info/controlsUtils.d.ts +2 -0
  790. package/dist/types/locus-info/embeddedAppsUtils.d.ts +2 -0
  791. package/dist/types/locus-info/fullState.d.ts +2 -0
  792. package/dist/types/locus-info/hostUtils.d.ts +2 -0
  793. package/dist/types/locus-info/index.d.ts +276 -0
  794. package/dist/types/locus-info/infoUtils.d.ts +2 -0
  795. package/dist/types/locus-info/mediaSharesUtils.d.ts +2 -0
  796. package/dist/types/locus-info/parser.d.ts +212 -0
  797. package/dist/types/locus-info/selfUtils.d.ts +2 -0
  798. package/dist/types/media/index.d.ts +32 -0
  799. package/dist/types/media/properties.d.ts +108 -0
  800. package/dist/types/media/util.d.ts +2 -0
  801. package/dist/types/mediaQualityMetrics/config.d.ts +365 -0
  802. package/dist/types/meeting/effectsState.d.ts +42 -0
  803. package/dist/types/meeting/in-meeting-actions.d.ts +101 -0
  804. package/dist/types/meeting/index.d.ts +1723 -0
  805. package/dist/types/meeting/muteState.d.ts +185 -0
  806. package/dist/types/meeting/request.d.ts +271 -0
  807. package/dist/types/meeting/request.type.d.ts +11 -0
  808. package/dist/types/meeting/state.d.ts +9 -0
  809. package/dist/types/meeting/util.d.ts +2 -0
  810. package/dist/types/meeting-info/collection.d.ts +20 -0
  811. package/dist/types/meeting-info/index.d.ts +57 -0
  812. package/dist/types/meeting-info/meeting-info-v2.d.ts +93 -0
  813. package/dist/types/meeting-info/request.d.ts +22 -0
  814. package/dist/types/meeting-info/util.d.ts +2 -0
  815. package/dist/types/meeting-info/utilv2.d.ts +2 -0
  816. package/dist/types/meetings/collection.d.ts +31 -0
  817. package/dist/types/meetings/index.d.ts +316 -0
  818. package/dist/types/meetings/request.d.ts +27 -0
  819. package/dist/types/meetings/util.d.ts +18 -0
  820. package/dist/types/member/index.d.ts +156 -0
  821. package/dist/types/member/types.d.ts +21 -0
  822. package/dist/types/member/util.d.ts +2 -0
  823. package/dist/types/members/collection.d.ts +29 -0
  824. package/dist/types/members/index.d.ts +343 -0
  825. package/dist/types/members/request.d.ts +58 -0
  826. package/dist/types/members/types.d.ts +24 -0
  827. package/dist/types/members/util.d.ts +2 -0
  828. package/dist/types/metrics/config.d.ts +171 -0
  829. package/dist/types/metrics/constants.d.ts +53 -0
  830. package/dist/types/metrics/index.d.ts +152 -0
  831. package/dist/types/multistream/mediaRequestManager.d.ts +68 -0
  832. package/dist/types/multistream/receiveSlot.d.ts +68 -0
  833. package/dist/types/multistream/receiveSlotManager.d.ts +49 -0
  834. package/dist/types/multistream/remoteMedia.d.ts +72 -0
  835. package/dist/types/multistream/remoteMediaGroup.d.ts +47 -0
  836. package/dist/types/multistream/remoteMediaManager.d.ts +263 -0
  837. package/dist/types/networkQualityMonitor/index.d.ts +70 -0
  838. package/dist/types/personal-meeting-room/index.d.ts +47 -0
  839. package/dist/types/personal-meeting-room/request.d.ts +14 -0
  840. package/dist/types/personal-meeting-room/util.d.ts +2 -0
  841. package/dist/types/reachability/index.d.ts +152 -0
  842. package/dist/types/reachability/request.d.ts +37 -0
  843. package/dist/types/reactions/constants.d.ts +3 -0
  844. package/dist/types/reactions/reactions.d.ts +4 -0
  845. package/dist/types/reactions/reactions.type.d.ts +52 -0
  846. package/dist/types/reconnection-manager/index.d.ts +126 -0
  847. package/dist/types/recording-controller/enums.d.ts +7 -0
  848. package/dist/types/recording-controller/index.d.ts +193 -0
  849. package/dist/types/recording-controller/util.d.ts +13 -0
  850. package/dist/types/roap/index.d.ts +77 -0
  851. package/dist/types/roap/request.d.ts +38 -0
  852. package/dist/types/roap/turnDiscovery.d.ts +74 -0
  853. package/dist/types/statsAnalyzer/global.d.ts +36 -0
  854. package/dist/types/statsAnalyzer/index.d.ts +195 -0
  855. package/dist/types/statsAnalyzer/mqaUtil.d.ts +24 -0
  856. package/dist/types/transcription/index.d.ts +64 -0
  857. package/dist/types/tsdoc-metadata.json +11 -0
  858. package/internal-README.md +7 -6
  859. package/package.json +28 -20
  860. package/src/breakouts/README.md +219 -0
  861. package/src/breakouts/breakout.ts +153 -0
  862. package/src/breakouts/collection.ts +19 -0
  863. package/src/breakouts/edit-lock-error.ts +25 -0
  864. package/src/breakouts/index.ts +745 -0
  865. package/src/breakouts/request.ts +55 -0
  866. package/src/breakouts/utils.ts +44 -0
  867. package/src/common/browser-detection.ts +9 -6
  868. package/src/common/collection.ts +3 -1
  869. package/src/common/errors/captcha-error.ts +6 -6
  870. package/src/common/errors/intent-to-join.ts +6 -6
  871. package/src/common/errors/join-meeting.ts +12 -8
  872. package/src/common/errors/media.ts +6 -6
  873. package/src/common/errors/parameter.ts +9 -6
  874. package/src/common/errors/password-error.ts +6 -6
  875. package/src/common/errors/permission.ts +5 -5
  876. package/src/common/errors/reconnection.ts +6 -6
  877. package/src/common/errors/stats.ts +6 -6
  878. package/src/common/errors/webex-errors.ts +7 -5
  879. package/src/common/errors/webex-meetings-error.ts +1 -1
  880. package/src/common/events/events-scope.ts +5 -1
  881. package/src/common/events/events.ts +5 -1
  882. package/src/common/events/trigger-proxy.ts +8 -3
  883. package/src/common/events/util.ts +1 -2
  884. package/src/common/logs/logger-proxy.ts +21 -10
  885. package/src/common/logs/request.ts +11 -8
  886. package/src/config.ts +16 -12
  887. package/src/constants.ts +92 -6
  888. package/src/controls-options-manager/constants.ts +5 -0
  889. package/src/controls-options-manager/enums.ts +7 -0
  890. package/src/controls-options-manager/index.ts +240 -0
  891. package/src/controls-options-manager/util.ts +30 -0
  892. package/src/index.ts +33 -0
  893. package/src/locus-info/controlsUtils.ts +63 -24
  894. package/src/locus-info/fullState.ts +15 -11
  895. package/src/locus-info/hostUtils.ts +4 -3
  896. package/src/locus-info/index.ts +148 -43
  897. package/src/locus-info/infoUtils.ts +16 -4
  898. package/src/locus-info/mediaSharesUtils.ts +4 -4
  899. package/src/locus-info/parser.ts +46 -68
  900. package/src/locus-info/selfUtils.ts +174 -56
  901. package/src/media/index.ts +131 -179
  902. package/src/media/properties.ts +43 -36
  903. package/src/media/util.ts +1 -1
  904. package/src/mediaQualityMetrics/config.ts +380 -378
  905. package/src/meeting/in-meeting-actions.ts +67 -3
  906. package/src/meeting/index.ts +2395 -1523
  907. package/src/meeting/muteState.ts +271 -68
  908. package/src/meeting/request.ts +228 -132
  909. package/src/meeting/request.type.ts +13 -0
  910. package/src/meeting/state.ts +45 -30
  911. package/src/meeting/util.ts +127 -111
  912. package/src/meeting-info/collection.ts +2 -1
  913. package/src/meeting-info/index.ts +32 -30
  914. package/src/meeting-info/meeting-info-v2.ts +108 -108
  915. package/src/meeting-info/request.ts +9 -3
  916. package/src/meeting-info/util.ts +54 -46
  917. package/src/meeting-info/utilv2.ts +59 -53
  918. package/src/meetings/collection.ts +21 -1
  919. package/src/meetings/index.ts +673 -466
  920. package/src/meetings/request.ts +29 -25
  921. package/src/meetings/util.ts +94 -30
  922. package/src/member/index.ts +86 -49
  923. package/src/member/types.ts +24 -0
  924. package/src/member/util.ts +92 -13
  925. package/src/members/collection.ts +8 -1
  926. package/src/members/index.ts +246 -129
  927. package/src/members/request.ts +67 -14
  928. package/src/members/types.ts +28 -0
  929. package/src/members/util.ts +103 -50
  930. package/src/metrics/config.ts +255 -90
  931. package/src/metrics/constants.ts +0 -6
  932. package/src/metrics/index.ts +90 -93
  933. package/src/multistream/mediaRequestManager.ts +144 -40
  934. package/src/multistream/receiveSlot.ts +69 -26
  935. package/src/multistream/receiveSlotManager.ts +50 -38
  936. package/src/multistream/remoteMedia.ts +30 -4
  937. package/src/multistream/remoteMediaGroup.ts +4 -3
  938. package/src/multistream/remoteMediaManager.ts +230 -66
  939. package/src/networkQualityMonitor/index.ts +24 -27
  940. package/src/personal-meeting-room/index.ts +12 -16
  941. package/src/personal-meeting-room/request.ts +10 -3
  942. package/src/personal-meeting-room/util.ts +3 -3
  943. package/src/reachability/index.ts +131 -79
  944. package/src/reachability/request.ts +43 -34
  945. package/src/reactions/constants.ts +4 -0
  946. package/src/reactions/reactions.ts +104 -0
  947. package/src/reactions/reactions.type.ts +62 -0
  948. package/src/reconnection-manager/index.ts +190 -111
  949. package/src/recording-controller/enums.ts +8 -0
  950. package/src/recording-controller/index.ts +315 -0
  951. package/src/recording-controller/util.ts +58 -0
  952. package/src/roap/index.ts +50 -42
  953. package/src/roap/request.ts +86 -53
  954. package/src/roap/turnDiscovery.ts +69 -38
  955. package/src/statsAnalyzer/global.ts +8 -104
  956. package/src/statsAnalyzer/index.ts +593 -376
  957. package/src/statsAnalyzer/mqaUtil.ts +203 -90
  958. package/src/transcription/index.ts +34 -32
  959. package/test/integration/spec/converged-space-meetings.js +176 -0
  960. package/test/integration/spec/journey.js +665 -464
  961. package/test/integration/spec/space-meeting.js +319 -204
  962. package/test/integration/spec/transcription.js +7 -8
  963. package/test/unit/spec/breakouts/breakout.ts +178 -0
  964. package/test/unit/spec/breakouts/collection.ts +15 -0
  965. package/test/unit/spec/breakouts/edit-lock-error.ts +30 -0
  966. package/test/unit/spec/breakouts/index.ts +1252 -0
  967. package/test/unit/spec/breakouts/request.ts +104 -0
  968. package/test/unit/spec/breakouts/utils.js +54 -0
  969. package/test/unit/spec/common/browser-detection.js +9 -28
  970. package/test/unit/spec/controls-options-manager/index.js +204 -0
  971. package/test/unit/spec/controls-options-manager/util.js +86 -0
  972. package/test/unit/spec/fixture/locus.js +92 -90
  973. package/test/unit/spec/locus-info/controlsUtils.js +133 -34
  974. package/test/unit/spec/locus-info/embeddedAppsUtils.js +8 -6
  975. package/test/unit/spec/locus-info/index.js +303 -2
  976. package/test/unit/spec/locus-info/infoUtils.js +41 -32
  977. package/test/unit/spec/locus-info/lib/BasicSeqCmp.json +88 -430
  978. package/test/unit/spec/locus-info/lib/SeqCmp.json +513 -685
  979. package/test/unit/spec/locus-info/parser.js +3 -9
  980. package/test/unit/spec/locus-info/selfConstant.js +101 -103
  981. package/test/unit/spec/locus-info/selfUtils.js +165 -12
  982. package/test/unit/spec/media/index.ts +72 -8
  983. package/test/unit/spec/media/properties.ts +9 -9
  984. package/test/unit/spec/meeting/in-meeting-actions.ts +29 -2
  985. package/test/unit/spec/meeting/index.js +2479 -794
  986. package/test/unit/spec/meeting/muteState.js +164 -70
  987. package/test/unit/spec/meeting/request.js +141 -43
  988. package/test/unit/spec/meeting/utils.js +135 -164
  989. package/test/unit/spec/meeting-info/meetinginfov2.js +100 -73
  990. package/test/unit/spec/meeting-info/request.js +7 -9
  991. package/test/unit/spec/meeting-info/util.js +11 -12
  992. package/test/unit/spec/meeting-info/utilv2.js +110 -74
  993. package/test/unit/spec/meetings/collection.js +15 -1
  994. package/test/unit/spec/meetings/index.js +622 -263
  995. package/test/unit/spec/meetings/utils.js +65 -14
  996. package/test/unit/spec/member/index.js +24 -1
  997. package/test/unit/spec/member/util.js +359 -32
  998. package/test/unit/spec/members/index.js +294 -54
  999. package/test/unit/spec/members/request.js +50 -20
  1000. package/test/unit/spec/members/utils.js +147 -4
  1001. package/test/unit/spec/metrics/index.js +16 -21
  1002. package/test/unit/spec/multistream/mediaRequestManager.ts +369 -68
  1003. package/test/unit/spec/multistream/receiveSlot.ts +76 -17
  1004. package/test/unit/spec/multistream/receiveSlotManager.ts +60 -38
  1005. package/test/unit/spec/multistream/remoteMedia.ts +32 -2
  1006. package/test/unit/spec/multistream/remoteMediaGroup.ts +5 -5
  1007. package/test/unit/spec/multistream/remoteMediaManager.ts +549 -65
  1008. package/test/unit/spec/networkQualityMonitor/index.js +24 -18
  1009. package/test/unit/spec/personal-meeting-room/personal-meeting-room.js +2 -7
  1010. package/test/unit/spec/reachability/index.ts +176 -27
  1011. package/test/unit/spec/reachability/request.js +66 -0
  1012. package/test/unit/spec/reconnection-manager/index.js +58 -31
  1013. package/test/unit/spec/recording-controller/index.js +231 -0
  1014. package/test/unit/spec/recording-controller/util.js +102 -0
  1015. package/test/unit/spec/roap/index.ts +12 -8
  1016. package/test/unit/spec/roap/request.ts +217 -0
  1017. package/test/unit/spec/roap/turnDiscovery.ts +72 -49
  1018. package/test/unit/spec/stats-analyzer/index.js +108 -57
  1019. package/test/utils/cmr.js +44 -42
  1020. package/test/utils/constants.js +9 -0
  1021. package/test/utils/testUtils.js +98 -77
  1022. package/test/utils/webex-config.js +22 -18
  1023. package/test/utils/webex-test-users.js +57 -50
  1024. package/tsconfig.json +6 -0
  1025. package/dist/media/internal-media-core-wrapper.js +0 -22
  1026. package/dist/media/internal-media-core-wrapper.js.map +0 -1
  1027. package/dist/multistream/multistreamMedia.js +0 -116
  1028. package/dist/multistream/multistreamMedia.js.map +0 -1
  1029. package/src/index.js +0 -15
  1030. package/src/media/internal-media-core-wrapper.ts +0 -9
  1031. package/src/meeting/effectsState.ts +0 -211
  1032. package/src/multistream/multistreamMedia.ts +0 -92
  1033. package/test/unit/spec/meeting/effectsState.js +0 -291
@@ -1,694 +1,522 @@
1
1
  {
2
2
  "version": "1.0",
3
- "sequences": {
4
- "seq0": {
5
- "entries": [],
6
- "rangeEnd":0,
7
- "rangeStart":0
8
- },
9
- "seq1": {
10
- "entries": [
11
- 259005341176400
12
- ],
13
- "rangeEnd":0,
14
- "rangeStart":0
15
- },
16
- "seq1b": {
17
- "entries": [
18
- ],
19
- "rangeEnd":259005341176383,
20
- "rangeStart":259005341176380
21
- },
22
- "seq1c": {
23
- "entries": [
24
- 259005341176400
25
- ],
26
- "rangeEnd":259005341176383,
27
- "rangeStart":259005341176380
28
- },
29
- "seq2": {
30
- "entries": [
31
- 259005341176400,
32
- 259005341176402,
33
- 259005341176404,
34
- 259005341176406,
35
- 259005341176408,
36
- 259005341176410,
37
- 259005341176412,
38
- 259005341176414,
39
- 259005341176416,
40
- 259005341176418
41
- ],
42
- "rangeEnd":0,
43
- "rangeStart":0
44
- },
45
- "seq2b": {
46
- "entries": [
47
- 259005341176402,
48
- 259005341176404,
49
- 259005341176406,
50
- 259005341176408,
51
- 259005341176410,
52
- 259005341176412,
53
- 259005341176414,
54
- 259005341176416,
55
- 259005341176418
56
- ],
57
- "rangeEnd":259005341176383,
58
- "rangeStart":259005341176381
59
- },
60
- "seq3": {
61
- "entries": [
62
- 259005341176400,
63
- 259005341176402,
64
- 259005341176404,
65
- 259005341176406,
66
- 259005341176408,
67
- 259005341176410,
68
- 259005341176412,
69
- 259005341176414,
70
- 259005341176416,
71
- 259005341176418
72
- ],
73
- "rangeEnd":259005341176383,
74
- "rangeStart":259005341176380
75
- },
76
- "seq3b": {
77
- "entries": [
78
- 259005341176402,
79
- 259005341176404,
80
- 259005341176406,
81
- 259005341176408,
82
- 259005341176410,
83
- 259005341176412,
84
- 259005341176414,
85
- 259005341176416,
86
- 259005341176418
87
- ],
88
- "rangeEnd":0,
89
- "rangeStart":0
90
- },
91
- "seq3c": {
92
- "entries": [
93
- 259005341176400,
94
- 259005341176402,
95
- 259005341176404,
96
- 259005341176406,
97
- 259005341176408,
98
- 259005341176410,
99
- 259005341176412,
100
- 259005341176414,
101
- 259005341176416,
102
- 259005341176418
103
- ],
104
- "rangeEnd":259005341176383,
105
- "rangeStart":259005341176381
106
- },
107
- "seq3d": {
108
- "entries": [
109
- 259005341176402,
110
- 259005341176404,
111
- 259005341176406,
112
- 259005341176408,
113
- 259005341176410,
114
- 259005341176412,
115
- 259005341176414,
116
- 259005341176416,
117
- 259005341176418,
118
- 259005341176420,
119
- 259005341176422
120
- ],
121
- "rangeEnd":0,
122
- "rangeStart":0
123
- },
124
- "seq3e": {
125
- "entries": [
126
- 259005341176400,
127
- 259005341176402,
128
- 259005341176404,
129
- 259005341176406,
130
- 259005341176408,
131
- 259005341176410,
132
- 259005341176412,
133
- 259005341176414,
134
- 259005341176416,
135
- 259005341176418,
136
- 259005341176420,
137
- 259005341176422
138
- ],
139
- "rangeEnd":259005341176383,
140
- "rangeStart":259005341176381
141
- },
142
- "seq3f": {
143
- "entries": [
144
- 259005341176404,
145
- 259005341176406,
146
- 259005341176408,
147
- 259005341176410,
148
- 259005341176412,
149
- 259005341176414,
150
- 259005341176416,
151
- 259005341176418,
152
- 259005341176420,
153
- 259005341176422,
154
- 259005341176424,
155
- 259005341176426
156
- ],
157
- "rangeEnd":0,
158
- "rangeStart":0
159
- },
160
- "seq3g": {
161
- "entries": [
162
- 259005341176400,
163
- 259005341176402,
164
- 259005341176404,
165
- 259005341176406,
166
- 259005341176408,
167
- 259005341176410,
168
- 259005341176412,
169
- 259005341176414
170
- ],
171
- "rangeEnd":259005341176383,
172
- "rangeStart":259005341176370
173
- },
174
- "seq4": {
175
- "entries": [
176
- 259005341176400,
177
- 259005341176402,
178
- 259005341176404,
179
- 259005341176405,
180
- 259005341176406,
181
- 259005341176408,
182
- 259005341176410,
183
- 259005341176412,
184
- 259005341176414,
185
- 259005341176416,
186
- 259005341176418
187
- ],
188
- "rangeEnd":259005341176383,
189
- "rangeStart":259005341176380
190
- },
191
- "seq4b": {
192
- "entries": [
193
- 259005341176400,
194
- 259005341176402,
195
- 259005341176404,
196
- 259005341176405,
197
- 259005341176406,
198
- 259005341176408,
199
- 259005341176410,
200
- 259005341176412,
201
- 259005341176414,
202
- 259005341176416,
203
- 259005341176418
204
- ],
205
- "rangeEnd":0,
206
- "rangeStart":0
207
- },
208
- "seq4c": {
209
- "entries": [
210
- 259005341176400,
211
- 259005341176402,
212
- 259005341176406,
213
- 259005341176407,
214
- 259005341176408,
215
- 259005341176410,
216
- 259005341176412,
217
- 259005341176414,
218
- 259005341176416
219
- ],
220
- "rangeEnd":259005341176383,
221
- "rangeStart":259005341176380
222
- },
223
- "seq4d": {
224
- "entries": [
225
- 259005341176400,
226
- 259005341176402,
227
- 259005341176404,
228
- 259005341176405,
229
- 259005341176406,
230
- 259005341176408,
231
- 259005341176410,
232
- 259005341176412,
233
- 259005341176414,
234
- 259005341176416,
235
- 259005341176417
236
- ],
237
- "rangeEnd":0,
238
- "rangeStart":0
239
- },
240
- "seq4e": {
241
- "entries": [
242
- 259005341176400,
243
- 259005341176402,
244
- 259005341176404,
245
- 259005341176405,
246
- 259005341176406,
247
- 259005341176408,
248
- 259005341176410,
249
- 259005341176412,
250
- 259005341176414,
251
- 259005341176416,
252
- 259005341176417
253
- ],
254
- "rangeEnd":259005341176383,
255
- "rangeStart":259005341176380
256
- },
257
- "seq4f": {
258
- "entries": [
259
- 259005341176400,
260
- 259005341176402,
261
- 259005341176404,
262
- 259005341176405,
263
- 259005341176406,
264
- 259005341176408,
265
- 259005341176410,
266
- 259005341176412,
267
- 259005341176414,
268
- 259005341176416,
269
- 259005341176418
270
- ],
271
- "rangeEnd":259005341176380,
272
- "rangeStart":259005341176380,
273
- "note":"rangeStart equals rangeEnd"
274
- },
275
- "seq4g": {
276
- "entries": [
277
- 259005341176400,
278
- 259005341176402,
279
- 259005341176404,
280
- 259005341176405,
281
- 259005341176406,
282
- 259005341176408,
283
- 259005341176410,
284
- 259005341176412,
285
- 259005341176414,
286
- 259005341176416,
287
- 259005341176418,
288
- 259005341176420,
289
- 259005341176422
290
- ],
291
- "rangeEnd":259005341176383,
292
- "rangeStart":259005341176380
293
- },
294
- "seq5": {
295
- "entries": [
296
- 259005341176700,
297
- 259005341176702,
298
- 259005341176704,
299
- 259005341176706,
300
- 259005341176708,
301
- 259005341176710,
302
- 259005341176712,
303
- 259005341176714,
304
- 259005341176716,
305
- 259005341176718
306
- ],
307
- "rangeEnd":0,
308
- "rangeStart":0
309
- },
310
- "seq5b": {
311
- "entries": [
312
- 259005341176700,
313
- 259005341176702,
314
- 259005341176704,
315
- 259005341176706,
316
- 259005341176708,
317
- 259005341176710,
318
- 259005341176712,
319
- 259005341176714,
320
- 259005341176716,
321
- 259005341176718
322
- ],
323
- "rangeEnd":259005341176600,
324
- "rangeStart":259005341176500
325
- },
326
- "seq5c": {
327
- "entries": [
328
- 259005341176700,
329
- 259005341176702,
330
- 259005341176704,
331
- 259005341176706,
332
- 259005341176708,
333
- 259005341176710,
334
- 259005341176712,
335
- 259005341176714,
336
- 259005341176716,
337
- 259005341176718
338
- ],
339
- "rangeEnd":259005341176418,
340
- "rangeStart":259005341176380
341
- },
342
- "seq5d": {
343
- "entries": [],
344
- "rangeEnd":259005341176418,
345
- "rangeStart":259005341176380,
346
- "note":"This sequence is not real as it has no entry but has range."
347
- },
348
- "seq5e": {
349
- "entries": [],
350
- "rangeEnd":259005341176418,
351
- "rangeStart":259005341176383,
352
- "note":"This sequence is not real as it has no entry but has range."
353
- },
354
- "seq5f": {
355
- "entries": [
356
- 259005341176700,
357
- 259005341176702,
358
- 259005341176704,
359
- 259005341176706,
360
- 259005341176708
361
- ],
362
- "rangeEnd":259005341176386,
363
- "rangeStart":259005341176381
364
- },
365
- "seq5g": {
366
- "entries": [
367
- 259005341176702,
368
- 259005341176704,
369
- 259005341176706,
370
- 259005341176708
371
- ],
372
- "rangeEnd":259005341176386,
373
- "rangeStart":259005341176381
374
- },
375
- "seq6": {
376
- "entries": [
377
- 259005341176400,
378
- 259005341176403,
379
- 259005341176406,
380
- 259005341176408,
381
- 259005341176412,
382
- 259005341176414,
383
- 259005341176418
384
- ],
385
- "rangeEnd":0,
386
- "rangeStart":0
387
- },
388
- "seq7": {
389
- "entries": [
390
- 259005341176818
391
- ],
392
- "rangeEnd":259005341176418,
393
- "rangeStart":259005341176380
394
- }
3
+ "sequences": {
4
+ "seq0": {
5
+ "entries": [],
6
+ "rangeEnd": 0,
7
+ "rangeStart": 0
395
8
  },
9
+ "seq1": {
10
+ "entries": [259005341176400],
11
+ "rangeEnd": 0,
12
+ "rangeStart": 0
13
+ },
14
+ "seq1b": {
15
+ "entries": [],
16
+ "rangeEnd": 259005341176383,
17
+ "rangeStart": 259005341176380
18
+ },
19
+ "seq1c": {
20
+ "entries": [259005341176400],
21
+ "rangeEnd": 259005341176383,
22
+ "rangeStart": 259005341176380
23
+ },
24
+ "seq2": {
25
+ "entries": [
26
+ 259005341176400, 259005341176402, 259005341176404, 259005341176406, 259005341176408,
27
+ 259005341176410, 259005341176412, 259005341176414, 259005341176416, 259005341176418
28
+ ],
29
+ "rangeEnd": 0,
30
+ "rangeStart": 0
31
+ },
32
+ "seq2b": {
33
+ "entries": [
34
+ 259005341176402, 259005341176404, 259005341176406, 259005341176408, 259005341176410,
35
+ 259005341176412, 259005341176414, 259005341176416, 259005341176418
36
+ ],
37
+ "rangeEnd": 259005341176383,
38
+ "rangeStart": 259005341176381
39
+ },
40
+ "seq3": {
41
+ "entries": [
42
+ 259005341176400, 259005341176402, 259005341176404, 259005341176406, 259005341176408,
43
+ 259005341176410, 259005341176412, 259005341176414, 259005341176416, 259005341176418
44
+ ],
45
+ "rangeEnd": 259005341176383,
46
+ "rangeStart": 259005341176380
47
+ },
48
+ "seq3b": {
49
+ "entries": [
50
+ 259005341176402, 259005341176404, 259005341176406, 259005341176408, 259005341176410,
51
+ 259005341176412, 259005341176414, 259005341176416, 259005341176418
52
+ ],
53
+ "rangeEnd": 0,
54
+ "rangeStart": 0
55
+ },
56
+ "seq3c": {
57
+ "entries": [
58
+ 259005341176400, 259005341176402, 259005341176404, 259005341176406, 259005341176408,
59
+ 259005341176410, 259005341176412, 259005341176414, 259005341176416, 259005341176418
60
+ ],
61
+ "rangeEnd": 259005341176383,
62
+ "rangeStart": 259005341176381
63
+ },
64
+ "seq3d": {
65
+ "entries": [
66
+ 259005341176402, 259005341176404, 259005341176406, 259005341176408, 259005341176410,
67
+ 259005341176412, 259005341176414, 259005341176416, 259005341176418, 259005341176420,
68
+ 259005341176422
69
+ ],
70
+ "rangeEnd": 0,
71
+ "rangeStart": 0
72
+ },
73
+ "seq3e": {
74
+ "entries": [
75
+ 259005341176400, 259005341176402, 259005341176404, 259005341176406, 259005341176408,
76
+ 259005341176410, 259005341176412, 259005341176414, 259005341176416, 259005341176418,
77
+ 259005341176420, 259005341176422
78
+ ],
79
+ "rangeEnd": 259005341176383,
80
+ "rangeStart": 259005341176381
81
+ },
82
+ "seq3f": {
83
+ "entries": [
84
+ 259005341176404, 259005341176406, 259005341176408, 259005341176410, 259005341176412,
85
+ 259005341176414, 259005341176416, 259005341176418, 259005341176420, 259005341176422,
86
+ 259005341176424, 259005341176426
87
+ ],
88
+ "rangeEnd": 0,
89
+ "rangeStart": 0
90
+ },
91
+ "seq3g": {
92
+ "entries": [
93
+ 259005341176400, 259005341176402, 259005341176404, 259005341176406, 259005341176408,
94
+ 259005341176410, 259005341176412, 259005341176414
95
+ ],
96
+ "rangeEnd": 259005341176383,
97
+ "rangeStart": 259005341176370
98
+ },
99
+ "seq4": {
100
+ "entries": [
101
+ 259005341176400, 259005341176402, 259005341176404, 259005341176405, 259005341176406,
102
+ 259005341176408, 259005341176410, 259005341176412, 259005341176414, 259005341176416,
103
+ 259005341176418
104
+ ],
105
+ "rangeEnd": 259005341176383,
106
+ "rangeStart": 259005341176380
107
+ },
108
+ "seq4b": {
109
+ "entries": [
110
+ 259005341176400, 259005341176402, 259005341176404, 259005341176405, 259005341176406,
111
+ 259005341176408, 259005341176410, 259005341176412, 259005341176414, 259005341176416,
112
+ 259005341176418
113
+ ],
114
+ "rangeEnd": 0,
115
+ "rangeStart": 0
116
+ },
117
+ "seq4c": {
118
+ "entries": [
119
+ 259005341176400, 259005341176402, 259005341176406, 259005341176407, 259005341176408,
120
+ 259005341176410, 259005341176412, 259005341176414, 259005341176416
121
+ ],
122
+ "rangeEnd": 259005341176383,
123
+ "rangeStart": 259005341176380
124
+ },
125
+ "seq4d": {
126
+ "entries": [
127
+ 259005341176400, 259005341176402, 259005341176404, 259005341176405, 259005341176406,
128
+ 259005341176408, 259005341176410, 259005341176412, 259005341176414, 259005341176416,
129
+ 259005341176417
130
+ ],
131
+ "rangeEnd": 0,
132
+ "rangeStart": 0
133
+ },
134
+ "seq4e": {
135
+ "entries": [
136
+ 259005341176400, 259005341176402, 259005341176404, 259005341176405, 259005341176406,
137
+ 259005341176408, 259005341176410, 259005341176412, 259005341176414, 259005341176416,
138
+ 259005341176417
139
+ ],
140
+ "rangeEnd": 259005341176383,
141
+ "rangeStart": 259005341176380
142
+ },
143
+ "seq4f": {
144
+ "entries": [
145
+ 259005341176400, 259005341176402, 259005341176404, 259005341176405, 259005341176406,
146
+ 259005341176408, 259005341176410, 259005341176412, 259005341176414, 259005341176416,
147
+ 259005341176418
148
+ ],
149
+ "rangeEnd": 259005341176380,
150
+ "rangeStart": 259005341176380,
151
+ "note": "rangeStart equals rangeEnd"
152
+ },
153
+ "seq4g": {
154
+ "entries": [
155
+ 259005341176400, 259005341176402, 259005341176404, 259005341176405, 259005341176406,
156
+ 259005341176408, 259005341176410, 259005341176412, 259005341176414, 259005341176416,
157
+ 259005341176418, 259005341176420, 259005341176422
158
+ ],
159
+ "rangeEnd": 259005341176383,
160
+ "rangeStart": 259005341176380
161
+ },
162
+ "seq5": {
163
+ "entries": [
164
+ 259005341176700, 259005341176702, 259005341176704, 259005341176706, 259005341176708,
165
+ 259005341176710, 259005341176712, 259005341176714, 259005341176716, 259005341176718
166
+ ],
167
+ "rangeEnd": 0,
168
+ "rangeStart": 0
169
+ },
170
+ "seq5b": {
171
+ "entries": [
172
+ 259005341176700, 259005341176702, 259005341176704, 259005341176706, 259005341176708,
173
+ 259005341176710, 259005341176712, 259005341176714, 259005341176716, 259005341176718
174
+ ],
175
+ "rangeEnd": 259005341176600,
176
+ "rangeStart": 259005341176500
177
+ },
178
+ "seq5c": {
179
+ "entries": [
180
+ 259005341176700, 259005341176702, 259005341176704, 259005341176706, 259005341176708,
181
+ 259005341176710, 259005341176712, 259005341176714, 259005341176716, 259005341176718
182
+ ],
183
+ "rangeEnd": 259005341176418,
184
+ "rangeStart": 259005341176380
185
+ },
186
+ "seq5d": {
187
+ "entries": [],
188
+ "rangeEnd": 259005341176418,
189
+ "rangeStart": 259005341176380,
190
+ "note": "This sequence is not real as it has no entry but has range."
191
+ },
192
+ "seq5e": {
193
+ "entries": [],
194
+ "rangeEnd": 259005341176418,
195
+ "rangeStart": 259005341176383,
196
+ "note": "This sequence is not real as it has no entry but has range."
197
+ },
198
+ "seq5f": {
199
+ "entries": [
200
+ 259005341176700, 259005341176702, 259005341176704, 259005341176706, 259005341176708
201
+ ],
202
+ "rangeEnd": 259005341176386,
203
+ "rangeStart": 259005341176381
204
+ },
205
+ "seq5g": {
206
+ "entries": [259005341176702, 259005341176704, 259005341176706, 259005341176708],
207
+ "rangeEnd": 259005341176386,
208
+ "rangeStart": 259005341176381
209
+ },
210
+ "seq6": {
211
+ "entries": [
212
+ 259005341176400, 259005341176403, 259005341176406, 259005341176408, 259005341176412,
213
+ 259005341176414, 259005341176418
214
+ ],
215
+ "rangeEnd": 0,
216
+ "rangeStart": 0
217
+ },
218
+ "seq7": {
219
+ "entries": [259005341176818],
220
+ "rangeEnd": 259005341176418,
221
+ "rangeStart": 259005341176380
222
+ }
223
+ },
396
224
  "comparisons": {
397
- "cmp1": {
398
- "current":"seq1",
399
- "new":"seq2",
400
- "result":"LESS_THAN",
401
- "description":"New seq has newer entries than current"
402
- },
403
- "cmp2": {
404
- "current":"seq2",
405
- "new":"seq2",
406
- "result":"EQUAL",
407
- "description":"Current and new seq are the same"
408
- },
409
- "cmp3": {
410
- "current":"seq2",
411
- "new":"seq3",
412
- "result":"LESS_THAN",
413
- "description":"Current has no range while new seq has a range. Both have same entries."
414
- },
415
- "cmp4": {
416
- "current":"seq3",
417
- "new":"seq4",
418
- "result":"LESS_THAN",
419
- "description":"New seq has a new entry, in middle of entries of current. Both have same range."
420
- },
421
- "cmp5": {
422
- "current":"seq3",
423
- "new":"seq2",
424
- "result":"GREATER_THAN",
425
- "description":"Current has a range while new seq has no range. Both have same entries."
426
- },
427
- "cmp6": {
428
- "current":"seq4",
429
- "new":"seq5",
430
- "result":"LESS_THAN",
431
- "description":"New seq is newer and has no overlap with current"
432
- },
433
- "cmp7": {
434
- "current":"seq2",
435
- "new":"seq6",
436
- "result":"DESYNC",
437
- "description":"Current has unique entry in between the entries of new seq. New seq also has unique entry in between the entries of current."
438
- },
439
- "cmp8": {
440
- "current":"seq4",
441
- "new":"seq7",
442
- "result":"LESS_THAN",
443
- "description":"New seq has an entry while its range cover min and max of current"
444
- },
445
- "cmp9": {
446
- "current":"seq1b",
447
- "new":"seq0",
448
- "result":"GREATER_THAN",
449
- "description":"New seq is empty while current has a range"
450
- },
451
- "cmp10": {
452
- "current":"seq4b",
453
- "new":"seq5",
454
- "result":"LESS_THAN",
455
- "description":"New seq is newer and has no overlap with current. Both have no range"
456
- },
457
- "cmp11": {
458
- "current":"seq4",
459
- "new":"seq5b",
460
- "result":"LESS_THAN",
461
- "description":"Both have range. New seq is newer and has no overlap with current."
462
- },
463
- "cmp12": {
464
- "current":"seq2",
465
- "new":"seq3b",
466
- "result":"GREATER_THAN",
467
- "description":"Current has an older entry than new seq. The rest are the same. Both have no range."
468
- },
469
- "cmp13": {
470
- "current":"seq3",
471
- "new":"seq3c",
472
- "result":"GREATER_THAN",
473
- "description":"Both current and new seq have same entries, while current has range start at an earlier time than new seq"
474
- },
475
- "cmp14": {
476
- "current":"seq3b",
477
- "new":"seq3d",
478
- "result":"LESS_THAN",
479
- "description":"New seq has additional new entries. Both have no range."
480
- },
481
- "cmp15": {
482
- "current":"seq3c",
483
- "new":"seq3e",
484
- "result":"LESS_THAN",
485
- "description":"New seq has additional new entries. Both have same range."
486
- },
487
- "cmp16": {
488
- "current":"seq3d",
489
- "new":"seq3f",
490
- "result":"DESYNC",
491
- "description":"Current has an older entry while new seq has additional new entries. Both have no range."
492
- },
493
- "cmp17": {
494
- "current":"seq3g",
495
- "new":"seq3",
496
- "result":"LESS_THAN",
497
- "description":"New seq has additional new entries, while current has range start at an earlier time than new seq"
498
- },
499
- "cmp18": {
500
- "current":"seq4c",
501
- "new":"seq4",
502
- "result":"DESYNC",
503
- "description":"Both current and new seq have some unique entries. Both have same range."
504
- },
505
- "cmp19": {
506
- "current":"seq4d",
507
- "new":"seq4b",
508
- "result":"DESYNC",
509
- "description":"Both current and new seq have one unique entry at the end. Both have no range."
510
- },
511
- "cmp20": {
512
- "current":"seq4e",
513
- "new":"seq4",
514
- "result":"DESYNC",
515
- "description":"Both current and new seq have one unique entry at the end. Both have same range."
516
- },
517
- "cmp21": {
518
- "current":"seq0",
519
- "new":"seq0",
520
- "result":"EQUAL",
521
- "description":"Both current and new seq are empty"
522
- },
523
- "cmp22": {
524
- "current":"seq2",
525
- "new":"seq0",
526
- "result":"GREATER_THAN",
527
- "description":"Current has entries but no range. New seq is empty"
528
- },
529
- "cmp23": {
530
- "current":"seq3",
531
- "new":"seq0",
532
- "result":"GREATER_THAN",
533
- "description":"Current has entries and range. New seq is empty"
534
- },
535
- "cmp24": {
536
- "current":"seq3",
537
- "new":"seq3",
538
- "result":"EQUAL",
539
- "description":"Both current and new seq have same entries and range"
540
- },
541
- "cmp27": {
542
- "current":"seq4",
543
- "new":"seq4f",
544
- "result":"GREATER_THAN",
545
- "description":"New seq has same entries as current. New seq has same rangeStart as current, even though rangeEnd is different."
546
- }
225
+ "cmp1": {
226
+ "current": "seq1",
227
+ "new": "seq2",
228
+ "result": "LESS_THAN",
229
+ "description": "New seq has newer entries than current"
547
230
  },
548
- "update_action_results": {
549
- "descriptions": {
550
- "ACCEPT_NEW": "If there is a newbase in the incoming data, merge the incoming data with the current working copy, otherwise, replace the working copy with the incoming data. Note that the client does not need to copy the newbase value itself when merging.",
551
- "KEEP_CURRENT": "ignore the incoming data",
552
- "DESYNC": "performa a GET on the client's current working syncUrl or, if the client has no syncUrl, perform a GET on the Locus URL. Reapply the sequencing algorithm using the returned data."
553
- }
231
+ "cmp2": {
232
+ "current": "seq2",
233
+ "new": "seq2",
234
+ "result": "EQUAL",
235
+ "description": "Current and new seq are the same"
236
+ },
237
+ "cmp3": {
238
+ "current": "seq2",
239
+ "new": "seq3",
240
+ "result": "LESS_THAN",
241
+ "description": "Current has no range while new seq has a range. Both have same entries."
242
+ },
243
+ "cmp4": {
244
+ "current": "seq3",
245
+ "new": "seq4",
246
+ "result": "LESS_THAN",
247
+ "description": "New seq has a new entry, in middle of entries of current. Both have same range."
248
+ },
249
+ "cmp5": {
250
+ "current": "seq3",
251
+ "new": "seq2",
252
+ "result": "GREATER_THAN",
253
+ "description": "Current has a range while new seq has no range. Both have same entries."
254
+ },
255
+ "cmp6": {
256
+ "current": "seq4",
257
+ "new": "seq5",
258
+ "result": "LESS_THAN",
259
+ "description": "New seq is newer and has no overlap with current"
260
+ },
261
+ "cmp7": {
262
+ "current": "seq2",
263
+ "new": "seq6",
264
+ "result": "DESYNC",
265
+ "description": "Current has unique entry in between the entries of new seq. New seq also has unique entry in between the entries of current."
266
+ },
267
+ "cmp8": {
268
+ "current": "seq4",
269
+ "new": "seq7",
270
+ "result": "LESS_THAN",
271
+ "description": "New seq has an entry while its range cover min and max of current"
272
+ },
273
+ "cmp9": {
274
+ "current": "seq1b",
275
+ "new": "seq0",
276
+ "result": "GREATER_THAN",
277
+ "description": "New seq is empty while current has a range"
278
+ },
279
+ "cmp10": {
280
+ "current": "seq4b",
281
+ "new": "seq5",
282
+ "result": "LESS_THAN",
283
+ "description": "New seq is newer and has no overlap with current. Both have no range"
554
284
  },
285
+ "cmp11": {
286
+ "current": "seq4",
287
+ "new": "seq5b",
288
+ "result": "LESS_THAN",
289
+ "description": "Both have range. New seq is newer and has no overlap with current."
290
+ },
291
+ "cmp12": {
292
+ "current": "seq2",
293
+ "new": "seq3b",
294
+ "result": "GREATER_THAN",
295
+ "description": "Current has an older entry than new seq. The rest are the same. Both have no range."
296
+ },
297
+ "cmp13": {
298
+ "current": "seq3",
299
+ "new": "seq3c",
300
+ "result": "GREATER_THAN",
301
+ "description": "Both current and new seq have same entries, while current has range start at an earlier time than new seq"
302
+ },
303
+ "cmp14": {
304
+ "current": "seq3b",
305
+ "new": "seq3d",
306
+ "result": "LESS_THAN",
307
+ "description": "New seq has additional new entries. Both have no range."
308
+ },
309
+ "cmp15": {
310
+ "current": "seq3c",
311
+ "new": "seq3e",
312
+ "result": "LESS_THAN",
313
+ "description": "New seq has additional new entries. Both have same range."
314
+ },
315
+ "cmp16": {
316
+ "current": "seq3d",
317
+ "new": "seq3f",
318
+ "result": "DESYNC",
319
+ "description": "Current has an older entry while new seq has additional new entries. Both have no range."
320
+ },
321
+ "cmp17": {
322
+ "current": "seq3g",
323
+ "new": "seq3",
324
+ "result": "LESS_THAN",
325
+ "description": "New seq has additional new entries, while current has range start at an earlier time than new seq"
326
+ },
327
+ "cmp18": {
328
+ "current": "seq4c",
329
+ "new": "seq4",
330
+ "result": "DESYNC",
331
+ "description": "Both current and new seq have some unique entries. Both have same range."
332
+ },
333
+ "cmp19": {
334
+ "current": "seq4d",
335
+ "new": "seq4b",
336
+ "result": "DESYNC",
337
+ "description": "Both current and new seq have one unique entry at the end. Both have no range."
338
+ },
339
+ "cmp20": {
340
+ "current": "seq4e",
341
+ "new": "seq4",
342
+ "result": "DESYNC",
343
+ "description": "Both current and new seq have one unique entry at the end. Both have same range."
344
+ },
345
+ "cmp21": {
346
+ "current": "seq0",
347
+ "new": "seq0",
348
+ "result": "EQUAL",
349
+ "description": "Both current and new seq are empty"
350
+ },
351
+ "cmp22": {
352
+ "current": "seq2",
353
+ "new": "seq0",
354
+ "result": "GREATER_THAN",
355
+ "description": "Current has entries but no range. New seq is empty"
356
+ },
357
+ "cmp23": {
358
+ "current": "seq3",
359
+ "new": "seq0",
360
+ "result": "GREATER_THAN",
361
+ "description": "Current has entries and range. New seq is empty"
362
+ },
363
+ "cmp24": {
364
+ "current": "seq3",
365
+ "new": "seq3",
366
+ "result": "EQUAL",
367
+ "description": "Both current and new seq have same entries and range"
368
+ },
369
+ "cmp27": {
370
+ "current": "seq4",
371
+ "new": "seq4f",
372
+ "result": "GREATER_THAN",
373
+ "description": "New seq has same entries as current. New seq has same rangeStart as current, even though rangeEnd is different."
374
+ }
375
+ },
376
+ "update_action_results": {
377
+ "descriptions": {
378
+ "ACCEPT_NEW": "If there is a newbase in the incoming data, merge the incoming data with the current working copy, otherwise, replace the working copy with the incoming data. Note that the client does not need to copy the newbase value itself when merging.",
379
+ "KEEP_CURRENT": "ignore the incoming data",
380
+ "DESYNC": "performa a GET on the client's current working syncUrl or, if the client has no syncUrl, perform a GET on the Locus URL. Reapply the sequencing algorithm using the returned data."
381
+ }
382
+ },
555
383
  "update_actions": {
556
- "updt1": {
557
- "current":"seq2",
558
- "newbase":"seq2",
559
- "new":"seq5",
560
- "result":"ACCEPT_NEW",
561
- "description":"New base is same as current, and new seq is newer and has no overlap with current."
562
- },
563
- "updt2": {
564
- "current":"seq2",
565
- "newbase":"seq2",
566
- "new":"seq4",
567
- "result":"ACCEPT_NEW",
568
- "description":"New base is same as current, and new seq has a new entry, in middle of entries of current."
569
- },
570
- "updt3": {
571
- "current":"seq3",
572
- "newbase":"seq2",
573
- "new":"seq4",
574
- "result":"ACCEPT_NEW",
575
- "description":"Current is less than new seq, and current is greater than new base."
576
- },
577
- "updt4": {
578
- "current":"seq4",
579
- "newbase":"seq4",
580
- "new":"seq7",
581
- "result":"ACCEPT_NEW",
582
- "description":"New base is same as current, and new seq has an entry while its range cover min and max of current"
583
- },
584
- "updt5": {
585
- "current":"seq0",
586
- "new":"seq0",
587
- "result":"ACCEPT_NEW",
588
- "description":"Special case: current is empty"
589
- },
590
- "updt6": {
591
- "current":"seq1",
592
- "new":"seq0",
593
- "result":"ACCEPT_NEW",
594
- "description":"Special case: new seq is empty while current has entries and no range. Update anyway."
595
- },
596
- "updt6b": {
597
- "current":"seq2b",
598
- "new":"seq0",
599
- "result":"ACCEPT_NEW",
600
- "description":"Special case: new seq is empty while current has entries and range. Update anyway."
601
- },
602
- "updt7": {
603
- "current":"seq0",
604
- "new":"seq1",
605
- "result":"ACCEPT_NEW",
606
- "description":"Special case: current is empty"
607
- },
608
- "updt8": {
609
- "current":"seq4",
610
- "newbase":"seq4",
611
- "new":"seq4",
612
- "result":"KEEP_CURRENT",
613
- "description":"New seq and new base are same as current. See updt9 also."
614
- },
615
- "updt9": {
616
- "current":"seq4",
617
- "newbase":"seq5",
618
- "new":"seq5",
619
- "result":"DESYNC",
620
- "description":"Both new seq and new base are newer than current. This happens when Locus wants to force a desync, eg. when it has a change too large to send"
621
- },
622
- "updt10": {
623
- "current":"seq2",
624
- "new":"seq2",
625
- "result":"KEEP_CURRENT",
626
- "description":"New seq is same as current, and there is no new base"
627
- },
628
- "updt11": {
629
- "current":"seq4",
630
- "new":"seq5b",
631
- "result":"ACCEPT_NEW",
632
- "description":"New seq is newer and has no overlap with current, including range."
633
- },
634
- "updt12": {
635
- "current":"seq2",
636
- "new":"seq3b",
637
- "result":"KEEP_CURRENT",
638
- "description":"Current an older entry than new seq. The rest are the same. Both have no range."
639
- },
640
- "updt13": {
641
- "current":"seq3",
642
- "new":"seq2b",
643
- "result":"KEEP_CURRENT",
644
- "description":"Current an older entry than new seq. Current also has range start earlier than new."
645
- },
646
- "updt14": {
647
- "current":"seq3d",
648
- "new":"seq3f",
649
- "result":"DESYNC",
650
- "description":"Current has an older entry while new seq has additional new entries. Both have no range."
651
- },
652
- "updt15": {
653
- "current":"seq4",
654
- "new":"seq5c",
655
- "result":"ACCEPT_NEW",
656
- "description":"New seq has new entries and its range covers all range and entries of current."
657
- },
658
- "updt18": {
659
- "current":"seq5f",
660
- "newbase":"seq1c",
661
- "new":"seq3",
662
- "result":"DESYNC",
663
- "description":"New seq has entries less than current, but it has range overlap with current. New base has same range as new seq, and subset of entries."
664
- },
665
- "updt19": {
666
- "current":"seq5f",
667
- "newbase":"seq3",
668
- "new":"seq3",
669
- "result":"DESYNC",
670
- "description":"New seq has entries less than current, but it has range overlap with current. New base and new seq are the same."
671
- },
672
- "updt21": {
673
- "current":"seq3",
674
- "newbase":"seq0",
675
- "new":"seq5f",
676
- "result":"DESYNC",
677
- "description":"New seq has entries greater than current, but it has range overlap with current. New base is empty, which normally doesn't happen. Base will be omitted when there is no base Locus."
678
- },
679
- "updt23": {
680
- "current":"seq5f",
681
- "newbase":"seq5g",
682
- "new":"seq5g",
683
- "result":"KEEP_CURRENT",
684
- "description":"New seq one less entry than current. Both have same range. New base and new seq are the same."
685
- },
686
- "updt24": {
687
- "current":"seq4",
688
- "newbase":"seq4c",
689
- "new":"seq4g",
690
- "result":"DESYNC",
691
- "description":"New seq is greater than current, but both current and new base have some unique entries."
692
- }
384
+ "updt1": {
385
+ "current": "seq2",
386
+ "newbase": "seq2",
387
+ "new": "seq5",
388
+ "result": "ACCEPT_NEW",
389
+ "description": "New base is same as current, and new seq is newer and has no overlap with current."
390
+ },
391
+ "updt2": {
392
+ "current": "seq2",
393
+ "newbase": "seq2",
394
+ "new": "seq4",
395
+ "result": "ACCEPT_NEW",
396
+ "description": "New base is same as current, and new seq has a new entry, in middle of entries of current."
397
+ },
398
+ "updt3": {
399
+ "current": "seq3",
400
+ "newbase": "seq2",
401
+ "new": "seq4",
402
+ "result": "ACCEPT_NEW",
403
+ "description": "Current is less than new seq, and current is greater than new base."
404
+ },
405
+ "updt4": {
406
+ "current": "seq4",
407
+ "newbase": "seq4",
408
+ "new": "seq7",
409
+ "result": "ACCEPT_NEW",
410
+ "description": "New base is same as current, and new seq has an entry while its range cover min and max of current"
411
+ },
412
+ "updt5": {
413
+ "current": "seq0",
414
+ "new": "seq0",
415
+ "result": "ACCEPT_NEW",
416
+ "description": "Special case: current is empty"
417
+ },
418
+ "updt6": {
419
+ "current": "seq1",
420
+ "new": "seq0",
421
+ "result": "ACCEPT_NEW",
422
+ "description": "Special case: new seq is empty while current has entries and no range. Update anyway."
423
+ },
424
+ "updt6b": {
425
+ "current": "seq2b",
426
+ "new": "seq0",
427
+ "result": "ACCEPT_NEW",
428
+ "description": "Special case: new seq is empty while current has entries and range. Update anyway."
429
+ },
430
+ "updt7": {
431
+ "current": "seq0",
432
+ "new": "seq1",
433
+ "result": "ACCEPT_NEW",
434
+ "description": "Special case: current is empty"
435
+ },
436
+ "updt8": {
437
+ "current": "seq4",
438
+ "newbase": "seq4",
439
+ "new": "seq4",
440
+ "result": "KEEP_CURRENT",
441
+ "description": "New seq and new base are same as current. See updt9 also."
442
+ },
443
+ "updt9": {
444
+ "current": "seq4",
445
+ "newbase": "seq5",
446
+ "new": "seq5",
447
+ "result": "DESYNC",
448
+ "description": "Both new seq and new base are newer than current. This happens when Locus wants to force a desync, eg. when it has a change too large to send"
449
+ },
450
+ "updt10": {
451
+ "current": "seq2",
452
+ "new": "seq2",
453
+ "result": "KEEP_CURRENT",
454
+ "description": "New seq is same as current, and there is no new base"
455
+ },
456
+ "updt11": {
457
+ "current": "seq4",
458
+ "new": "seq5b",
459
+ "result": "ACCEPT_NEW",
460
+ "description": "New seq is newer and has no overlap with current, including range."
461
+ },
462
+ "updt12": {
463
+ "current": "seq2",
464
+ "new": "seq3b",
465
+ "result": "KEEP_CURRENT",
466
+ "description": "Current an older entry than new seq. The rest are the same. Both have no range."
467
+ },
468
+ "updt13": {
469
+ "current": "seq3",
470
+ "new": "seq2b",
471
+ "result": "KEEP_CURRENT",
472
+ "description": "Current an older entry than new seq. Current also has range start earlier than new."
473
+ },
474
+ "updt14": {
475
+ "current": "seq3d",
476
+ "new": "seq3f",
477
+ "result": "DESYNC",
478
+ "description": "Current has an older entry while new seq has additional new entries. Both have no range."
479
+ },
480
+ "updt15": {
481
+ "current": "seq4",
482
+ "new": "seq5c",
483
+ "result": "ACCEPT_NEW",
484
+ "description": "New seq has new entries and its range covers all range and entries of current."
485
+ },
486
+ "updt18": {
487
+ "current": "seq5f",
488
+ "newbase": "seq1c",
489
+ "new": "seq3",
490
+ "result": "DESYNC",
491
+ "description": "New seq has entries less than current, but it has range overlap with current. New base has same range as new seq, and subset of entries."
492
+ },
493
+ "updt19": {
494
+ "current": "seq5f",
495
+ "newbase": "seq3",
496
+ "new": "seq3",
497
+ "result": "DESYNC",
498
+ "description": "New seq has entries less than current, but it has range overlap with current. New base and new seq are the same."
499
+ },
500
+ "updt21": {
501
+ "current": "seq3",
502
+ "newbase": "seq0",
503
+ "new": "seq5f",
504
+ "result": "DESYNC",
505
+ "description": "New seq has entries greater than current, but it has range overlap with current. New base is empty, which normally doesn't happen. Base will be omitted when there is no base Locus."
506
+ },
507
+ "updt23": {
508
+ "current": "seq5f",
509
+ "newbase": "seq5g",
510
+ "new": "seq5g",
511
+ "result": "KEEP_CURRENT",
512
+ "description": "New seq one less entry than current. Both have same range. New base and new seq are the same."
513
+ },
514
+ "updt24": {
515
+ "current": "seq4",
516
+ "newbase": "seq4c",
517
+ "new": "seq4g",
518
+ "result": "DESYNC",
519
+ "description": "New seq is greater than current, but both current and new base have some unique entries."
693
520
  }
521
+ }
694
522
  }