feat(billing): add credit top-ups + billing UI cleanup#926
Merged
Conversation
Introduce a persistent, non-expiring "top-up" credit bucket users can purchase from any plan in $10 increments (min $10, $10 → 1000 credits). Spend order is monthly credits first, then top-up, then overage. Monthly resets never touch the top-up bucket. - schema: UserUsage.topupCredits + new CreditTopup audit table with Stripe checkout/payment_intent uniqueness and per-workspace/user indexes; migration included. - Stripe: createTopupCheckoutSession opens a payment-mode Checkout with dynamic price_data and metadata; webhook handles checkout.session.completed idempotently by topupId + status. - credit spend: reserveCredits/reconcileCredits/deductCredits/hasCredits updated to drain monthly first, then topup, using compound optimistic locking on updateMany. - billing UI: new "Add credits" card with $10/$20/$50/$100 chips and a custom whole-dollar input; top-up balance surfaces next to monthly on the Credits card; recent top-ups list. - fixes: skip BillingHistory rows when totalAmount = 0 (this was producing the noisy $0.00 "pending" invoice rows on FREE plans), and hide legacy $0 rows from the invoices loader; corrected the Credits progress bar so it fills with % used instead of % remaining; reworked the Plan card so the right side isn't empty. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Files touched
Test plan
🤖 Generated with Claude Code