@webex/plugin-meetings 3.0.0-beta.9 → 3.0.0-bnr.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1028) hide show
  1. package/UPGRADING.md +9 -9
  2. package/browsers.js +19 -24
  3. package/dist/breakouts/breakout.js +137 -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 +724 -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 +52 -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 +131 -50
  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 +240 -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 +11 -18
  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 +17 -30
  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 +185 -195
  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 +61 -90
  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 +25 -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 +2100 -2229
  587. package/dist/meeting/index.js.map +1 -1
  588. package/dist/meeting/muteState.d.ts +116 -0
  589. package/dist/meeting/muteState.js +97 -101
  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 +60 -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 +3 -21
  622. package/dist/meetings/collection.js.map +1 -1
  623. package/dist/meetings/index.d.ts +297 -0
  624. package/dist/meetings/index.js +472 -594
  625. package/dist/meetings/index.js.map +1 -1
  626. package/dist/meetings/request.d.ts +27 -0
  627. package/dist/meetings/request.js +21 -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 +116 -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 +58 -89
  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 +31 -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 +2 -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 +97 -203
  645. package/dist/members/index.js.map +1 -1
  646. package/dist/members/request.d.ts +50 -0
  647. package/dist/members/request.js +24 -57
  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 +42 -50
  653. package/dist/members/util.js.map +1 -1
  654. package/dist/metrics/config.d.ts +169 -0
  655. package/dist/metrics/config.js +1 -13
  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 +48 -158
  662. package/dist/metrics/index.js.map +1 -1
  663. package/dist/multistream/mediaRequestManager.js +74 -52
  664. package/dist/multistream/mediaRequestManager.js.map +1 -1
  665. package/dist/multistream/receiveSlot.js +48 -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 +53 -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 +446 -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 +308 -461
  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 +936 -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 +6 -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 +95 -0
  804. package/dist/types/meeting/index.d.ts +1719 -0
  805. package/dist/types/meeting/muteState.d.ts +132 -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 +23 -0
  817. package/dist/types/meetings/index.d.ts +297 -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 +146 -0
  821. package/dist/types/member/util.d.ts +2 -0
  822. package/dist/types/members/collection.d.ts +24 -0
  823. package/dist/types/members/index.d.ts +325 -0
  824. package/dist/types/members/request.d.ts +50 -0
  825. package/dist/types/members/util.d.ts +2 -0
  826. package/dist/types/metrics/config.d.ts +169 -0
  827. package/dist/types/metrics/constants.d.ts +53 -0
  828. package/dist/types/metrics/index.d.ts +152 -0
  829. package/dist/types/multistream/mediaRequestManager.d.ts +51 -0
  830. package/dist/types/multistream/receiveSlot.d.ts +64 -0
  831. package/dist/types/multistream/receiveSlotManager.d.ts +49 -0
  832. package/dist/types/multistream/remoteMedia.d.ts +100 -0
  833. package/dist/types/multistream/remoteMediaGroup.d.ts +56 -0
  834. package/dist/types/multistream/remoteMediaManager.d.ts +259 -0
  835. package/dist/types/networkQualityMonitor/index.d.ts +70 -0
  836. package/dist/types/personal-meeting-room/index.d.ts +47 -0
  837. package/dist/types/personal-meeting-room/request.d.ts +14 -0
  838. package/dist/types/personal-meeting-room/util.d.ts +2 -0
  839. package/dist/types/reachability/index.d.ts +152 -0
  840. package/dist/types/reachability/request.d.ts +37 -0
  841. package/dist/types/reactions/constants.d.ts +3 -0
  842. package/dist/types/reactions/reactions.d.ts +4 -0
  843. package/dist/types/reactions/reactions.type.d.ts +52 -0
  844. package/dist/types/reconnection-manager/index.d.ts +117 -0
  845. package/dist/types/recording-controller/enums.d.ts +7 -0
  846. package/dist/types/recording-controller/index.d.ts +193 -0
  847. package/dist/types/recording-controller/util.d.ts +13 -0
  848. package/dist/types/roap/index.d.ts +77 -0
  849. package/dist/types/roap/request.d.ts +38 -0
  850. package/dist/types/roap/turnDiscovery.d.ts +74 -0
  851. package/dist/types/statsAnalyzer/global.d.ts +36 -0
  852. package/dist/types/statsAnalyzer/index.d.ts +195 -0
  853. package/dist/types/statsAnalyzer/mqaUtil.d.ts +24 -0
  854. package/dist/types/transcription/index.d.ts +64 -0
  855. package/dist/types/tsdoc-metadata.json +11 -0
  856. package/internal-README.md +7 -6
  857. package/package.json +27 -20
  858. package/src/breakouts/README.md +208 -0
  859. package/src/breakouts/breakout.ts +129 -0
  860. package/src/breakouts/collection.ts +19 -0
  861. package/src/breakouts/edit-lock-error.ts +25 -0
  862. package/src/breakouts/index.ts +658 -0
  863. package/src/breakouts/request.ts +55 -0
  864. package/src/breakouts/utils.ts +39 -0
  865. package/src/common/browser-detection.ts +9 -6
  866. package/src/common/collection.ts +3 -1
  867. package/src/common/errors/captcha-error.ts +6 -6
  868. package/src/common/errors/intent-to-join.ts +6 -6
  869. package/src/common/errors/join-meeting.ts +12 -8
  870. package/src/common/errors/media.ts +6 -6
  871. package/src/common/errors/parameter.ts +9 -6
  872. package/src/common/errors/password-error.ts +6 -6
  873. package/src/common/errors/permission.ts +5 -5
  874. package/src/common/errors/reconnection.ts +6 -6
  875. package/src/common/errors/stats.ts +6 -6
  876. package/src/common/errors/webex-errors.ts +7 -5
  877. package/src/common/errors/webex-meetings-error.ts +1 -1
  878. package/src/common/events/events-scope.ts +5 -1
  879. package/src/common/events/events.ts +5 -1
  880. package/src/common/events/trigger-proxy.ts +8 -3
  881. package/src/common/events/util.ts +1 -2
  882. package/src/common/logs/logger-proxy.ts +21 -10
  883. package/src/common/logs/request.ts +11 -8
  884. package/src/config.ts +16 -12
  885. package/src/constants.ts +84 -6
  886. package/src/controls-options-manager/constants.ts +5 -0
  887. package/src/controls-options-manager/enums.ts +7 -0
  888. package/src/controls-options-manager/index.ts +218 -0
  889. package/src/controls-options-manager/util.ts +30 -0
  890. package/src/index.js +4 -1
  891. package/src/locus-info/controlsUtils.ts +44 -24
  892. package/src/locus-info/fullState.ts +15 -11
  893. package/src/locus-info/hostUtils.ts +4 -3
  894. package/src/locus-info/index.ts +128 -38
  895. package/src/locus-info/infoUtils.ts +16 -4
  896. package/src/locus-info/mediaSharesUtils.ts +4 -4
  897. package/src/locus-info/parser.ts +46 -68
  898. package/src/locus-info/selfUtils.ts +148 -57
  899. package/src/media/index.ts +136 -179
  900. package/src/media/properties.ts +47 -36
  901. package/src/media/util.ts +1 -1
  902. package/src/mediaQualityMetrics/config.ts +380 -378
  903. package/src/meeting/in-meeting-actions.ts +55 -3
  904. package/src/meeting/index.ts +2331 -1502
  905. package/src/meeting/muteState.ts +122 -62
  906. package/src/meeting/request.ts +228 -132
  907. package/src/meeting/request.type.ts +13 -0
  908. package/src/meeting/state.ts +45 -30
  909. package/src/meeting/util.ts +124 -111
  910. package/src/meeting-info/collection.ts +2 -1
  911. package/src/meeting-info/index.ts +32 -30
  912. package/src/meeting-info/meeting-info-v2.ts +108 -108
  913. package/src/meeting-info/request.ts +9 -3
  914. package/src/meeting-info/util.ts +54 -46
  915. package/src/meeting-info/utilv2.ts +59 -53
  916. package/src/meetings/collection.ts +1 -1
  917. package/src/meetings/index.ts +520 -443
  918. package/src/meetings/request.ts +27 -25
  919. package/src/meetings/util.ts +53 -29
  920. package/src/member/index.ts +64 -49
  921. package/src/member/util.ts +39 -13
  922. package/src/members/collection.ts +0 -1
  923. package/src/members/index.ts +196 -129
  924. package/src/members/request.ts +47 -14
  925. package/src/members/util.ts +64 -49
  926. package/src/metrics/config.ts +253 -90
  927. package/src/metrics/constants.ts +0 -6
  928. package/src/metrics/index.ts +85 -93
  929. package/src/multistream/mediaRequestManager.ts +101 -39
  930. package/src/multistream/receiveSlot.ts +62 -26
  931. package/src/multistream/receiveSlotManager.ts +50 -38
  932. package/src/multistream/remoteMedia.ts +28 -4
  933. package/src/multistream/remoteMediaGroup.ts +4 -3
  934. package/src/multistream/remoteMediaManager.ts +209 -62
  935. package/src/networkQualityMonitor/index.ts +24 -27
  936. package/src/personal-meeting-room/index.ts +12 -16
  937. package/src/personal-meeting-room/request.ts +10 -3
  938. package/src/personal-meeting-room/util.ts +3 -3
  939. package/src/reachability/index.ts +131 -79
  940. package/src/reachability/request.ts +43 -34
  941. package/src/reactions/constants.ts +4 -0
  942. package/src/reactions/reactions.ts +104 -0
  943. package/src/reactions/reactions.type.ts +62 -0
  944. package/src/reconnection-manager/index.ts +158 -94
  945. package/src/recording-controller/enums.ts +8 -0
  946. package/src/recording-controller/index.ts +315 -0
  947. package/src/recording-controller/util.ts +58 -0
  948. package/src/roap/index.ts +50 -42
  949. package/src/roap/request.ts +86 -53
  950. package/src/roap/turnDiscovery.ts +69 -38
  951. package/src/statsAnalyzer/global.ts +8 -104
  952. package/src/statsAnalyzer/index.ts +593 -376
  953. package/src/statsAnalyzer/mqaUtil.ts +203 -90
  954. package/src/transcription/index.ts +34 -32
  955. package/test/integration/spec/converged-space-meetings.js +176 -0
  956. package/test/integration/spec/journey.js +665 -464
  957. package/test/integration/spec/space-meeting.js +319 -204
  958. package/test/integration/spec/transcription.js +7 -8
  959. package/test/unit/spec/breakouts/breakout.ts +146 -0
  960. package/test/unit/spec/breakouts/collection.ts +15 -0
  961. package/test/unit/spec/breakouts/edit-lock-error.ts +30 -0
  962. package/test/unit/spec/breakouts/index.ts +965 -0
  963. package/test/unit/spec/breakouts/request.ts +104 -0
  964. package/test/unit/spec/breakouts/utils.js +47 -0
  965. package/test/unit/spec/common/browser-detection.js +9 -28
  966. package/test/unit/spec/controls-options-manager/index.js +180 -0
  967. package/test/unit/spec/controls-options-manager/util.js +86 -0
  968. package/test/unit/spec/fixture/locus.js +92 -90
  969. package/test/unit/spec/locus-info/controlsUtils.js +112 -34
  970. package/test/unit/spec/locus-info/embeddedAppsUtils.js +8 -6
  971. package/test/unit/spec/locus-info/index.js +219 -2
  972. package/test/unit/spec/locus-info/infoUtils.js +41 -32
  973. package/test/unit/spec/locus-info/lib/BasicSeqCmp.json +88 -430
  974. package/test/unit/spec/locus-info/lib/SeqCmp.json +513 -685
  975. package/test/unit/spec/locus-info/parser.js +3 -9
  976. package/test/unit/spec/locus-info/selfConstant.js +101 -103
  977. package/test/unit/spec/locus-info/selfUtils.js +128 -12
  978. package/test/unit/spec/media/index.ts +72 -8
  979. package/test/unit/spec/media/properties.ts +9 -9
  980. package/test/unit/spec/meeting/in-meeting-actions.ts +23 -2
  981. package/test/unit/spec/meeting/index.js +2469 -793
  982. package/test/unit/spec/meeting/muteState.js +146 -61
  983. package/test/unit/spec/meeting/request.js +141 -43
  984. package/test/unit/spec/meeting/utils.js +134 -164
  985. package/test/unit/spec/meeting-info/meetinginfov2.js +100 -73
  986. package/test/unit/spec/meeting-info/request.js +7 -9
  987. package/test/unit/spec/meeting-info/util.js +11 -12
  988. package/test/unit/spec/meeting-info/utilv2.js +110 -74
  989. package/test/unit/spec/meetings/collection.js +1 -1
  990. package/test/unit/spec/meetings/index.js +439 -257
  991. package/test/unit/spec/meetings/utils.js +14 -12
  992. package/test/unit/spec/member/index.js +0 -1
  993. package/test/unit/spec/member/util.js +31 -7
  994. package/test/unit/spec/members/index.js +179 -54
  995. package/test/unit/spec/members/request.js +29 -20
  996. package/test/unit/spec/members/utils.js +119 -4
  997. package/test/unit/spec/metrics/index.js +16 -21
  998. package/test/unit/spec/multistream/mediaRequestManager.ts +318 -64
  999. package/test/unit/spec/multistream/receiveSlot.ts +68 -17
  1000. package/test/unit/spec/multistream/receiveSlotManager.ts +60 -38
  1001. package/test/unit/spec/multistream/remoteMedia.ts +30 -2
  1002. package/test/unit/spec/multistream/remoteMediaGroup.ts +5 -5
  1003. package/test/unit/spec/multistream/remoteMediaManager.ts +481 -65
  1004. package/test/unit/spec/networkQualityMonitor/index.js +24 -18
  1005. package/test/unit/spec/personal-meeting-room/personal-meeting-room.js +2 -7
  1006. package/test/unit/spec/reachability/index.ts +176 -27
  1007. package/test/unit/spec/reachability/request.js +66 -0
  1008. package/test/unit/spec/reconnection-manager/index.js +58 -31
  1009. package/test/unit/spec/recording-controller/index.js +231 -0
  1010. package/test/unit/spec/recording-controller/util.js +102 -0
  1011. package/test/unit/spec/roap/index.ts +12 -8
  1012. package/test/unit/spec/roap/request.ts +217 -0
  1013. package/test/unit/spec/roap/turnDiscovery.ts +72 -49
  1014. package/test/unit/spec/stats-analyzer/index.js +108 -57
  1015. package/test/utils/cmr.js +44 -42
  1016. package/test/utils/constants.js +9 -0
  1017. package/test/utils/testUtils.js +98 -77
  1018. package/test/utils/webex-config.js +22 -18
  1019. package/test/utils/webex-test-users.js +57 -50
  1020. package/tsconfig.json +6 -0
  1021. package/dist/media/internal-media-core-wrapper.js +0 -22
  1022. package/dist/media/internal-media-core-wrapper.js.map +0 -1
  1023. package/dist/multistream/multistreamMedia.js +0 -116
  1024. package/dist/multistream/multistreamMedia.js.map +0 -1
  1025. package/src/media/internal-media-core-wrapper.ts +0 -9
  1026. package/src/meeting/effectsState.ts +0 -211
  1027. package/src/multistream/multistreamMedia.ts +0 -92
  1028. package/test/unit/spec/meeting/effectsState.js +0 -291
