@vkontakte/calls-sdk 2.8.6-dev.645b67c1.0 → 2.8.6-dev.6d4d9d1b.0
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/calls-sdk.cjs.js +8 -8
- package/calls-sdk.esm.js +7 -7
- package/classes/Conversation.d.ts +5 -1
- package/package.json +1 -1
|
@@ -37,6 +37,7 @@ export default class Conversation extends EventEmitter {
|
|
|
37
37
|
private _state;
|
|
38
38
|
private _participantState;
|
|
39
39
|
private _participants;
|
|
40
|
+
private _pendingParticipants;
|
|
40
41
|
private _transport;
|
|
41
42
|
private _debugInfo;
|
|
42
43
|
private _volumesDetector;
|
|
@@ -94,7 +95,7 @@ export default class Conversation extends EventEmitter {
|
|
|
94
95
|
updateStatisticsInterval(): void;
|
|
95
96
|
private _openTransport;
|
|
96
97
|
private _close;
|
|
97
|
-
destroy(): void
|
|
98
|
+
destroy(): Promise<void>;
|
|
98
99
|
private _getConversationParams;
|
|
99
100
|
private _addGeoParamsToEndpoint;
|
|
100
101
|
/**
|
|
@@ -380,6 +381,9 @@ export default class Conversation extends EventEmitter {
|
|
|
380
381
|
private _getMuteStatesForCurrentRoom;
|
|
381
382
|
private _setMuteStatesForRoomId;
|
|
382
383
|
private _forceOpenTransportForAloneInCall;
|
|
384
|
+
private _registerParticipant;
|
|
385
|
+
private _getParticipants;
|
|
386
|
+
private _getParticipant;
|
|
383
387
|
}
|
|
384
388
|
export declare class UpdateDisplayLayoutError extends Error {
|
|
385
389
|
readonly participantErrors: {
|