mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
- 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.
35 lines
1.1 KiB
TypeScript
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";
|