From edfef73ffceb667132c86523cd376e90dd666c6a Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 2 May 2026 10:13:42 -0700 Subject: [PATCH] fix(lint): satisfy plugin e2e gate --- src/infra/clawhub.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/infra/clawhub.ts b/src/infra/clawhub.ts index 3241d3e9066..e93bb676837 100644 --- a/src/infra/clawhub.ts +++ b/src/infra/clawhub.ts @@ -40,10 +40,10 @@ export type ClawHubPackageEnvironmentSummary = { knownUnsupported?: string[]; }; export type ClawHubPackageArtifactSummary = { - kind?: "legacy-zip" | "npm-pack" | null; + kind?: string | null; sha256?: string | null; size?: number | null; - format?: "zip" | "tgz" | null; + format?: string | null; npmIntegrity?: string | null; npmShasum?: string | null; npmTarballName?: string | null;