@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.
- package/dist/cjs/index.js +30 -8
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +30 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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