@voicenter-team/opensips-js 1.0.126 → 1.0.128
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 -2
- package/dist/opensips-js.cjs.js +1206 -1207
- package/dist/opensips-js.es.js +64549 -64716
- package/dist/opensips-js.iife.js +1204 -1205
- package/dist/opensips-js.umd.js +1204 -1205
- package/package.json +1 -1
- package/src/types/rtc.d.ts +1 -1
package/dist/index.d.ts
CHANGED
@@ -185,7 +185,7 @@ declare class AudioModule {
|
|
185
185
|
private stopVUMeter;
|
186
186
|
setupStream(): Promise<void>;
|
187
187
|
private triggerAddStream;
|
188
|
-
initCall(target: string, addToCurrentRoom: boolean): void;
|
188
|
+
initCall(target: string, addToCurrentRoom: boolean, holdOtherCalls?: boolean): void;
|
189
189
|
private processRoomChange;
|
190
190
|
}
|
191
191
|
|
@@ -991,7 +991,7 @@ declare interface TriggerListenerOptions {
|
|
991
991
|
}
|
992
992
|
|
993
993
|
declare type UAConfigurationExtended = UAConfiguration & {
|
994
|
-
overrideUserAgent
|
994
|
+
overrideUserAgent?: (userAgent: string) => string
|
995
995
|
}
|
996
996
|
|
997
997
|
declare const UAConstructor: typeof UA;
|