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

JitsiConferenceEvents.ts 22KB

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