From 0ce59a8e4dcadb98d096f51d3a7ea9fc4a5cdde0 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 05:54:26 +0000 Subject: [PATCH] fix: add missing enableThinkingEffortConflictRectifier to UpdateSystemSettingsInput type The property was used in src/actions/system-config.ts and src/repository/system-config.ts but missing from the type definition, causing TS2339/TS2353 errors in CI. CI Run: https://github.com/ding113/claude-code-hub/actions/runs/27326760885 Co-Authored-By: Claude Opus 4.6 --- src/types/system-config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types/system-config.ts b/src/types/system-config.ts index 86d15124f..d0d168ed7 100644 --- a/src/types/system-config.ts +++ b/src/types/system-config.ts @@ -201,6 +201,9 @@ export interface UpdateSystemSettingsInput { // thinking budget 整流器(可选) enableThinkingBudgetRectifier?: boolean; + // thinking effort 冲突整流器(可选) + enableThinkingEffortConflictRectifier?: boolean; + // billing header 整流器(可选) enableBillingHeaderRectifier?: boolean;