@vkontakte/calls-sdk 2.4.4-dev.00c279b.0 → 2.4.4-dev.71e1f68.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/CallsSDK.d.ts CHANGED
@@ -39,7 +39,7 @@ import IceServer from './types/IceServer';
39
39
  import MediaModifiers from './types/MediaModifiers';
40
40
  import { IVideoDimentions, MediaSettings } from './types/MediaSettings';
41
41
  import MuteStates from './types/MuteStates';
42
- import { OkUserId, ParticipantStateMapped } from './types/Participant';
42
+ import { ICompositeEntityId, IGetParticipantListChunkPayload, IParticipantListMarkers, IParticipantListType, IParticipantMarker, OkUserId, ParticipantStateMapped } from './types/Participant';
43
43
  import ParticipantLayout, { Layout, StopStream } from './types/ParticipantLayout';
44
44
  import ParticipantPriority from './types/ParticipantPriority';
45
45
  import { MediaType, ParticipantStreamDescription } from './types/ParticipantStreamDescription';
@@ -508,5 +508,6 @@ export declare function promoteParticipant(externalId: ExternalId, demote?: bool
508
508
  * @param recordIds Идентификаторы записей истории
509
509
  */
510
510
  export declare function removeHistoryRecords(recordIds: number[]): Promise<void>;
511
- export type { AddParticipantParams, ConversationData, ConversationParams, ConversationResponse, ExternalId, ExternalParticipant, HangupReasonData, IceServer, JSONArray, JSONObject, JSONType, Layout, MediaModifiers, MediaSettings, MuteStates, OkUserId, ParamsObject, ParticipantLayout, ParticipantPriority, ParticipantStateMapped, ParticipantStreamDescription, SignalingMessage, StatResult, StopStream, WaitingHallResponse, IVideoDimentions, };
511
+ export declare function getParticipantListChunk(payload: IGetParticipantListChunkPayload): Promise<SignalingMessage.IParticipantListChunk>;
512
+ export type { AddParticipantParams, ConversationData, ConversationParams, ConversationResponse, ExternalId, ExternalParticipant, HangupReasonData, IceServer, JSONArray, JSONObject, JSONType, Layout, MediaModifiers, MediaSettings, MuteStates, OkUserId, ParamsObject, ParticipantLayout, ParticipantPriority, ParticipantStateMapped, ParticipantStreamDescription, SignalingMessage, StatResult, StopStream, WaitingHallResponse, IVideoDimentions, IParticipantMarker, ICompositeEntityId, IParticipantListMarkers, IParticipantListType, };
512
513
  export { Api, BaseApi, BaseLogger, BaseSignaling, CallDirection, CallType, ChatRoomEventType, ConversationOption, DebugMessageType, ExternalIdType, FacingMode, FatalError, HangupReason, HangupType, MediaOption, MediaTrackKind, MediaType, MuteState, ParticipantState, ParticipantStatus, RecordRole, Signaling, SignalingCommandType, SignalingConnectionType, SignalingNotification, UserRole, UserType, Utils, };
@@ -12,7 +12,7 @@ import ConversationResponse from '../types/ConversationResponse';
12
12
  import MediaModifiers from '../types/MediaModifiers';
13
13
  import MediaSettings from '../types/MediaSettings';
14
14
  import MuteStates from '../types/MuteStates';
15
- import { CompositeUserId } from '../types/Participant';
15
+ import { CompositeUserId, IGetParticipantListChunkPayload } from '../types/Participant';
16
16
  import SignalingMessage from '../types/SignalingMessage';
17
17
  import { WaitingParticipantId } from '../types/WaitingHall';
18
18
  /**
@@ -77,6 +77,7 @@ export default abstract class BaseSignaling extends EventEmitter {
77
77
  abstract promoteParticipant(participantId: CompositeUserId, demote?: boolean): Promise<SignalingMessage>;
78
78
  abstract setProducerNotificationDataChannel(dataChannel: RTCDataChannel): void;
79
79
  abstract setProducerCommandDataChannel(dataChannel: RTCDataChannel): void;
80
+ abstract getParticipantListChunk(payload: IGetParticipantListChunkPayload): Promise<SignalingMessage.IParticipantListChunk>;
80
81
  get ready(): boolean;
81
82
  setParticipantIdRegistry(participantIdRegistry: ParticipantIdRegistry): void;
82
83
  requestRealloc(): void;