@bash-app/bash-common 29.19.16 → 29.19.17
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/schema.prisma +18 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -51,7 +51,7 @@ enum ClubAdminRole {
|
|
|
51
51
|
enum ClubMemberStatus {
|
|
52
52
|
Active
|
|
53
53
|
Inactive
|
|
54
|
-
|
|
54
|
+
Canceled
|
|
55
55
|
Paused
|
|
56
56
|
Removed
|
|
57
57
|
}
|
|
@@ -1163,9 +1163,26 @@ model Venue {
|
|
|
1163
1163
|
vibe String?
|
|
1164
1164
|
dress String?
|
|
1165
1165
|
|
|
1166
|
+
pricingPlan PricingPlan? @default(Percentage)
|
|
1167
|
+
percentageRate Float? @default(0.15)
|
|
1168
|
+
subscriptionStatus SubscriptionStatus?
|
|
1169
|
+
subscriptionStartDate DateTime?
|
|
1170
|
+
|
|
1166
1171
|
bashEvents BashEvent[]
|
|
1167
1172
|
}
|
|
1168
1173
|
|
|
1174
|
+
enum PricingPlan {
|
|
1175
|
+
Percentage
|
|
1176
|
+
Subscription
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
enum SubscriptionStatus {
|
|
1180
|
+
Active
|
|
1181
|
+
Canceled
|
|
1182
|
+
Suspended
|
|
1183
|
+
Expired
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1169
1186
|
model Organization {
|
|
1170
1187
|
id String @id @default(cuid())
|
|
1171
1188
|
serviceId String @unique
|