From 5cb360acbafbe3a77f09be84ae5d31c517c1edab Mon Sep 17 00:00:00 2001 From: justin Date: Fri, 22 May 2026 01:19:12 -0500 Subject: [PATCH] Fix: add allowed_emails to DiscountCode TypeScript interface Co-Authored-By: Claude Opus 4.6 (1M context) --- api/src/routes/discounts.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/api/src/routes/discounts.ts b/api/src/routes/discounts.ts index 07d10fa..46a8e0a 100644 --- a/api/src/routes/discounts.ts +++ b/api/src/routes/discounts.ts @@ -17,6 +17,7 @@ interface DiscountCode { active: boolean; starts_at: string; expires_at: string | null; + allowed_emails: string[] | null; } /**