@vkontakte/calls-sdk 2.7.2-beta.21 → 2.7.2-beta.22
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/CallsSDK.d.ts +1 -1
- package/abstract/BaseSignaling.d.ts +1 -1
- package/calls-sdk.cjs.js +8 -8
- package/calls-sdk.esm.js +8 -8
- package/classes/Conversation.d.ts +1 -0
- package/classes/DebugInfo.d.ts +1 -1
- package/classes/Logger.d.ts +0 -1
- package/classes/ProducerCommandSerializationService.d.ts +1 -1
- package/classes/codec/IDecoder.d.ts +1 -0
- package/classes/codec/IEncoder.d.ts +1 -0
- package/classes/codec/WebCodecsDecoder.d.ts +1 -0
- package/classes/screenshare/BaseRenderer.d.ts +1 -0
- package/classes/screenshare/BaseStreamBuilder.d.ts +2 -2
- package/classes/screenshare/TrackGeneratorRenderer.d.ts +1 -0
- package/classes/stat/StatAggregator.d.ts +12 -0
- package/classes/stat/StatFirstMediaReceived.d.ts +9 -0
- package/classes/stat/StatScreenShareFirstFrame.d.ts +7 -0
- package/classes/transport/DirectTransport.d.ts +1 -0
- package/classes/transport/PerfStatReporter.d.ts +0 -23
- package/classes/transport/Statistics.d.ts +1 -75
- package/default/Signaling.d.ts +2 -1
- package/enums/Stat.d.ts +6 -8
- package/package.json +1 -1
- package/static/External.d.ts +1 -1
- package/static/Utils.d.ts +1 -0
- package/types/Logger.d.ts +6 -0
- package/types/PerfStatReporter.d.ts +42 -0
- package/types/Statistics.d.ts +75 -0
package/CallsSDK.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import BaseLogger from './abstract/BaseLogger';
|
|
|
8
8
|
import BaseSignaling, { AddParticipantParams } from './abstract/BaseSignaling';
|
|
9
9
|
import HangupReason, { HangupReasonData } from './classes/HangupReason';
|
|
10
10
|
import { MediaTrackKind } from './classes/MediaSource';
|
|
11
|
-
import { StatResult } from './
|
|
11
|
+
import { StatResult } from './types/Statistics';
|
|
12
12
|
import { TransportTopology } from './classes/transport/Transport';
|
|
13
13
|
import Api from './default/Api';
|
|
14
14
|
import Signaling from './default/Signaling';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import EventEmitter from '../classes/EventEmitter';
|
|
2
2
|
import { ParticipantIdRegistry } from '../classes/ParticipantIdRegistry';
|
|
3
|
-
import { PerfStatReport } from '../
|
|
3
|
+
import { PerfStatReport } from '../types/PerfStatReporter';
|
|
4
4
|
import { TransportTopology } from '../classes/transport/Transport';
|
|
5
5
|
import ConversationFeature from '../enums/ConversationFeature';
|
|
6
6
|
import ConversationOption from '../enums/ConversationOption';
|