@webex/web-client-media-engine 1.37.1 → 1.37.2
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 +39 -11
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +39 -11
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -141,7 +141,11 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
141
141
|
private overuseStateManager;
|
|
142
142
|
private overuseUpdateCallback;
|
|
143
143
|
private options;
|
|
144
|
+
private midMap;
|
|
145
|
+
private currentMid;
|
|
144
146
|
constructor(userOptions?: Partial<MultistreamConnectionOptions>);
|
|
147
|
+
protected addMid(mediaType: MediaType): void;
|
|
148
|
+
protected clearMids(): void;
|
|
145
149
|
private initializePeerConnection;
|
|
146
150
|
getConnectionState(): ConnectionState;
|
|
147
151
|
private getVideoEncodingOptions;
|
package/package.json
CHANGED