import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DebugDocumentResponse } from "./debugdocumentresponse.js"; /** * Describes the response body of a single document in the /debug/{datasource}/documents API call */ export type DebugDocumentsResponseItem = { /** * Id of the document */ docId?: string | undefined; /** * objectType of the document */ objectType?: string | undefined; /** * Describes the response body of the /debug/{datasource}/document API call */ debugInfo?: DebugDocumentResponse | undefined; }; /** @internal */ export declare const DebugDocumentsResponseItem$inboundSchema: z.ZodType; export declare function debugDocumentsResponseItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=debugdocumentsresponseitem.d.ts.map