|
import { queryOptions } from "@tanstack/react-query";
|
|
import { api } from "@/data/api";
|
|
|
|
export const agentListOptions = (wsId: string | null) =>
|
|
queryOptions({
|
|
queryKey: ["agents", wsId] as const,
|
|
queryFn: ({ signal }) => api.listAgents({ signal }),
|
|
enabled: !!wsId,
|
|
});
|