Fix: add allowed_emails to DiscountCode TypeScript interface

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
justin 2026-05-22 01:19:12 -05:00
parent 6ed5105ae5
commit 5cb360acba

View file

@ -17,6 +17,7 @@ interface DiscountCode {
active: boolean;
starts_at: string;
expires_at: string | null;
allowed_emails: string[] | null;
}
/**