You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make Pro actually charge for usage above the included MTU. The Pro subscription becomes a €19 base price plus a metered price for MTU overage, billed to the org's Stripe customer (org = Stripe customer comes from PRD-A, #12).
Create the test + live Stripe meter and metered price for €8 per 1,000 MTU over the included 10,000 (only STRIPE_PRICE_PRO exists today; the new price/meter ids go in env alongside it).
Report overage as max(0, liveMTU − 10_000) / 1_000 × €8 worth of meter events.
Reconcile from the counter's authoritative period MTU, not from incremental events, so a missed report self-heals. Recommended cadence: daily reconcile (confirm against Stripe Meters' aggregation — see PRD §8 open question).
What to build
Make Pro actually charge for usage above the included MTU. The Pro subscription becomes a €19 base price plus a metered price for MTU overage, billed to the org's Stripe customer (org = Stripe customer comes from PRD-A, #12).
STRIPE_PRICE_PROexists today; the new price/meter ids go in env alongside it).max(0, liveMTU − 10_000) / 1_000 × €8worth of meter events.Acceptance criteria
Blocked by
mtuIncluded/mtuOveragePer1k)