From 47a2bb38bf9b916ee337561a8e362274dabd2fd3 Mon Sep 17 00:00:00 2001 From: Lukas May Date: Wed, 4 Feb 2026 21:51:51 +0100 Subject: [PATCH] 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 --- packages/shared/src/index.ts | 2 +- packages/shared/src/types.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts index 09b01eb..8308a5d 100644 --- a/packages/shared/src/index.ts +++ b/packages/shared/src/index.ts @@ -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'; diff --git a/packages/shared/src/types.ts b/packages/shared/src/types.ts index a5855f6..a57b9e2 100644 --- a/packages/shared/src/types.ts +++ b/packages/shared/src/types.ts @@ -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';