/** Call endpoint status returned by the Calls API. */ type CallEndpointStatus = 'offline' | 'online' | string; /** Call endpoint entry returned by the Calls API. */ interface CallEndpoint { endpoint: string; status: CallEndpointStatus; resource: string; technology: string; channel_ids: string[]; } export type { CallEndpoint, CallEndpointStatus };