opensips-js-vue 0.1.14 → 0.1.16
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 +4 -2
- package/library/super.mjs +10619 -12203
- package/library/super.mjs.map +1 -1
- package/library/super.umd.js +1139 -1143
- package/library/super.umd.js.map +1 -1
- package/package.json +3 -3
package/library/index.d.ts
CHANGED
|
@@ -147,7 +147,7 @@ declare interface IMessage extends MSRPSessionExtended {
|
|
|
147
147
|
export declare type IncomingMSRPSessionListener = (event: IncomingMSRPSessionEvent) => void;
|
|
148
148
|
|
|
149
149
|
declare type InitOpensipsConfiguration = Omit<IOpenSIPSConfiguration, 'uri' | 'session_timers' | 'password' | 'noiseReductionOptions'> & {
|
|
150
|
-
noiseReductionOptions?:
|
|
150
|
+
noiseReductionOptions?: NoiseReductionOptionsWithoutVadModule
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
export declare type IntervalType = ReturnType<typeof setInterval>
|
|
@@ -252,7 +252,7 @@ export declare interface NoiseReductionOptions {
|
|
|
252
252
|
noiseCheckInterval?: number
|
|
253
253
|
}
|
|
254
254
|
|
|
255
|
-
declare type
|
|
255
|
+
export declare type NoiseReductionOptionsWithoutVadModule = Omit<NoiseReductionOptions, 'vadModule'>
|
|
256
256
|
|
|
257
257
|
export declare type NoiseReductionStateEventType = {
|
|
258
258
|
sessionId: string
|
|
@@ -464,6 +464,8 @@ declare interface VsipAPIActions {
|
|
|
464
464
|
setMuteWhenJoin: (state: boolean) => void
|
|
465
465
|
setDND: (state: boolean) => void
|
|
466
466
|
setCallWaiting: (state: boolean) => void
|
|
467
|
+
setVADConfiguration: (config: Partial<NoiseReductionOptionsWithoutVadModule>) => void
|
|
468
|
+
getNoiseReductionMode: () => NoiseReductionMode | undefined
|
|
467
469
|
terminateCall: (callId: string) => void
|
|
468
470
|
transferCall: (callId: string, target: string) => void
|
|
469
471
|
mergeCall: (roomId: number) => void
|