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

JitsiConferenceEvents.ts 21KB

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