@vkontakte/calls-sdk 2.6.1 → 2.6.2-dev.0c3e1d9.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 +4 -0
- package/calls-sdk.cjs.js +9 -9
- package/calls-sdk.esm.js +9 -9
- package/classes/Conversation.d.ts +2 -0
- package/package.json +1 -1
- package/static/External.d.ts +8 -1
- package/static/Params.d.ts +7 -2
- package/types/SignalingMessage.d.ts +6 -0
package/CallsSDK.d.ts
CHANGED
|
@@ -519,5 +519,9 @@ export declare function getParticipants(parameters: IGetParticipantsParameters):
|
|
|
519
519
|
* @param recordIds Идентификаторы записей истории
|
|
520
520
|
*/
|
|
521
521
|
export declare function removeHistoryRecords(recordIds: number[]): Promise<void>;
|
|
522
|
+
/**
|
|
523
|
+
* Версия SDK
|
|
524
|
+
*/
|
|
525
|
+
export declare function version(): string;
|
|
522
526
|
export type { AddParticipantParams, ConversationData, ConversationParams, ConversationResponse, ExternalId, ExternalParticipant, ExternalParticipantListMarkers as ExternalParticipantMarkers, ExternalParticipantId, HangupReasonData, IceServer, JSONArray, JSONObject, JSONType, Layout, MediaModifiers, MediaSettings, MuteStates, OkUserId, ParamsObject, ParticipantLayout, ParticipantPriority, ParticipantStateMapped, ParticipantStreamDescription, ParticipantListChunkParameters, IGetParticipantsParameters, SignalingMessage, StatResult, StopStream, WaitingHallResponse, IVideoDimentions, };
|
|
523
527
|
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, };
|