@webex/web-client-media-engine 2.0.2 → 2.0.3

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.
@@ -74,6 +74,16 @@ declare type StreamSignalingMode = 'MID-RID' | 'SSRC';
74
74
 
75
75
  declare type BundlePolicy = 'max-bundle' | 'max-compat';
76
76
 
77
+ declare class StreamRequest {
78
+ policy: Policy;
79
+ policySpecificInfo: PolicySpecificInfo;
80
+ receiveSlots: ReceiveSlot$1[];
81
+ maxPayloadBitsPerSecond: number;
82
+ codecInfos: CodecInfo[];
83
+ constructor(policy: Policy, policySpecificInfo: PolicySpecificInfo, receiveSlots: ReceiveSlot$1[], maxPayloadBitsPerSecond: number, codecInfos?: CodecInfo[]);
84
+ _toJmpStreamRequest(): StreamRequest$1;
85
+ }
86
+
77
87
  declare abstract class Transceiver {
78
88
  protected _rtcRtpTransceiver: RTCRtpTransceiver;
79
89
  constructor(rtcRtpTransceiver: RTCRtpTransceiver);
@@ -127,16 +137,6 @@ interface TransceiverStats {
127
137
  };
128
138
  }
129
139
 
130
- declare class StreamRequest {
131
- policy: Policy;
132
- policySpecificInfo: PolicySpecificInfo;
133
- receiveSlots: ReceiveSlot$1[];
134
- maxPayloadBitsPerSecond: number;
135
- codecInfos: CodecInfo[];
136
- constructor(policy: Policy, policySpecificInfo: PolicySpecificInfo, receiveSlots: ReceiveSlot$1[], maxPayloadBitsPerSecond: number, codecInfos?: CodecInfo[]);
137
- _toJmpStreamRequest(): StreamRequest$1;
138
- }
139
-
140
140
  declare type MetricsCallback = (logData: LogData) => void;
141
141
 
142
142
  declare enum MultistreamConnectionEventNames {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/web-client-media-engine",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
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",