@bash-app/bash-common 30.91.0 → 30.93.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 +3 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -218,6 +218,8 @@ model Invitation {
|
|
|
218
218
|
phone String?
|
|
219
219
|
name String?
|
|
220
220
|
message String?
|
|
221
|
+
customHeading String? // Custom heading text for the email (e.g., "You're on the guestlist" or "Welcome to AI MarCon")
|
|
222
|
+
customLinkText String? // Custom link text for the email (e.g., "View your ticket" or "Click here for event details")
|
|
221
223
|
inviteDate DateTime? @default(now())
|
|
222
224
|
acceptedDate DateTime?
|
|
223
225
|
rejectedDate DateTime?
|
|
@@ -284,6 +286,7 @@ model BashEvent {
|
|
|
284
286
|
absorbDonationFees Boolean @default(false)
|
|
285
287
|
absorbTicketFees Boolean @default(false)
|
|
286
288
|
showAttendees Boolean @default(true)
|
|
289
|
+
serviceVisibility Json?
|
|
287
290
|
originalCreatorId String?
|
|
288
291
|
transferredAt DateTime?
|
|
289
292
|
transferredFromId String?
|