/** PRD §11.5 / 附录 C 预警类型 */ export type AlertType = | "PRICE_DEVIATION" | "STALE_FALLBACK" | "RPA_FAILED" | "RPA_CAPTCHA" | "STRUCT_CHANGE" | "SESSION_EXPIRED" | "SECURITY" | "MANUAL_FALLBACK"; export type AlertStatus = "open" | "resolved"; export type AlertDetail = Record;