Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
import type { ModelAuthStatusProvider } from "./types.ts";
/**
* True when a provider's auth should be actively monitored on the dashboard.
*
* Includes:
* - Providers with at least one OAuth or bearer-token profile (refreshable
* credentials that can expire and need rotation)
* - Providers with status="missing" (configured-but-not-logged-in — the
* server synthesizes these so the UI can prompt for login)
*
* Excludes API-key-only providers — their credentials don't expire on a
* schedule the dashboard can meaningfully monitor.
*
* Single source of truth for both the Overview card and the attention-items
* panel. Keep the two in sync by always routing through this helper.
*/
export function isMonitoredAuthProvider(p: ModelAuthStatusProvider): boolean {
if (p.status === "missing") {
return true;
}
if (!Array.isArray(p.profiles)) {
return false;
}
return p.profiles.some((prof) => prof.type === "oauth" || prof.type === "token");
}
¤ Dauer der Verarbeitung: 0.31 Sekunden
(vorverarbeitet am 2026-04-27)
¤
*© Formatika GbR, Deutschland