opensips-js-vue 0.1.13 → 0.1.15

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.
@@ -146,7 +146,9 @@ declare interface IMessage extends MSRPSessionExtended {
146
146
 
147
147
  export declare type IncomingMSRPSessionListener = (event: IncomingMSRPSessionEvent) => void;
148
148
 
149
- declare type InitOpensipsConfiguration = Omit<IOpenSIPSConfiguration, 'uri' | 'session_timers' | 'password'>
149
+ declare type InitOpensipsConfiguration = Omit<IOpenSIPSConfiguration, 'uri' | 'session_timers' | 'password' | 'noiseReductionOptions'> & {
150
+ noiseReductionOptions?: NoiseReductionOptionsWithoutVad
151
+ }
150
152
 
151
153
  export declare type IntervalType = ReturnType<typeof setInterval>
152
154
 
@@ -250,6 +252,8 @@ export declare interface NoiseReductionOptions {
250
252
  noiseCheckInterval?: number
251
253
  }
252
254
 
255
+ declare type NoiseReductionOptionsWithoutVad = Omit<NoiseReductionOptions, 'vadModule'>
256
+
253
257
  export declare type NoiseReductionStateEventType = {
254
258
  sessionId: string
255
259
  enabled: boolean