feat: add sentinel error detail deep links

This commit is contained in:
Codex
2026-07-07 00:36:26 +00:00
parent 46423e046b
commit 45c834004a
12 changed files with 595 additions and 17 deletions
@@ -115,6 +115,17 @@ export type WebProbeSentinelOptions =
readonly full: boolean;
readonly timeoutSeconds: number;
}
| {
readonly kind: "error";
readonly action: "get";
readonly node: string;
readonly lane: string;
readonly sentinelId: string | null;
readonly errorId: string;
readonly raw: boolean;
readonly full: boolean;
readonly timeoutSeconds: number;
}
| {
readonly kind: "dashboard";
readonly action: WebProbeSentinelDashboardAction;