Files
roboco/panel/src/lib/api/index.ts
T
Renn F b5fbc72372 fix(panel): resolve undefined font vars + remove dead client code
- layout.tsx/globals.css: font-sans/font-mono pointed at undefined --font-geist-*
  vars (Geist-starter leftover); now resolve to the actually-loaded Inter via
  --font-inter. No visible change.
- remove orphaned company-goals-card.tsx (unmounted; live charter UI is goals-tab.tsx)
- remove dead streamApi transcription REST client (zero consumers) + its barrel
  export; AgentStreamViewer (a different, live websocket-based component) untouched.
2026-07-04 08:17:45 +02:00

35 lines
1.1 KiB
TypeScript

export { api, API_URL } from "./client";
export { usageApi } from "./usage";
export { tasksApi } from "./tasks";
export { orchestratorApi } from "./orchestrator";
export { notificationsApi } from "./notifications";
export { dashboardApi } from "./dashboard";
export { knowledgeBaseApi } from "./knowledge-base";
export { projectsApi } from "./projects";
export { productsApi } from "./products";
export { workSessionsApi } from "./work-sessions";
export { gitApi } from "./git";
export { a2aApi } from "./a2a";
export { settingsApi } from "./settings";
export { companyGoalsApi } from "./company-goals";
export { releaseApi } from "./release";
export type {
ReleaseProposal,
ReleaseReport,
ReleaseGap,
ReleaseExecuteResult,
} from "./release";
export { playbooksApi } from "./playbooks";
export type { Playbook } from "./playbooks";
export { authApi } from "./auth";
export type { AuthStatus } from "./auth";
export { xApi } from "./x";
export type {
XPost,
XMentionRef,
XPostExecuteResult,
XCredentialsStatus,
} from "./x";
export { roadmapApi } from "./roadmap";
export type { RoadmapCycle, RoadmapItem, RoadmapItemActionResult } from "./roadmap";