@webex/web-client-media-engine 3.5.1 → 3.5.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/README.md +29 -14
- package/dist/cjs/index.js +145 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +145 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -0
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export { AudioDeviceConstraints, ConnectionState, LocalCameraStream, LocalDispla
|
|
|
3
3
|
import { StreamId, StreamState, MediaContent, MediaType, Policy, PolicySpecificInfo, CodecInfo, StreamRequest as StreamRequest$1 } from '@webex/json-multistream';
|
|
4
4
|
export { ActiveSpeakerInfo, CodecInfo, H264Codec, Logger as JMPLogger, MediaContent, MediaFamily, MediaType, Policy, PolicySpecificInfo, ReceiverSelectedInfo, StreamState, getMediaContent, getMediaFamily, getMediaType } from '@webex/json-multistream';
|
|
5
5
|
import { LogData } from '@webex/rtcstats';
|
|
6
|
+
export { LogData } from '@webex/rtcstats';
|
|
6
7
|
import TypedEmitter, { EventMap } from 'typed-emitter';
|
|
7
8
|
import { TypedEvent } from '@webex/ts-events';
|
|
8
9
|
import { AvMediaDescription } from '@webex/ts-sdp';
|
|
@@ -194,6 +195,7 @@ interface TransceiverStats {
|
|
|
194
195
|
declare type BundlePolicy = 'max-bundle' | 'max-compat';
|
|
195
196
|
|
|
196
197
|
declare type MetricsCallback = (logData: LogData) => void;
|
|
198
|
+
|
|
197
199
|
declare enum MultistreamConnectionEventNames {
|
|
198
200
|
VideoSourceCountUpdate = "video-source-count-update",
|
|
199
201
|
AudioSourceCountUpdate = "audio-source-count-update",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/web-client-media-engine",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.2",
|
|
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",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@webex/json-multistream": "^2.1.1",
|
|
58
|
-
"@webex/rtcstats": "^1.0
|
|
58
|
+
"@webex/rtcstats": "^1.1.0",
|
|
59
59
|
"@webex/ts-events": "^1.0.1",
|
|
60
60
|
"@webex/ts-sdp": "1.5.0",
|
|
61
61
|
"@webex/webrtc-core": "2.1.0",
|