import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Sort order by the created_at timestamp of the objects. 'asc' for ascending order and 'desc' for descending order. */ export declare const ListVectorStoresQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; /** * Sort order by the created_at timestamp of the objects. 'asc' for ascending order and 'desc' for descending order. */ export type ListVectorStoresQueryParamOrder = ClosedEnum; export type ListVectorStoresRequest = { limit?: number | undefined; /** * Sort order by the created_at timestamp of the objects. 'asc' for ascending order and 'desc' for descending order. */ order?: ListVectorStoresQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListVectorStoresQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListVectorStoresQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListVectorStoresRequest$inboundSchema: z.ZodType; /** @internal */ export type ListVectorStoresRequest$Outbound = { limit: number; order: string; after?: string | undefined; before?: string | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListVectorStoresRequest$outboundSchema: z.ZodType; export declare function listVectorStoresRequestToJSON(listVectorStoresRequest: ListVectorStoresRequest): string; export declare function listVectorStoresRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listvectorstores.d.ts.map