Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

JitsiConferenceEvents.ts 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. /**
  2. * The events for the conference.
  3. */
  4. export enum JitsiConferenceEvents {
  5. /**
  6. * Event indicates that the current conference audio input switched between audio
  7. * input states,i.e. with or without audio input.
  8. */
  9. AUDIO_INPUT_STATE_CHANGE = 'conference.audio_input_state_changed',
  10. /**
  11. * Event indicates that the permission for unmuting audio has changed based on the number of audio senders in the call
  12. * and the audio sender limit configured in Jicofo.
  13. */
  14. AUDIO_UNMUTE_PERMISSIONS_CHANGED = 'conference.audio_unmute_permissions_changed',
  15. /**
  16. * Indicates that authentication status changed.
  17. */
  18. AUTH_STATUS_CHANGED = 'conference.auth_status_changed',
  19. /**
  20. * Fired just before the statistics module is disposed and it's the last chance
  21. * to submit some logs to the statistics service (ex. CallStats if enabled),
  22. * before it's disconnected.
  23. */
  24. BEFORE_STATISTICS_DISPOSED = 'conference.beforeStatisticsDisposed',
  25. /**
  26. * Indicates that an error occurred.
  27. */
  28. CONFERENCE_ERROR = 'conference.error',
  29. /**
  30. * Indicates that conference failed.
  31. */
  32. CONFERENCE_FAILED = 'conference.failed',
  33. /**
  34. * Indicates that conference is in progress of joining.
  35. */
  36. CONFERENCE_JOIN_IN_PROGRESS = 'conference.join_in_progress',
  37. /**
  38. * Indicates that conference has been joined. The event does NOT provide any
  39. * parameters to its listeners.
  40. */
  41. CONFERENCE_JOINED = 'conference.joined',
  42. /**
  43. * Indicates that conference has been left.
  44. */
  45. CONFERENCE_LEFT = 'conference.left',
  46. /**
  47. * Indicates that the conference unique identifier has been set.
  48. */
  49. CONFERENCE_UNIQUE_ID_SET = 'conference.unique_id_set',
  50. /**
  51. * Indicates that the connection to the conference has been established
  52. * XXX This is currently fired when the *ICE* connection enters 'connected'
  53. * state for the first time.
  54. */
  55. CONNECTION_ESTABLISHED = 'conference.connectionEstablished',
  56. /**
  57. * Indicates that the connection to the conference has been interrupted for some
  58. * reason.
  59. * XXX This is currently fired when the *ICE* connection is interrupted.
  60. */
  61. CONNECTION_INTERRUPTED = 'conference.connectionInterrupted',
  62. /**
  63. * Indicates that the connection to the conference has been restored.
  64. * XXX This is currently fired when the *ICE* connection is restored.
  65. */
  66. CONNECTION_RESTORED = 'conference.connectionRestored',
  67. /**
  68. * A connection to the video bridge's data channel has been established.
  69. */
  70. DATA_CHANNEL_OPENED = 'conference.dataChannelOpened',
  71. /**
  72. * A user has changed it display name
  73. */
  74. DISPLAY_NAME_CHANGED = 'conference.displayNameChanged',
  75. /**
  76. * The dominant speaker was changed.
  77. */
  78. DOMINANT_SPEAKER_CHANGED = 'conference.dominantSpeaker',
  79. /**
  80. * UTC conference timestamp when first participant joined.
  81. */
  82. CONFERENCE_CREATED_TIMESTAMP = 'conference.createdTimestamp',
  83. /**
  84. * Indicates that DTMF support changed.
  85. */
  86. DTMF_SUPPORT_CHANGED = 'conference.dtmfSupportChanged',
  87. /**
  88. * Indicates that a message from another participant is received on data
  89. * channel.
  90. */
  91. ENDPOINT_MESSAGE_RECEIVED = 'conference.endpoint_message_received',
  92. /**
  93. * Indicates that a message for the remote endpoint statistics has been received on the bridge channel.
  94. */
  95. ENDPOINT_STATS_RECEIVED = 'conference.endpoint_stats_received',
  96. /**
  97. * NOTE This is lib-jitsi-meet internal event and can be removed at any time !
  98. *
  99. * Event emitted when conference transits, between one to one and multiparty JVB
  100. * conference. If the conference switches to P2P it's neither one to one nor
  101. * a multiparty JVB conference, but P2P (the status argument of this event will
  102. * be <tt>false</tt>).
  103. *
  104. * The first argument is a boolean which carries the previous value and
  105. * the seconds argument is a boolean with the new status. The event is emitted
  106. * only if the previous and the new values are different.
  107. *
  108. * @type {string}
  109. */
  110. JVB121_STATUS = 'conference.jvb121Status',
  111. /**
  112. * You are kicked from the conference.
  113. * @param {JitsiParticipant} the participant that initiated the kick.
  114. */
  115. KICKED = 'conference.kicked',
  116. /**
  117. * Participant was kicked from the conference.
  118. * @param {JitsiParticipant} the participant that initiated the kick.
  119. * @param {JitsiParticipant} the participant that was kicked.
  120. */
  121. PARTICIPANT_KICKED = 'conference.participant_kicked',
  122. /**
  123. * The Last N set is changed.
  124. *
  125. * @param {Array<string>|null} leavingEndpointIds the ids of all the endpoints
  126. * which are leaving Last N
  127. * @param {Array<string>|null} enteringEndpointIds the ids of all the endpoints
  128. * which are entering Last N
  129. */
  130. LAST_N_ENDPOINTS_CHANGED = 'conference.lastNEndpointsChanged',
  131. /**
  132. * Indicates that the room has been locked or unlocked.
  133. */
  134. LOCK_STATE_CHANGED = 'conference.lock_state_changed',
  135. /**
  136. * Indicates that the region of the media server (jitsi-videobridge) that we
  137. * are connected to changed (or was initially set).
  138. * @type {string} the region.
  139. */
  140. SERVER_REGION_CHANGED = 'conference.server_region_changed',
  141. /**
  142. * An event(library-private) fired when a new media session is added to the conference.
  143. * @type {string}
  144. * @private
  145. */
  146. _MEDIA_SESSION_STARTED = 'conference.media_session.started',
  147. /**
  148. * An event(library-private) fired when the conference switches the currently active media session.
  149. * @type {string}
  150. * @private
  151. */
  152. _MEDIA_SESSION_ACTIVE_CHANGED = 'conference.media_session.active_changed',
  153. /**
  154. * Indicates that the conference had changed to members only enabled/disabled.
  155. * The first argument of this event is a <tt>boolean</tt> which when set to
  156. * <tt>true</tt> means that the conference is running in members only mode.
  157. * You may need to use Lobby if supported to ask for permissions to enter the conference.
  158. */
  159. MEMBERS_ONLY_CHANGED = 'conference.membersOnlyChanged',
  160. /**
  161. * New text message was received.
  162. */
  163. MESSAGE_RECEIVED = 'conference.messageReceived',
  164. /**
  165. * Event indicates that the current selected input device has no signal
  166. */
  167. NO_AUDIO_INPUT = 'conference.no_audio_input',
  168. /**
  169. * Event indicates that the current microphone used by the conference is noisy.
  170. */
  171. NOISY_MIC = 'conference.noisy_mic',
  172. /**
  173. * Indicates that a message from the local user or from the Prosody backend
  174. * was received on the data channel.
  175. */
  176. NON_PARTICIPANT_MESSAGE_RECEIVED = 'conference.non_participant_message_received',
  177. /**
  178. * New private text message was received.
  179. */
  180. PRIVATE_MESSAGE_RECEIVED = 'conference.privateMessageReceived',
  181. /**
  182. * Event fired when JVB sends notification about interrupted/restored user's
  183. * ICE connection status or we detect local problem with the video track.
  184. * First argument is the ID of the participant and
  185. * the seconds is a string indicating if the connection is currently
  186. * - active - the connection is active
  187. * - inactive - the connection is inactive, was intentionally interrupted by
  188. * the bridge
  189. * - interrupted - a network problem occurred
  190. * - restoring - the connection was inactive and is restoring now
  191. *
  192. * The current status value can be obtained by calling
  193. * JitsiParticipant.getConnectionStatus().
  194. */
  195. PARTICIPANT_CONN_STATUS_CHANGED = 'conference.participant_conn_status_changed',
  196. /**
  197. * Indicates that the features of the participant has been changed.
  198. * TODO: there is a spelling mistake in this event name and associated constants
  199. */
  200. PARTCIPANT_FEATURES_CHANGED = 'conference.partcipant_features_changed',
  201. /**
  202. * Indicates that a the value of a specific property of a specific participant
  203. * has changed.
  204. */
  205. PARTICIPANT_PROPERTY_CHANGED = 'conference.participant_property_changed',
  206. /**
  207. * Indicates that the conference has switched between JVB and P2P connections.
  208. * The first argument of this event is a <tt>boolean</tt> which when set to
  209. * <tt>true</tt> means that the conference is running on the P2P connection.
  210. */
  211. P2P_STATUS = 'conference.p2pStatus',
  212. /**
  213. * Indicates that phone number changed.
  214. */
  215. PHONE_NUMBER_CHANGED = 'conference.phoneNumberChanged',
  216. /**
  217. * The conference properties changed.
  218. * @type {string}
  219. */
  220. PROPERTIES_CHANGED = 'conference.propertiesChanged',
  221. /**
  222. * Indicates that recording state changed.
  223. */
  224. RECORDER_STATE_CHANGED = 'conference.recorderStateChanged',
  225. /**
  226. * Indicates that video SIP GW state changed.
  227. * @param {VideoSIPGWConstants} status.
  228. */
  229. VIDEO_SIP_GW_AVAILABILITY_CHANGED = 'conference.videoSIPGWAvailabilityChanged',
  230. /**
  231. * Indicates that video SIP GW Session state changed.
  232. * @param {options} event - {
  233. * {string} address,
  234. * {VideoSIPGWConstants} oldState,
  235. * {VideoSIPGWConstants} newState,
  236. * {string} displayName}
  237. * }.
  238. */
  239. VIDEO_SIP_GW_SESSION_STATE_CHANGED = 'conference.videoSIPGWSessionStateChanged',
  240. /**
  241. * Indicates that start muted settings changed.
  242. */
  243. START_MUTED_POLICY_CHANGED = 'conference.start_muted_policy_changed',
  244. /**
  245. * Indicates that the local user has started muted.
  246. */
  247. STARTED_MUTED = 'conference.started_muted',
  248. /**
  249. * Indicates that subject of the conference has changed.
  250. */
  251. SUBJECT_CHANGED = 'conference.subjectChanged',
  252. /**
  253. * Indicates that DTMF support changed.
  254. */
  255. SUSPEND_DETECTED = 'conference.suspendDetected',
  256. /**
  257. * Event indicates that local user is talking while he muted himself
  258. */
  259. TALK_WHILE_MUTED = 'conference.talk_while_muted',
  260. /**
  261. * A new media track was added to the conference. The event provides the
  262. * following parameters to its listeners:
  263. *
  264. * @param {JitsiTrack} track the added JitsiTrack
  265. */
  266. TRACK_ADDED = 'conference.trackAdded',
  267. /**
  268. * Audio levels of a media track ( attached to the conference) was changed.
  269. */
  270. TRACK_AUDIO_LEVEL_CHANGED = 'conference.audioLevelsChanged',
  271. /**
  272. * A media track ( attached to the conference) mute status was changed.
  273. * @param {JitsiParticipant|null} the participant that initiated the mute
  274. * if it is a remote mute.
  275. */
  276. TRACK_MUTE_CHANGED = 'conference.trackMuteChanged',
  277. /**
  278. * The media track was removed from the conference. The event provides the
  279. * following parameters to its listeners:
  280. *
  281. * @param {JitsiTrack} track the removed JitsiTrack
  282. */
  283. TRACK_REMOVED = 'conference.trackRemoved',
  284. /**
  285. * The source-add for unmuting of a media track was rejected by Jicofo.
  286. *
  287. */
  288. TRACK_UNMUTE_REJECTED = 'conference.trackUnmuteRejected',
  289. /**
  290. * Notifies for transcription status changes. The event provides the
  291. * following parameters to its listeners:
  292. *
  293. * @param {String} status - The new status.
  294. */
  295. TRANSCRIPTION_STATUS_CHANGED = 'conference.transcriptionStatusChanged',
  296. /**
  297. * A new user joined the conference.
  298. */
  299. USER_JOINED = 'conference.userJoined',
  300. /**
  301. * A user has left the conference.
  302. */
  303. USER_LEFT = 'conference.userLeft',
  304. /**
  305. * User role changed.
  306. */
  307. USER_ROLE_CHANGED = 'conference.roleChanged',
  308. /**
  309. * User status changed.
  310. */
  311. USER_STATUS_CHANGED = 'conference.statusChanged',
  312. /**
  313. * Event indicates that the permission for unmuting video has changed based on the number of video senders in the call
  314. * and the video sender limit configured in Jicofo.
  315. */
  316. VIDEO_UNMUTE_PERMISSIONS_CHANGED = 'conference.video_unmute_permissions_changed',
  317. /**
  318. * Event indicates that the bot participant type changed.
  319. */
  320. BOT_TYPE_CHANGED = 'conference.bot_type_changed',
  321. /**
  322. * A new user joined the lobby room.
  323. */
  324. LOBBY_USER_JOINED = 'conference.lobby.userJoined',
  325. /**
  326. * A user from the lobby room has been update.
  327. */
  328. LOBBY_USER_UPDATED = 'conference.lobby.userUpdated',
  329. /**
  330. * A user left the lobby room.
  331. */
  332. LOBBY_USER_LEFT = 'conference.lobby.userLeft',
  333. /**
  334. * The local participant was approved to be able to unmute.
  335. * @param {options} event - {
  336. * {MediaType} mediaType
  337. * }.
  338. */
  339. AV_MODERATION_APPROVED = 'conference.av_moderation.approved',
  340. /**
  341. * The local participant was blocked to be able to unmute.
  342. * @param {options} event - {
  343. * {MediaType} mediaType
  344. * }.
  345. */
  346. AV_MODERATION_REJECTED = 'conference.av_moderation.rejected',
  347. /**
  348. * AV Moderation was enabled/disabled. The actor is the participant that is currently in the meeting,
  349. * or undefined if that participant has left the meeting.
  350. *
  351. * @param {options} event - {
  352. * {boolean} enabled,
  353. * {MediaType} mediaType,
  354. * {JitsiParticipant} actor
  355. * }.
  356. */
  357. AV_MODERATION_CHANGED = 'conference.av_moderation.changed',
  358. /**
  359. * AV Moderation, report for user being approved to unmute.
  360. * @param {options} event - {
  361. * {JitsiParticipant} participant,
  362. * {MediaType} mediaType
  363. * }.
  364. */
  365. AV_MODERATION_PARTICIPANT_APPROVED = 'conference.av_moderation.participant.approved',
  366. /**
  367. * AV Moderation, report for user being blocked to unmute.
  368. * @param {options} event - {
  369. * {JitsiParticipant} participant,
  370. * {MediaType} mediaType
  371. * }.
  372. */
  373. AV_MODERATION_PARTICIPANT_REJECTED = 'conference.av_moderation.participant.rejected',
  374. /**
  375. * A new facial expression is added with its duration for a participant
  376. */
  377. FACIAL_EXPRESSION_ADDED = 'conference.facial_expression.added',
  378. /**
  379. * Event fired when a participant is requested to join a given (breakout) room.
  380. */
  381. BREAKOUT_ROOMS_MOVE_TO_ROOM = 'conference.breakout-rooms.move-to-room',
  382. /**
  383. * Event fired when the breakout rooms data was updated.
  384. */
  385. BREAKOUT_ROOMS_UPDATED = 'conference.breakout-rooms.updated'
  386. };
  387. // exported for backward compatibility
  388. export const AUDIO_INPUT_STATE_CHANGE = JitsiConferenceEvents.AUDIO_INPUT_STATE_CHANGE;
  389. export const AUDIO_UNMUTE_PERMISSIONS_CHANGED = JitsiConferenceEvents.AUDIO_UNMUTE_PERMISSIONS_CHANGED;
  390. export const AUTH_STATUS_CHANGED = JitsiConferenceEvents.AUTH_STATUS_CHANGED;
  391. export const BEFORE_STATISTICS_DISPOSED = JitsiConferenceEvents.BEFORE_STATISTICS_DISPOSED;
  392. export const CONFERENCE_ERROR = JitsiConferenceEvents.CONFERENCE_ERROR;
  393. export const CONFERENCE_FAILED = JitsiConferenceEvents.CONFERENCE_FAILED;
  394. export const CONFERENCE_JOIN_IN_PROGRESS = JitsiConferenceEvents.CONFERENCE_JOIN_IN_PROGRESS;
  395. export const CONFERENCE_JOINED = JitsiConferenceEvents.CONFERENCE_JOINED;
  396. export const CONFERENCE_LEFT = JitsiConferenceEvents.CONFERENCE_LEFT;
  397. export const CONFERENCE_UNIQUE_ID_SET = JitsiConferenceEvents.CONFERENCE_UNIQUE_ID_SET;
  398. export const CONNECTION_ESTABLISHED = JitsiConferenceEvents.CONNECTION_ESTABLISHED;
  399. export const CONNECTION_INTERRUPTED = JitsiConferenceEvents.CONNECTION_INTERRUPTED;
  400. export const CONNECTION_RESTORED = JitsiConferenceEvents.CONNECTION_RESTORED;
  401. export const DATA_CHANNEL_OPENED = JitsiConferenceEvents.DATA_CHANNEL_OPENED;
  402. export const DISPLAY_NAME_CHANGED = JitsiConferenceEvents.DISPLAY_NAME_CHANGED;
  403. export const DOMINANT_SPEAKER_CHANGED = JitsiConferenceEvents.DOMINANT_SPEAKER_CHANGED;
  404. export const CONFERENCE_CREATED_TIMESTAMP = JitsiConferenceEvents.CONFERENCE_CREATED_TIMESTAMP;
  405. export const DTMF_SUPPORT_CHANGED = JitsiConferenceEvents.DTMF_SUPPORT_CHANGED;
  406. export const ENDPOINT_MESSAGE_RECEIVED = JitsiConferenceEvents.ENDPOINT_MESSAGE_RECEIVED;
  407. export const ENDPOINT_STATS_RECEIVED = JitsiConferenceEvents.ENDPOINT_STATS_RECEIVED;
  408. export const JVB121_STATUS = JitsiConferenceEvents.JVB121_STATUS;
  409. export const KICKED = JitsiConferenceEvents.KICKED;
  410. export const PARTICIPANT_KICKED = JitsiConferenceEvents.PARTICIPANT_KICKED;
  411. export const LAST_N_ENDPOINTS_CHANGED = JitsiConferenceEvents.LAST_N_ENDPOINTS_CHANGED;
  412. export const LOCK_STATE_CHANGED = JitsiConferenceEvents.LOCK_STATE_CHANGED;
  413. export const SERVER_REGION_CHANGED = JitsiConferenceEvents.SERVER_REGION_CHANGED;
  414. export const _MEDIA_SESSION_STARTED = JitsiConferenceEvents._MEDIA_SESSION_STARTED;
  415. export const _MEDIA_SESSION_ACTIVE_CHANGED = JitsiConferenceEvents._MEDIA_SESSION_ACTIVE_CHANGED;
  416. export const MEMBERS_ONLY_CHANGED = JitsiConferenceEvents.MEMBERS_ONLY_CHANGED;
  417. export const MESSAGE_RECEIVED = JitsiConferenceEvents.MESSAGE_RECEIVED;
  418. export const NO_AUDIO_INPUT = JitsiConferenceEvents.NO_AUDIO_INPUT;
  419. export const NOISY_MIC = JitsiConferenceEvents.NOISY_MIC;
  420. export const NON_PARTICIPANT_MESSAGE_RECEIVED = JitsiConferenceEvents.NON_PARTICIPANT_MESSAGE_RECEIVED;
  421. export const PRIVATE_MESSAGE_RECEIVED = JitsiConferenceEvents.PRIVATE_MESSAGE_RECEIVED;
  422. export const PARTICIPANT_CONN_STATUS_CHANGED = JitsiConferenceEvents.PARTICIPANT_CONN_STATUS_CHANGED;
  423. export const PARTCIPANT_FEATURES_CHANGED = JitsiConferenceEvents.PARTCIPANT_FEATURES_CHANGED;
  424. export const PARTICIPANT_PROPERTY_CHANGED = JitsiConferenceEvents.PARTICIPANT_PROPERTY_CHANGED;
  425. export const P2P_STATUS = JitsiConferenceEvents.P2P_STATUS;
  426. export const PHONE_NUMBER_CHANGED = JitsiConferenceEvents.PHONE_NUMBER_CHANGED;
  427. export const PROPERTIES_CHANGED = JitsiConferenceEvents.PROPERTIES_CHANGED;
  428. export const RECORDER_STATE_CHANGED = JitsiConferenceEvents.RECORDER_STATE_CHANGED;
  429. export const VIDEO_SIP_GW_AVAILABILITY_CHANGED = JitsiConferenceEvents.VIDEO_SIP_GW_AVAILABILITY_CHANGED;
  430. export const VIDEO_SIP_GW_SESSION_STATE_CHANGED = JitsiConferenceEvents.VIDEO_SIP_GW_SESSION_STATE_CHANGED;
  431. export const START_MUTED_POLICY_CHANGED = JitsiConferenceEvents.START_MUTED_POLICY_CHANGED;
  432. export const STARTED_MUTED = JitsiConferenceEvents.STARTED_MUTED;
  433. export const SUBJECT_CHANGED = JitsiConferenceEvents.SUBJECT_CHANGED;
  434. export const SUSPEND_DETECTED = JitsiConferenceEvents.SUSPEND_DETECTED;
  435. export const TALK_WHILE_MUTED = JitsiConferenceEvents.TALK_WHILE_MUTED;
  436. export const TRACK_ADDED = JitsiConferenceEvents.TRACK_ADDED;
  437. export const TRACK_AUDIO_LEVEL_CHANGED = JitsiConferenceEvents.TRACK_AUDIO_LEVEL_CHANGED;
  438. export const TRACK_MUTE_CHANGED = JitsiConferenceEvents.TRACK_MUTE_CHANGED;
  439. export const TRACK_REMOVED = JitsiConferenceEvents.TRACK_REMOVED;
  440. export const TRACK_UNMUTE_REJECTED = JitsiConferenceEvents.TRACK_UNMUTE_REJECTED;
  441. export const TRANSCRIPTION_STATUS_CHANGED = JitsiConferenceEvents.TRANSCRIPTION_STATUS_CHANGED;
  442. export const USER_JOINED = JitsiConferenceEvents.USER_JOINED;
  443. export const USER_LEFT = JitsiConferenceEvents.USER_LEFT;
  444. export const USER_ROLE_CHANGED = JitsiConferenceEvents.USER_ROLE_CHANGED;
  445. export const USER_STATUS_CHANGED = JitsiConferenceEvents.USER_STATUS_CHANGED;
  446. export const VIDEO_UNMUTE_PERMISSIONS_CHANGED = JitsiConferenceEvents.VIDEO_UNMUTE_PERMISSIONS_CHANGED;
  447. export const BOT_TYPE_CHANGED = JitsiConferenceEvents.BOT_TYPE_CHANGED;
  448. export const LOBBY_USER_JOINED = JitsiConferenceEvents.LOBBY_USER_JOINED;
  449. export const LOBBY_USER_UPDATED = JitsiConferenceEvents.LOBBY_USER_UPDATED;
  450. export const LOBBY_USER_LEFT = JitsiConferenceEvents.LOBBY_USER_LEFT;
  451. export const AV_MODERATION_APPROVED = JitsiConferenceEvents.AV_MODERATION_APPROVED;
  452. export const AV_MODERATION_REJECTED = JitsiConferenceEvents.AV_MODERATION_REJECTED;
  453. export const AV_MODERATION_CHANGED = JitsiConferenceEvents.AV_MODERATION_CHANGED;
  454. export const AV_MODERATION_PARTICIPANT_APPROVED = JitsiConferenceEvents.AV_MODERATION_PARTICIPANT_APPROVED;
  455. export const AV_MODERATION_PARTICIPANT_REJECTED = JitsiConferenceEvents.AV_MODERATION_PARTICIPANT_REJECTED;
  456. export const FACIAL_EXPRESSION_ADDED = JitsiConferenceEvents.FACIAL_EXPRESSION_ADDED;
  457. export const BREAKOUT_ROOMS_MOVE_TO_ROOM = JitsiConferenceEvents.BREAKOUT_ROOMS_MOVE_TO_ROOM;
  458. export const BREAKOUT_ROOMS_UPDATED = JitsiConferenceEvents.BREAKOUT_ROOMS_UPDATED;