import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DebugDocumentsResponseItem } from "./debugdocumentsresponseitem.js"; /** * Describes the response body of a single document in the /debug/{datasource}/documents API call */ export type DebugDocumentsResponse = { /** * List of document ids/urls and their debug information */ documentStatuses?: Array | undefined; }; /** @internal */ export declare const DebugDocumentsResponse$inboundSchema: z.ZodType; export declare function debugDocumentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=debugdocumentsresponse.d.ts.map