@@ -1,227 +1,226 @@
1
1
  "use strict";
2
2
 
3
3
  var _Reflect$construct = require("@babel/runtime-corejs2/core-js/reflect/construct");
4
-
5
4
  var _Object$keys = require("@babel/runtime-corejs2/core-js/object/keys");
6
-
7
5
  var _Object$getOwnPropertySymbols = require("@babel/runtime-corejs2/core-js/object/get-own-property-symbols");
8
-
9
6
  var _Object$getOwnPropertyDescriptor = require("@babel/runtime-corejs2/core-js/object/get-own-property-descriptor");
10
-
11
7
  var _Object$getOwnPropertyDescriptors = require("@babel/runtime-corejs2/core-js/object/get-own-property-descriptors");
12
-
13
8
  var _Object$defineProperties = require("@babel/runtime-corejs2/core-js/object/define-properties");
14
-
15
9
  var _Object$defineProperty = require("@babel/runtime-corejs2/core-js/object/define-property");
16
-
17
10
  var _interopRequireDefault = require("@babel/runtime-corejs2/helpers/interopRequireDefault");
18
-
19
11
  _Object$defineProperty(exports, "__esModule", {
20
12
  value: true
21
13
  });
22
-
23
14
  exports.default = void 0;
24
-
25
15
  var _promise = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/promise"));
