@webex/web-client-media-engine 1.38.3 → 1.39.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.
@@ -130,6 +130,8 @@ declare type MultistreamConnectionOptions = {
130
130
  bundlePolicy: BundlePolicy;
131
131
  iceServers: RTCIceServer[] | undefined;
132
132
  disableContentSimulcast: boolean;
133
+ enableMainAudio: boolean;
134
+ enableMainVideo: boolean;
133
135
  };
134
136
  declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEvents> {
135
137
  private pc;
@@ -198,6 +200,7 @@ declare abstract class Transceiver {
198
200
  declare class SendOnlyTransceiver extends Transceiver {
199
201
  publishedTrack?: LocalTrack;
200
202
  csi: number;
203
+ private direction;
201
204
  private requested;
202
205
  constructor(rtcpRtpTransceiver: RTCRtpTransceiver, csi: number);
203
206
  private handleTrackChange;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/web-client-media-engine",
3
- "version": "1.38.3",
3
+ "version": "1.39.0",
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",