@bash-app/bash-common 30.106.1 → 30.108.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "30.106.1",
3
+ "version": "30.108.0",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -341,7 +341,12 @@ 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?
349
+ itinerary Json? // Array of { id: string, title: string, startTime: string, endTime: string, description?: string }
345
350
  associatedBashesReferencingMe AssociatedBash[]
346
351
  comments BashComment[]
347
352
  amountOfGuests AmountOfGuests? @relation(fields: [amountOfGuestsId], references: [id], onDelete: Cascade)