@voicenter-team/opensips-js 1.0.96 → 1.0.97
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.ts
CHANGED
@@ -680,6 +680,7 @@ declare class OpenSIPSJS extends UAExtended {
|
|
680
680
|
private readonly newMSRPSessionEventName;
|
681
681
|
private isMSRPInitializingValue;
|
682
682
|
private isReconnecting;
|
683
|
+
private activeConnection;
|
683
684
|
audio: AudioModule;
|
684
685
|
msrp: MSRPModule;
|
685
686
|
video: VideoModule;
|
@@ -691,6 +692,7 @@ declare class OpenSIPSJS extends UAExtended {
|
|
691
692
|
emit(type: ListenersKeyType, args: any): boolean;
|
692
693
|
get sipDomain(): string;
|
693
694
|
begin(): this;
|
695
|
+
disconnect(): void;
|
694
696
|
subscribe(type: string, listener: (c: RTCSessionExtended) => void): void;
|
695
697
|
removeIListener(value: string): void;
|
696
698
|
triggerListener({ listenerType, session, event }: TriggerListenerOptions): void;
|