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 ModifyVectorStoreRequest = { vectorStoreId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; modifyVectorStoreRequest: components.ModifyVectorStoreRequest; }; /** @internal */ export declare const ModifyVectorStoreRequest$inboundSchema: z.ZodType; /** @internal */ export type ModifyVectorStoreRequest$Outbound = { vector_store_id: string; "X-On-Behalf-Of"?: string | undefined; ModifyVectorStoreRequest: components.ModifyVectorStoreRequest$Outbound; }; /** @internal */ export declare const ModifyVectorStoreRequest$outboundSchema: z.ZodType; export declare function modifyVectorStoreRequestToJSON(modifyVectorStoreRequest: ModifyVectorStoreRequest): string; export declare function modifyVectorStoreRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=modifyvectorstore.d.ts.map