@vkontakte/calls-sdk 2.8.12-dev.26c45af4.0 → 2.8.12-dev.a3089173.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/abstract/BaseApi.d.ts +1 -0
- package/calls-sdk.cjs.js +8 -8
- package/calls-sdk.esm.js +1136 -917
- package/classes/Conversation.d.ts +9 -13
- package/classes/StatsLogger.d.ts +17 -2
- package/classes/stat/CallLifecycleStats.d.ts +47 -0
- package/classes/stat/ConversationStats.d.ts +5 -4
- package/classes/stat/FirstMediaSentProbe.d.ts +13 -0
- package/classes/stat/StatPings.d.ts +1 -2
- package/classes/stat/StatSignalingCommands.d.ts +1 -2
- package/classes/transport/BaseTransport.d.ts +7 -1
- package/classes/transport/DirectTransport.d.ts +1 -1
- package/classes/transport/ServerTransport.d.ts +1 -1
- package/classes/transport/Transport.d.ts +6 -1
- package/default/SignalingTransport.d.ts +3 -1
- package/enums/Stat.d.ts +6 -1
- package/package.json +1 -1
- package/static/Debug.d.ts +1 -0
- package/static/Params.d.ts +0 -9
- package/types/Conversation.d.ts +12 -2
- package/types/WebTransport.d.ts +3 -1
package/CallsSDK.d.ts
CHANGED
|
@@ -635,6 +635,10 @@ export declare function debug(enabled: boolean): void;
|
|
|
635
635
|
* @param args
|
|
636
636
|
*/
|
|
637
637
|
export declare function debugMessage(type: DebugMessageType, ...args: any[]): void;
|
|
638
|
+
/**
|
|
639
|
+
* Добавить сообщение в отладочный лог конкретного звонка.
|
|
640
|
+
*/
|
|
641
|
+
export declare function debugMessageWithContext(type: DebugMessageType, conversationId: string, ...args: any[]): void;
|
|
638
642
|
/**
|
|
639
643
|
* Локальные отладочные логи, сохраненные в браузере.
|
|
640
644
|
*
|
package/abstract/BaseApi.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { ExternalId, ExternalParticipantId, ExternalUserId } from '../types/Exte
|
|
|
7
7
|
import { CompositeUserId, OkUserId, ParticipantId } from '../types/Participant';
|
|
8
8
|
import PushData from '../types/PushData';
|
|
9
9
|
export type ClientStats = {
|
|
10
|
+
call_topology: 'D' | 'S';
|
|
10
11
|
vcid: ConversationData['id'] | null;
|
|
11
12
|
[k: string]: string | number | boolean | null;
|
|
12
13
|
};
|