From 0393ec5b530a57f72ff078228124c3c549f46b97 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sun, 3 May 2026 03:00:36 -0700 Subject: [PATCH] fix(catalog): type channel ClawHub specs --- scripts/write-official-channel-catalog.d.mts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/write-official-channel-catalog.d.mts b/scripts/write-official-channel-catalog.d.mts index 67d260cf09f..e8e9c5c0361 100644 --- a/scripts/write-official-channel-catalog.d.mts +++ b/scripts/write-official-channel-catalog.d.mts @@ -8,9 +8,13 @@ export function buildOfficialChannelCatalog(params?: { repoRoot?: string; cwd?: openclaw: { channel: Record; install: { - npmSpec: string; + clawhubSpec?: string; + npmSpec?: string; localPath?: string; - defaultChoice?: "npm" | "local"; + defaultChoice?: "clawhub" | "npm" | "local"; + minHostVersion?: string; + expectedIntegrity?: string; + allowInvalidConfigRecovery?: boolean; }; }; }>;