opensips-js 0.1.42 → 0.1.44
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 +69 -69
- package/dist/opensips-js.es.js +2879 -2860
- package/dist/opensips-js.iife.js +70 -70
- package/dist/opensips-js.umd.js +70 -70
- package/package.json +1 -1
- package/src/types/rtc.d.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -186,6 +186,7 @@ declare class AudioModule {
|
|
|
186
186
|
updateCall(value: ICall): void;
|
|
187
187
|
updateRoom(value: IRoomUpdate): void;
|
|
188
188
|
private hasAutoAnswerHeaders;
|
|
189
|
+
private refreshRemotePartyDisplayName;
|
|
189
190
|
private addCall;
|
|
190
191
|
private addCallStatus;
|
|
191
192
|
private updateCallStatus;
|
|
@@ -1006,6 +1007,7 @@ declare interface RTCSessionExtended extends RTCSession {
|
|
|
1006
1007
|
_videoMuted: boolean
|
|
1007
1008
|
_status: number
|
|
1008
1009
|
_remote_identity: RemoteIdentityCallType
|
|
1010
|
+
_remote_party_display_name: string | null
|
|
1009
1011
|
answer(options?: AnswerOptionsExtended): void
|
|
1010
1012
|
init_icncoming(request: IncomingRequest): void
|
|
1011
1013
|
}
|