You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JitsiConferenceEvents.ts 22KB

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