Ship free-tier watermark policy (2 clean renders) and align pricing/legal copy.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
co-authored by
Cursor
parent
26c4b22fbb
commit
8f6b894f80
@@ -12,6 +12,12 @@ enum Plan {
|
||||
PREMIUM
|
||||
}
|
||||
|
||||
/// Public-facing subscription tier (kept in sync with `plan`: FREE→free, PREMIUM→pro)
|
||||
enum SubscriptionStatus {
|
||||
free
|
||||
pro
|
||||
}
|
||||
|
||||
enum Privacy {
|
||||
PUBLIC
|
||||
PRIVATE
|
||||
@@ -52,6 +58,10 @@ model User {
|
||||
image String?
|
||||
/// FREE = free tier; PREMIUM = Pro (€5/mo, formerly starter_5eur)
|
||||
plan Plan @default(FREE)
|
||||
/// Mirrors plan for product/UI (`free` | `pro`). Prefer `plan` for entitlements.
|
||||
subscriptionStatus SubscriptionStatus @default(free)
|
||||
/// Lifetime count of successfully completed video renders (not monthly quota).
|
||||
createdVideoCount Int @default(0)
|
||||
/// Credits consumed in the current billing cycle (credits_used)
|
||||
videosUsed Int @default(0)
|
||||
/// Monthly allocation for the current cycle (10 free / 50 pro)
|
||||
|
||||
Reference in New Issue
Block a user