@webex/web-client-media-engine 3.22.0 → 3.22.1

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.
@@ -78,7 +78,7 @@ declare class ReceiveSlot extends EventEmitter<ReceiverEvents> {
78
78
  static Events: typeof ReceiveSlotEvents;
79
79
  private _idGetter;
80
80
  private _stream;
81
- private _sourceState;
81
+ private _sourceState?;
82
82
  private _currentRxCsi?;
83
83
  constructor(idGetter: () => ReceiveSlotId | null, track: MediaStreamTrack);
84
84
  private handleStreamMediaStateChange;
@@ -89,6 +89,7 @@ declare class ReceiveSlot extends EventEmitter<ReceiverEvents> {
89
89
  get id(): ReceiveSlotId | null;
90
90
  get stream(): MediaStream;
91
91
  get currentRxCsi(): number | undefined;
92
+ get sourceState(): StreamState | undefined;
92
93
  }
93
94
 
94
95
  declare class EgressSdpMunger {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/web-client-media-engine",
3
- "version": "3.22.0",
3
+ "version": "3.22.1",
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",