This commit is contained in:
Ahmed Ibrahim
2025-09-10 10:07:16 -07:00
parent f147df539e
commit bc5499d3f5
2 changed files with 1 additions and 2 deletions

View File

@@ -45,7 +45,6 @@ mod event_mapping;
pub use codex_protocol::protocol::InitialHistory;
pub use conversation_manager::ConversationManager;
pub use conversation_manager::NewConversation;
pub use protocol::InitialHistory;
// Re-export common auth types for workspace consumers
pub use auth::AuthManager;
pub use auth::CodexAuth;

View File

@@ -803,7 +803,7 @@ pub struct WebSearchEndEvent {
#[derive(Debug, Clone, Deserialize, Serialize, TS)]
pub struct ConversationHistoryResponseEvent {
pub conversation_id: ConversationId,
pub entries: Vec<ResponseItem>,
pub history: InitialHistory,
}
#[derive(Debug, Clone, Deserialize, Serialize, TS)]