@wxcc-desktop/sdk 2.0.15 → 3.0.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 +4 -0
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +1 -1
- package/dist/types/index.d.ts +2 -0
- package/dist/types/internal-types/index.d.ts +1 -0
- package/dist/types/jsapi/actions-jsapi.d.ts +2 -2
- package/dist/types/jsapi/agent-config-jsapi.d.ts +1 -1
- package/dist/types/jsapi/agent-contact-jsapi.d.ts +2 -2
- package/dist/types/jsapi/agent-state-info-jsapi.d.ts +1 -1
- package/dist/types/jsapi/agent-station-logout-jsapi.d.ts +1 -1
- package/dist/types/jsapi/ai-assistant-jsapi.d.ts +1 -1
- package/dist/types/jsapi/call-monitoring-jsapi.d.ts +1 -1
- package/dist/types/jsapi/common/_service-checker.d.ts +1 -1
- package/dist/types/jsapi/common/_service-events.d.ts +1 -1
- package/dist/types/jsapi/common/js-api-utils.d.ts +1 -1
- package/dist/types/jsapi/config-jsapi.d.ts +1 -1
- package/dist/types/jsapi/data-notifs-jsapi.d.ts +1 -1
- package/dist/types/jsapi/dialer-jsapi.d.ts +1 -1
- package/dist/types/jsapi/i18n-jsapi.d.ts +1 -1
- package/dist/types/jsapi/post-interaction-jsapi.d.ts +1 -1
- package/dist/types/jsapi/schedule-callback-jsapi.d.ts +5 -4
- package/dist/types/jsapi/screenpop-jsapi.d.ts +1 -1
- package/dist/types/jsapi/shortcut-key-jsapi.d.ts +1 -1
- package/dist/types/jsapi/validationUtils.d.ts +3 -3
- package/dist/types/jsapi/webex-metrics-internal-jsapi.d.ts +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -265,6 +265,10 @@ await Desktop.agentContact.vteamList({ ... });
|
|
|
265
265
|
await Desktop.agentContact.pauseRecording({ ... });
|
|
266
266
|
await Desktop.agentContact.resumeRecording({ ... });
|
|
267
267
|
|
|
268
|
+
// Sending DTMF tones (accepts both string and number):
|
|
269
|
+
Desktop.agentContact.sendDtmf("5"); // string digit
|
|
270
|
+
Desktop.agentContact.sendDtmf(5); // numeric digit
|
|
271
|
+
|
|
268
272
|
// List of new routing API's
|
|
269
273
|
await Desktop.agentContact.acceptV2({ ... });
|
|
270
274
|
await Desktop.agentContact.cancelTaskV2({ ... });
|