@fishjam-cloud/ts-client 0.26.0 → 0.26.1-rc.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/dist/index.d.mts +4 -0
- package/dist/index.mjs +1 -1
- package/dist/index.react-native.mjs +11 -11
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -542,6 +542,8 @@ declare class ConnectionManager {
|
|
|
542
542
|
isConnectionUnstable: () => boolean;
|
|
543
543
|
getConnection: () => RTCPeerConnection;
|
|
544
544
|
addTransceiversIfNeeded: (serverTracks: MediaEvent_OfferData_TrackTypes) => void;
|
|
545
|
+
private static isLiveRecvTransceiver;
|
|
546
|
+
private stopExcessRecvTransceivers;
|
|
545
547
|
addTransceiver: (track: MediaStreamTrack, transceiverConfig: RTCRtpTransceiverInit) => void;
|
|
546
548
|
setOnTrackReady: (onTrackReady: (event: RTCTrackEvent) => void) => void;
|
|
547
549
|
setRemoteDescription: (data: RTCSessionDescriptionInit) => Promise<void>;
|
|
@@ -638,7 +640,9 @@ declare class WebRTCEndpoint extends WebRTCEndpoint_base {
|
|
|
638
640
|
* webrtcChannel.on("mediaEvent", (event) => webrtc.receiveMediaEvent(event.data));
|
|
639
641
|
* ```
|
|
640
642
|
*/
|
|
643
|
+
private mediaEventQueue;
|
|
641
644
|
receiveMediaEvent: (mediaEvent: SerializedMediaEvent) => Promise<void>;
|
|
645
|
+
private handleConnected;
|
|
642
646
|
private getEndpointId;
|
|
643
647
|
private onTrackReady;
|
|
644
648
|
/**
|