chore: conversation_id -> thread_id in app-server feedback/upload (#7538)

Use `thread_id: Option<String>` instead of `conversation_id:
Option<ConversationId>` to be consistent with the rest of app-server v2
APIs.
This commit is contained in:
Owen Lin
2025-12-03 10:47:35 -08:00
committed by GitHub
parent 844de19561
commit 3ef76ff29d
2 changed files with 18 additions and 3 deletions

View File

@@ -2,7 +2,6 @@ use std::collections::HashMap;
use std::path::PathBuf;
use crate::protocol::common::AuthMode;
use codex_protocol::ConversationId;
use codex_protocol::account::PlanType;
use codex_protocol::approvals::SandboxCommandAssessment as CoreSandboxCommandAssessment;
use codex_protocol::config_types::ReasoningEffort;
@@ -664,7 +663,7 @@ pub struct ListMcpServersResponse {
pub struct FeedbackUploadParams {
pub classification: String,
pub reason: Option<String>,
pub conversation_id: Option<ConversationId>,
pub thread_id: Option<String>,
pub include_logs: bool,
}