@livedigital/client 3.10.0 → 3.11.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.
@@ -14,7 +14,16 @@ declare class ChannelStateSyncEventHandler {
14
14
  private processStateInconsistency;
15
15
  private notifyIfHasConfirmedInconsistency;
16
16
  private prepareProbableInconsistencyStats;
17
+ private isReachedMaxCheckRetries;
18
+ private isAlreadyAlertedAbout;
19
+ notifyIfConfirmedPeerInconsistency(peerId: string): void;
20
+ private resetPeerInconsistency;
21
+ private notifyIfConfirmedProducerInconsistency;
22
+ private resetProducerInconsistency;
23
+ private notifyIfConfirmedProducerStateInconsistency;
24
+ private resetProducerStateInconsistency;
17
25
  private parseChannelStateSyncEventPayload;
18
26
  private getLocalState;
27
+ private getIsConnectionActive;
19
28
  }
20
29
  export default ChannelStateSyncEventHandler;
@@ -61,6 +61,7 @@ declare class Engine {
61
61
  get audiencePeers(): Peer[];
62
62
  get mySocketId(): string | undefined;
63
63
  getPeerById(id: string): Peer | undefined;
64
+ checkConnectionActivity(): Promise<void>;
64
65
  confirmActivity(): Promise<void>;
65
66
  join(params: JoinChannelParams): Promise<void>;
66
67
  loadPeers(role?: Role): Promise<void>;
@@ -22,7 +22,7 @@ declare class Network {
22
22
  constructor(params: NetworkParams);
23
23
  private removeEventListeners;
24
24
  private stopRestartIceAtempts;
25
- reset(): void;
25
+ reset(): Promise<void>;
26
26
  closeRemoteProducer(producerId: string): Promise<void>;
27
27
  closeSendTransport(): Promise<void>;
28
28
  closeReceiveTransport(): Promise<void>;