@suluk/builder - v0.1.11
    Preparing search index...

    Interface PlanSpec

    A pricing plan — static config (no live Stripe matrix); stripePriceId is carried for the app to resolve.

    interface PlanSpec {
        id: string;
        nameKey: string;
        priceCents: number;
        featureKeys: string[];
        ctaKey: string;
        ctaHref?: string;
        featured?: boolean;
        stripePriceId?: string;
    }
    Index

    Properties

    id: string
    nameKey: string
    priceCents: number
    featureKeys: string[]
    ctaKey: string
    ctaHref?: string
    featured?: boolean
    stripePriceId?: string

    the app resolves the live price/checkout from this, if set.