@bash-app/bash-common 30.106.1 → 30.107.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 +4 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -341,6 +341,10 @@ model BashEvent {
|
|
|
341
341
|
zelleEmail String?
|
|
342
342
|
zellePhone String?
|
|
343
343
|
zelleQRCodeUrl String?
|
|
344
|
+
externalTicketUrl String? // URL to external ticket purchase page (for imported events)
|
|
345
|
+
externalPriceMin Int? // Minimum ticket price in cents (for imported events)
|
|
346
|
+
externalPriceMax Int? // Maximum ticket price in cents (for imported events)
|
|
347
|
+
externalPriceSummary String? // Human-readable price summary e.g., "$50 - $150" or "$75"
|
|
344
348
|
customTermsAndConditions String?
|
|
345
349
|
associatedBashesReferencingMe AssociatedBash[]
|
|
346
350
|
comments BashComment[]
|