opensips-js 0.1.41 → 0.1.43
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 +2 -0
- package/dist/opensips-js.cjs.js +2 -2
- package/dist/opensips-js.es.js +186 -160
- package/dist/opensips-js.iife.js +4 -4
- package/dist/opensips-js.umd.js +4 -4
- package/package.json +1 -1
- package/src/types/listeners.d.ts +115 -115
- package/src/types/rtc.d.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -74,6 +74,7 @@ declare class AudioModule {
|
|
|
74
74
|
private vadSessionState;
|
|
75
75
|
private vadInterval;
|
|
76
76
|
private vadMrsInterval;
|
|
77
|
+
private vadSessionGeneration;
|
|
77
78
|
private ringbackTimers;
|
|
78
79
|
private ringbackAudioContexts;
|
|
79
80
|
private ringbackSessionProgressReceived;
|
|
@@ -1005,6 +1006,7 @@ declare interface RTCSessionExtended extends RTCSession {
|
|
|
1005
1006
|
_videoMuted: boolean
|
|
1006
1007
|
_status: number
|
|
1007
1008
|
_remote_identity: RemoteIdentityCallType
|
|
1009
|
+
_remote_party_display_name: string | null
|
|
1008
1010
|
answer(options?: AnswerOptionsExtended): void
|
|
1009
1011
|
init_icncoming(request: IncomingRequest): void
|
|
1010
1012
|
}
|