ue-softphone-sdk 1.0.1 → 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/dist/index.d.ts +6 -0
- package/dist/ue-softphone-sdk.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +65 -2
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;
|