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 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  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 the permissions for the local participant were updated.
  274. */
  275. PERMISSIONS_RECEIVED = 'conference.permissions_received',
  276. /**
  277. * Indicates that phone number changed.
  278. */
  279. PHONE_NUMBER_CHANGED = 'conference.phoneNumberChanged',
  280. /**
  281. * New private text message was received.
  282. */
  283. PRIVATE_MESSAGE_RECEIVED = 'conference.privateMessageReceived',
  284. /**
  285. * The conference properties changed.
  286. * @type {string}
  287. */
  288. PROPERTIES_CHANGED = 'conference.propertiesChanged',
  289. /**
  290. * New reaction was received.
  291. */
  292. REACTION_RECEIVED = 'conference.reactionReceived',
  293. /**
  294. * Indicates that recording state changed.
  295. */
  296. RECORDER_STATE_CHANGED = 'conference.recorderStateChanged',
  297. /**
  298. * Indicates that the region of the media server (jitsi-videobridge) that we
  299. * are connected to changed (or was initially set).
  300. * @type {string} the region.
  301. */
  302. SERVER_REGION_CHANGED = 'conference.server_region_changed',
  303. /**
  304. * Indicates a user has joined without audio
  305. */
  306. SILENT_STATUS_CHANGED = 'conference.silentStatusChanged',
  307. /**
  308. * Indicates that the local user has started muted.
  309. */
  310. STARTED_MUTED = 'conference.started_muted',
  311. /**
  312. * Indicates that start muted settings changed.
  313. */
  314. START_MUTED_POLICY_CHANGED = 'conference.start_muted_policy_changed',
  315. /**
  316. * Indicates that subject of the conference has changed.
  317. */
  318. SUBJECT_CHANGED = 'conference.subjectChanged',
  319. /**
  320. * Indicates that DTMF support changed.
  321. */
  322. SUSPEND_DETECTED = 'conference.suspendDetected',
  323. /**
  324. * Event indicates that local user is talking while he muted himself
  325. */
  326. TALK_WHILE_MUTED = 'conference.talk_while_muted',
  327. /**
  328. * A new media track was added to the conference. The event provides the
  329. * following parameters to its listeners:
  330. *
  331. * @param {JitsiTrack} track the added JitsiTrack
  332. */
  333. TRACK_ADDED = 'conference.trackAdded',
  334. /**
  335. * Audio levels of a media track ( attached to the conference) was changed.
  336. */
  337. TRACK_AUDIO_LEVEL_CHANGED = 'conference.audioLevelsChanged',
  338. /**
  339. * A media track ( attached to the conference) mute status was changed.
  340. * @param {JitsiParticipant|null} the participant that initiated the mute
  341. * if it is a remote mute.
  342. */
  343. TRACK_MUTE_CHANGED = 'conference.trackMuteChanged',
  344. /**
  345. * The media track was removed from the conference. The event provides the
  346. * following parameters to its listeners:
  347. *
  348. * @param {JitsiTrack} track the removed JitsiTrack
  349. */
  350. TRACK_REMOVED = 'conference.trackRemoved',
  351. /**
  352. * The source-add for unmuting of a media track was rejected by Jicofo.
  353. *
  354. */
  355. TRACK_UNMUTE_REJECTED = 'conference.trackUnmuteRejected',
  356. /**
  357. * Notifies for transcription status changes. The event provides the
  358. * following parameters to its listeners:
  359. *
  360. * @param {String} status - The new status.
  361. */
  362. TRANSCRIPTION_STATUS_CHANGED = 'conference.transcriptionStatusChanged',
  363. /**
  364. * A new user joined the conference.
  365. */
  366. USER_JOINED = 'conference.userJoined',
  367. /**
  368. * A user has left the conference.
  369. */
  370. USER_LEFT = 'conference.userLeft',
  371. /**
  372. * User role changed.
  373. */
  374. USER_ROLE_CHANGED = 'conference.roleChanged',
  375. /**
  376. * User status changed.
  377. */
  378. USER_STATUS_CHANGED = 'conference.statusChanged',
  379. /**
  380. * Indicates that the video codec of the local video track has changed.
  381. */
  382. VIDEO_CODEC_CHANGED = 'conference.videoCodecChanged',
  383. /**
  384. * Indicates that video SIP GW state changed.
  385. * @param {VideoSIPGWConstants} status.
  386. */
  387. VIDEO_SIP_GW_AVAILABILITY_CHANGED = 'conference.videoSIPGWAvailabilityChanged',
  388. /**
  389. * Indicates that video SIP GW Session state changed.
  390. * @param {options} event - {
  391. * {string} address,
  392. * {VideoSIPGWConstants} oldState,
  393. * {VideoSIPGWConstants} newState,
  394. * {string} displayName
  395. * }.
  396. */
  397. VIDEO_SIP_GW_SESSION_STATE_CHANGED = 'conference.videoSIPGWSessionStateChanged',
  398. /**
  399. * Event indicates that the permission for unmuting video has changed based on the number of video senders in the
  400. * call and the video sender limit configured in Jicofo.
  401. */
  402. VIDEO_UNMUTE_PERMISSIONS_CHANGED = 'conference.video_unmute_permissions_changed',
  403. /**
  404. * Event indicating we have received a message from the visitors component.
  405. */
  406. VISITORS_MESSAGE = 'conference.visitors_message',
  407. /**
  408. * Event indicating that our request for promotion was rejected.
  409. */
  410. VISITORS_REJECTION = 'conference.visitors_rejection',
  411. /**
  412. * Indicates that the conference has support for visitors.
  413. */
  414. VISITORS_SUPPORTED_CHANGED = 'conference.visitorsSupported',
  415. /**
  416. * An event(library-private) fired when the conference switches the currently active media session.
  417. * @type {string}
  418. * @private
  419. */
  420. _MEDIA_SESSION_ACTIVE_CHANGED = 'conference.media_session.active_changed',
  421. /**
  422. * An event(library-private) fired when a new media session is added to the conference.
  423. * @type {string}
  424. * @private
  425. */
  426. _MEDIA_SESSION_STARTED = 'conference.media_session.started'
  427. }
  428. // exported for backward compatibility
  429. export const _MEDIA_SESSION_STARTED = JitsiConferenceEvents._MEDIA_SESSION_STARTED;
  430. export const _MEDIA_SESSION_ACTIVE_CHANGED = JitsiConferenceEvents._MEDIA_SESSION_ACTIVE_CHANGED;
  431. export const AUDIO_INPUT_STATE_CHANGE = JitsiConferenceEvents.AUDIO_INPUT_STATE_CHANGE;
  432. export const AUDIO_UNMUTE_PERMISSIONS_CHANGED = JitsiConferenceEvents.AUDIO_UNMUTE_PERMISSIONS_CHANGED;
  433. export const AUTH_STATUS_CHANGED = JitsiConferenceEvents.AUTH_STATUS_CHANGED;
  434. export const AV_MODERATION_APPROVED = JitsiConferenceEvents.AV_MODERATION_APPROVED;
  435. export const AV_MODERATION_CHANGED = JitsiConferenceEvents.AV_MODERATION_CHANGED;
  436. export const AV_MODERATION_PARTICIPANT_APPROVED = JitsiConferenceEvents.AV_MODERATION_PARTICIPANT_APPROVED;
  437. export const AV_MODERATION_PARTICIPANT_REJECTED = JitsiConferenceEvents.AV_MODERATION_PARTICIPANT_REJECTED;
  438. export const AV_MODERATION_REJECTED = JitsiConferenceEvents.AV_MODERATION_REJECTED;
  439. export const BEFORE_STATISTICS_DISPOSED = JitsiConferenceEvents.BEFORE_STATISTICS_DISPOSED;
  440. export const BOT_TYPE_CHANGED = JitsiConferenceEvents.BOT_TYPE_CHANGED;
  441. export const BREAKOUT_ROOMS_MOVE_TO_ROOM = JitsiConferenceEvents.BREAKOUT_ROOMS_MOVE_TO_ROOM;
  442. export const BREAKOUT_ROOMS_UPDATED = JitsiConferenceEvents.BREAKOUT_ROOMS_UPDATED;
  443. export const CONFERENCE_CREATED_TIMESTAMP = JitsiConferenceEvents.CONFERENCE_CREATED_TIMESTAMP;
  444. export const CONFERENCE_ERROR = JitsiConferenceEvents.CONFERENCE_ERROR;
  445. export const CONFERENCE_FAILED = JitsiConferenceEvents.CONFERENCE_FAILED;
  446. export const CONFERENCE_JOIN_IN_PROGRESS = JitsiConferenceEvents.CONFERENCE_JOIN_IN_PROGRESS;
  447. export const CONFERENCE_JOINED = JitsiConferenceEvents.CONFERENCE_JOINED;
  448. export const CONFERENCE_LEFT = JitsiConferenceEvents.CONFERENCE_LEFT;
  449. export const CONFERENCE_UNIQUE_ID_SET = JitsiConferenceEvents.CONFERENCE_UNIQUE_ID_SET;
  450. export const CONFERENCE_VISITOR_CODECS_CHANGED = JitsiConferenceEvents.CONFERENCE_VISITOR_CODECS_CHANGED;
  451. export const CONNECTION_ESTABLISHED = JitsiConferenceEvents.CONNECTION_ESTABLISHED;
  452. export const CONNECTION_INTERRUPTED = JitsiConferenceEvents.CONNECTION_INTERRUPTED;
  453. export const CONNECTION_RESTORED = JitsiConferenceEvents.CONNECTION_RESTORED;
  454. export const DATA_CHANNEL_CLOSED = JitsiConferenceEvents.DATA_CHANNEL_CLOSED;
  455. export const DATA_CHANNEL_OPENED = JitsiConferenceEvents.DATA_CHANNEL_OPENED;
  456. export const DISPLAY_NAME_CHANGED = JitsiConferenceEvents.DISPLAY_NAME_CHANGED;
  457. export const DOMINANT_SPEAKER_CHANGED = JitsiConferenceEvents.DOMINANT_SPEAKER_CHANGED;
  458. export const DTMF_SUPPORT_CHANGED = JitsiConferenceEvents.DTMF_SUPPORT_CHANGED;
  459. export const E2EE_VERIFICATION_AVAILABLE = JitsiConferenceEvents.E2EE_VERIFICATION_AVAILABLE;
  460. export const E2EE_VERIFICATION_COMPLETED = JitsiConferenceEvents.E2EE_VERIFICATION_COMPLETED;
  461. export const E2EE_VERIFICATION_READY = JitsiConferenceEvents.E2EE_VERIFICATION_READY;
  462. export const ENCODE_TIME_STATS_RECEIVED = JitsiConferenceEvents.ENCODE_TIME_STATS_RECEIVED;
  463. export const ENDPOINT_MESSAGE_RECEIVED = JitsiConferenceEvents.ENDPOINT_MESSAGE_RECEIVED;
  464. export const ENDPOINT_STATS_RECEIVED = JitsiConferenceEvents.ENDPOINT_STATS_RECEIVED;
  465. export const FORWARDED_SOURCES_CHANGED = JitsiConferenceEvents.FORWARDED_SOURCES_CHANGED;
  466. export const JVB121_STATUS = JitsiConferenceEvents.JVB121_STATUS;
  467. export const KICKED = JitsiConferenceEvents.KICKED;
  468. export const LAST_N_ENDPOINTS_CHANGED = JitsiConferenceEvents.LAST_N_ENDPOINTS_CHANGED;
  469. export const LOBBY_USER_JOINED = JitsiConferenceEvents.LOBBY_USER_JOINED;
  470. export const LOBBY_USER_LEFT = JitsiConferenceEvents.LOBBY_USER_LEFT;
  471. export const LOBBY_USER_UPDATED = JitsiConferenceEvents.LOBBY_USER_UPDATED;
  472. export const LOCK_STATE_CHANGED = JitsiConferenceEvents.LOCK_STATE_CHANGED;
  473. export const MEMBERS_ONLY_CHANGED = JitsiConferenceEvents.MEMBERS_ONLY_CHANGED;
  474. export const MESSAGE_RECEIVED = JitsiConferenceEvents.MESSAGE_RECEIVED;
  475. export const METADATA_UPDATED = JitsiConferenceEvents.METADATA_UPDATED;
  476. export const NO_AUDIO_INPUT = JitsiConferenceEvents.NO_AUDIO_INPUT;
  477. export const NOISY_MIC = JitsiConferenceEvents.NOISY_MIC;
  478. export const NON_PARTICIPANT_MESSAGE_RECEIVED = JitsiConferenceEvents.NON_PARTICIPANT_MESSAGE_RECEIVED;
  479. export const P2P_STATUS = JitsiConferenceEvents.P2P_STATUS;
  480. export const PARTICIPANT_KICKED = JitsiConferenceEvents.PARTICIPANT_KICKED;
  481. export const PARTICIPANT_SOURCE_UPDATED = JitsiConferenceEvents.PARTICIPANT_SOURCE_UPDATED;
  482. export const PERMISSIONS_RECEIVED = JitsiConferenceEvents.PERMISSIONS_RECEIVED;
  483. export const PRIVATE_MESSAGE_RECEIVED = JitsiConferenceEvents.PRIVATE_MESSAGE_RECEIVED;
  484. export const PARTCIPANT_FEATURES_CHANGED = JitsiConferenceEvents.PARTCIPANT_FEATURES_CHANGED;
  485. export const PARTICIPANT_PROPERTY_CHANGED = JitsiConferenceEvents.PARTICIPANT_PROPERTY_CHANGED;
  486. export const PHONE_NUMBER_CHANGED = JitsiConferenceEvents.PHONE_NUMBER_CHANGED;
  487. export const PROPERTIES_CHANGED = JitsiConferenceEvents.PROPERTIES_CHANGED;
  488. export const REACTION_RECEIVED = JitsiConferenceEvents.REACTION_RECEIVED;
  489. export const RECORDER_STATE_CHANGED = JitsiConferenceEvents.RECORDER_STATE_CHANGED;
  490. export const SERVER_REGION_CHANGED = JitsiConferenceEvents.SERVER_REGION_CHANGED;
  491. export const SILENT_STATUS_CHANGED = JitsiConferenceEvents.SILENT_STATUS_CHANGED;
  492. export const START_MUTED_POLICY_CHANGED = JitsiConferenceEvents.START_MUTED_POLICY_CHANGED;
  493. export const STARTED_MUTED = JitsiConferenceEvents.STARTED_MUTED;
  494. export const SUBJECT_CHANGED = JitsiConferenceEvents.SUBJECT_CHANGED;
  495. export const SUSPEND_DETECTED = JitsiConferenceEvents.SUSPEND_DETECTED;
  496. export const TALK_WHILE_MUTED = JitsiConferenceEvents.TALK_WHILE_MUTED;
  497. export const TRACK_ADDED = JitsiConferenceEvents.TRACK_ADDED;
  498. export const TRACK_AUDIO_LEVEL_CHANGED = JitsiConferenceEvents.TRACK_AUDIO_LEVEL_CHANGED;
  499. export const TRACK_MUTE_CHANGED = JitsiConferenceEvents.TRACK_MUTE_CHANGED;
  500. export const TRACK_REMOVED = JitsiConferenceEvents.TRACK_REMOVED;
  501. export const TRACK_UNMUTE_REJECTED = JitsiConferenceEvents.TRACK_UNMUTE_REJECTED;
  502. export const TRANSCRIPTION_STATUS_CHANGED = JitsiConferenceEvents.TRANSCRIPTION_STATUS_CHANGED;
  503. export const USER_JOINED = JitsiConferenceEvents.USER_JOINED;
  504. export const USER_LEFT = JitsiConferenceEvents.USER_LEFT;
  505. export const USER_ROLE_CHANGED = JitsiConferenceEvents.USER_ROLE_CHANGED;
  506. export const USER_STATUS_CHANGED = JitsiConferenceEvents.USER_STATUS_CHANGED;
  507. export const VIDEO_CODEC_CHANGED = JitsiConferenceEvents.VIDEO_CODEC_CHANGED;
  508. export const VIDEO_SIP_GW_AVAILABILITY_CHANGED = JitsiConferenceEvents.VIDEO_SIP_GW_AVAILABILITY_CHANGED;
  509. export const VIDEO_SIP_GW_SESSION_STATE_CHANGED = JitsiConferenceEvents.VIDEO_SIP_GW_SESSION_STATE_CHANGED;
  510. export const VIDEO_UNMUTE_PERMISSIONS_CHANGED = JitsiConferenceEvents.VIDEO_UNMUTE_PERMISSIONS_CHANGED;
  511. export const VISITORS_SUPPORTED_CHANGED = JitsiConferenceEvents.VISITORS_SUPPORTED_CHANGED;
  512. export const VISITORS_MESSAGE = JitsiConferenceEvents.VISITORS_MESSAGE;
  513. export const VISITORS_REJECTION = JitsiConferenceEvents.VISITORS_REJECTION;