Fix oss build issues

This commit is contained in:
Owen
2026-04-27 16:30:54 -07:00
parent c03519b7f5
commit dbee049ac8
3 changed files with 10 additions and 4 deletions

View File

@@ -6,6 +6,7 @@ export async function fireHealthCheckHealthyAlert(
healthCheckName?: string,
healthCheckTargetId?: number | null,
extra?: Record<string, unknown>,
send: boolean = true,
trx?: unknown
): Promise<void> {
return;
@@ -17,6 +18,7 @@ export async function fireHealthCheckUnhealthyAlert(
healthCheckName?: string,
healthCheckTargetId?: number | null,
extra?: Record<string, unknown>,
send: boolean = true,
trx?: unknown
): Promise<void> {
return;
@@ -28,7 +30,8 @@ export async function fireHealthCheckUnknownAlert(
healthCheckName?: string | null,
healthCheckTargetId?: number | null,
extra?: Record<string, unknown>,
send: boolean = true,
trx?: unknown
): Promise<void> {
return;
}
}