import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateVectorStoreFileRequest = { vectorStoreId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; createVectorStoreFileRequest: components.CreateVectorStoreFileRequest; }; /** @internal */ export declare const CreateVectorStoreFileRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateVectorStoreFileRequest$Outbound = { vector_store_id: string; "X-On-Behalf-Of"?: string | undefined; CreateVectorStoreFileRequest: components.CreateVectorStoreFileRequest$Outbound; }; /** @internal */ export declare const CreateVectorStoreFileRequest$outboundSchema: z.ZodType; export declare function createVectorStoreFileRequestToJSON(createVectorStoreFileRequest: CreateVectorStoreFileRequest): string; export declare function createVectorStoreFileRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createvectorstorefile.d.ts.map