@vkontakte/calls-sdk 2.8.6-dev.148c03e5.0 → 2.8.6-dev.3c2912ca.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
@@ -47,7 +47,7 @@ import MediaModifiers from './types/MediaModifiers';
47
47
  import { IVideoDimentions, MediaSettings } from './types/MediaSettings';
48
48
  import { IAddMovieParams, IMovieMetaData, IMoviePreview, IOnRemoteMovieData, ISharedMovieInfo, ISharedMovieState, ISharedMovieStateResponse, ISharedMovieStoppedInfo, IUpdateMovieData } from './types/MovieShare';
49
49
  import MuteStates, { IMuteParticipantInternalParams, IMuteParticipantParams } from './types/MuteStates';
50
- import { IAPIBaseUrl, IApiEnv } from './types/Params';
50
+ import { IApiEnv } from './types/Params';
51
51
  import { CompositeUserId, IGetParticipantsParameters, OkUserId, ParticipantId, ParticipantListMarker, ParticipantListMarkers, ParticipantListType, ParticipantsStateList, ParticipantStateMapped } from './types/Participant';
52
52
  import ParticipantLayout, { Layout, RequestKeyFrame, StopStream } from './types/ParticipantLayout';
53
53
  import { ParticipantListChunkParameters } from './types/ParticipantListChunk';
@@ -253,7 +253,7 @@ export declare function processPushInternal(conversationId: string, type?: UserT
253
253
  *
254
254
  * @param authToken Токен авторизации
255
255
  */
256
- export declare function authorize(authToken?: string, apiBaseUrl?: IAPIBaseUrl): Promise<void>;
256
+ export declare function authorize(authToken?: string): Promise<void>;
257
257
  /**
258
258
  * Принять входящий звонок
259
259
  *
@@ -20,6 +20,7 @@ import { CompositeUserId, ParticipantId } from '../types/Participant';
20
20
  import { ParticipantLayout, RequestKeyFrame, StopStream } from '../types/ParticipantLayout';
21
21
  import { ParticipantListChunkParameters } from '../types/ParticipantListChunk';
22
22
  import SignalingMessage, { GetParticipantsSignalingResponse, GetRoomsSignalingResponse } from '../types/SignalingMessage';
23
+ import { ChangeSimulcast } from '../types/ChangeSimulcast';
23
24
  import { IPublishStreamData, IRecordConfData, IStartStreamData, IStopStreamData } from '../types/Streams';
24
25
  import { SharingStatReport } from '../classes/screenshare/SharingStatReport';
25
26
  /**
@@ -99,6 +100,7 @@ export default abstract class BaseSignaling extends EventEmitter {
99
100
  abstract updateMediaModifiers(mediaModifiers: MediaModifiers): Promise<SignalingMessage>;
100
101
  abstract enableVideoSuspend(enabled: boolean): Promise<SignalingMessage>;
101
102
  abstract enableVideoSuspendSuggest(enabled: boolean): Promise<SignalingMessage>;
103
+ abstract changeSimulcast(changeSimulcast: ChangeSimulcast): Promise<SignalingMessage>;
102
104
  abstract changeOptions(changes: {
103
105
  [key in ConversationOption]?: boolean;
104
106
  }): Promise<SignalingMessage>;