@vkontakte/calls-sdk 2.8.12-beta.1 → 2.8.12-dev.26c45af4.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
@@ -635,10 +635,6 @@ 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;
642
638
  /**
643
639
  * Локальные отладочные логи, сохраненные в браузере.
644
640
  *
@@ -7,7 +7,6 @@ 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';
11
10
  vcid: ConversationData['id'] | null;
12
11
  [k: string]: string | number | boolean | null;
13
12
  };
@@ -38,7 +37,7 @@ export default abstract class BaseApi {
38
37
  */
39
38
  setAbortSignal(signal: AbortSignal | undefined): void;
40
39
  abstract authorize(): Promise<void>;
41
- abstract userId(participantId: ParticipantId): Promise<ExternalParticipantId>;
40
+ abstract userId(participantId: ParticipantId): ExternalParticipantId;
42
41
  abstract deviceId(): string;
43
42
  abstract createConversation(conversationId: string, payload?: string, requireAuthToJoin?: boolean, createConversationParameters?: {
44
43
  onlyAdminCanShareMovie?: boolean;