26
-
27
16
  var _stringify = _interopRequireDefault(require("@babel/runtime-corejs2/core-js/json/stringify"));
28
-
29
17
  var _regenerator = _interopRequireDefault(require("@babel/runtime-corejs2/regenerator"));
30
-
31
18
  var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/asyncToGenerator"));
32
-
33
19
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/classCallCheck"));
34
-
35
20
  var _createClass2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/createClass"));
36
-
37
21
  var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/assertThisInitialized"));
38
-
39
22
  var _inherits2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/inherits"));
40
-
41
23
  var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/possibleConstructorReturn"));
42
-
43
24
  var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/getPrototypeOf"));
44
-
45
25
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/defineProperty"));
46
-
47
26
  var _debounce2 = _interopRequireDefault(require("lodash/debounce"));
48
-
49
27
  var _uuid = _interopRequireDefault(require("uuid"));
50
-
51
28
  var _webexCore = require("@webex/webex-core");
52
-
53
29
  var _common = require("@webex/common");
54
-
55
30
  var _loggerProxy = _interopRequireDefault(require("../common/logs/logger-proxy"));
56
-
57
31
  var _constants = require("../constants");
58
-
59
32
  function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
60
-
61
33
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
62
-
63
34
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
64
-
65
35
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
66
-
67
36
  /**
68
37
  * @class MeetingRequest
69
38
  */
70
39
  var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
71
40
  (0, _inherits2.default)(MeetingRequest, _StatelessWebexPlugin);
72
-
73
41
  var _super = _createSuper(MeetingRequest);
74
-
42
+ /**
43
+ * Constructor
44
+ * @param {Object} attrs
45
+ * @param {Object} options
46
+ */
75
47
  function MeetingRequest(attrs, options) {
76
48
  var _this;
77
-
78
49
  (0, _classCallCheck2.default)(this, MeetingRequest);
79
50
  _this = _super.call(this, attrs, options);
80
51
  (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "changeVideoLayoutDebounced", void 0);
52
+ (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "getJoinCookie", /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
53
+ var joinCookieRaw, joinCookie;
54
+ return _regenerator.default.wrap(function _callee$(_context) {
55
+ while (1) switch (_context.prev = _context.next) {
56
+ case 0:
57
+ _context.next = 2;
58
+ return _this.webex.boundedStorage.get(_constants.REACHABILITY.namespace, _constants.REACHABILITY.localStorageJoinCookie).catch(function () {});
59
+ case 2:
60
+ joinCookieRaw = _context.sent;
61
+ if (!joinCookieRaw) {
62
+ _context.next = 13;
63
+ break;
64
+ }
65
+ _context.prev = 4;
66
+ joinCookie = JSON.parse(joinCookieRaw);
67
+ if (!joinCookie) {
68
+ _context.next = 8;
69
+ break;
70
+ }
71
+ return _context.abrupt("return", joinCookie);
72
+ case 8:
73
+ _context.next = 13;
74
+ break;
75
+ case 10:
76
+ _context.prev = 10;
77
+ _context.t0 = _context["catch"](4);
78
+ _loggerProxy.default.logger.error("MeetingRequest#constructor --> Error in parsing join cookie data: ".concat(_context.t0));
79
+ case 13:
80
+ return _context.abrupt("return", null);
81
+ case 14:
82
+ case "end":
83
+ return _context.stop();
84
+ }
85
+ }, _callee, null, [[4, 10]]);
86
+ })));
81
87
  _this.changeVideoLayoutDebounced = (0, _debounce2.default)(_this.changeVideoLayout, 2000, {
82
88
  leading: true,
83
89
  trailing: true
84
90
  });
85
91
  return _this;
86
92
  }
