@danielcok17/prisma-db 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisma/app.prisma +5 -4
- package/prisma/generated/app/edge.js +4 -4
- package/prisma/generated/app/index-browser.js +1 -0
- package/prisma/generated/app/index.d.ts +1 -0
- package/prisma/generated/app/index.js +4 -4
- package/prisma/generated/app/package.json +1 -1
- package/prisma/generated/app/schema.prisma +5 -4
- package/prisma/generated/app/wasm.js +3 -3
- package/prisma/migrations/20260102220947_add_lawyer_pro_tier/migration.sql +2 -0
package/package.json
CHANGED
package/prisma/app.prisma
CHANGED
|
@@ -516,10 +516,11 @@ enum SubscriptionStatus {
|
|
|
516
516
|
|
|
517
517
|
// Stripe: Tier predplatného
|
|
518
518
|
enum SubscriptionTier {
|
|
519
|
-
FREE //
|
|
520
|
-
LAWYER //
|
|
521
|
-
|
|
522
|
-
|
|
519
|
+
FREE // Free tier (10 messages/month)
|
|
520
|
+
LAWYER // Lawyer tier (1000 messages/month, €29/month, 1 user)
|
|
521
|
+
LAWYER_PRO // Lawyer Pro tier (3000 messages/month, €49/month, 1 user) - RECOMMENDED
|
|
522
|
+
LAW_FIRM // Law Firm tier (10000 messages/month, €129/month, up to 5 users)
|
|
523
|
+
ENTERPRISE // Enterprise tier (unlimited messages, unlimited users, custom pricing)
|
|
523
524
|
}
|
|
524
525
|
|
|
525
526
|
// Stripe: Billing interval
|