import { MessageSIPBody } from './messageSIPBody.js'; import '@vonage/messages'; type MessageSIPMachineBody = { /** * Type of SIP call */ type: string; /** * Confidence of the machine detection */ confidence: number; } & MessageSIPBody; export type { MessageSIPMachineBody };