@webex/web-client-media-engine 1.36.1 → 1.36.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 +9 -9
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +9 -9
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export { AudioDeviceConstraints, ConnectionState, LocalCameraTrack, LocalDisplay
|
|
|
3
3
|
import { StreamId, SourceState, Policy, PolicySpecificInfo, CodecInfo, JmpScrRequest, ActiveSpeakerNotificationMsg, MediaType, Source } from '@webex/json-multistream';
|
|
4
4
|
export { SourceState } from '@webex/json-multistream';
|
|
5
5
|
import TypedEmitter, { EventMap } from 'typed-emitter';
|
|
6
|
-
import {
|
|
6
|
+
import { LogData } from '@webex/rtcstats';
|
|
7
7
|
import * as js_logger from 'js-logger';
|
|
8
8
|
import { ILogLevel } from 'js-logger';
|
|
9
9
|
export { default as Logger } from 'js-logger';
|
|
@@ -166,7 +166,7 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
166
166
|
requestMedia(mediaType: MediaType, mediaRequests: MediaRequest[]): void;
|
|
167
167
|
renewPeerConnection(userOptions?: Partial<MultistreamConnectionOptions>): void;
|
|
168
168
|
private getReceiveSlotById;
|
|
169
|
-
getStats(): Promise<
|
|
169
|
+
getStats(): Promise<RTCStatsReport>;
|
|
170
170
|
getTransceiverStats(): Promise<TransceiverStats>;
|
|
171
171
|
private preProcessStats;
|
|
172
172
|
private attachMetricsObserver;
|
package/package.json
CHANGED