import { InvalidateQueryFilters, QueryClient, UseQueryResult, UseSuspenseQueryResult } from "@tanstack/react-query"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { QueryHookOptions, SuspenseQueryHookOptions, TupleToPrefixes } from "./_types.js"; import { buildLlmVectorStoresGetFileBatchQuery, LlmVectorStoresGetFileBatchQueryData, prefetchLlmVectorStoresGetFileBatch, queryKeyLlmVectorStoresGetFileBatch } from "./llmVectorStoresGetFileBatch.core.js"; export { buildLlmVectorStoresGetFileBatchQuery, type LlmVectorStoresGetFileBatchQueryData, prefetchLlmVectorStoresGetFileBatch, queryKeyLlmVectorStoresGetFileBatch, }; export type LlmVectorStoresGetFileBatchQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * Retrieve file batch status * * @remarks * Retrieves the status of a specific file batch operation within a vector store. */ export declare function useLlmVectorStoresGetFileBatch(request: operations.GetVectorStoreFileBatchRequest, options?: QueryHookOptions): UseQueryResult; /** * Retrieve file batch status * * @remarks * Retrieves the status of a specific file batch operation within a vector store. */ export declare function useLlmVectorStoresGetFileBatchSuspense(request: operations.GetVectorStoreFileBatchRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmVectorStoresGetFileBatchData(client: QueryClient, queryKeyBase: [ vectorStoreId: string, batchId: string, parameters: { xOnBehalfOf?: string | undefined; } ], data: LlmVectorStoresGetFileBatchQueryData): LlmVectorStoresGetFileBatchQueryData | undefined; export declare function invalidateLlmVectorStoresGetFileBatch(client: QueryClient, queryKeyBase: TupleToPrefixes<[ vectorStoreId: string, batchId: string, parameters: { xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmVectorStoresGetFileBatch(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmVectorStoresGetFileBatch.d.ts.map