feat(settings): 扩展 SettingsData 加 compact 字段,后端解析与校验

This commit is contained in:
2026-06-06 22:37:22 +08:00
parent f4318c7643
commit 91ae52320b
5 changed files with 113 additions and 21 deletions

View File

@@ -238,6 +238,7 @@ export type ProviderType = "anthropic" | "openai" | "openai-compatible";
export type RuntimeMode = "development" | "production" | "test";
export interface SettingsData {
compact?: boolean;
theme: ThemePreference;
}