export type RuntimeInboundRouteKind = "active_endpoint" | "reconnecting_endpoint"; export interface RuntimeInboundRoutedEvent { type: "runtime_inbound_routed"; version: 1; source_message_id: string; routed_to_endpoint_id: string; route_kind: RuntimeInboundRouteKind; routed_at: number; } export interface RuntimeInboundRouteClaimEvent { type: "runtime_inbound_route_claim"; version: 1; source_message_id: string; routed_to_endpoint_id: string; route_kind: RuntimeInboundRouteKind; claimed_at: number; } //# sourceMappingURL=runtime-inbound-routed-event-types.d.ts.map