@wxcc-desktop/sdk 2.0.14 → 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 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({ ... });