diff --git a/changelog/4313.added.2.md b/changelog/4313.added.2.md new file mode 100644 index 000000000..2093e0a8a --- /dev/null +++ b/changelog/4313.added.2.md @@ -0,0 +1 @@ +- Added `buttons` field to `OutputDTMFFrame` and `OutputDTMFUrgentFrame` for sending multi-key DTMF sequences as a `list[KeypadEntry]`. Use `OutputDTMFFrame.from_string("123#")` (or the equivalent on `OutputDTMFUrgentFrame`) to build one from a dial string, and `to_string()` to convert back. diff --git a/changelog/4313.added.3.md b/changelog/4313.added.3.md new file mode 100644 index 000000000..8dc2c89f1 --- /dev/null +++ b/changelog/4313.added.3.md @@ -0,0 +1 @@ +- Added `DailyOutputDTMFFrame` and `DailyOutputDTMFUrgentFrame` frames. In addition to the inherited `buttons`, they accept `session_id`, `digit_duration_ms` and `method`, which are forwarded to Daily's `send_dtmf` as `sessionId`, `digitDurationMs` and `method`. diff --git a/changelog/4313.added.md b/changelog/4313.added.md index 738744a80..36e4b4f2e 100644 --- a/changelog/4313.added.md +++ b/changelog/4313.added.md @@ -1,3 +1 @@ - Added `DailyTransport.send_dtmf()` to expose the Daily call client's DTMF sending capability, enabling applications to send tones during a call (e.g. IVR navigation). -- Added `buttons` field to `OutputDTMFFrame` and `OutputDTMFUrgentFrame` for sending multi-key DTMF sequences as a `list[KeypadEntry]`. Use `OutputDTMFFrame.from_string("123#")` (or the equivalent on `OutputDTMFUrgentFrame`) to build one from a dial string. -- Added `DailyOutputDTMFFrame` and `DailyOutputDTMFUrgentFrame` frames. In addition to the inherited `buttons`, they accept `session_id`, `digit_duration_ms` and `method`, which are forwarded to Daily's `send_dtmf` as `sessionId`, `digitDurationMs` and `method`.