您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

JitsiConferenceEvents.ts 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  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. * The forwarded sources set is changed.
  133. *
  134. * @param {Array<string>} leavingForwardedSources the sourceNames of all the tracks which are leaving forwarded
  135. * sources
  136. * @param {Array<string>} enteringForwardedSources the sourceNames of all the tracks which are entering forwarded
  137. * sources
  138. */
  139. FORWARDED_SOURCES_CHANGED = 'conference.forwardedSourcesChanged',
  140. /**
  141. * Indicates that the room has been locked or unlocked.
  142. */
  143. LOCK_STATE_CHANGED = 'conference.lock_state_changed',
  144. /**
  145. * Indicates that the region of the media server (jitsi-videobridge) that we
  146. * are connected to changed (or was initially set).
  147. * @type {string} the region.
  148. */
  149. SERVER_REGION_CHANGED = 'conference.server_region_changed',
  150. /**
  151. * An event(library-private) fired when a new media session is added to the conference.
  152. * @type {string}
  153. * @private
  154. */
  155. _MEDIA_SESSION_STARTED = 'conference.media_session.started',
  156. /**
  157. * An event(library-private) fired when the conference switches the currently active media session.
  158. * @type {string}
  159. * @private
  160. */
  161. _MEDIA_SESSION_ACTIVE_CHANGED = 'conference.media_session.active_changed',
  162. /**
  163. * Indicates that the conference had changed to members only enabled/disabled.
  164. * The first argument of this event is a <tt>boolean</tt> which when set to
  165. * <tt>true</tt> means that the conference is running in members only mode.
  166. * You may need to use Lobby if supported to ask for permissions to enter the conference.
  167. */
  168. MEMBERS_ONLY_CHANGED = 'conference.membersOnlyChanged',
  169. /**
  170. * New text message was received.
  171. */
  172. MESSAGE_RECEIVED = 'conference.messageReceived',
  173. /**
  174. * Event indicates that the current selected input device has no signal
  175. */
  176. NO_AUDIO_INPUT = 'conference.no_audio_input',
  177. /**
  178. * Event indicates that the current microphone used by the conference is noisy.
  179. */
  180. NOISY_MIC = 'conference.noisy_mic',
  181. /**
  182. * Indicates that a message from the local user or from the Prosody backend
  183. * was received on the data channel.
  184. */
  185. NON_PARTICIPANT_MESSAGE_RECEIVED = 'conference.non_participant_message_received',
  186. /**
  187. * New private text message was received.
  188. */
  189. PRIVATE_MESSAGE_RECEIVED = 'conference.privateMessageReceived',
  190. /**
  191. * Event fired when JVB sends notification about interrupted/restored user's
  192. * ICE connection status or we detect local problem with the video track.
  193. * First argument is the ID of the participant and
  194. * the seconds is a string indicating if the connection is currently
  195. * - active - the connection is active
  196. * - inactive - the connection is inactive, was intentionally interrupted by
  197. * the bridge
  198. * - interrupted - a network problem occurred
  199. * - restoring - the connection was inactive and is restoring now
  200. *
  201. * The current status value can be obtained by calling
  202. * JitsiParticipant.getConnectionStatus().
  203. */
  204. PARTICIPANT_CONN_STATUS_CHANGED = 'conference.participant_conn_status_changed',
  205. /**
  206. * Indicates that the features of the participant has been changed.
  207. * TODO: there is a spelling mistake in this event name and associated constants
  208. */
  209. PARTCIPANT_FEATURES_CHANGED = 'conference.partcipant_features_changed',
  210. /**
  211. * Indicates that a the value of a specific property of a specific participant
  212. * has changed.
  213. */
  214. PARTICIPANT_PROPERTY_CHANGED = 'conference.participant_property_changed',
  215. /**
  216. * Indicates that the conference has switched between JVB and P2P connections.
  217. * The first argument of this event is a <tt>boolean</tt> which when set to
  218. * <tt>true</tt> means that the conference is running on the P2P connection.
  219. */
  220. P2P_STATUS = 'conference.p2pStatus',
  221. /**
  222. * Indicates that phone number changed.
  223. */
  224. PHONE_NUMBER_CHANGED = 'conference.phoneNumberChanged',
  225. /**
  226. * The conference properties changed.
  227. * @type {string}
  228. */
  229. PROPERTIES_CHANGED = 'conference.propertiesChanged',
  230. /**
  231. * Indicates that recording state changed.
  232. */
  233. RECORDER_STATE_CHANGED = 'conference.recorderStateChanged',
  234. /**
  235. * Indicates that video SIP GW state changed.
  236. * @param {VideoSIPGWConstants} status.
  237. */
  238. VIDEO_SIP_GW_AVAILABILITY_CHANGED = 'conference.videoSIPGWAvailabilityChanged',
  239. /**
  240. * Indicates that video SIP GW Session state changed.
  241. * @param {options} event - {
  242. * {string} address,
  243. * {VideoSIPGWConstants} oldState,
  244. * {VideoSIPGWConstants} newState,
  245. * {string} displayName}
  246. * }.
  247. */
  248. VIDEO_SIP_GW_SESSION_STATE_CHANGED = 'conference.videoSIPGWSessionStateChanged',
  249. /**
  250. * Indicates that start muted settings changed.
  251. */
  252. START_MUTED_POLICY_CHANGED = 'conference.start_muted_policy_changed',
  253. /**
  254. * Indicates that the local user has started muted.
  255. */
  256. STARTED_MUTED = 'conference.started_muted',
  257. /**
  258. * Indicates that subject of the conference has changed.
  259. */
  260. SUBJECT_CHANGED = 'conference.subjectChanged',
  261. /**
  262. * Indicates that DTMF support changed.
  263. */
  264. SUSPEND_DETECTED = 'conference.suspendDetected',
  265. /**
  266. * Event indicates that local user is talking while he muted himself
  267. */
  268. TALK_WHILE_MUTED = 'conference.talk_while_muted',
  269. /**
  270. * A new media track was added to the conference. The event provides the
  271. * following parameters to its listeners:
  272. *
  273. * @param {JitsiTrack} track the added JitsiTrack
  274. */
  275. TRACK_ADDED = 'conference.trackAdded',
  276. /**
  277. * Audio levels of a media track ( attached to the conference) was changed.
  278. */
  279. TRACK_AUDIO_LEVEL_CHANGED = 'conference.audioLevelsChanged',
  280. /**
  281. * A media track ( attached to the conference) mute status was changed.
  282. * @param {JitsiParticipant|null} the participant that initiated the mute
  283. * if it is a remote mute.
  284. */
  285. TRACK_MUTE_CHANGED = 'conference.trackMuteChanged',
  286. /**
  287. * The media track was removed from the conference. The event provides the
  288. * following parameters to its listeners:
  289. *
  290. * @param {JitsiTrack} track the removed JitsiTrack
  291. */
  292. TRACK_REMOVED = 'conference.trackRemoved',
  293. /**
  294. * The source-add for unmuting of a media track was rejected by Jicofo.
  295. *
  296. */
  297. TRACK_UNMUTE_REJECTED = 'conference.trackUnmuteRejected',
  298. /**
  299. * Notifies for transcription status changes. The event provides the
  300. * following parameters to its listeners:
  301. *
  302. * @param {String} status - The new status.
  303. */
  304. TRANSCRIPTION_STATUS_CHANGED = 'conference.transcriptionStatusChanged',
  305. /**
  306. * A new user joined the conference.
  307. */
  308. USER_JOINED = 'conference.userJoined',
  309. /**
  310. * A user has left the conference.
  311. */
  312. USER_LEFT = 'conference.userLeft',
  313. /**
  314. * User role changed.
  315. */
  316. USER_ROLE_CHANGED = 'conference.roleChanged',
  317. /**
  318. * User status changed.
  319. */
  320. USER_STATUS_CHANGED = 'conference.statusChanged',
  321. /**
  322. * Event indicates that the permission for unmuting video has changed based on the number of video senders in the call
  323. * and the video sender limit configured in Jicofo.
  324. */
  325. VIDEO_UNMUTE_PERMISSIONS_CHANGED = 'conference.video_unmute_permissions_changed',
  326. /**
  327. * Event indicates that the bot participant type changed.
  328. */
  329. BOT_TYPE_CHANGED = 'conference.bot_type_changed',
  330. /**
  331. * A new user joined the lobby room.
  332. */
  333. LOBBY_USER_JOINED = 'conference.lobby.userJoined',
  334. /**
  335. * A user from the lobby room has been update.
  336. */
  337. LOBBY_USER_UPDATED = 'conference.lobby.userUpdated',
  338. /**
  339. * A user left the lobby room.
  340. */
  341. LOBBY_USER_LEFT = 'conference.lobby.userLeft',
  342. /**
  343. * The local participant was approved to be able to unmute.
  344. * @param {options} event - {
  345. * {MediaType} mediaType
  346. * }.
  347. */
  348. AV_MODERATION_APPROVED = 'conference.av_moderation.approved',
  349. /**
  350. * The local participant was blocked to be able to unmute.
  351. * @param {options} event - {
  352. * {MediaType} mediaType
  353. * }.
  354. */
  355. AV_MODERATION_REJECTED = 'conference.av_moderation.rejected',
  356. /**
  357. * AV Moderation was enabled/disabled. The actor is the participant that is currently in the meeting,
  358. * or undefined if that participant has left the meeting.
  359. *
  360. * @param {options} event - {
  361. * {boolean} enabled,
  362. * {MediaType} mediaType,
  363. * {JitsiParticipant} actor
  364. * }.
  365. */
  366. AV_MODERATION_CHANGED = 'conference.av_moderation.changed',
  367. /**
  368. * AV Moderation, report for user being approved to unmute.
  369. * @param {options} event - {
  370. * {JitsiParticipant} participant,
  371. * {MediaType} mediaType
  372. * }.
  373. */
  374. AV_MODERATION_PARTICIPANT_APPROVED = 'conference.av_moderation.participant.approved',
  375. /**
  376. * AV Moderation, report for user being blocked to unmute.
  377. * @param {options} event - {
  378. * {JitsiParticipant} participant,
  379. * {MediaType} mediaType
  380. * }.
  381. */
  382. AV_MODERATION_PARTICIPANT_REJECTED = 'conference.av_moderation.participant.rejected',
  383. /**
  384. * A new facial expression is added with its duration for a participant
  385. */
  386. FACIAL_EXPRESSION_ADDED = 'conference.facial_expression.added',
  387. /**
  388. * Event fired when a participant is requested to join a given (breakout) room.
  389. */
  390. BREAKOUT_ROOMS_MOVE_TO_ROOM = 'conference.breakout-rooms.move-to-room',
  391. /**
  392. * Event fired when the breakout rooms data was updated.
  393. */
  394. BREAKOUT_ROOMS_UPDATED = 'conference.breakout-rooms.updated'
  395. };
  396. // exported for backward compatibility
  397. export const AUDIO_INPUT_STATE_CHANGE = JitsiConferenceEvents.AUDIO_INPUT_STATE_CHANGE;
  398. export const AUDIO_UNMUTE_PERMISSIONS_CHANGED = JitsiConferenceEvents.AUDIO_UNMUTE_PERMISSIONS_CHANGED;
  399. export const AUTH_STATUS_CHANGED = JitsiConferenceEvents.AUTH_STATUS_CHANGED;
  400. export const BEFORE_STATISTICS_DISPOSED = JitsiConferenceEvents.BEFORE_STATISTICS_DISPOSED;
  401. export const CONFERENCE_ERROR = JitsiConferenceEvents.CONFERENCE_ERROR;
  402. export const CONFERENCE_FAILED = JitsiConferenceEvents.CONFERENCE_FAILED;
  403. export const CONFERENCE_JOIN_IN_PROGRESS = JitsiConferenceEvents.CONFERENCE_JOIN_IN_PROGRESS;
  404. export const CONFERENCE_JOINED = JitsiConferenceEvents.CONFERENCE_JOINED;
  405. export const CONFERENCE_LEFT = JitsiConferenceEvents.CONFERENCE_LEFT;
  406. export const CONFERENCE_UNIQUE_ID_SET = JitsiConferenceEvents.CONFERENCE_UNIQUE_ID_SET;
  407. export const CONNECTION_ESTABLISHED = JitsiConferenceEvents.CONNECTION_ESTABLISHED;
  408. export const CONNECTION_INTERRUPTED = JitsiConferenceEvents.CONNECTION_INTERRUPTED;
  409. export const CONNECTION_RESTORED = JitsiConferenceEvents.CONNECTION_RESTORED;
  410. export const DATA_CHANNEL_OPENED = JitsiConferenceEvents.DATA_CHANNEL_OPENED;
  411. export const DISPLAY_NAME_CHANGED = JitsiConferenceEvents.DISPLAY_NAME_CHANGED;
  412. export const DOMINANT_SPEAKER_CHANGED = JitsiConferenceEvents.DOMINANT_SPEAKER_CHANGED;
  413. export const CONFERENCE_CREATED_TIMESTAMP = JitsiConferenceEvents.CONFERENCE_CREATED_TIMESTAMP;
  414. export const DTMF_SUPPORT_CHANGED = JitsiConferenceEvents.DTMF_SUPPORT_CHANGED;
  415. export const ENDPOINT_MESSAGE_RECEIVED = JitsiConferenceEvents.ENDPOINT_MESSAGE_RECEIVED;
  416. export const ENDPOINT_STATS_RECEIVED = JitsiConferenceEvents.ENDPOINT_STATS_RECEIVED;
  417. export const JVB121_STATUS = JitsiConferenceEvents.JVB121_STATUS;
  418. export const KICKED = JitsiConferenceEvents.KICKED;
  419. export const PARTICIPANT_KICKED = JitsiConferenceEvents.PARTICIPANT_KICKED;
  420. export const LAST_N_ENDPOINTS_CHANGED = JitsiConferenceEvents.LAST_N_ENDPOINTS_CHANGED;
  421. export const FORWARDED_SOURCES_CHANGED = JitsiConferenceEvents.FORWARDED_SOURCES_CHANGED;
  422. export const LOCK_STATE_CHANGED = JitsiConferenceEvents.LOCK_STATE_CHANGED;
  423. export const SERVER_REGION_CHANGED = JitsiConferenceEvents.SERVER_REGION_CHANGED;
  424. export const _MEDIA_SESSION_STARTED = JitsiConferenceEvents._MEDIA_SESSION_STARTED;
  425. export const _MEDIA_SESSION_ACTIVE_CHANGED = JitsiConferenceEvents._MEDIA_SESSION_ACTIVE_CHANGED;
  426. export const MEMBERS_ONLY_CHANGED = JitsiConferenceEvents.MEMBERS_ONLY_CHANGED;
  427. export const MESSAGE_RECEIVED = JitsiConferenceEvents.MESSAGE_RECEIVED;
  428. export const NO_AUDIO_INPUT = JitsiConferenceEvents.NO_AUDIO_INPUT;
  429. export const NOISY_MIC = JitsiConferenceEvents.NOISY_MIC;
  430. export const NON_PARTICIPANT_MESSAGE_RECEIVED = JitsiConferenceEvents.NON_PARTICIPANT_MESSAGE_RECEIVED;
  431. export const PRIVATE_MESSAGE_RECEIVED = JitsiConferenceEvents.PRIVATE_MESSAGE_RECEIVED;
  432. export const PARTICIPANT_CONN_STATUS_CHANGED = JitsiConferenceEvents.PARTICIPANT_CONN_STATUS_CHANGED;
  433. export const PARTCIPANT_FEATURES_CHANGED = JitsiConferenceEvents.PARTCIPANT_FEATURES_CHANGED;
  434. export const PARTICIPANT_PROPERTY_CHANGED = JitsiConferenceEvents.PARTICIPANT_PROPERTY_CHANGED;
  435. export const P2P_STATUS = JitsiConferenceEvents.P2P_STATUS;
  436. export const PHONE_NUMBER_CHANGED = JitsiConferenceEvents.PHONE_NUMBER_CHANGED;
  437. export const PROPERTIES_CHANGED = JitsiConferenceEvents.PROPERTIES_CHANGED;
  438. export const RECORDER_STATE_CHANGED = JitsiConferenceEvents.RECORDER_STATE_CHANGED;
  439. export const VIDEO_SIP_GW_AVAILABILITY_CHANGED = JitsiConferenceEvents.VIDEO_SIP_GW_AVAILABILITY_CHANGED;
  440. export const VIDEO_SIP_GW_SESSION_STATE_CHANGED = JitsiConferenceEvents.VIDEO_SIP_GW_SESSION_STATE_CHANGED;
  441. export const START_MUTED_POLICY_CHANGED = JitsiConferenceEvents.START_MUTED_POLICY_CHANGED;
  442. export const STARTED_MUTED = JitsiConferenceEvents.STARTED_MUTED;
  443. export const SUBJECT_CHANGED = JitsiConferenceEvents.SUBJECT_CHANGED;
  444. export const SUSPEND_DETECTED = JitsiConferenceEvents.SUSPEND_DETECTED;
  445. export const TALK_WHILE_MUTED = JitsiConferenceEvents.TALK_WHILE_MUTED;
  446. export const TRACK_ADDED = JitsiConferenceEvents.TRACK_ADDED;
  447. export const TRACK_AUDIO_LEVEL_CHANGED = JitsiConferenceEvents.TRACK_AUDIO_LEVEL_CHANGED;
  448. export const TRACK_MUTE_CHANGED = JitsiConferenceEvents.TRACK_MUTE_CHANGED;
  449. export const TRACK_REMOVED = JitsiConferenceEvents.TRACK_REMOVED;
  450. export const TRACK_UNMUTE_REJECTED = JitsiConferenceEvents.TRACK_UNMUTE_REJECTED;
  451. export const TRANSCRIPTION_STATUS_CHANGED = JitsiConferenceEvents.TRANSCRIPTION_STATUS_CHANGED;
  452. export const USER_JOINED = JitsiConferenceEvents.USER_JOINED;
  453. export const USER_LEFT = JitsiConferenceEvents.USER_LEFT;
  454. export const USER_ROLE_CHANGED = JitsiConferenceEvents.USER_ROLE_CHANGED;
  455. export const USER_STATUS_CHANGED = JitsiConferenceEvents.USER_STATUS_CHANGED;
  456. export const VIDEO_UNMUTE_PERMISSIONS_CHANGED = JitsiConferenceEvents.VIDEO_UNMUTE_PERMISSIONS_CHANGED;
  457. export const BOT_TYPE_CHANGED = JitsiConferenceEvents.BOT_TYPE_CHANGED;
  458. export const LOBBY_USER_JOINED = JitsiConferenceEvents.LOBBY_USER_JOINED;
  459. export const LOBBY_USER_UPDATED = JitsiConferenceEvents.LOBBY_USER_UPDATED;
  460. export const LOBBY_USER_LEFT = JitsiConferenceEvents.LOBBY_USER_LEFT;
  461. export const AV_MODERATION_APPROVED = JitsiConferenceEvents.AV_MODERATION_APPROVED;
  462. export const AV_MODERATION_REJECTED = JitsiConferenceEvents.AV_MODERATION_REJECTED;
  463. export const AV_MODERATION_CHANGED = JitsiConferenceEvents.AV_MODERATION_CHANGED;
  464. export const AV_MODERATION_PARTICIPANT_APPROVED = JitsiConferenceEvents.AV_MODERATION_PARTICIPANT_APPROVED;
  465. export const AV_MODERATION_PARTICIPANT_REJECTED = JitsiConferenceEvents.AV_MODERATION_PARTICIPANT_REJECTED;
  466. export const FACIAL_EXPRESSION_ADDED = JitsiConferenceEvents.FACIAL_EXPRESSION_ADDED;
  467. export const BREAKOUT_ROOMS_MOVE_TO_ROOM = JitsiConferenceEvents.BREAKOUT_ROOMS_MOVE_TO_ROOM;
  468. export const BREAKOUT_ROOMS_UPDATED = JitsiConferenceEvents.BREAKOUT_ROOMS_UPDATED;