opensips-js 0.1.43 → 0.1.45
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 +90 -90
- package/dist/opensips-js.es.js +4628 -4606
- package/dist/opensips-js.iife.js +90 -90
- package/dist/opensips-js.umd.js +90 -90
- 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 refreshRemotePartyId;
|
|
189
190
|
private addCall;
|
|
190
191
|
private addCallStatus;
|
|
191
192
|
private updateCallStatus;
|
|
@@ -1007,6 +1008,7 @@ declare interface RTCSessionExtended extends RTCSession {
|
|
|
1007
1008
|
_status: number
|
|
1008
1009
|
_remote_identity: RemoteIdentityCallType
|
|
1009
1010
|
_remote_party_display_name: string | null
|
|
1011
|
+
_remote_party_uri_user: string | null
|
|
1010
1012
|
answer(options?: AnswerOptionsExtended): void
|
|
1011
1013
|
init_icncoming(request: IncomingRequest): void
|
|
1012
1014
|
}
|