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 { buildLlmVectorStoresListFilesInBatchQuery, LlmVectorStoresListFilesInBatchQueryData, prefetchLlmVectorStoresListFilesInBatch, queryKeyLlmVectorStoresListFilesInBatch } from "./llmVectorStoresListFilesInBatch.core.js"; export { buildLlmVectorStoresListFilesInBatchQuery, type LlmVectorStoresListFilesInBatchQueryData, prefetchLlmVectorStoresListFilesInBatch, queryKeyLlmVectorStoresListFilesInBatch, }; export type LlmVectorStoresListFilesInBatchQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List files in a batch * * @remarks * Retrieves a paginated list of all files within a specific batch operation. */ export declare function useLlmVectorStoresListFilesInBatch(request: operations.ListVectorStoreFilesInBatchRequest, options?: QueryHookOptions): UseQueryResult; /** * List files in a batch * * @remarks * Retrieves a paginated list of all files within a specific batch operation. */ export declare function useLlmVectorStoresListFilesInBatchSuspense(request: operations.ListVectorStoreFilesInBatchRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmVectorStoresListFilesInBatchData(client: QueryClient, queryKeyBase: [ vectorStoreId: string, batchId: string, parameters: { limit?: number | undefined; order?: operations.ListVectorStoreFilesInBatchQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; filter?: operations.QueryParamFilter | undefined; xOnBehalfOf?: string | undefined; } ], data: LlmVectorStoresListFilesInBatchQueryData): LlmVectorStoresListFilesInBatchQueryData | undefined; export declare function invalidateLlmVectorStoresListFilesInBatch(client: QueryClient, queryKeyBase: TupleToPrefixes<[ vectorStoreId: string, batchId: string, parameters: { limit?: number | undefined; order?: operations.ListVectorStoreFilesInBatchQueryParamOrder | undefined; after?: string | undefined; before?: string | undefined; filter?: operations.QueryParamFilter | undefined; xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmVectorStoresListFilesInBatch(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmVectorStoresListFilesInBatch.d.ts.map