@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.
- package/calls-sdk.cjs.js +7 -7
- package/calls-sdk.esm.js +7 -7
- package/classes/Conversation.d.ts +0 -1
- package/package.json +1 -1
- package/static/Params.d.ts +3 -0
- package/types/ConversationParams.d.ts +1 -0
|
@@ -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
package/static/Params.d.ts
CHANGED
|
@@ -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;
|