@vkontakte/calls-sdk 2.6.2-dev.4e28060.0 → 2.6.2-dev.4e86a53.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/calls-sdk",
3
- "version": "2.6.2-dev.4e28060.0",
3
+ "version": "2.6.2-dev.4e86a53.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",
package/types/Room.d.ts CHANGED
@@ -67,5 +67,5 @@ export interface RoomParticipantUpdate {
67
67
  * optional, depending on the context may contain either markers
68
68
  * for all (sorted) lists available or be empty (if client fails to support chunked participants)
69
69
  */
70
- removedParticipantMarkers?: ParticipantListMarkers;
70
+ removedParticipantMarkers?: ParticipantListMarkers[];
71
71
  }
@@ -92,6 +92,8 @@ declare namespace SignalingMessage {
92
92
  removeParticipantIds?: CompositeUserId[];
93
93
  participants?: ParticipantListChunk;
94
94
  active?: boolean;
95
+ countdownSec?: number;
96
+ timeoutMs?: number;
95
97
  }
96
98
  interface Notification extends SignalingMessage {
97
99
  type?: string;
@@ -330,7 +332,7 @@ declare namespace SignalingMessage {
330
332
  participantCount: number;
331
333
  addedParticipantIds?: CompositeUserId[];
332
334
  addedParticipants?: Participant[];
333
- removedParticipantMarkers?: ParticipantListMarkers;
335
+ removedParticipantMarkers?: ParticipantListMarkers[];
334
336
  }
335
337
  export interface FeaturesPerRoleChanged extends Notification {
336
338
  featuresPerRole?: IFeaturesPerRole | null;