v3.0.0
<a name"3.0.0">
3.0.0 (2019-05-07)
Features
Breaking Changes
- now subscribes to callStates instead of callRequests
Before:
api.customer('SYNC')
.realTime()
.callRequests()
.on('update', callRequest => callRequest);
After:
api.customer('SYNC')
.realTime()
.callStates()
.on('update', callState => callState);
Signed-off-by: Jeff Cuevas-Koch [email protected]
- feat(voip): Support voip heartbeats
Signed-off-by: Jeff Cuevas-Koch [email protected]
(09e728e6)