@abrar71/lib-jitsi-meet 2139.0.0 → 2140.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abrar71/lib-jitsi-meet",
3
- "version": "2139.0.0",
3
+ "version": "2140.0.0",
4
4
  "description": "JS library for accessing Jitsi server side deployments",
5
5
  "repository": {
6
6
  "type": "git",
package/types/index.d.ts CHANGED
@@ -2155,6 +2155,7 @@ declare module "service/xmpp/XMPPEvents" {
2155
2155
  MUC_MEMBER_LEFT = "xmpp.muc_member_left",
2156
2156
  MUC_ROLE_CHANGED = "xmpp.muc_role_changed",
2157
2157
  MUC_VISITORS_SUPPORTED_CHANGED = "xmpp.muc_visitors_supported_changed",
2158
+ P2P_TERMINATION_REQUIRED = "xmpp.p2p.termination_required",
2158
2159
  PARTICIPANT_AUDIO_MUTED = "xmpp.audio_muted",
2159
2160
  /**
2160
2161
  * Indicates that the features of the participant has been changed.
@@ -13884,6 +13885,15 @@ declare module "JitsiConference" {
13884
13885
  * @private
13885
13886
  */
13886
13887
  private _onIceConnectionFailed;
13888
+ /**
13889
+ * Handles P2P_TERMINATION_REQUIRED event. Fired when a source-remove is detected on a P2P connection, which
13890
+ * indicates that the browser has regenerated SSRCs for an existing source. The P2P session is stopped so the
13891
+ * call falls back to JVB.
13892
+ *
13893
+ * @param {JingleSessionPC} session - The P2P Jingle session.
13894
+ * @private
13895
+ */
13896
+ private _onP2PTerminationRequired;
13887
13897
  /**
13888
13898
  * Handles CONNECTION_RESTORED event.
13889
13899
  * @param {JingleSessionPC} session - The Jingle session.
@@ -15322,7 +15332,7 @@ declare module "modules/webaudio/AudioMixer" {
15322
15332
  }
15323
15333
  }
15324
15334
  declare module "version" {
15325
- export const COMMIT_HASH = "cd9f1169";
15335
+ export const COMMIT_HASH = "fe26afb0";
15326
15336
  }
15327
15337
  declare module "JitsiMeetJS" {
15328
15338
  import JitsiConference, { IConferenceOptions } from "JitsiConference";