@suluk/billing - v0.2.0
    Preparing search index...

    Interface SubscriptionBranding

    Branding seam for the Stripe Product/Price a plan creates — app-controlled so find-or-create stays stable + on-brand.

    interface SubscriptionBranding {
        productName?: (plan: SubPlan) => string;
        lookupKeyPrefix?: string;
    }
    Index

    Properties

    productName?: (plan: SubPlan) => string

    the recurring Price's product name; default ${plan.name} (monthly).

    lookupKeyPrefix?: string

    the lookup_key PREFIX that makes find-or-create idempotent across repricing; default "sub". KEEP STABLE per app.