import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response for adding a document to an upload request */ export type AddWorkspaceUploadRequestDocumentResponse = { /** * The ID of the upload request */ uploadRequestId: string; /** * The ID of the document that was added */ documentId: string; /** * The name of the document */ documentName: string | null; }; /** @internal */ export declare const AddWorkspaceUploadRequestDocumentResponse$inboundSchema: z.ZodType; export declare function addWorkspaceUploadRequestDocumentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addworkspaceuploadrequestdocumentresponse.d.ts.map