ue-softphone-sdk 4.0.14 → 4.0.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/dist/lib/types/index.d.ts +4 -0
- package/dist/lib/types/lib/sip.js/core/messages/md5.d.ts +1 -1
- package/dist/lib/ue-soft-phone.min.js +1 -1
- package/dist/types/index.d.ts +4 -0
- package/dist/types/lib/sip.js/core/messages/md5.d.ts +1 -1
- package/dist/ue-softphone-sdk.js +1 -1
- package/package.json +1 -1
|
@@ -174,14 +174,18 @@ export default class ueSoftphone {
|
|
|
174
174
|
private initnNetworkMonitoring;
|
|
175
175
|
listenCallNetork: (callbacks: OnCallEventParams) => void;
|
|
176
176
|
private volumeCallbacks;
|
|
177
|
+
private stopVolumeCallbacks;
|
|
177
178
|
private audioContext;
|
|
178
179
|
private analyser;
|
|
179
180
|
private dataArray;
|
|
180
181
|
private stream;
|
|
182
|
+
private volumeIntervalId;
|
|
181
183
|
private getMicrophoneVolume;
|
|
182
184
|
private initAudioDetection;
|
|
183
185
|
private startVolumeDetection;
|
|
186
|
+
stopVolumeDetection: () => void;
|
|
184
187
|
listenCallVolume: (callbacks: OnCallVolumeParams) => void;
|
|
188
|
+
stopListenVolume: (callbacks: OnCallVolumeParams) => void;
|
|
185
189
|
private initAgentQueue;
|
|
186
190
|
private initQueue;
|
|
187
191
|
static createQueueMonitorEventHandle(callbacks?: any): void;
|