core-utils
    Preparing search index...
    interface BrowserLifecycleRecord {
        apiGatewayRequestId?: string;
        cdpRequestId?: string;
        classification:
            | "no_response_headers"
            | "headers_without_body_completion"
            | "network_failure"
            | "completed";
        connection?: BrowserLifecycleConnection;
        encodedBytes?: BrowserLifecycleEncodedBytes;
        httpStatus?: number;
        loaderId?: string;
        loadingFailed?: BrowserLifecycleFailureEvent;
        loadingFinished?: BrowserLifecycleEvent;
        method: string;
        origin: string;
        pathTemplate: string;
        playwrightRequestKey?: string;
        protocol?: string;
        requestStarted: BrowserLifecycleEvent;
        responseReceived?: BrowserLifecycleEvent;
        spanId?: string;
        traceId?: string;
    }
    Index
    apiGatewayRequestId?: string
    cdpRequestId?: string
    classification:
        | "no_response_headers"
        | "headers_without_body_completion"
        | "network_failure"
        | "completed"
    httpStatus?: number
    loaderId?: string
    loadingFinished?: BrowserLifecycleEvent
    method: string
    origin: string
    pathTemplate: string
    playwrightRequestKey?: string
    protocol?: string
    requestStarted: BrowserLifecycleEvent
    responseReceived?: BrowserLifecycleEvent
    spanId?: string
    traceId?: string