From 3bb1ea7541fcf1bd38818b941ef3c5997d8daeb5 Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Fri, 5 Dec 2025 13:35:29 -0500 Subject: [PATCH] fix(types): add forceversion to binarymanagerconfig interface --- src/cliproxy/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cliproxy/types.ts b/src/cliproxy/types.ts index f42e4edc..925842d0 100644 --- a/src/cliproxy/types.ts +++ b/src/cliproxy/types.ts @@ -46,6 +46,8 @@ export interface BinaryManagerConfig { maxRetries: number; /** Enable verbose logging */ verbose: boolean; + /** Force specific version (skip auto-upgrade to latest) */ + forceVersion: boolean; } /**