@signalwire/realtime-api v3.10.0
rsowald
released this
21 Jul 18:11
·
320 commits
to main
since this release
This small release of version 3.10 of the Realtime SDK introduces a new method for Voice calls and fixes a Voice bug.
Improvements
We have added the call.pass()
method to pass an incoming call to another RELAY consumer. 6a35f0a3
This will allow a consumer to decline incoming calls without ending the call and redirect the call to another RELAY client.
client.on("call.received", async (call) => {
await call.pass();
});
Fixes
- Fixed an undefined
setPayload
method on the CallTap instance.a7426731