Merge branch 'develop' into feat/read-only-token

This commit is contained in:
Shivam Mishra
2026-06-08 18:08:12 +05:30
committed by GitHub
132 changed files with 2438 additions and 750 deletions
@@ -48,6 +48,12 @@ class TwilioVoiceClient extends EventTarget {
return !!this.activeConnection;
}
setMuted(shouldMute) {
if (!this.activeConnection) return false;
this.activeConnection.mute(shouldMute);
return shouldMute;
}
endClientCall() {
if (this.activeConnection) {
this.activeConnection.disconnect();