@vkontakte/calls-sdk 2.6.2-beta.27 → 2.6.2-beta.28

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.
@@ -19,6 +19,7 @@ import { ParticipantLayout, RequestKeyFrame, StopStream } from '../types/Partici
19
19
  import { ParticipantListChunkParameters } from '../types/ParticipantListChunk';
20
20
  import SignalingMessage from '../types/SignalingMessage';
21
21
  import { WaitingParticipantId } from '../types/WaitingHall';
22
+ import { SharingStatReport } from '../classes/screenshare/SharingStatReport';
22
23
  /**
23
24
  * Параметры добавления пользователя в звонок
24
25
  */
@@ -71,6 +72,7 @@ export default abstract class BaseSignaling extends EventEmitter {
71
72
  abstract getRecordStatus(): Promise<SignalingMessage>;
72
73
  abstract switchTopology(topology: TransportTopology, force?: boolean): Promise<SignalingMessage>;
73
74
  abstract reportPerfStat(report: PerfStatReport): Promise<SignalingMessage>;
75
+ abstract reportSharingStat(report: SharingStatReport): Promise<SignalingMessage>;
74
76
  abstract chatMessage(message: string, participantId: CompositeUserId | null): Promise<SignalingMessage>;
75
77
  abstract chatHistory(count: number): Promise<SignalingMessage>;
76
78
  abstract customData(data: JSONObject, participantId: ParticipantId | null): Promise<SignalingMessage>;