import * as z from "zod/v3"; import { DocumentDefinition, DocumentDefinition$Outbound } from "./documentdefinition.js"; /** * Describes the request body of the /indexdocuments API call */ export type IndexDocumentsRequest = { /** * Optional id parameter to identify and track a batch of documents. */ uploadId?: string | undefined; /** * Datasource of the documents */ datasource: string; /** * Batch of documents being added/updated */ documents: Array; }; /** @internal */ export type IndexDocumentsRequest$Outbound = { uploadId?: string | undefined; datasource: string; documents: Array; }; /** @internal */ export declare const IndexDocumentsRequest$outboundSchema: z.ZodType; export declare function indexDocumentsRequestToJSON(indexDocumentsRequest: IndexDocumentsRequest): string; //# sourceMappingURL=indexdocumentsrequest.d.ts.map