@vkontakte/calls-sdk 2.8.4-dev.6189cc1.0 → 2.8.4-dev.62dbdb8.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 +10 -3
- package/abstract/BaseApi.d.ts +5 -2
- package/abstract/BaseSignaling.d.ts +5 -5
- package/calls-sdk.cjs.js +8 -8
- package/calls-sdk.esm.js +8 -8
- package/classes/Conversation.d.ts +4 -3
- package/classes/ProducerCommandSerializationService.d.ts +2 -0
- package/default/Api.d.ts +8 -3
- package/default/Signaling.d.ts +5 -5
- package/enums/SignalingCommandType.d.ts +2 -1
- package/enums/SignalingNotification.d.ts +2 -1
- package/package.json +1 -1
- package/static/External.d.ts +11 -9
- package/static/Params.d.ts +18 -7
- package/static/Utils.d.ts +3 -1
- package/types/AudienceMode.d.ts +1 -2
- package/types/EnableVideoSuspend.d.ts +3 -0
- package/types/ExternalId.d.ts +1 -0
- package/types/Participant.d.ts +7 -0
- package/types/SignalingMessage.d.ts +20 -1
- package/types/Streams.d.ts +1 -0
- package/types/WaitingHall.d.ts +3 -12
package/CallsSDK.d.ts
CHANGED
|
@@ -55,7 +55,7 @@ import ParticipantPriority from './types/ParticipantPriority';
|
|
|
55
55
|
import { MediaType, ParticipantStreamDescription } from './types/ParticipantStreamDescription';
|
|
56
56
|
import { IRoomId, Room, RoomParticipantUpdate, Rooms, RoomsUpdate } from './types/Room';
|
|
57
57
|
import { ScreenCaptureSettings } from './types/ScreenCaptureSettings';
|
|
58
|
-
import SignalingMessage from './types/SignalingMessage';
|
|
58
|
+
import SignalingMessage, { GetRoomsSignalingResponse, GetParticipantsSignalingResponse } from './types/SignalingMessage';
|
|
59
59
|
import { StatResult } from './types/Statistics';
|
|
60
60
|
import { IStartStreamData, IStopStreamData, IPublishStreamData } from './types/Streams';
|
|
61
61
|
import { WaitingHallResponse } from './types/WaitingHall';
|
|
@@ -405,6 +405,13 @@ export declare function pinParticipantInternal(uid: OkUserId, unpin?: boolean, d
|
|
|
405
405
|
* @param mediaModifiers
|
|
406
406
|
*/
|
|
407
407
|
export declare function setMediaModifiers(mediaModifiers: MediaModifiers): Promise<void>;
|
|
408
|
+
/**
|
|
409
|
+
* Автоматическое отключения принимаемых видео-потоков
|
|
410
|
+
* в условиях плохого соединения
|
|
411
|
+
*
|
|
412
|
+
* @param enabled true - включить, false - отключить
|
|
413
|
+
*/
|
|
414
|
+
export declare function enableVideoSuspend(enabled: boolean): Promise<void>;
|
|
408
415
|
/**
|
|
409
416
|
* Включить/выключить опции звонка
|
|
410
417
|
*
|
|
@@ -496,7 +503,7 @@ export declare function forceRelayPolicy(enabled: boolean): void;
|
|
|
496
503
|
* @param groupId
|
|
497
504
|
* @param roomId
|
|
498
505
|
*/
|
|
499
|
-
export declare function startStream(isRecord?: boolean, name?: string | null, movieId?: string | null, privacy?: 'PUBLIC' | 'FRIENDS' | 'DIRECT_LINK', groupId?: string | null, roomId?: number | null): Promise<undefined>;
|
|
506
|
+
export declare function startStream(isRecord?: boolean, name?: string | null, movieId?: string | null, privacy?: 'PUBLIC' | 'FRIENDS' | 'DIRECT_LINK', groupId?: string | null, roomId?: number | null, externalAccessKey?: string | null): Promise<undefined>;
|
|
500
507
|
/**
|
|
501
508
|
* Завершить трансляцию звонка
|
|
502
509
|
* @param roomId
|
|
@@ -673,5 +680,5 @@ export declare function stopUrlSharing(): Promise<void>;
|
|
|
673
680
|
* Версия SDK
|
|
674
681
|
*/
|
|
675
682
|
export declare function version(): string;
|
|
676
|
-
export type { AddParticipantParams, AudienceModeHandsResponse, BrowserName, CompositeUserId, ConversationData, ConversationParams, ConversationResponse, ExternalId, ExternalParticipant, ExternalParticipantListChunk, ExternalParticipantListMarker, ExternalParticipantListMarkers as ExternalParticipantMarkers, ExternalParticipantId, HangupReasonData, IApiEnv, IAsrStartParams, IAsrStopParams, IAsrData, IceServer, JSONArray, JSONObject, JSONType, Layout, MediaModifiers, MediaSettings, MuteStates, OkUserId, ParamsObject, ParticipantId, ParticipantLayout, ParticipantListMarkers, ParticipantListType, ParticipantPriority, ParticipantStateMapped, ParticipantStreamDescription, ParticipantListChunkParameters, ParticipantListMarker, RequestKeyFrame, Rooms, IGetParticipantsParameters, ScreenCaptureSettings, SignalingMessage, StatResult, StopStream, WaitingHallResponse, IMovieMetaData, IVideoDimentions, IFeedbackExternal, ISharedMovieInfo, ISharedMovieStoppedInfo, ISharedMovieState, ISharedMovieStateResponse, IAddMovieParams, IOnRemoteMovieData, IMoviePreview, IRoomId, Room, RoomsUpdate, RoomParticipantUpdate, IUpdateMovieData, IFeaturesPerRole, IMuteParticipantParams, IMuteParticipantInternalParams, IStartStreamData, IStopStreamData, IPublishStreamData, };
|
|
683
|
+
export type { AddParticipantParams, AudienceModeHandsResponse, BrowserName, CompositeUserId, ConversationData, ConversationParams, ConversationResponse, ExternalId, ExternalParticipant, ExternalParticipantListChunk, ExternalParticipantListMarker, ExternalParticipantListMarkers as ExternalParticipantMarkers, ExternalParticipantId, GetParticipantsSignalingResponse, GetRoomsSignalingResponse, HangupReasonData, IApiEnv, IAsrStartParams, IAsrStopParams, IAsrData, IceServer, JSONArray, JSONObject, JSONType, Layout, MediaModifiers, MediaSettings, MuteStates, OkUserId, ParamsObject, ParticipantId, ParticipantLayout, ParticipantListMarkers, ParticipantListType, ParticipantPriority, ParticipantStateMapped, ParticipantStreamDescription, ParticipantListChunkParameters, ParticipantListMarker, RequestKeyFrame, Rooms, IGetParticipantsParameters, ScreenCaptureSettings, SignalingMessage, StatResult, StopStream, WaitingHallResponse, IMovieMetaData, IVideoDimentions, IFeedbackExternal, ISharedMovieInfo, ISharedMovieStoppedInfo, ISharedMovieState, ISharedMovieStateResponse, IAddMovieParams, IOnRemoteMovieData, IMoviePreview, IRoomId, Room, RoomsUpdate, RoomParticipantUpdate, IUpdateMovieData, IFeaturesPerRole, IMuteParticipantParams, IMuteParticipantInternalParams, IStartStreamData, IStopStreamData, IPublishStreamData, };
|
|
677
684
|
export { Api, AuthData, 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, TransportTopology, RoomsEventType, ConversationFeature, ArrayDequeue, ApiExternal, };
|
package/abstract/BaseApi.d.ts
CHANGED
|
@@ -52,12 +52,15 @@ export default abstract class BaseApi {
|
|
|
52
52
|
* method: vchat.clientStats
|
|
53
53
|
*/
|
|
54
54
|
logClientStats(items: ClientStats[]): void;
|
|
55
|
-
prepareUserIds(ids: OkUserId[]): Promise<void>;
|
|
56
55
|
abstract getOkIdsByExternalIds(externalIds: ExternalId[]): Promise<OkUserId[]>;
|
|
57
56
|
abstract getParticipantIdsByExternalIds(externalIds: ExternalId[]): Promise<Map<ExternalId, ParticipantId>>;
|
|
58
57
|
abstract getExternalIdsByOkIds(uids: OkUserId[]): Promise<ExternalParticipantId[]>;
|
|
59
58
|
getCachedOkIdByExternalId(externalId: ExternalId): ParticipantId | null;
|
|
60
|
-
cacheExternalId(
|
|
59
|
+
cacheExternalId(compositeId: OkUserId | CompositeUserId | ParticipantId, externalId: ExternalParticipantId): void;
|
|
60
|
+
mapDecorativeId(decorativeId: OkUserId | CompositeUserId | ParticipantId, okId: OkUserId | CompositeUserId): void;
|
|
61
|
+
unmapDecorativeId(decorativeId: OkUserId | CompositeUserId | ParticipantId): void;
|
|
62
|
+
getDecorativeIdByInitialId(okId: OkUserId | CompositeUserId | ParticipantId): OkUserId | undefined;
|
|
63
|
+
replaceByInitialIdIdIfExists(id: OkUserId | CompositeUserId | ParticipantId): OkUserId;
|
|
61
64
|
hangupConversation(conversationId: string): void;
|
|
62
65
|
sendUserFeedbackStats(conversationId: string, userResponse: number, reason?: string, groupCallUsersCount?: number): void;
|
|
63
66
|
removeHistoryRecords(recordIds: number[]): Promise<void>;
|
|
@@ -19,9 +19,8 @@ import MuteStates from '../types/MuteStates';
|
|
|
19
19
|
import { CompositeUserId, ParticipantId } from '../types/Participant';
|
|
20
20
|
import { ParticipantLayout, RequestKeyFrame, StopStream } from '../types/ParticipantLayout';
|
|
21
21
|
import { ParticipantListChunkParameters } from '../types/ParticipantListChunk';
|
|
22
|
-
import SignalingMessage from '../types/SignalingMessage';
|
|
22
|
+
import SignalingMessage, { GetParticipantsSignalingResponse, GetRoomsSignalingResponse } from '../types/SignalingMessage';
|
|
23
23
|
import { IPublishStreamData, IRecordConfData, IStartStreamData, IStopStreamData } from '../types/Streams';
|
|
24
|
-
import { WaitingParticipantId } from '../types/WaitingHall';
|
|
25
24
|
import { SharingStatReport } from '../classes/screenshare/SharingStatReport';
|
|
26
25
|
/**
|
|
27
26
|
* Параметры добавления пользователя в звонок
|
|
@@ -73,7 +72,7 @@ export default abstract class BaseSignaling extends EventEmitter {
|
|
|
73
72
|
abstract updateRooms(rooms: Record<any, any>[], assignRandomly?: boolean): Promise<SignalingMessage>;
|
|
74
73
|
abstract activateRooms(roomIds: number[], deactivate: boolean): Promise<SignalingMessage>;
|
|
75
74
|
abstract switchRoom(toRoomId: number | null, participantId?: ParticipantId): Promise<SignalingMessage>;
|
|
76
|
-
abstract getRooms(withParticipants: boolean): Promise<
|
|
75
|
+
abstract getRooms(withParticipants: boolean): Promise<GetRoomsSignalingResponse>;
|
|
77
76
|
abstract removeRooms(roomIds: number[]): Promise<SignalingMessage>;
|
|
78
77
|
abstract startStream(data: IStartStreamData): Promise<SignalingMessage>;
|
|
79
78
|
abstract stopStream(data: IStopStreamData): Promise<SignalingMessage>;
|
|
@@ -92,10 +91,11 @@ export default abstract class BaseSignaling extends EventEmitter {
|
|
|
92
91
|
abstract enableFeatureForRoles(feature: ConversationFeature, roles: UserRole[]): Promise<SignalingMessage>;
|
|
93
92
|
abstract pinParticipant(participantId: ParticipantId, unpin: boolean, roomId: number | null): Promise<SignalingMessage>;
|
|
94
93
|
abstract updateMediaModifiers(mediaModifiers: MediaModifiers): Promise<SignalingMessage>;
|
|
94
|
+
abstract enableVideoSuspend(enabled: boolean): Promise<SignalingMessage>;
|
|
95
95
|
abstract changeOptions(changes: {
|
|
96
96
|
[key in ConversationOption]?: boolean;
|
|
97
97
|
}): Promise<SignalingMessage>;
|
|
98
|
-
abstract getWaitingHall(fromId: WaitingParticipantId | null, count?: number, backward?: boolean): Promise<SignalingMessage>;
|
|
98
|
+
abstract getWaitingHall(fromId: SignalingMessage.WaitingParticipantId | null, count?: number, backward?: boolean): Promise<SignalingMessage>;
|
|
99
99
|
abstract promoteParticipant(participantId: CompositeUserId, demote?: boolean): Promise<SignalingMessage>;
|
|
100
100
|
abstract requestPromotion(unrequest: boolean): Promise<SignalingMessage>;
|
|
101
101
|
abstract acceptPromotion(reject: boolean): Promise<SignalingMessage>;
|
|
@@ -105,7 +105,7 @@ export default abstract class BaseSignaling extends EventEmitter {
|
|
|
105
105
|
abstract setProducerCommandDataChannel(dataChannel: RTCDataChannel): void;
|
|
106
106
|
abstract useCommandDataChannel(status: boolean): void;
|
|
107
107
|
abstract getParticipantListChunk(participantListChunkParameters: ParticipantListChunkParameters): Promise<SignalingMessage>;
|
|
108
|
-
abstract getParticipants(externalIds: SignalingMessage.ExternalId[]): Promise<
|
|
108
|
+
abstract getParticipants(externalIds: SignalingMessage.ExternalId[]): Promise<GetParticipantsSignalingResponse>;
|
|
109
109
|
abstract startAsr(params: IAsrStartParams): Promise<SignalingMessage>;
|
|
110
110
|
abstract stopAsr(params?: IAsrStopParams): Promise<SignalingMessage>;
|
|
111
111
|
abstract requestAsr(request: boolean): Promise<SignalingMessage>;
|