@vkontakte/calls-sdk 2.6.2-dev.2b57aff.0 → 2.6.2-dev.57d3082.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.
@@ -250,6 +250,7 @@ export default class Conversation extends EventEmitter {
250
250
  videoEffect(effect: IEffect | null): Promise<void>;
251
251
  getParticipants(parameters: IGetParticipantsParameters): Promise<ExternalParticipant[]>;
252
252
  getParticipantListChunk(participantListChunkParameters: ParticipantListChunkParameters): Promise<ExternalParticipantListChunk>;
253
+ private _getInitialParticiapntListChunk;
253
254
  private _onLocalMediaStreamChanged;
254
255
  private _onScreenSharingStatus;
255
256
  private _changeRemoteMediaSettings;
@@ -1,7 +1,6 @@
1
1
  export default class ScreenCaptureSender {
2
2
  private readonly _encoder;
3
3
  private readonly _datachannel;
4
- private readonly _timerWorker;
5
4
  private _destroyed;
6
5
  private _needKeyframe;
7
6
  constructor(track: MediaStreamTrack, datachannel: RTCDataChannel);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/calls-sdk",
3
- "version": "2.6.2-dev.2b57aff.0",
3
+ "version": "2.6.2-dev.57d3082.0",
4
4
  "author": "vk.com",
5
5
  "description": "Library for video calls based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -240,6 +240,7 @@ declare namespace SignalingMessage {
240
240
  demote: boolean;
241
241
  mediaModifiers: MediaModifiers;
242
242
  conversation: Conversation;
243
+ participants?: ParticipantListChunk;
243
244
  }
244
245
  export interface ChatRoomUpdated extends Notification {
245
246
  eventType: ChatRoomEventType;