fix(catalog): type channel ClawHub specs

This commit is contained in:
Vincent Koc
2026-05-03 03:00:36 -07:00
parent 961575ddf7
commit 0393ec5b53

View File

@@ -8,9 +8,13 @@ export function buildOfficialChannelCatalog(params?: { repoRoot?: string; cwd?:
openclaw: {
channel: Record<string, unknown>;
install: {
npmSpec: string;
clawhubSpec?: string;
npmSpec?: string;
localPath?: string;
defaultChoice?: "npm" | "local";
defaultChoice?: "clawhub" | "npm" | "local";
minHostVersion?: string;
expectedIntegrity?: string;
allowInvalidConfigRecovery?: boolean;
};
};
}>;