Merge remote-tracking branch 'upstream/master' into feat/external-adapter-phase1

This commit is contained in:
HenkDz 2026-04-04 14:33:48 +01:00
commit 80b81459a7
10 changed files with 366 additions and 29 deletions

View file

@ -68,6 +68,7 @@ export async function createApp(
feedbackExportService?: {
flushPendingFeedbackTraces(input?: {
companyId?: string;
traceId?: string;
limit?: number;
now?: Date;
}): Promise<unknown>;
@ -153,7 +154,9 @@ export async function createApp(
api.use(agentRoutes(db));
api.use(assetRoutes(db, opts.storageService));
api.use(projectRoutes(db));
api.use(issueRoutes(db, opts.storageService));
api.use(issueRoutes(db, opts.storageService, {
feedbackExportService: opts.feedbackExportService,
}));
api.use(routineRoutes(db));
api.use(executionWorkspaceRoutes(db));
api.use(goalRoutes(db));