@bash-app/bash-common 30.59.3 → 30.59.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "30.59.3",
3
+ "version": "30.59.4",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1151,6 +1151,14 @@ model User {
1151
1151
  // Artists/performers the user wants to see
1152
1152
  artistsToSee String[] @default([])
1153
1153
 
1154
+ // Membership system fields
1155
+ membershipTier String? // Guest, Creator, Pro, Elite, Legend
1156
+ membershipExpiresAt DateTime?
1157
+ membershipAutoRenew Boolean @default(false)
1158
+ membershipBillingInterval String? // Monthly, Yearly
1159
+ membershipLastBilledAt DateTime?
1160
+ membershipFeaturedEventsUsed Int @default(0)
1161
+ membershipStripeSubscriptionId String? @unique
1154
1162
  // Blog relations
1155
1163
  blogPosts BlogPost[] @relation("BlogAuthor")
1156
1164
  blogComments BlogComment[] @relation("BlogCommentAuthor")