@livedigital/client 3.31.1 → 3.31.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/index.es.js +3 -3
- package/dist/index.js +3 -3
- package/package.json +2 -2
- package/src/inversify.config.ts +0 -4
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@livedigital/client",
|
|
3
3
|
"author": "vlprojects",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "3.31.
|
|
5
|
+
"version": "3.31.2",
|
|
6
6
|
"private": false,
|
|
7
7
|
"bugs": {
|
|
8
8
|
"url": "https://github.com/vlprojects/livedigital-sdk/issues"
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"reflect-metadata": "^0.2.2",
|
|
58
58
|
"serialize-error": "^7.0.1",
|
|
59
59
|
"socket.io-client": "^4.7.2",
|
|
60
|
-
"webrtc-issue-detector": "^1.
|
|
60
|
+
"webrtc-issue-detector": "^1.16.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@rollup/plugin-commonjs": "^19.0.0",
|
package/src/inversify.config.ts
CHANGED
|
@@ -2,8 +2,6 @@ import { Container, interfaces } from 'inversify';
|
|
|
2
2
|
import WebRTCIssueDetector, {
|
|
3
3
|
AvailableOutgoingBitrateIssueDetector,
|
|
4
4
|
CompositeRTCStatsParser,
|
|
5
|
-
FramesDroppedIssueDetector,
|
|
6
|
-
FramesEncodedSentIssueDetector,
|
|
7
5
|
FrozenVideoTrackDetector,
|
|
8
6
|
InboundNetworkIssueDetector,
|
|
9
7
|
IssueDetectorResult,
|
|
@@ -236,8 +234,6 @@ container
|
|
|
236
234
|
networkScoresCalculator: new NetworkScoresCalculator(),
|
|
237
235
|
detectors: [
|
|
238
236
|
new QualityLimitationsIssueDetector(),
|
|
239
|
-
new FramesDroppedIssueDetector(),
|
|
240
|
-
new FramesEncodedSentIssueDetector(),
|
|
241
237
|
new InboundNetworkIssueDetector(),
|
|
242
238
|
new OutboundNetworkIssueDetector(),
|
|
243
239
|
new NetworkMediaSyncIssueDetector(),
|