Base protocol frame

interface DiscoverMessage {
    payload: Record<string, never>;
    requestId?: string;
    timestamp: number;
    type: "discover";
}

Hierarchy (view full)

Properties

payload: Record<string, never>
requestId?: string

Request correlation ID for request/response flows

timestamp: number
type