diff --git a/lib/api/billing.ts b/lib/api/billing.ts index 447fd23..047712d 100644 --- a/lib/api/billing.ts +++ b/lib/api/billing.ts @@ -13,6 +13,8 @@ export interface SubscriptionDetails { sites_count?: number /** Pageviews in current billing period (when pageview_limit > 0). Present when backend supports usage API. */ pageview_usage?: number + /** Business name from Stripe Checkout (optional). */ + business_name?: string } async function billingFetch(endpoint: string, options: RequestInit = {}): Promise {