feat: migrate task jobs to workflow notifications + timeline

This commit is contained in:
2026-03-02 14:29:31 -05:00
parent 36c4ed2ee2
commit d81a681905
33 changed files with 2437 additions and 292 deletions

View File

@@ -16,5 +16,6 @@ export const queryKeys = {
portfolioSummary: () => ['portfolio', 'summary'] as const,
latestPortfolioInsight: () => ['portfolio', 'insights', 'latest'] as const,
task: (taskId: string) => ['tasks', 'detail', taskId] as const,
taskTimeline: (taskId: string) => ['tasks', 'timeline', taskId] as const,
recentTasks: (limit: number) => ['tasks', 'recent', limit] as const
};