feat(19-01): export PendingQuestions and QuestionItem from shared package

- Re-export PendingQuestions and QuestionItem types from agent/types
- Available via @codewalk-district/shared for frontend consumption
This commit is contained in:
Lukas May
2026-02-04 21:51:51 +01:00
parent f73b85062d
commit 47a2bb38bf
2 changed files with 2 additions and 1 deletions

View File

@@ -1,2 +1,2 @@
export type { AppRouter } from './trpc.js';
export type { Initiative, Phase, Plan, Task, Agent, Message } from './types.js';
export type { Initiative, Phase, Plan, Task, Agent, Message, PendingQuestions, QuestionItem } from './types.js';

View File

@@ -1 +1,2 @@
export type { Initiative, Phase, Plan, Task, Agent, Message } from '../../../src/db/schema.js';
export type { PendingQuestions, QuestionItem } from '../../../src/agent/types.js';