MAESTRO: wire header analyzer controls and captcha

This commit is contained in:
Mariusz Banach
2026-02-18 04:40:57 +01:00
parent cdda2b987f
commit ffce9053a8
9 changed files with 199 additions and 22 deletions

View File

@@ -1,13 +1,12 @@
import type { CaptchaChallengeData } from "../types/captcha";
const DEFAULT_BASE_URL = "http://localhost:8000";
export interface ApiErrorPayload {
error?: string;
detail?: string;
retryAfter?: number;
captchaChallenge?: {
challengeToken: string;
imageBase64: string;
};
captchaChallenge?: CaptchaChallengeData;
}
export class ApiError extends Error {