@vkontakte/calls-sdk 2.8.11-dev.4bbae276.0 → 2.8.11-dev.5a5b0d53.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 CHANGED
@@ -749,7 +749,7 @@ export declare function requestAsr(request: boolean): Promise<void>;
749
749
  export declare function startUrlSharing(sharedUrl: string): Promise<void>;
750
750
  export declare function stopUrlSharing(): Promise<void>;
751
751
  export declare function sendTestCommand(name: string, params?: any): void;
752
- export declare function startAnalyzingAudio(expectAudio: boolean): void;
752
+ export declare function startAnalyzingAudio(expectAudio: boolean, expectedActiveTracks?: number | null, expectedTrackFrequencies?: number[] | null): void;
753
753
  export declare function stopAnalyzingAudio(): void;
754
754
  /**
755
755
  * Версия SDK
@@ -7,7 +7,7 @@ import { ExternalId, ExternalParticipantId, ExternalUserId } from '../types/Exte
7
7
  import { CompositeUserId, OkUserId, ParticipantId } from '../types/Participant';
8
8
  export type ClientStats = {
9
9
  vcid: ConversationData['id'] | null;
10
- [k: string]: string | number | null;
10
+ [k: string]: string | number | boolean | null;
11
11
  };
12
12
  export type ClientEvent = {
13
13
  timestamp: number;