Releases: team-telnyx/webrtc
Releases · team-telnyx/webrtc
[email protected]
[email protected]
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.
🔗
[email protected]
TypeScript documentation updates
[email protected]
- Deploing the new version
[email protected]
- Add SDK VERSION on WS messages
[email protected]
Adding dynamic bandwidth control
[email protected]
- Change SDP Semantics to use the new
unified-plan
[email protected]
[email protected]
react-client/v1.0.0-beta.0 Release 1.0.0-beta.0