Introduces a provider-agnostic storage subsystem for file attachments. Includes local disk and S3 backends, asset/attachment DB schemas, issue attachment CRUD routes with multer upload, CLI configure/doctor/env integration, and enriched issue ancestors with project/goal resolution. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
919 B
TypeScript
17 lines
919 B
TypeScript
export { companyService } from "./companies.js";
|
|
export { agentService } from "./agents.js";
|
|
export { projectService } from "./projects.js";
|
|
export { issueService, type IssueFilters } from "./issues.js";
|
|
export { issueApprovalService } from "./issue-approvals.js";
|
|
export { goalService } from "./goals.js";
|
|
export { activityService, type ActivityFilters } from "./activity.js";
|
|
export { approvalService } from "./approvals.js";
|
|
export { secretService } from "./secrets.js";
|
|
export { costService } from "./costs.js";
|
|
export { heartbeatService } from "./heartbeat.js";
|
|
export { dashboardService } from "./dashboard.js";
|
|
export { sidebarBadgeService } from "./sidebar-badges.js";
|
|
export { logActivity, type LogActivityInput } from "./activity-log.js";
|
|
export { publishLiveEvent, subscribeCompanyLiveEvents } from "./live-events.js";
|
|
export { createStorageServiceFromConfig, getStorageService } from "../storage/index.js";
|