From a575a591c1615d29272b348395f7021b5e465612 Mon Sep 17 00:00:00 2001 From: Alessandro Toppi Date: Tue, 17 Jan 2023 17:11:12 +0100 Subject: [PATCH] videoroom: add configured event --- src/plugins/videoroom-plugin.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/plugins/videoroom-plugin.js b/src/plugins/videoroom-plugin.js index 83448da..3eda329 100644 --- a/src/plugins/videoroom-plugin.js +++ b/src/plugins/videoroom-plugin.js @@ -1498,6 +1498,14 @@ export default { */ VIDEOROOM_DISPLAY: PLUGIN_EVENT.DISPLAY, + /** + * A handle received a configured event. + * + * @event module:videoroom-plugin~VideoRoomHandle#event:VIDEOROOM_CONFIGURED + * @type {module:videoroom-plugin~VIDEOROOM_EVENT_CONFIGURED} + */ + VIDEOROOM_CONFIGURED: PLUGIN_EVENT.CONFIGURED, + /** * A handle received a slow link notification. * @@ -1565,7 +1573,7 @@ export default { * @event module:videoroom-plugin~VideoRoomHandle#event:VIDEOROOM_UPDATED * @type {object} * @property {number|string} room - The involved room - * @param {RTCSessionDescription} [params.jsep] - The updated JSEP offer + * @param {RTCSessionDescription} [jsep] - The updated JSEP offer * @param {object[]} streams - List of the streams in this subscription */ VIDEOROOM_UPDATED: PLUGIN_EVENT.UPDATED,