@vkontakte/calls-sdk 2.8.8-beta.6 → 2.8.8-beta.7
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 +4 -4
- package/calls-sdk.esm.js +4 -4
- package/classes/Conversation.d.ts +5 -0
- package/package.json +1 -1
|
@@ -204,6 +204,10 @@ export default class Conversation extends EventEmitter {
|
|
|
204
204
|
sendClientEvent(eventType: string, eventData?: Record<string, string | number | boolean>, immediately?: boolean): void;
|
|
205
205
|
private _changeMediaSettings;
|
|
206
206
|
private _stopStreaming;
|
|
207
|
+
/**
|
|
208
|
+
* @param layoutByStreamDescription
|
|
209
|
+
* @param throwErrorOutside false используется при внутреннем обращении, когда обработка ошибки не нужна
|
|
210
|
+
*/
|
|
207
211
|
private _sendUpdateDisplayLayout;
|
|
208
212
|
private _cleanupCooldownQueue;
|
|
209
213
|
private _onParticipantSourcesUpdate;
|
|
@@ -288,6 +292,7 @@ export default class Conversation extends EventEmitter {
|
|
|
288
292
|
private _onLocalMediaStreamChanged;
|
|
289
293
|
private _onScreenSharingStatus;
|
|
290
294
|
private _changeRemoteMediaSettings;
|
|
295
|
+
private _extractLocalParticipantFromConnection;
|
|
291
296
|
private _changeLocalParticipantState;
|
|
292
297
|
private _changeRemoteParticipantState;
|
|
293
298
|
private _changeMultipleParticipantState;
|