@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/calls-sdk.cjs.js +7 -7
- package/calls-sdk.esm.js +7 -7
- package/package.json +1 -1
- package/types/Room.d.ts +1 -1
- package/types/SignalingMessage.d.ts +3 -1
package/package.json
CHANGED
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;
|