import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DocumentPermissionsDefinition } from "./documentpermissionsdefinition.js"; import { DocumentStatusResponse } from "./documentstatusresponse.js"; /** * Describes the response body of the /debug/{datasource}/document API call */ export type DebugDocumentResponse = { /** * Describes the document status response body */ status?: DocumentStatusResponse | undefined; /** * describes the access control details of the document */ uploadedPermissions?: DocumentPermissionsDefinition | undefined; }; /** @internal */ export declare const DebugDocumentResponse$inboundSchema: z.ZodType; export declare function debugDocumentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=debugdocumentresponse.d.ts.map