@webex/web-client-media-engine 3.30.1 → 3.30.3

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.
@@ -80,6 +80,7 @@ declare class ReceiveSlot extends EventEmitter<ReceiverEvents> {
80
80
  private _stream;
81
81
  private _sourceState?;
82
82
  private _currentRxCsi?;
83
+ _isRequested: boolean;
83
84
  constructor(idGetter: () => ReceiveSlotId | null, track: MediaStreamTrack);
84
85
  private handleStreamMediaStateChange;
85
86
  private handleStreamEnded;
@@ -287,6 +288,7 @@ type MultistreamConnectionOptions = {
287
288
  disableContentSimulcast: boolean;
288
289
  disableAudioTwcc: boolean;
289
290
  doFullIce: boolean;
291
+ stopIceGatheringAfterFirstRelayCandidate: boolean;
290
292
  metricsCallback: LoggerCallback;
291
293
  };
292
294
  declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEvents> {
@@ -305,6 +307,7 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
305
307
  private midPredictor;
306
308
  private offerAnswerQueue;
307
309
  private currentCreateOfferId;
310
+ private iceCandidates;
308
311
  private setAnswerResolve?;
309
312
  constructor(userOptions?: Partial<MultistreamConnectionOptions>);
310
313
  private initializePeerConnection;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/web-client-media-engine",
3
- "version": "3.30.1",
3
+ "version": "3.30.3",
4
4
  "description": "Web Client Media Engine is common web code for interacting with the multistream media server.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/cjs/index.js",