@voicenter-team/opensips-js 1.0.81 → 1.0.82
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +6 -0
- package/dist/opensips-js.cjs.js +2 -2
- package/dist/opensips-js.es.js +17 -11
- package/dist/opensips-js.iife.js +2 -2
- package/dist/opensips-js.umd.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -71,6 +71,9 @@ declare class AudioModule {
|
|
71
71
|
constructor(context: OpenSIPSJS);
|
72
72
|
get sipOptions(): {
|
73
73
|
mediaConstraints: {
|
74
|
+
video: boolean;
|
75
|
+
audio: boolean;
|
76
|
+
} | {
|
74
77
|
audio: {
|
75
78
|
deviceId: {
|
76
79
|
exact: string;
|
@@ -102,6 +105,9 @@ declare class AudioModule {
|
|
102
105
|
get getInputDeviceList(): MediaDeviceInfo[];
|
103
106
|
get getOutputDeviceList(): MediaDeviceInfo[];
|
104
107
|
get getUserMediaConstraints(): {
|
108
|
+
video: boolean;
|
109
|
+
audio: boolean;
|
110
|
+
} | {
|
105
111
|
audio: {
|
106
112
|
deviceId: {
|
107
113
|
exact: string;
|