@voicenter-team/opensips-js 1.0.84 → 1.0.86
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +3 -2
- package/dist/opensips-js.cjs.js +67 -66
- package/dist/opensips-js.es.js +3836 -3533
- package/dist/opensips-js.iife.js +73 -72
- package/dist/opensips-js.umd.js +67 -66
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -767,7 +767,8 @@ declare class UAExtended extends UAConstructor implements UAExtendedInterface {
|
|
767
767
|
_janus_sessions: any[];
|
768
768
|
constructor(configuration: UAConfiguration);
|
769
769
|
call(target: string, options?: CallOptionsExtended): RTCSession;
|
770
|
-
joinVideoCall(target: any, options: any): any;
|
770
|
+
joinVideoCall(target: any, displayName: any, options: any): any;
|
771
|
+
_loadConfig(configuration: any): void;
|
771
772
|
/**
|
772
773
|
* new MSRPSession
|
773
774
|
*/
|
@@ -828,7 +829,7 @@ declare class VideoModule {
|
|
828
829
|
private context;
|
829
830
|
constructor(context: any);
|
830
831
|
get sipOptions(): any;
|
831
|
-
initCall(target: string): void;
|
832
|
+
initCall(target: string, displayName: string): void;
|
832
833
|
}
|
833
834
|
|
834
835
|
declare type VideoModuleName = typeof MODULES.VIDEO
|