93
+
87
94
  /**
88
- * Make a network request to join a meeting
89
- * @param {Object} options
90
- * @param {String} options.sipUri
91
- * @param {String} options.deviceUrl
92
- * @param {String} options.locusUrl
93
- * @param {String} options.resourceId,
94
- * @param {String} options.correlationId
95
- * @param {boolean} options.ensureConversation
96
- * @param {boolean} options.moderator
97
- * @param {boolean} options.pin
98
- * @param {boolean} options.moveToResource
99
- * @param {Object} options.roapMessage
100
- * @returns {Promise}
95
+ * Returns joinCookie from boundedStorage if present.
96
+ * @returns {Object} joinCookie
101
97
  */
102
-
103
-
104
98
  (0, _createClass2.default)(MeetingRequest, [{
105
99
  key: "joinMeeting",
106
- value: function () {
107
- var _joinMeeting = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(options) {
108
- var asResourceOccupant, inviteeAddress, meetingNumber, permissionToken, deviceUrl, locusUrl, resourceId, correlationId, ensureConversation, moderator, pin, moveToResource, roapMessage, preferTranscoding, url, body;
109
- return _regenerator.default.wrap(function _callee$(_context) {
110
- while (1) {
111
- switch (_context.prev = _context.next) {
112
- case 0:
113
- asResourceOccupant = options.asResourceOccupant, inviteeAddress = options.inviteeAddress, meetingNumber = options.meetingNumber, permissionToken = options.permissionToken, deviceUrl = options.deviceUrl, locusUrl = options.locusUrl, resourceId = options.resourceId, correlationId = options.correlationId, ensureConversation = options.ensureConversation, moderator = options.moderator, pin = options.pin, moveToResource = options.moveToResource, roapMessage = options.roapMessage, preferTranscoding = options.preferTranscoding;
114
-
115
- _loggerProxy.default.logger.info('Meeting:request#joinMeeting --> Joining a meeting', correlationId);
116
-
117
- url = '';
118
- body = {
119
- asResourceOccupant: asResourceOccupant,
120
- device: {
121
- url: deviceUrl,
122
- // @ts-ignore - config comes from registerPlugin
123
- deviceType: this.config.meetings.deviceType
124
- },
125
- usingResource: resourceId || null,
126
- moveMediaToResource: resourceId && moveToResource || false,
127
- correlationId: correlationId,
128
- respOnlySdp: true,
129
- allowMultiDevice: true,
130
- ensureConversation: ensureConversation || false,
131
- supportsNativeLobby: 1,
132
- clientMediaPreferences: {
133
- preferTranscoding: preferTranscoding !== null && preferTranscoding !== void 0 ? preferTranscoding : true
134
- }
135
- }; // @ts-ignore
136
-
137
- if (this.webex.meetings.clientRegion) {
138
- // @ts-ignore
139
- body.device.countryCode = this.webex.meetings.clientRegion.countryCode; // @ts-ignore
140
-
141
- body.device.regionCode = this.webex.meetings.clientRegion.regionCode;
142
- }
143
-
144
- if (moderator !== undefined) {
145
- body.moderator = moderator;
146
- }
147
-
148
- if (permissionToken) {
149
- body.permissionToken = permissionToken;
150
- }
151
-
152
- if (pin !== undefined) {
153
- body.pin = pin;
154
- }
155
-
156
- if (!locusUrl) {
157
- _context.next = 12;
158
- break;
159
- }
160
-
161
- url = "".concat(locusUrl, "/").concat(_constants.PARTICIPANT);
162
- _context.next = 24;
163
- break;
164
-
165
- case 12:
166
- if (!(inviteeAddress || meetingNumber)) {
167
- _context.next = 24;
168
- break;
100
+ value:
101
+ /**
102
+ * Make a network request to join a meeting
103
+ * @param {Object} options
104
+ * @param {String} options.sipUri
105
+ * @param {String} options.deviceUrl
106
+ * @param {String} options.locusUrl
107
+ * @param {String} options.resourceId,
108
+ * @param {String} options.correlationId
109
+ * @param {boolean} options.ensureConversation
110
+ * @param {boolean} options.moderator
111
+ * @param {boolean} options.pin
112
+ * @param {boolean} options.moveToResource
113
+ * @param {Object} options.roapMessage
114
+ * @param {boolean} options.breakoutsSupported
115
+ * @returns {Promise}
116
+ */
117
+ function () {
118
+ var _joinMeeting = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(options) {
119
+ var asResourceOccupant, inviteeAddress, meetingNumber, permissionToken, deviceUrl, locusUrl, resourceId, correlationId, ensureConversation, moderator, pin, moveToResource, roapMessage, preferTranscoding, breakoutsSupported, url, joinCookie, body;
120
+ return _regenerator.default.wrap(function _callee2$(_context2) {
121
+ while (1) switch (_context2.prev = _context2.next) {
122
+ case 0:
123
+ asResourceOccupant = options.asResourceOccupant, inviteeAddress = options.inviteeAddress, meetingNumber = options.meetingNumber, permissionToken = options.permissionToken, deviceUrl = options.deviceUrl, locusUrl = options.locusUrl, resourceId = options.resourceId, correlationId = options.correlationId, ensureConversation = options.ensureConversation, moderator = options.moderator, pin = options.pin, moveToResource = options.moveToResource, roapMessage = options.roapMessage, preferTranscoding = options.preferTranscoding, breakoutsSupported = options.breakoutsSupported;
124
+ _loggerProxy.default.logger.info('Meeting:request#joinMeeting --> Joining a meeting', correlationId);
125
+ url = '';
126
+ _context2.next = 5;
127
+ return this.getJoinCookie();
128
+ case 5:
129
+ joinCookie = _context2.sent;
130
+ body = {
131
+ asResourceOccupant: asResourceOccupant,
132
+ device: {
133
+ url: deviceUrl,
134
+ // @ts-ignore - config comes from registerPlugin
135
+ deviceType: this.config.meetings.deviceType
136
+ },
137
+ usingResource: resourceId || null,
138
+ moveMediaToResource: resourceId && moveToResource || false,
139
+ correlationId: correlationId,
140
+ respOnlySdp: true,
141
+ allowMultiDevice: true,
142
+ ensureConversation: ensureConversation || false,
143
+ supportsNativeLobby: 1,
144
+ clientMediaPreferences: {
145
+ preferTranscoding: preferTranscoding !== null && preferTranscoding !== void 0 ? preferTranscoding : true,
146
+ joinCookie: joinCookie
169
147
  }
148
+ };
149
+ if (breakoutsSupported) {
150
+ body.deviceCapabilities = [_constants.BREAKOUTS.BREAKOUTS_SUPPORTED];
151
+ }
170
152
 
171
- _context.prev = 13;
172
- _context.next = 16;
173
- return this.webex.internal.services.waitForCatalog('postauth');
174
-
175
- case 16:
153
+ // @ts-ignore
154
+ if (this.webex.meetings.clientRegion) {
176
155
  // @ts-ignore
177
- url = "".concat(this.webex.internal.services.get('locus'), "/").concat(_constants.LOCI, "/").concat(_constants.CALL);
178
- body.invitee = {
179
- address: inviteeAddress || "wbxmn:".concat(meetingNumber)
180
- };
181
- _context.next = 24;
156
+ body.device.countryCode = this.webex.meetings.clientRegion.countryCode;
157
+ // @ts-ignore
158
+ body.device.regionCode = this.webex.meetings.clientRegion.regionCode;
159
+ }
160
+ if (moderator !== undefined) {
161
+ body.moderator = moderator;
162
+ }
163
+ if (permissionToken) {
164
+ body.permissionToken = permissionToken;
165
+ }
166
+ if (pin !== undefined) {
167
+ body.pin = pin;
168
+ }
169
+ if (!locusUrl) {
170
+ _context2.next = 16;
182
171
  break;
183
-
184
- case 20:
185
- _context.prev = 20;
186
- _context.t0 = _context["catch"](13);
187
-
188
- _loggerProxy.default.logger.error("Meeting:request#joinMeeting Error Joining ".concat(inviteeAddress || meetingNumber, " --> ").concat(_context.t0));
189
-
190
- throw _context.t0;
191
-
192
- case 24:
193
- // TODO: -- this will be resolved in SDK request
194
- url = url.concat("?".concat(_constants.ALTERNATE_REDIRECT_TRUE));
195
-
196
- if (resourceId === inviteeAddress) {
197
- body.callPreferences = {
198
- requestedMedia: [_constants._SLIDES_]
199
- };
200
- }
201
-
202
- if (roapMessage) {
203
- body.localMedias = roapMessage.localMedias;
204
- } /// @ts-ignore
205
-
206
-
207
- return _context.abrupt("return", this.request({
208
- method: _constants.HTTP_VERBS.POST,
209
- uri: url,
210
- body: body
211
- }));
212
-
213
- case 28:
214
- case "end":
215
- return _context.stop();
216
- }
172
+ }
173
+ url = "".concat(locusUrl, "/").concat(_constants.PARTICIPANT);
174
+ _context2.next = 28;
175
+ break;
176
+ case 16:
177
+ if (!(inviteeAddress || meetingNumber)) {
178
+ _context2.next = 28;
179
+ break;
180
+ }
181
+ _context2.prev = 17;
182
+ _context2.next = 20;
183
+ return this.webex.internal.services.waitForCatalog('postauth');
184
+ case 20:
185
+ // @ts-ignore
186
+ url = "".concat(this.webex.internal.services.get('locus'), "/").concat(_constants.LOCI, "/").concat(_constants.CALL);
187
+ body.invitee = {
188
+ address: inviteeAddress || "wbxmn:".concat(meetingNumber)
189
+ };
190
+ _context2.next = 28;
191
+ break;
192
+ case 24:
193
+ _context2.prev = 24;
194
+ _context2.t0 = _context2["catch"](17);
195
+ _loggerProxy.default.logger.error("Meeting:request#joinMeeting Error Joining ".concat(inviteeAddress || meetingNumber, " --> ").concat(_context2.t0));
196
+ throw _context2.t0;
197
+ case 28:
198
+ // TODO: -- this will be resolved in SDK request
199
+ url = url.concat("?".concat(_constants.ALTERNATE_REDIRECT_TRUE));
200
+ if (resourceId === inviteeAddress) {
201
+ body.callPreferences = {
202
+ requestedMedia: [_constants._SLIDES_]
203
+ };
204
+ }
205
+ if (roapMessage) {
206
+ body.localMedias = roapMessage.localMedias;
207
+ }
208
+
209
+ /// @ts-ignore
210
+ return _context2.abrupt("return", this.request({
211
+ method: _constants.HTTP_VERBS.POST,
212
+ uri: url,
213
+ body: body
214
+ }));
215
+ case 32:
216
+ case "end":
217
+ return _context2.stop();
217
218
  }
218
- }, _callee, this, [[13, 20]]);
219
+ }, _callee2, this, [[17, 24]]);
219
220
  }));
220
-
221
221
  function joinMeeting(_x) {
222
222
  return _joinMeeting.apply(this, arguments);
223
223
  }
224
-
225
224
  return joinMeeting;
226
225
  }()
227
226
  /**
@@ -232,26 +231,26 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
232
231
  * @returns {Promise}
233
232
  * @private
234
233
  */
235
-
236
234
  }, {
237
235
  key: "refreshCaptcha",
238
- value: function refreshCaptcha(_ref) {
239
- var captchaRefreshUrl = _ref.captchaRefreshUrl,
240
- captchaId = _ref.captchaId;
236
+ value: function refreshCaptcha(_ref2) {
237
+ var captchaRefreshUrl = _ref2.captchaRefreshUrl,
238
+ captchaId = _ref2.captchaId;
241
239
  var body = {
242
240
  captchaId: captchaId
243
- }; // @ts-ignore
241
+ };
244
242
 
243
+ // @ts-ignore
245
244
  return this.request({
246
245
  method: _constants.HTTP_VERBS.POST,
247
246
  uri: captchaRefreshUrl,
248
247
  body: body
249
248
  }).catch(function (err) {
250
249
  _loggerProxy.default.logger.error("Meeting:request#refreshCaptcha --> Error: ".concat(err));
251
-
252
250
  throw err;
253
251
  });
254
252
  }
253
+
255
254
  /**
256
255
  * Make a network request to add a dial in device
257
256
  * @param {Object} options
@@ -262,17 +261,14 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
262
261
  * @returns {Promise}
263
262
  * @private
264
263
  */
265
-
266
264
  }, {
267
265
  key: "dialIn",
268
- value: function dialIn(_ref2) {
269
- var locusUrl = _ref2.locusUrl,
270
- dialInUrl = _ref2.dialInUrl,
271
- clientUrl = _ref2.clientUrl,
272
- correlationId = _ref2.correlationId;
273
-
266
+ value: function dialIn(_ref3) {
267
+ var locusUrl = _ref3.locusUrl,
268
+ dialInUrl = _ref3.dialInUrl,
269
+ clientUrl = _ref3.clientUrl,
270
+ correlationId = _ref3.correlationId;
274
271
  _loggerProxy.default.logger.info('Meeting:request#dialIn --> Provisioning a dial in device', correlationId);
275
-
276
272
  var uri = "".concat(locusUrl, "/").concat(_constants.PARTICIPANT);
277
273
  var body = {
278
274
  device: {
@@ -282,18 +278,19 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
282
278
  clientUrl: clientUrl
283
279
  },
284
280
  correlationId: correlationId
285
- }; // @ts-ignore
281
+ };
286
282
 
283
+ // @ts-ignore
287
284
  return this.request({
288
285
  method: _constants.HTTP_VERBS.POST,
289
286
  uri: uri,
290
287
  body: body
291
288
  }).catch(function (err) {
292
289
  _loggerProxy.default.logger.error("Meeting:request#dialIn --> Error provisioning a dial in device, error ".concat(err));
293
-
294
290
  throw err;
295
291
  });
296
292
  }
293
+
297
294
  /**
298
295
  * Make a network request to add a dial out device
299
296
  * @param {Object} options
@@ -305,18 +302,15 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
305
302
  * @returns {Promise}
306
303
  * @private
307
304
  */
308
-
309
305
  }, {
310
306
  key: "dialOut",
311
- value: function dialOut(_ref3) {
312
- var locusUrl = _ref3.locusUrl,
313
- dialOutUrl = _ref3.dialOutUrl,
314
- phoneNumber = _ref3.phoneNumber,
315
- clientUrl = _ref3.clientUrl,
316
- correlationId = _ref3.correlationId;
317
-
307
+ value: function dialOut(_ref4) {
308
+ var locusUrl = _ref4.locusUrl,
309
+ dialOutUrl = _ref4.dialOutUrl,
310
+ phoneNumber = _ref4.phoneNumber,
311
+ clientUrl = _ref4.clientUrl,
312
+ correlationId = _ref4.correlationId;
318
313
  _loggerProxy.default.logger.info('Meeting:request#dialOut --> Provisioning a dial out device', correlationId);
319
-
320
314
  var uri = "".concat(locusUrl, "/").concat(_constants.PARTICIPANT);
321
315
  var body = {
322
316
  device: {
@@ -327,18 +321,19 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
327
321
  clientUrl: clientUrl
328
322
  },
329
323
  correlationId: correlationId
330
- }; // @ts-ignore
324
+ };
331
325
 
326
+ // @ts-ignore
332
327
  return this.request({
333
328
  method: _constants.HTTP_VERBS.POST,
334
329
  uri: uri,
335
330
  body: body
336
331
  }).catch(function (err) {
337
332
  _loggerProxy.default.logger.error("Meeting:request#dialOut --> Error provisioning a dial out device, error ".concat(err));
338
-
339
333
  throw err;
340
334
  });
341
335
  }
336
+
342
337
  /**
343
338
  * Syns the missed delta event
344
339
  * @param {Object} options
@@ -346,31 +341,30 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
346
341
  * @param {String} options.syncUrl sync url to get ht elatest locus delta
347
342
  * @returns {Promise}
348
343
  */
349
-
350
344
  }, {
351
345
  key: "syncMeeting",
352
346
  value: function syncMeeting(options) {
353
347
  /* eslint-disable no-else-return */
354
348
  var desync = options.desync;
355
349
  var syncUrl = options.syncUrl;
356
- /* istanbul ignore else */
357
350
 
351
+ /* istanbul ignore else */
358
352
  if (desync) {
359
353
  // check for existing URL parameters
360
354
  syncUrl = syncUrl.concat(syncUrl.split('?')[1] ? '&' : '?').concat("".concat(_constants.LOCUS.SYNCDEBUG, "=").concat(desync));
361
- } // @ts-ignore
362
-
355
+ }
363
356
 
357
+ // @ts-ignore
364
358
  return this.request({
365
359
  method: _constants.HTTP_VERBS.GET,
366
360
  uri: syncUrl
367
361
  }) // TODO: Handle if delta sync failed . Get the full locus object
368
362
  .catch(function (err) {
369
363
  _loggerProxy.default.logger.error("Meeting:request#syncMeeting --> Error syncing meeting, error ".concat(err));
370
-
371
364
  return err;
372
365
  });
373
366
  }
367
+
374
368
  /**
375
369
  * Request to get the complete locus object
376
370
  * @param {Object} options
@@ -378,31 +372,28 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
378
372
  * @param {String} options.locusUrl sync url to get ht elatest locus delta
379
373
  * @returns {Promise}
380
374
  */
381
-
382
375
  }, {
383
376
  key: "getFullLocus",
384
377
  value: function getFullLocus(options) {
385
378
  var locusUrl = options.locusUrl;
386
379
  var desync = options.desync;
387
-
388
380
  if (locusUrl) {
389
381
  if (desync) {
390
382
  locusUrl += "?".concat(_constants.LOCUS.SYNCDEBUG, "=").concat(desync);
391
- } // @ts-ignore
392
-
383
+ }
393
384
 
385
+ // @ts-ignore
394
386
  return this.request({
395
387
  method: _constants.HTTP_VERBS.GET,
396
388
  uri: locusUrl
397
389
  }).catch(function (err) {
398
390
  _loggerProxy.default.logger.error("Meeting:request#getFullLocus --> Error getting full locus, error ".concat(err));
399
-
400
391
  return err;
401
392
  });
402
393
  }
403
-
404
394
  return _promise.default.reject();
405
395
  }
396
+
406
397
  /**
407
398
  * Make a network request to make a provisioned phone leave the meeting
408
399
  * @param {Object} options
@@ -413,17 +404,14 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
413
404
  * @returns {Promise}
414
405
  * @private
415
406
  */
416
-
417
407
  }, {
418
408
  key: "disconnectPhoneAudio",
419
- value: function disconnectPhoneAudio(_ref4) {
420
- var locusUrl = _ref4.locusUrl,
421
- phoneUrl = _ref4.phoneUrl,
422
- correlationId = _ref4.correlationId,
423
- selfId = _ref4.selfId;
424
-
409
+ value: function disconnectPhoneAudio(_ref5) {
410
+ var locusUrl = _ref5.locusUrl,
411
+ phoneUrl = _ref5.phoneUrl,
412
+ correlationId = _ref5.correlationId,
413
+ selfId = _ref5.selfId;
425
414
  _loggerProxy.default.logger.info("Meeting:request#disconnectPhoneAudio --> request phone ".concat(phoneUrl, " to leave"), correlationId);
426
-
427
415
  var uri = "".concat(locusUrl, "/").concat(_constants.PARTICIPANT, "/").concat(selfId, "/").concat(_constants.LEAVE);
428
416
  var body = {
429
417
  device: {
@@ -431,18 +419,19 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
431
419
  url: phoneUrl
432
420
  },
433
421
  correlationId: correlationId
434
- }; // @ts-ignore
422
+ };
435
423
 
424
+ // @ts-ignore
436
425
  return this.request({
437
426
  method: _constants.HTTP_VERBS.PUT,
438
427
  uri: uri,
439
428
  body: body
440
429
  }).catch(function (err) {
441
430
  _loggerProxy.default.logger.error("Meeting:request#disconnectPhoneAudio --> Error when requesting phone ".concat(phoneUrl, " to leave, error ").concat(err));
442
-
443
431
  throw err;
444
432
  });
445
433
  }
434
+
446
435
  /**
447
436
  * Make a network request to leave a meeting
448
437
  * @param {Object} options
@@ -453,18 +442,15 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
453
442
  * @param {String} options.correlationId
454
443
  * @returns {Promise}
455
444
  */
456
-
457
445
  }, {
458
446
  key: "leaveMeeting",
459
- value: function leaveMeeting(_ref5) {
460
- var locusUrl = _ref5.locusUrl,
461
- selfId = _ref5.selfId,
462
- url = _ref5.deviceUrl,
463
- resourceId = _ref5.resourceId,
464
- correlationId = _ref5.correlationId;
465
-
447
+ value: function leaveMeeting(_ref6) {
448
+ var locusUrl = _ref6.locusUrl,
449
+ selfId = _ref6.selfId,
450
+ url = _ref6.deviceUrl,
451
+ resourceId = _ref6.resourceId,
452
+ correlationId = _ref6.correlationId;
466
453
  _loggerProxy.default.logger.info('Meeting:request#leaveMeeting --> Leaving a meeting', correlationId);
467
-
468
454
  var uri = "".concat(locusUrl, "/").concat(_constants.PARTICIPANT, "/").concat(selfId, "/").concat(_constants.LEAVE);
469
455
  var body = {
470
456
  device: {
@@ -474,14 +460,16 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
474
460
  },
475
461
  usingResource: resourceId || null,
476
462
  correlationId: correlationId
477
- }; // @ts-ignore
463
+ };
478
464
 
465
+ // @ts-ignore
479
466
  return this.request({
480
467
  method: _constants.HTTP_VERBS.PUT,
481
468
  uri: uri,
482
469
  body: body
483
470
  });
484
471
  }
472
+
485
473
  /**
486
474
  * Make a network request to acknowledge a meeting
487
475
  * @param {Object} options
@@ -490,7 +478,6 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
490
478
  * @param {String} options.correlationId
491
479
  * @returns {Promise}
492
480
  */
493
-
494
481
  }, {
495
482
  key: "acknowledgeMeeting",
496
483
  value: function acknowledgeMeeting(options) {
@@ -502,40 +489,15 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
502
489
  url: options.deviceUrl
503
490
  },
504
491
  correlationId: options.correlationId
505
- }; // @ts-ignore
492
+ };
506
493
 
494
+ // @ts-ignore
507
495
  return this.request({
508
496
  method: _constants.HTTP_VERBS.PUT,
509
497
  uri: uri,
510
498
  body: body
511
499
  });
512
500
  }
