@livedigital/client 3.41.0-test-rejoins.4 → 3.41.1

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/README.md CHANGED
@@ -22,7 +22,7 @@ Now you can use the noise reduction and virtual backgrounds functionality. To do
22
22
  /files directory to the root directory of your project. Or your can specify the path in Client param staticFilesPath
23
23
  And add tsvb-web.js scripts to your index.html
24
24
  ```
25
- <script src="%PUBLIC_URL%/esdk/3.4.3/tsvb-web.js"></script>
25
+ <script src="%PUBLIC_URL%/esdk/3.5.5/tsvb-web.js"></script>
26
26
  ```
27
27
 
28
28
  ## Debugging
@@ -1,5 +1,5 @@
1
1
  import type { LogLevel } from '../types/common';
2
- export declare const SIGNALING_API_VERSION = 7;
2
+ export declare const SIGNALING_API_VERSION = 6;
3
3
  export declare const LOG_LEVEL_ERROR: LogLevel;
4
4
  export declare const LOG_LEVEL_WARN: LogLevel;
5
5
  export declare const LOG_LEVEL_INFO: LogLevel;
@@ -2,7 +2,7 @@
2
2
 
3
3
  import type { LogLevel } from '../types/common';
4
4
 
5
- export const SIGNALING_API_VERSION = 7;
5
+ export const SIGNALING_API_VERSION = 6;
6
6
 
7
7
  export const LOG_LEVEL_ERROR: LogLevel = 3;
8
8
  export const LOG_LEVEL_WARN: LogLevel = 4;
@@ -2,7 +2,6 @@ import type { MediaKind } from 'mediasoup-client/lib/RtpParameters';
2
2
  import type { RtpEncodingParameters } from 'mediasoup-client/lib/types';
3
3
  import type { ProducerData, TrackLabel, TrackTransformParams } from '../types/common';
4
4
  declare class PeerProducer {
5
- #private;
6
5
  readonly id: string;
7
6
  readonly kind: MediaKind;
8
7
  readonly peerId: string;
@@ -12,7 +11,5 @@ declare class PeerProducer {
12
11
  readonly maxSpatialLayer: number;
13
12
  readonly trackTransformParams?: TrackTransformParams;
14
13
  constructor(params: ProducerData);
15
- setPaused(paused: boolean): void;
16
- getStateChangedAt(): number;
17
14
  }
18
15
  export default PeerProducer;
@@ -1,8 +1,7 @@
1
1
  import type { ChannelStateShort } from '../../../proto/generated/channel/channel_state_short';
2
- import type { LocalChannelState } from '../../../types/channelStateSyncronizer';
3
2
  import ChannelStateConsistencyCheckResult from './ChannelStateConsistencyCheckResult';
4
3
  interface ChannelStateConsistencyCheckerParams {
5
- localState: LocalChannelState;
4
+ localState: ChannelStateShort;
6
5
  remoteState: ChannelStateShort;
7
6
  }
8
7
  declare class ChannelStateConsistencyChecker {
@@ -24,6 +23,5 @@ declare class ChannelStateConsistencyChecker {
24
23
  private findLocalConsumerByProducerId;
25
24
  private findLocalProducerById;
26
25
  private resetPreviousCheckResults;
27
- private isLocalProducerStateChangedRecently;
28
26
  }
29
27
  export default ChannelStateConsistencyChecker;