ue-softphone-sdk-beta 4.0.31 → 4.0.32
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/README.md
CHANGED
|
@@ -6,4 +6,10 @@
|
|
|
6
6
|
* @Description:
|
|
7
7
|
-->
|
|
8
8
|
极简互联电话条sdk
|
|
9
|
-
> 4.0.12 针对safari 浏览器获取麦克风权限的适配
|
|
9
|
+
> 4.0.12 针对safari 浏览器获取麦克风权限的适配
|
|
10
|
+
> 4.0.13 网络检测请求地址修改;增加音量检测事件
|
|
11
|
+
> 4.0.18 增加muteRing方法,关闭铃声
|
|
12
|
+
> 4.0.19 增加monitor监控开关,默认关闭;增加(监听,抢接,强拆,强插,耳语)方法
|
|
13
|
+
> 4.0.20
|
|
14
|
+
> a.增加closeSdkMonitor监控关闭方法,type(summary: 监控总览, agent: 座席监控, queue: 服务组监控)
|
|
15
|
+
> b.sdkMonitorMsg方法,开启监控总览 type类型由string改为array
|
|
@@ -168,7 +168,9 @@ interface breakinParams {
|
|
|
168
168
|
fail?: Function;
|
|
169
169
|
}
|
|
170
170
|
export default class ueSoftphone {
|
|
171
|
-
static
|
|
171
|
+
static summaryUeTimer: any;
|
|
172
|
+
static agentUeTimer: any;
|
|
173
|
+
static queueUeTimer: any;
|
|
172
174
|
static loginToken: String | undefined;
|
|
173
175
|
static agentInfo: any;
|
|
174
176
|
static initOptions: InitOptions;
|
|
@@ -219,6 +221,7 @@ export default class ueSoftphone {
|
|
|
219
221
|
private turnOffRingCallbacks;
|
|
220
222
|
muteRing: (callbacks: OnCallVolumeParams) => void;
|
|
221
223
|
sdkMonitorMsg: (params: any) => void;
|
|
224
|
+
closeSdkMonitor: (params: any) => void;
|
|
222
225
|
private initAgentQueue;
|
|
223
226
|
private initQueue;
|
|
224
227
|
static createQueueMonitorEventHandle(callbacks?: any): void;
|