@telnyx/webrtc 2.25.26-beta.3 → 2.26.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.
- package/lib/bundle.js +1 -1
- package/lib/bundle.mjs +1 -1
- package/lib/packages/js/src/Modules/Verto/util/interfaces.d.ts +0 -1
- package/lib/packages/js/src/Modules/Verto/webrtc/BaseCall.d.ts +0 -1
- package/lib/packages/js/src/Modules/Verto/webrtc/interfaces.d.ts +0 -1
- package/package.json +1 -1
- package/lib/packages/js/src/Modules/Verto/webrtc/CandidateFilter.d.ts +0 -13
|
@@ -41,7 +41,6 @@ export default abstract class BaseCall implements IWebRTCCall {
|
|
|
41
41
|
private _signalingStateClosed;
|
|
42
42
|
private _creatingPeer;
|
|
43
43
|
private _isRecovering;
|
|
44
|
-
private _candidateFilter;
|
|
45
44
|
constructor(session: BrowserSession, opts?: IVertoCallOptions);
|
|
46
45
|
private get performanceMetrics();
|
|
47
46
|
get nodeId(): string;
|
|
@@ -66,7 +66,6 @@ export interface IVertoCallOptions {
|
|
|
66
66
|
prefetchIceCandidates?: boolean;
|
|
67
67
|
forceRelayCandidate?: boolean;
|
|
68
68
|
trickleIce?: boolean;
|
|
69
|
-
singleInterfaceIce?: boolean;
|
|
70
69
|
keepConnectionAliveOnSocketClose?: boolean;
|
|
71
70
|
mutedMicOnStart?: boolean;
|
|
72
71
|
recoveredCallId?: string;
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare class CandidateFilter {
|
|
2
|
-
private _lockedRaddr;
|
|
3
|
-
private _enabled;
|
|
4
|
-
private _onCandidate;
|
|
5
|
-
private _onEndOfCandidates;
|
|
6
|
-
private _filteredCount;
|
|
7
|
-
private _passedCount;
|
|
8
|
-
constructor(enabled: boolean, onCandidate: (candidate: RTCIceCandidate) => void, onEndOfCandidates: () => void);
|
|
9
|
-
add(event: RTCPeerConnectionIceEvent): void;
|
|
10
|
-
reset(): void;
|
|
11
|
-
private _extractRaddr;
|
|
12
|
-
private _isTcpCandidate;
|
|
13
|
-
}
|