feat: add SMS diagnostics admin check

This commit is contained in:
unknown
2026-07-16 16:23:12 +09:00
parent ae1f30592d
commit 9c4dac9a70
7 changed files with 146 additions and 2 deletions

View File

@@ -48,6 +48,17 @@ export interface Watcher1Settings {
contact: string;
}
export interface SmsDiagnosticsResult {
provider: string;
url: string;
ok: boolean;
reachable: boolean;
httpStatus: number | null;
elapsedMs: number;
checkedAt: string;
error: string | null;
}
export interface Team {
id: number;
code: string;