@vkontakte/calls-sdk 2.4.4-beta.21 → 2.4.4-beta.25

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.
@@ -86,7 +86,6 @@ export default class Conversation extends EventEmitter {
86
86
  private _activeSpeakerId;
87
87
  private _lastSignalledActiveSpeakerId;
88
88
  private _serverSettings;
89
- private _signalingServerSettings;
90
89
  private static _current;
91
90
  private static _activationMutex;
92
91
  private static _delayedHangup;
@@ -2,6 +2,7 @@ import { ParticipantStreamDescription } from '../types/ParticipantStreamDescript
2
2
  import SignalingMessage from '../types/SignalingMessage';
3
3
  export declare class ParticipantIdRegistry {
4
4
  private streamDescriptionByCompactId;
5
+ constructor();
5
6
  getStreamDescription(compactedId: number): ParticipantStreamDescription | undefined;
6
7
  handleMessage(data: ArrayBuffer): SignalingMessage | null;
7
8
  private _createParticipantSourcesUpdateNotification;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/calls-sdk",
3
- "version": "2.4.4-beta.21",
3
+ "version": "2.4.4-beta.25",
4
4
  "author": "vk.com",
5
5
  "description": "Library for video calls based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -0,0 +1,2 @@
1
+ export declare function loadDependencies(): Promise<void>;
2
+ export declare function getLibrary(name: string): any;
@@ -212,6 +212,7 @@ export declare type ParamsObject = {
212
212
  * он хочет видеть, через вызов updateDisplayLayout
213
213
  */
214
214
  videoTracksCount: number;
215
+ movieShare: boolean;
215
216
  filteredMessages: boolean;
216
217
  breakVideoPayloadTypes: boolean;
217
218
  /**
@@ -491,6 +492,7 @@ export default abstract class Params {
491
492
  static get consumerScreenTrack(): boolean;
492
493
  static get producerScreenTrack(): boolean;
493
494
  static isUnifiedPlanSupported(name: string, version: number): boolean;
495
+ static get movieShare(): boolean;
494
496
  static get videoTracksCount(): number;
495
497
  static get breakVideoPayloadTypes(): boolean;
496
498
  static get filteredMessages(): boolean;
package/static/Utils.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { BigInteger } from 'big-integer';
1
+ import type { BigInteger } from 'big-integer';
2
2
  import UserType from '../enums/UserType';
3
3
  import { ExternalParticipant } from '../types/ExternalId';
4
4
  import { CompositeUserId, OkUserId, Participant, ParticipantStateMapped } from '../types/Participant';
@@ -19,6 +19,7 @@ export declare type MediaSettings = {
19
19
  export declare type VideoStreamInfo = {
20
20
  id: string;
21
21
  source: string;
22
+ vkMovieId?: string;
22
23
  };
23
24
  export default MediaSettings;
24
25
  export declare function compareMediaSettings(ms1: MediaSettings, ms2: MediaSettings): boolean;