fix: add tags to new_package payload type assertion in bot
All checks were successful
continuous-integration/drone/push Build is passing

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-23 23:07:22 +01:00
parent 1425db8774
commit bd358a134b

View File

@@ -177,6 +177,7 @@ async function handleNewPackage(payload: string): Promise<void> {
packageId: string; packageId: string;
fileName: string; fileName: string;
creator: string | null; creator: string | null;
tags?: string[];
}; };
const subs = await findMatchingSubscriptions(data.fileName, data.creator); const subs = await findMatchingSubscriptions(data.fileName, data.creator);