export interface FMCCacheContent { request: { url: string; headers?: Record; method?: RequestInit["method"]; bodyJson?: Record; bodyText?: string; }; response: { ok: boolean; status: number; statusText: string; headers: Record; bodyJson?: Record; bodyText?: string; }; }