@vkontakte/calls-sdk 2.6.2-beta.14 → 2.6.2-beta.16
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 +7 -7
- package/calls-sdk.esm.js +7 -7
- package/classes/Conversation.d.ts +2 -0
- package/enums/MediaOption.d.ts +2 -1
- package/package.json +1 -1
|
@@ -77,6 +77,7 @@ export default class Conversation extends EventEmitter {
|
|
|
77
77
|
private readonly _signaling;
|
|
78
78
|
private _mediaSource;
|
|
79
79
|
private _conversation;
|
|
80
|
+
private _myLastRequestedLayouts;
|
|
80
81
|
private _state;
|
|
81
82
|
private _participantState;
|
|
82
83
|
private _participants;
|
|
@@ -311,6 +312,7 @@ export default class Conversation extends EventEmitter {
|
|
|
311
312
|
private _updateDisplayLayoutFromCache;
|
|
312
313
|
private _setParticipantsStatus;
|
|
313
314
|
private _onJoinLinkChanged;
|
|
315
|
+
private _isMe;
|
|
314
316
|
}
|
|
315
317
|
export declare class UpdateDisplayLayoutError extends Error {
|
|
316
318
|
readonly participantErrors: {
|
package/enums/MediaOption.d.ts
CHANGED