513
- /**
514
- * Make a network request to acknowledge a meeting
515
- * @param {Object} options
516
- * @param {String} options.locusUrl
517
- * @param {String} options.deviceUrl
518
- * @param {String} options.id
519
- * @returns {Promise}
520
- */
521
-
522
- }, {
523
- key: "recordMeeting",
524
- value: function recordMeeting(options) {
525
- var uri = "".concat(options.locusUrl, "/").concat(_constants.CONTROLS);
526
- var body = {
527
- record: {
528
- recording: options.recording,
529
- paused: options.paused
530
- }
531
- }; // @ts-ignore
532
-
533
- return this.request({
534
- method: _constants.HTTP_VERBS.PATCH,
535
- uri: uri,
536
- body: body
537
- });
538
- }
539
501
  }, {
540
502
  key: "lockMeeting",
541
503
  value: function lockMeeting(options) {
@@ -544,14 +506,16 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
544
506
  lock: {
545
507
  locked: options.lock
546
508
  }
547
- }; // @ts-ignore
509
+ };
548
510
 
511
+ // @ts-ignore
549
512
  return this.request({
550
513
  method: _constants.HTTP_VERBS.PATCH,
551
514
  uri: uri,
552
515
  body: body
553
516
  });
554
517
  }
518
+
555
519
  /**
556
520
  * Make a network request to decline a meeting
557
521
  * @param {Object} options
@@ -560,12 +524,10 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
560
524
  * @param {String} options.reason
561
525
  * @returns {Promise}
562
526
  */
