Releases: team-telnyx/webrtc
Releases · team-telnyx/webrtc
webrtc@2.2.4
TypeScript documentation updates
react-client/v1.0.0
Telnyx React Client is out of beta! 🎉
Now, it's easier than ever to make audio and video calls from your React web apps. How easy? Try it out yourself and let us know:
import { TelnyxRTCProvider, useNotification, Audio } from '@telnyx/react-client';
function Phone() {
const notification = useNotification();
const activeCall = notification && notification.call;
return (
<div>
{activeCall &&
activeCall.state === 'ringing' &&
'Hello world, indeed.'}
<Audio stream={activeCall && activeCall.remoteStream} />
</div>
);
}
function App() {
const credential = {
login_token: 'mytoken',
};
return (
<TelnyxRTCProvider credential={credential}>
<Phone />
</TelnyxRTCProvider>
);
}
Hop into our Slack channel if you have any questions or feedback, and open an issue on GitHub if you find any 🐛z.
🔗
webrtc@2.2.3
TypeScript documentation updates
webrtc@2.5.3
- Deploing the new version
webrtc@2.5.2
- Add SDK VERSION on WS messages
webrtc@2.5.0
Adding dynamic bandwidth control
webrtc@2.4.0
- Change SDP Semantics to use the new
unified-plan
webrtc@2.3.0
react-client@1.0.0-beta.0
react-client/v1.0.0-beta.0 Release 1.0.0-beta.0