@abrar71/lib-jitsi-meet 2116.0.0 → 2117.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": "2116.0.0",
3
+ "version": "2117.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
@@ -12447,6 +12447,7 @@ declare module "modules/qualitycontrol/QualityController" {
12447
12447
  private _limitedByCpuTimeout;
12448
12448
  private _receiveVideoController;
12449
12449
  private _sendVideoController;
12450
+ private _timer;
12450
12451
  /**
12451
12452
  *
12452
12453
  * @param {JitsiConference} conference - The JitsiConference instance.
@@ -12525,6 +12526,11 @@ declare module "modules/qualitycontrol/QualityController" {
12525
12526
  * Gets the send video controller instance.
12526
12527
  */
12527
12528
  get sendVideoController(): SendVideoController;
12529
+ /**
12530
+ * Cleans up the QualityController by clearing all active timeouts and disposing of controllers.
12531
+ * This prevents memory leaks and ensures proper cleanup when the controller is no longer needed.
12532
+ */
12533
+ dispose(): void;
12528
12534
  }
12529
12535
  }
12530
12536
  declare module "modules/recording/RecordingManager" {
@@ -15190,7 +15196,7 @@ declare module "modules/webaudio/AudioMixer" {
15190
15196
  }
15191
15197
  }
15192
15198
  declare module "version" {
15193
- export const COMMIT_HASH = "40ad2744";
15199
+ export const COMMIT_HASH = "ef10c015";
15194
15200
  }
15195
15201
  declare module "JitsiMeetJS" {
15196
15202
  import JitsiConference, { IConferenceOptions } from "JitsiConference";