563
-
564
527
  }, {
565
528
  key: "declineMeeting",
566
529
  value: function declineMeeting(options) {
567
530
  var uri = "".concat(options.locusUrl, "/").concat(_constants.PARTICIPANT, "/").concat(_constants.DECLINE);
568
-
569
531
  var body = _objectSpread({
570
532
  device: {
571
533
  // @ts-ignore
@@ -574,15 +536,16 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
574
536
  }
575
537
  }, options.reason && {
576
538
  reason: options.reason
577
- }); // @ts-ignore
578
-
539
+ });
579
540
 
541
+ // @ts-ignore
580
542
  return this.request({
581
543
  method: _constants.HTTP_VERBS.PUT,
582
544
  uri: uri,
583
545
  body: body
584
546
  });
585
547
  }
548
+
586
549
  /**
587
550
  * Toggle remote audio and/or video
588
551
  * @param {Object} options options for toggling
@@ -594,12 +557,10 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
594
557
  * @param {Boolean} options.preferTranscoding false for multistream (Homer), true for transcoded media (Edonus)
595
558
  * @returns {Promise}
596
559
  */
597
-
598
560
  }, {
599
561
  key: "remoteAudioVideoToggle",
600
562
  value: function remoteAudioVideoToggle(options) {
601
563
  var _options$preferTransc;
602
-
603
564
  var uri = "".concat(options.locusUrl, "/").concat(_constants.PARTICIPANT, "/").concat(options.selfId, "/").concat(_constants.MEDIA);
604
565
  var body = {
605
566
  device: {
@@ -614,14 +575,16 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
614
575
  clientMediaPreferences: {
615
576
  preferTranscoding: (_options$preferTransc = options.preferTranscoding) !== null && _options$preferTransc !== void 0 ? _options$preferTransc : true
616
577
  }
617
- }; // @ts-ignore
578
+ };
618
579
 
580
+ // @ts-ignore
619
581
  return this.request({
620
582
  method: _constants.HTTP_VERBS.PUT,
621
583
  uri: uri,
622
584
  body: body
623
585
  });
624
586
  }
587
+
625
588
  /**
626
589
  * change the content floor grant
627
590
  * @param {Object} options options for floor grant
@@ -632,15 +595,14 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
632
595
  * @param {String} options.uri floor grant uri
633
596
  * @returns {Promise}
634
597
  */
635
-
636
598
  }, {
637
599
  key: "changeMeetingFloor",
638
600
  value: function changeMeetingFloor(options) {
639
601
  var floorReq = {
640
602
  disposition: options.disposition
641
603
  };
642
- /* istanbul ignore else */
643
604
 
605
+ /* istanbul ignore else */
644
606
  if (options.disposition === _constants.FLOOR_ACTION.GRANTED) {
645
607
  floorReq = {
646
608
  beneficiary: {
@@ -657,23 +619,22 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
657
619
  }
658
620
  };
659
621
  }
660
-
661
622
  var body = {
662
623
  floor: floorReq,
663
624
  resourceUrl: options.resourceUrl
664
625
  };
665
-
666
626
  if (options !== null && options !== void 0 && options.resourceToken) {
667
627
  body.resourceToken = options === null || options === void 0 ? void 0 : options.resourceToken;
668
- } // @ts-ignore
669
-
628
+ }
670
629
 
630
+ // @ts-ignore
671
631
  return this.request({
672
632
  uri: options.uri,
673
633
  method: _constants.HTTP_VERBS.PUT,
674
634
  body: body
675
635
  });
676
636
  }
