@webex/web-client-media-engine 3.23.1 → 3.23.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.
- package/dist/types/index.d.ts +4 -6
- package/package.json +4 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import { LocalStream, ConnectionState, ConnectionType, media } from '@webex/webr
|
|
|
2
2
|
export { AudioDeviceConstraints, ConnectionState, ConnectionType, LocalCameraStream, LocalDisplayStream, LocalMicrophoneStream, LocalStream, LocalStreamEventNames, LocalSystemAudioStream, MediaStreamTrackKind, PeerConnection, RemoteMediaState, RemoteStream, RemoteStreamEventNames, StreamEventNames, VideoContentHint, VideoDeviceConstraints, Logger as WebRtcCoreLogger, WebrtcCoreError, WebrtcCoreErrorType, createCameraStream, createDisplayStream, createDisplayStreamWithAudio, createMicrophoneStream, getAudioInputDevices, getAudioOutputDevices, getDevices, getVideoInputDevices, setOnDeviceChangeHandler } from '@webex/webrtc-core';
|
|
3
3
|
import { StreamId, StreamState, MediaContent, NamedMediaGroup, MediaType, Policy, PolicySpecificInfo, CodecInfo, StreamRequest as StreamRequest$1 } from '@webex/json-multistream';
|
|
4
4
|
export { ActiveSpeakerInfo, CodecInfo, H264Codec, Logger as JMPLogger, MediaContent, MediaFamily, MediaType, NamedMediaGroup, Policy, PolicySpecificInfo, ReceiverSelectedInfo, StreamState, getMediaContent, getMediaFamily, getMediaType } from '@webex/json-multistream';
|
|
5
|
-
import {
|
|
6
|
-
export { LogData } from '@webex/rtcstats';
|
|
5
|
+
import { LoggerCallback } from '@webex/rtcstats';
|
|
6
|
+
export { LogData, LoggerCallback as MetricsCallback } from '@webex/rtcstats';
|
|
7
7
|
import TypedEmitter, { EventMap } from 'typed-emitter';
|
|
8
8
|
import { TypedEvent } from '@webex/ts-events';
|
|
9
9
|
import { AvMediaDescription } from '@webex/ts-sdp';
|
|
@@ -234,8 +234,6 @@ interface TransceiverStats {
|
|
|
234
234
|
|
|
235
235
|
type BundlePolicy = 'max-bundle' | 'max-compat';
|
|
236
236
|
|
|
237
|
-
type MetricsCallback = (logData: LogData) => void;
|
|
238
|
-
|
|
239
237
|
declare enum MultistreamConnectionEventNames {
|
|
240
238
|
VideoSourceCountUpdate = "video-source-count-update",
|
|
241
239
|
AudioSourceCountUpdate = "audio-source-count-update",
|
|
@@ -332,7 +330,7 @@ declare class MultistreamConnection extends EventEmitter<MultistreamConnectionEv
|
|
|
332
330
|
private preProcessStats;
|
|
333
331
|
private attachMetricsObserver;
|
|
334
332
|
forceRtcMetricsCallback(): void | undefined;
|
|
335
|
-
setMetricsCallback(callback:
|
|
333
|
+
setMetricsCallback(callback: LoggerCallback): void;
|
|
336
334
|
setOveruseUpdateCallback(callback: OveruseUpdateCallback): void;
|
|
337
335
|
getCsiByMediaType(mediaType: MediaType): number | undefined;
|
|
338
336
|
getAllCsis(): Record<string, number | undefined>;
|
|
@@ -346,4 +344,4 @@ declare function setLogHandler(logHandler: ILogHandler): void;
|
|
|
346
344
|
declare const DeviceKind: typeof media.DeviceKind;
|
|
347
345
|
//# sourceMappingURL=index.d.ts.map
|
|
348
346
|
|
|
349
|
-
export { DeviceKind, MediaCodecMimeType,
|
|
347
|
+
export { DeviceKind, MediaCodecMimeType, MultistreamConnection, MultistreamConnectionEventNames, MultistreamConnectionEvents, ReceiveSlot, ReceiveSlotEvents, ReceiveSlotId, ReceiverEvents, RecommendedOpusBitrates, SendSlot, StreamRequest, TransceiverStatItem, TransceiverStats, WcmeError, WcmeErrorType, compareReceiveSlotIds, getLogLevel, getRecommendedMaxBitrateForFrameSize, logErrorAndThrow, setLogHandler, setLogLevel };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/web-client-media-engine",
|
|
3
|
-
"version": "3.23.
|
|
3
|
+
"version": "3.23.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",
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@webex/json-multistream": "2.1.3",
|
|
59
|
-
"@webex/rtcstats": "^1.3.
|
|
59
|
+
"@webex/rtcstats": "^1.3.3",
|
|
60
60
|
"@webex/ts-events": "^1.0.1",
|
|
61
61
|
"@webex/ts-sdp": "1.7.0",
|
|
62
62
|
"@webex/web-capabilities": "^1.4.0",
|
|
63
|
-
"@webex/webrtc-core": "2.10.
|
|
64
|
-
"@webex/web-media-effects": "
|
|
63
|
+
"@webex/webrtc-core": "2.10.2",
|
|
64
|
+
"@webex/web-media-effects": "2.18.1",
|
|
65
65
|
"async": "^3.2.4",
|
|
66
66
|
"js-logger": "^1.6.1",
|
|
67
67
|
"typed-emitter": "^2.1.0",
|