File size: 345 Bytes
5da4770
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { createQueryKeys } from '@/hooks/use-query';

const dashboardKeysBase = ['dashboard'] as const;
const dashboardAgentsBase = ['dashboard', 'agents'] as const;

export const dashboardKeys = createQueryKeys({
  all: dashboardKeysBase,
  agents: dashboardAgentsBase,
  initiateAgent: () => [...dashboardAgentsBase, 'initiate'] as const,
});