Stone.js API
    Preparing search index...

    What the endpoint answers: one status, and a line per check.

    interface HealthReport {
        checks: Record<string, HealthCheckResult>;
        status: "healthy" | "unhealthy";
    }
    Index
    checks: Record<string, HealthCheckResult>
    status: "healthy" | "unhealthy"