opensips-js-vue 0.1.26 → 0.1.28
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/library/index.d.ts +6 -0
- package/library/super.mjs +890 -855
- package/library/super.mjs.map +1 -1
- package/library/super.umd.js +151 -151
- package/library/super.umd.js.map +1 -1
- package/package.json +2 -2
package/library/index.d.ts
CHANGED
|
@@ -264,6 +264,11 @@ export declare interface NoiseReductionOptions {
|
|
|
264
264
|
|
|
265
265
|
export declare type NoiseReductionOptionsWithoutVadModule = Omit<NoiseReductionOptions, 'vadModule'>
|
|
266
266
|
|
|
267
|
+
declare interface NoiseReductionState {
|
|
268
|
+
sessionId: null | string
|
|
269
|
+
enabled: boolean
|
|
270
|
+
}
|
|
271
|
+
|
|
267
272
|
export declare type NoiseReductionStateEventType = {
|
|
268
273
|
sessionId: string
|
|
269
274
|
enabled: boolean
|
|
@@ -530,6 +535,7 @@ declare interface VsipAPIState {
|
|
|
530
535
|
callStatus: Ref<{ [key: string]: ICallStatus }>
|
|
531
536
|
callTime: Ref<{ [key: string]: ITimeData }>
|
|
532
537
|
callMetrics: Ref<{ [key: string]: unknown }>
|
|
538
|
+
noiseReductionState: Ref<NoiseReductionState>
|
|
533
539
|
}
|
|
534
540
|
|
|
535
541
|
declare interface WebrtcMetricsConfigType {
|