This commit is contained in:
Owen
2026-04-15 14:26:34 -07:00
parent 7d50703c26
commit cf741a6f87
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// stub
export async function fireHealthCheckHealthyAlert(
orgId: string,
healthCheckId: number,
healthCheckName?: string,
extra?: Record<string, unknown>
): Promise<void> {
return;
}
export async function fireHealthCheckNotHealthyAlert(
orgId: string,
healthCheckId: number,
healthCheckName?: string,
extra?: Record<string, unknown>
): Promise<void> {
return;
}

View File

@@ -0,0 +1,19 @@
// stub
export async function fireSiteOnlineAlert(
orgId: string,
siteId: number,
siteName?: string,
extra?: Record<string, unknown>
): Promise<void> {
return;
}
export async function fireSiteOfflineAlert(
orgId: string,
siteId: number,
siteName?: string,
extra?: Record<string, unknown>
): Promise<void> {
return;
}

View File

@@ -0,0 +1,2 @@
export * from "./events/siteEvents";
export * from "./events/healthCheckEvents";