@vkontakte/calls-sdk 2.8.12-beta.0 → 2.8.12-beta.2
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 -3
- package/calls-sdk.cjs.js +5 -5
- package/calls-sdk.esm.js +61 -49
- package/classes/Conversation.d.ts +3 -0
- package/package.json +1 -1
- package/static/Debug.d.ts +1 -0
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
|
*
|
|
@@ -765,9 +769,6 @@ export declare function stopAsr(params?: IAsrStopParams): Promise<void>;
|
|
|
765
769
|
export declare function requestAsr(request: boolean): Promise<void>;
|
|
766
770
|
export declare function startUrlSharing(sharedUrl: string): Promise<void>;
|
|
767
771
|
export declare function stopUrlSharing(): Promise<void>;
|
|
768
|
-
export declare function sendTestCommand(name: string, params?: any): void;
|
|
769
|
-
export declare function startAnalyzingAudio(expectAudio: boolean, expectedActiveTracks?: number | null, expectedTrackFrequencies?: number[] | null): void;
|
|
770
|
-
export declare function stopAnalyzingAudio(): void;
|
|
771
772
|
export declare function switchCall(conversationId: string): Promise<void>;
|
|
772
773
|
export declare function getActiveCallId(): string | null;
|
|
773
774
|
/**
|