@vkontakte/calls-sdk 2.8.8-beta.17 → 2.8.8-beta.19

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.
@@ -81,6 +81,7 @@ export default class Conversation extends EventEmitter {
81
81
  private _extractExternalRoomsData;
82
82
  onPush(conversationId: string, type?: UserType, peerId?: number, conversationParams?: string, wsEndpoint?: string): Promise<void>;
83
83
  private _isInWaitingHall;
84
+ private _isWaitForAdmin;
84
85
  private _isRestricted;
85
86
  private _isAudienceMode;
86
87
  private _isAudienceModeListener;
package/default/Api.d.ts CHANGED
@@ -20,13 +20,16 @@ export default class Api extends BaseApi {
20
20
  logClientEvents(items: ClientEvent[]): void;
21
21
  uploadDebugLogs(conversationId: string, startTime: number, endTime: number, log: string): Promise<void>;
22
22
  joinConversation(conversationId: string, isVideo?: boolean, chatId?: string): Promise<ConversationResponse>;
23
- createConversation(conversationId: string, payload?: string, requireAuthToJoin?: boolean, { onlyAdminCanShareMovie, audienceMode, audioOnly, }?: {
23
+ createConversation(conversationId: string, payload?: string, requireAuthToJoin?: boolean, { onlyAdminCanShareMovie, audienceMode, audioOnly, waitForAdmin, closedConversation, }?: {
24
24
  onlyAdminCanShareMovie?: boolean;
25
25
  audienceMode?: boolean;
26
26
  audioOnly?: boolean;
27
+ waitForAdmin?: boolean;
28
+ closedConversation?: boolean;
27
29
  }, speakerIds?: OkUserId[]): Promise<ConversationResponse>;
28
- startConversation(conversationId: string, ids?: OkUserId[], type?: CallType, isVideo?: boolean, payload?: string, joiningAllowed?: boolean, requireAuthToJoin?: boolean, { onlyAdminCanShareMovie }?: {
30
+ startConversation(conversationId: string, ids?: OkUserId[], type?: CallType, isVideo?: boolean, payload?: string, joiningAllowed?: boolean, requireAuthToJoin?: boolean, { onlyAdminCanShareMovie, waitForAdmin }?: {
29
31
  onlyAdminCanShareMovie?: boolean;
32
+ waitForAdmin?: boolean;
30
33
  }, externalIds?: ExternalId[]): Promise<ConversationResponse>;
31
34
  protected _ensureUuid(): void;
32
35
  deviceId(): string;
@@ -5,6 +5,8 @@ declare enum ConversationOption {
5
5
  REQUIRE_AUTH_TO_JOIN = "REQUIRE_AUTH_TO_JOIN",
6
6
  AUDIENCE_MODE = "AUDIENCE_MODE",// Stereo chat room
7
7
  WAITING_HALL = "WAITING_HALL",// Waiting Hall is ON
8
+ WAIT_FOR_ADMIN = "WAIT_FOR_ADMIN",
9
+ ADMIN_IS_HERE = "ADMIN_IS_HERE",
8
10
  ASR = "ASR",
9
11
  FEEDBACK = "FEEDBACK",// Reactions (default = off)
10
12
  RECURRING = "RECURRING"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/calls-sdk",
3
- "version": "2.8.8-beta.17",
3
+ "version": "2.8.8-beta.19",
4
4
  "author": "vk.com",
5
5
  "description": "Library for video calls based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -28,6 +28,7 @@ import { ParticipantCapabilities } from './SignalingCapabilities';
28
28
  */
29
29
  export declare enum ParticipantStatus {
30
30
  WAITING_HALL = "WAITING_HALL",
31
+ WAIT_FOR_ADMIN = "WAIT_FOR_ADMIN",
31
32
  WAITING = "WAITING",
32
33
  CONNECTING = "CONNECTING",
33
34
  CONNECTED = "CONNECTED",
@@ -523,18 +523,6 @@ export type ParamsObject = {
523
523
  * _По умолчанию: `false`_
524
524
  */
525
525
  webtransportFF: boolean;
526
- /**
527
- * Скриншара
528
- * Включить возможность запрашивать ключевой кадр декодером
529
- * @hidden
530
- */
531
- streamBuilderKeyFrameRequest: boolean;
532
- /**
533
- * Скриншара
534
- * Включить переключение на LibVPX при проблемах с WebCodecsDecoder
535
- * @hidden
536
- */
537
- streamBuilderAutoSwitchToLibVPX: boolean;
538
526
  /**
539
527
  * Получен локальный стрим с камеры/микрофона
540
528
  */
@@ -1051,10 +1039,6 @@ export default abstract class Params {
1051
1039
  static set webtransport(value: boolean);
1052
1040
  static get webtransportFF(): boolean;
1053
1041
  static set webtransportFF(value: boolean);
1054
- static set streamBuilderKeyFrameRequest(value: boolean);
1055
- static get streamBuilderKeyFrameRequest(): boolean;
1056
- static set streamBuilderAutoSwitchToLibVPX(value: boolean);
1057
- static get streamBuilderAutoSwitchToLibVPX(): boolean;
1058
1042
  static toJSON(): {
1059
1043
  apiKey: string;
1060
1044
  apiEnv: string;
@@ -1087,7 +1071,5 @@ export default abstract class Params {
1087
1071
  simulcast: boolean;
1088
1072
  webtransport: boolean;
1089
1073
  webtransportFF: boolean;
1090
- streamBuilderKeyFrameRequest: boolean;
1091
- streamBuilderAutoSwitchToLibVPX: boolean;
1092
1074
  };
1093
1075
  }
@@ -18,6 +18,7 @@ declare const PREDICATES: {
18
18
  readonly animojiBackendRender: () => boolean;
19
19
  readonly sessionStateUpdates: () => boolean;
20
20
  readonly addParticipant: () => boolean;
21
+ readonly waitForAdmin: () => boolean;
21
22
  };
22
23
  type ParticipantCapabilitiesKeys = keyof typeof PREDICATES;
23
24
  export type ParticipantCapabilities = Record<ParticipantCapabilitiesKeys, boolean>;
@@ -64,6 +64,7 @@ export type ConversationData = {
64
64
  muteStatesPersonal: MuteStates;
65
65
  networkRating: number;
66
66
  waitingHall: boolean;
67
+ waitForAdmin: boolean;
67
68
  observer: boolean;
68
69
  roomId: IRoomId;
69
70
  audienceMode: boolean;