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 { buildLlmEvalsListScheduleRunsQuery, LlmEvalsListScheduleRunsQueryData, prefetchLlmEvalsListScheduleRuns, queryKeyLlmEvalsListScheduleRuns } from "./llmEvalsListScheduleRuns.core.js"; export { buildLlmEvalsListScheduleRunsQuery, type LlmEvalsListScheduleRunsQueryData, prefetchLlmEvalsListScheduleRuns, queryKeyLlmEvalsListScheduleRuns, }; export type LlmEvalsListScheduleRunsQueryError = SDKError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError; /** * List runs created by an eval schedule * * @remarks * Returns eval runs that were created by the given schedule. suite_version may be used without suite_id here, since the schedule already pins the suite; supplying a suite_id that is not the schedule's returns 400. */ export declare function useLlmEvalsListScheduleRuns(request: operations.ListEvalScheduleRunsRequest, options?: QueryHookOptions): UseQueryResult; /** * List runs created by an eval schedule * * @remarks * Returns eval runs that were created by the given schedule. suite_version may be used without suite_id here, since the schedule already pins the suite; supplying a suite_id that is not the schedule's returns 400. */ export declare function useLlmEvalsListScheduleRunsSuspense(request: operations.ListEvalScheduleRunsRequest, options?: SuspenseQueryHookOptions): UseSuspenseQueryResult; export declare function setLlmEvalsListScheduleRunsData(client: QueryClient, queryKeyBase: [ scheduleId: string, parameters: { after?: string | undefined; limit?: number | undefined; suiteId?: string | undefined; suiteVersion?: number | undefined; status?: operations.ListEvalScheduleRunsQueryParamStatus | undefined; xOnBehalfOf?: string | undefined; } ], data: LlmEvalsListScheduleRunsQueryData): LlmEvalsListScheduleRunsQueryData | undefined; export declare function invalidateLlmEvalsListScheduleRuns(client: QueryClient, queryKeyBase: TupleToPrefixes<[ scheduleId: string, parameters: { after?: string | undefined; limit?: number | undefined; suiteId?: string | undefined; suiteVersion?: number | undefined; status?: operations.ListEvalScheduleRunsQueryParamStatus | undefined; xOnBehalfOf?: string | undefined; } ]>, filters?: Omit): Promise; export declare function invalidateAllLlmEvalsListScheduleRuns(client: QueryClient, filters?: Omit): Promise; //# sourceMappingURL=llmEvalsListScheduleRuns.d.ts.map