export const name = "SherpaDesk"; export const url = "https://app.sherpadesk.com/new/login/"; // No usable public status API — status.sherpadesk.com is a Pingdom uptime // report page with an invalid cert. Synthetic check against the app portal. const PROBE_URL = "https://app.sherpadesk.com/new/login/"; export async function checkStatus() { const res = await fetch(PROBE_URL, { method: "HEAD" }); return { name, status: "operational", message: `App portal responding (HTTP ${res.status}).`, lastUpdated: new Date().toISOString(), }; }