@vkontakte/calls-sdk 2.8.11-dev.69b107ee.0 → 2.8.11-dev.6c644bb1.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 +0 -2
- package/abstract/BaseApi.d.ts +0 -2
- package/calls-sdk.cjs.js +8 -8
- package/calls-sdk.esm.js +5120 -4852
- package/classes/Conversation.d.ts +12 -2
- package/classes/codec/WorkerBase.d.ts +2 -0
- package/default/Api.d.ts +5 -2
- package/enums/SignalingNotification.d.ts +1 -0
- package/package.json +1 -1
- package/static/Capabilities.d.ts +5 -0
- package/static/Params.d.ts +8 -0
- package/static/ParticipantConnectionStatusUtils.d.ts +16 -0
- package/types/Capabilities.d.ts +24 -0
- package/types/Participant.d.ts +11 -1
- package/types/PushData.d.ts +0 -3
- package/types/SignalingMessage.d.ts +9 -1
package/CallsSDK.d.ts
CHANGED
|
@@ -67,7 +67,6 @@ import { VmojiError } from './types/Vmoji';
|
|
|
67
67
|
import { VolumeDetector } from './classes/VolumeDetector';
|
|
68
68
|
import { FastStartHandler, FastStartParams } from './types/FastStart';
|
|
69
69
|
import { FastJoinHandler, FastJoinParams, FastJoinResponse } from './types/FastJoin';
|
|
70
|
-
import PushData from './types/PushData';
|
|
71
70
|
export type { CurrentLogItem, DebugLogGetParams, DebugLogSessionInfo, DebugLogStorageStats } from './utils/DebugStorage';
|
|
72
71
|
/**
|
|
73
72
|
* Информация о текущем браузере
|
|
@@ -256,7 +255,6 @@ export declare function callInternal(ids: OkUserId[], type: CallType | undefined
|
|
|
256
255
|
*/
|
|
257
256
|
export declare function processPush(conversationId: string, conversationParams?: string): Promise<void>;
|
|
258
257
|
export declare function processPushInternal(conversationId: string, type?: UserType, peerId?: number, conversationParams?: string, wsEndpoint?: string, userId?: number): Promise<void>;
|
|
259
|
-
export declare function getInbounds(): Promise<PushData[]>;
|
|
260
258
|
/**
|
|
261
259
|
* Авторизоваться для совершения звонков
|
|
262
260
|
*
|
package/abstract/BaseApi.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ import ConversationParams from '../types/ConversationParams';
|
|
|
5
5
|
import ConversationResponse from '../types/ConversationResponse';
|
|
6
6
|
import { ExternalId, ExternalParticipantId, ExternalUserId } from '../types/ExternalId';
|
|
7
7
|
import { CompositeUserId, OkUserId, ParticipantId } from '../types/Participant';
|
|
8
|
-
import PushData from '../types/PushData';
|
|
9
8
|
export type ClientStats = {
|
|
10
9
|
vcid: ConversationData['id'] | null;
|
|
11
10
|
[k: string]: string | number | boolean | null;
|
|
@@ -86,5 +85,4 @@ export default abstract class BaseApi {
|
|
|
86
85
|
removeHistoryRecords(recordIds: number[]): Promise<void>;
|
|
87
86
|
getServerTime(): Promise<number>;
|
|
88
87
|
cleanup(): void;
|
|
89
|
-
getInbounds(): Promise<PushData[]>;
|
|
90
88
|
}
|