@telnyx/react-native-voice-sdk
Version:
Telnyx React Native Voice SDK - A complete WebRTC voice calling solution
27 lines (23 loc) • 601 B
text/typescript
import uuid from 'uuid-random';
import { TelnyxRTCMethod } from './methods';
type KeepAlivePingEvent = {
id: number;
jsonrpc: '2.0';
method: 'telnyx_rtc.ping';
params: { serno: number };
voice_sdk_id: string;
};
export function isKeepAlivePing(msg: unknown): msg is KeepAlivePingEvent {
if (!msg) {
return false;
}
const temp: Partial<KeepAlivePingEvent> = msg;
return temp.method === TelnyxRTCMethod.PING && temp.params?.serno !== undefined;
}
export function createKeepAlivePingAck() {
return {
id: uuid(),
jsonrpc: '2.0',
method: TelnyxRTCMethod.PING,
};
}