Properly resolve import issues

This commit is contained in:
Owen
2026-04-21 22:05:01 -07:00
parent e2814517d6
commit bcd3bee148
5 changed files with 30 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ export async function fireHealthCheckHealthyAlert(
return;
}
export async function fireHealthCheckUnealthyAlert(
export async function fireHealthCheckUnhealthyAlert(
orgId: string,
healthCheckId: number,
healthCheckName?: string,

View File

@@ -0,0 +1,20 @@
export async function fireResourceHealthyAlert(
orgId: string,
resourceId: number,
resourceName?: string | null,
extra?: Record<string, unknown>
): Promise<void> {}
export async function fireResourceUnhealthyAlert(
orgId: string,
resourceId: number,
resourceName?: string | null,
extra?: Record<string, unknown>
): Promise<void> {}
export async function fireResourceToggleAlert(
orgId: string,
resourceId: number,
resourceName?: string | null,
extra?: Record<string, unknown>
): Promise<void> {}