ue-softphone-sdk 1.0.0 → 1.1.0
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 +2 -15
- package/dist/index.d.ts +6 -0
- package/dist/ue-softphone-sdk.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +66 -3
package/README.md
CHANGED
|
@@ -2,20 +2,7 @@
|
|
|
2
2
|
* @Author: cuixuecheng
|
|
3
3
|
* @Date: 2023-02-21 19:49:47
|
|
4
4
|
* @LastEditors: cuixuecheng
|
|
5
|
-
* @LastEditTime: 2023-07-02 12:
|
|
5
|
+
* @LastEditTime: 2023-07-02 12:55:08
|
|
6
6
|
* @Description:
|
|
7
7
|
-->
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
This project has been created using **rollup**, you can now run
|
|
11
|
-
|
|
12
|
-
```
|
|
13
|
-
npm install
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
```
|
|
18
|
-
npm run dev
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
to bundle your application
|
|
8
|
+
极简互联电话条sdk
|
package/dist/index.d.ts
CHANGED
|
@@ -134,6 +134,11 @@ interface satisfactionParams {
|
|
|
134
134
|
success?: Function;
|
|
135
135
|
fail?: Function;
|
|
136
136
|
}
|
|
137
|
+
interface meetingParams {
|
|
138
|
+
number: String;
|
|
139
|
+
success?: Function;
|
|
140
|
+
fail?: Function;
|
|
141
|
+
}
|
|
137
142
|
interface listenParams {
|
|
138
143
|
agentNumber: String;
|
|
139
144
|
success?: Function;
|
|
@@ -245,6 +250,7 @@ export default class ueSoftphone {
|
|
|
245
250
|
consultTransfer(params: consultTransferParams): void;
|
|
246
251
|
threeWayCall(params: threeWayCallParams): void;
|
|
247
252
|
satisfaction(params: satisfactionParams): void;
|
|
253
|
+
meeting(params: meetingParams): void;
|
|
248
254
|
listen(params: listenParams): void;
|
|
249
255
|
loot(params: lootParams): void;
|
|
250
256
|
whisper(params: whisperParams): void;
|