quickvo-sdk-js 1.6.17 → 1.6.18

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.
@@ -3,6 +3,7 @@ import { RoomOptions, UserMediaTypes } from '../types';
3
3
  import { Base } from '../base/Base';
4
4
  export declare class ActionSFU {
5
5
  base: Base;
6
+ _joinRoomFunc?: () => Promise<unknown>;
6
7
  constructor({ base }: {
7
8
  base: Base;
8
9
  });
@@ -120,6 +121,7 @@ export declare class ActionSFU {
120
121
  private _reportNetwork;
121
122
  private _hasAsyncTask;
122
123
  private _syncRoomInfo;
124
+ private _demotionWs;
123
125
  private _restorePeer;
124
126
  _restoreRoom: () => Promise<void>;
125
127
  }
@@ -43,5 +43,6 @@ export declare class CallsWebSocket {
43
43
  close: () => void;
44
44
  createRequest: <T extends K_eventName>(eventName: T, options?: Options) => CallsWebSocketEvent<T>;
45
45
  clearEvents: () => void;
46
+ retryEvents: () => void;
46
47
  private _updataLogs;
47
48
  }