@vkontakte/calls-sdk 2.6.2-beta.12 → 2.6.2-beta.14

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.
@@ -158,7 +158,6 @@ export default class Conversation extends EventEmitter {
158
158
  private _registerParticipants;
159
159
  /** Установим состояние локальных мьютов */
160
160
  private _registerParticipantLocalMuteState;
161
- private _getClientType;
162
161
  private _getStatusByTransportState;
163
162
  private _registerParticipantInCache;
164
163
  private _getExistedParticipantByIdOrCreate;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/calls-sdk",
3
- "version": "2.6.2-beta.12",
3
+ "version": "2.6.2-beta.14",
4
4
  "author": "vk.com",
5
5
  "description": "Library for video calls based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -25,6 +25,7 @@ import { FacingMode } from './WebRTCUtils';
25
25
  export declare type ParamsObject = {
26
26
  platform: string;
27
27
  clientType: string;
28
+ externalUserType: string;
28
29
  device: string;
29
30
  /**
30
31
  * API ключ приложения
@@ -538,6 +539,8 @@ export default abstract class Params {
538
539
  static set platform(value: string);
539
540
  static get clientType(): string;
540
541
  static set clientType(value: string);
542
+ static get externalUserType(): string;
543
+ static set externalUserType(value: string);
541
544
  static get device(): string;
542
545
  static get apiKey(): string;
543
546
  static get apiEnv(): string;
@@ -10,5 +10,6 @@ declare type ConversationParams = {
10
10
  isp_as_org?: string;
11
11
  loc_cc?: string;
12
12
  loc_reg?: string;
13
+ external_user_type: string;
13
14
  };
14
15
  export default ConversationParams;