@webex/web-client-media-engine 1.36.4 → 1.37.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.
package/dist/cjs/index.js CHANGED
@@ -8774,7 +8774,7 @@ function setMaxBandwidth(parsedSdp, maxBandwidth) {
8774
8774
  });
8775
8775
  }
8776
8776
  function setupBundle(parsedSdp, bundlePolicy) {
8777
- if (bundlePolicy === 'compat') {
8777
+ if (bundlePolicy === 'max-compat') {
8778
8778
  const audioMids = parsedSdp.avMedia
8779
8779
  .filter((m) => m.type === 'audio')
8780
8780
  .map((m) => m.mid);
@@ -9563,7 +9563,7 @@ const defaultMultistreamConnectionOptions = {
9563
9563
  floorControlledPresentation: false,
9564
9564
  disableSimulcast: false,
9565
9565
  streamSignalingMode: 'SSRC',
9566
- bundlePolicy: 'compat',
9566
+ bundlePolicy: 'max-compat',
9567
9567
  iceServers: undefined,
9568
9568
  };
9569
9569
  class MultistreamConnection extends EventEmitter {
package/dist/esm/index.js CHANGED
@@ -8770,7 +8770,7 @@ function setMaxBandwidth(parsedSdp, maxBandwidth) {
8770
8770
  });
8771
8771
  }
8772
8772
  function setupBundle(parsedSdp, bundlePolicy) {
8773
- if (bundlePolicy === 'compat') {
8773
+ if (bundlePolicy === 'max-compat') {
8774
8774
  const audioMids = parsedSdp.avMedia
8775
8775
  .filter((m) => m.type === 'audio')
8776
8776
  .map((m) => m.mid);
@@ -9559,7 +9559,7 @@ const defaultMultistreamConnectionOptions = {
9559
9559
  floorControlledPresentation: false,
9560
9560
  disableSimulcast: false,
9561
9561
  streamSignalingMode: 'SSRC',
9562
- bundlePolicy: 'compat',
9562
+ bundlePolicy: 'max-compat',
9563
9563
  iceServers: undefined,
9564
9564
  };
9565
9565
  class MultistreamConnection extends EventEmitter {
@@ -79,7 +79,7 @@ declare type OveruseUpdateCallback = (state: OveruseState) => void;
79
79
 
80
80
  declare type StreamSignalingMode = 'MID-RID' | 'SSRC';
81
81
 
82
- declare type BundlePolicy = 'max' | 'compat';
82
+ declare type BundlePolicy = 'max-bundle' | 'max-compat';
83
83
 
84
84
  interface TransceiverStatItem {
85
85
  report: RTCStatsReport;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/web-client-media-engine",
3
- "version": "1.36.4",
3
+ "version": "1.37.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",