637
+
677
638
  /**
678
639
  * Sends a request to the DTMF endpoint to send tones
679
640
  * @param {Object} options
@@ -682,13 +643,12 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
682
643
  * @param {String} options.tones a string of one or more DTMF tones to send
683
644
  * @returns {Promise}
684
645
  */
685
-
686
646
  }, {
687
647
  key: "sendDTMF",
688
- value: function sendDTMF(_ref6) {
689
- var locusUrl = _ref6.locusUrl,
690
- deviceUrl = _ref6.deviceUrl,
691
- tones = _ref6.tones;
648
+ value: function sendDTMF(_ref7) {
649
+ var locusUrl = _ref7.locusUrl,
650
+ deviceUrl = _ref7.deviceUrl,
651
+ tones = _ref7.tones;
692
652
  // @ts-ignore
693
653
  return this.request({
694
654
  method: _constants.HTTP_VERBS.POST,
@@ -702,6 +662,7 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
702
662
  }
703
663
  });
704
664
  }
665
+
705
666
  /**
706
667
  * Sends a request to the controls endpoint to set the video layout
707
668
  * @param {Object} options
@@ -716,25 +677,21 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
716
677
  * @param {Number} options.content.height preferred height of content share stream
717
678
  * @returns {Promise}
718
679
  */
719
-
720
680
  }, {
721
681
  key: "changeVideoLayout",
722
- value: function changeVideoLayout(_ref7) {
723
- var locusUrl = _ref7.locusUrl,
724
- deviceUrl = _ref7.deviceUrl,
725
- layoutType = _ref7.layoutType,
726
- main = _ref7.main,
727
- content = _ref7.content;
728
-
682
+ value: function changeVideoLayout(_ref8) {
683
+ var locusUrl = _ref8.locusUrl,
684
+ deviceUrl = _ref8.deviceUrl,
685
+ layoutType = _ref8.layoutType,
686
+ main = _ref8.main,
687
+ content = _ref8.content;
729
688
  // send main/content renderInfo only if both width and height are specified
730
689
  if (main && (!main.width || !main.height)) {
731
690
  return _promise.default.reject(new Error("Both width and height must be specified. One of them is missing for main: ".concat((0, _stringify.default)(main))));
732
691
  }
733
-
734
692
  if (content && (!content.width || !content.height)) {
735
693
  return _promise.default.reject(new Error("Both width and height must be specified. One of them is missing for content: ".concat((0, _stringify.default)(content))));
736
694
  }
737
-
738
695
  var renderInfoMain = main ? {
739
696
  width: main.width,
740
697
  height: main.height
@@ -748,8 +705,9 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
748
705
  main: renderInfoMain,
749
706
  content: renderInfoContent
750
707
  }
751
- } : undefined; // @ts-ignore
708
+ } : undefined;
752
709
 
710
+ // @ts-ignore
753
711
  return this.request({
754
712
  method: _constants.HTTP_VERBS.PUT,
755
713
  uri: "".concat(locusUrl, "/").concat(_constants.CONTROLS),
@@ -762,44 +720,100 @@ var MeetingRequest = /*#__PURE__*/function (_StatelessWebexPlugin) {
762
720
  }
763
721
  });
764
722
  }
