All checks were successful
ci/woodpecker/push/web Pipeline was successful
- Create dashboard API client with TypeScript interfaces - Update page.tsx to fetch from GET /api/dashboard/summary on mount - DashboardMetrics: accept metrics prop, map to 6 cells with real data - ActivityFeed: accept items prop, map actions to icons/timestamps - OrchestratorSessions: accept jobs prop, render steps as agent nodes - TokenBudget: accept budgets prop, compute percentages - All widgets have empty/zero fallback states - Update page tests to mock API fetch Task: MS-P2-002 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
380 B
TypeScript
17 lines
380 B
TypeScript
/**
|
|
* API Client Exports
|
|
* Central export point for all API client modules
|
|
*/
|
|
|
|
export * from "./client";
|
|
export * from "./chat";
|
|
export * from "./ideas";
|
|
export * from "./tasks";
|
|
export * from "./events";
|
|
export * from "./knowledge";
|
|
export * from "./domains";
|
|
export * from "./teams";
|
|
export * from "./personalities";
|
|
export * from "./telemetry";
|
|
export * from "./dashboard";
|