You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
324 B

/** 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<string, unknown>;