@webex/web-client-media-engine 3.30.2 → 3.30.4
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 +29 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +29 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -288,6 +288,7 @@ type MultistreamConnectionOptions = {
|
|
|
288
288
|
disableContentSimulcast: boolean;
|
|
289
289
|
disableAudioTwcc: boolean;
|
|
290
290
|
doFullIce: boolean;
|
|
291
|
+
stopIceGatheringAfterFirstRelayCandidate: boolean;
|
|
291
292
|
metricsCallback: LoggerCallback;
|
|
292
293
|
};
|
|
293
294
|
declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEvents> {
|
|
@@ -306,7 +307,11 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
306
307
|
private midPredictor;
|
|
307
308
|
private offerAnswerQueue;
|
|
308
309
|
private currentCreateOfferId;
|
|
310
|
+
private iceCandidates;
|
|
309
311
|
private setAnswerResolve?;
|
|
312
|
+
metadata: {
|
|
313
|
+
isMediaBypassEdge: boolean;
|
|
314
|
+
};
|
|
310
315
|
constructor(userOptions?: Partial<MultistreamConnectionOptions>);
|
|
311
316
|
private initializePeerConnection;
|
|
312
317
|
private propagatePeerConnectionEvents;
|
package/package.json
CHANGED