723
+
765
724
  /**
766
725
  * Make a network request to end meeting for all
767
726
  * @param {Object} options
768
727
  * @param {Url} options.locusUrl
769
728
  * @returns {Promise}
770
729
  */
771
-
772
730
  }, {
773
731
  key: "endMeetingForAll",
774
- value: function endMeetingForAll(_ref8) {
775
- var locusUrl = _ref8.locusUrl;
776
- var uri = "".concat(locusUrl, "/").concat(_constants.END); // @ts-ignore
732
+ value: function endMeetingForAll(_ref9) {
733
+ var locusUrl = _ref9.locusUrl;
734
+ var uri = "".concat(locusUrl, "/").concat(_constants.END);
777
735
 
736
+ // @ts-ignore
778
737
  return this.request({
779
738
  method: _constants.HTTP_VERBS.POST,
780
739
  uri: uri
781
740
  });
782
741
  }
742
+
783
743
  /**
784
744
  * Send a locus keepAlive (used in lobby)
785
745
  * @param {Object} options
786
746
  * @param {Url} options.keepAliveUrl
787
747
  * @returns {Promise}
788
748
  */
789
-
790
749
  }, {
791
750
  key: "keepAlive",
792
- value: function keepAlive(_ref9) {
793
- var keepAliveUrl = _ref9.keepAliveUrl;
751
+ value: function keepAlive(_ref10) {
752
+ var keepAliveUrl = _ref10.keepAliveUrl;
794
753
  // @ts-ignore
795
754
  return this.request({
796
755
  method: _constants.HTTP_VERBS.GET,
797
756
  uri: keepAliveUrl
798
757
  });
799
758
  }
759
+
760
+ /**
761
+ * Make a network request to send a reaction.
762
+ * @param {Object} options
763
+ * @param {Url} options.reactionChannelUrl
764
+ * @param {Reaction} options.reaction
765
+ * @param {string} options.senderID
766
+ * @returns {Promise}
767
+ */
768
+ }, {
769
+ key: "sendReaction",
770
+ value: function sendReaction(_ref11) {
771
+ var reactionChannelUrl = _ref11.reactionChannelUrl,
772
+ reaction = _ref11.reaction,
773
+ participantId = _ref11.participantId;
774
+ var uri = reactionChannelUrl;
775
+
776
+ // @ts-ignore
777
+ return this.request({
778
+ method: _constants.HTTP_VERBS.POST,
779
+ uri: uri,
780
+ body: {
781
+ sender: {
782
+ participantId: participantId
783
+ },
784
+ reaction: reaction
785
+ }
786
+ });
787
+ }
788
+
789
+ /**
790
+ * Make a network request to enable or disable reactions.
791
+ * @param {boolean} options.enable - determines if we need to enable or disable.
792
+ * @param {locusUrl} options.locusUrl
793
+ * @returns {Promise}
794
+ */
795
+ }, {
796
+ key: "toggleReactions",
797
+ value: function toggleReactions(_ref12) {
798
+ var enable = _ref12.enable,
799
+ locusUrl = _ref12.locusUrl,
800
+ requestingParticipantId = _ref12.requestingParticipantId;
801
+ var uri = "".concat(locusUrl, "/").concat(_constants.CONTROLS);
802
+
803
+ // @ts-ignore
804
+ return this.request({
805
+ method: _constants.HTTP_VERBS.PUT,
806
+ uri: uri,
807
+ body: {
808
+ reactions: {
809
+ enabled: enable
810
+ },
811
+ requestingParticipantId: requestingParticipantId
812
+ }
813
+ });
814
+ }
800
815
  }]);
801
816
  return MeetingRequest;
802
817
  }(_webexCore.StatelessWebexPlugin);
803
-
804
818
  exports.default = MeetingRequest;
805
819
  //# sourceMappingURL=request.js.map