Skip to content

Instantly share code, notes, and snippets.

View zeroxjackson's full-sized avatar

jackson ⁖ zeroxjackson

View GitHub Profile
@zeroxjackson
zeroxjackson / subscribe.ts
Last active February 1, 2025 18:27
Beehiiv x Next.js Typescript Integration
import { NextApiRequest, NextApiResponse } from 'next';
export type CustomField = {
name: string;
value: string;
};
export type SubscriptionTier = 'free' | 'premium';
export type SubscriptionInput = {