@bash-app/bash-common 30.172.0 → 30.173.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/schema.prisma +2 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -610,7 +610,8 @@ model BashEvent {
|
|
|
610
610
|
donationDetails String?
|
|
611
611
|
absorbDonationFees Boolean @default(false)
|
|
612
612
|
absorbTicketFees Boolean @default(false)
|
|
613
|
-
|
|
613
|
+
// GuestPays / Split preserved for possible future use; checkout always uses HostAbsorbs (no buyer-facing processing fee).
|
|
614
|
+
feeHandling String @default("HostAbsorbs") // "GuestPays" | "HostAbsorbs" | "Split"
|
|
614
615
|
topPromoterPrize String? // Optional prize label: "Free table for your crew"
|
|
615
616
|
promoterLeaderboardIsPublic Boolean @default(false) // Host opts in to public leaderboard
|
|
616
617
|
showAttendees Boolean @default(true)
|