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