@bash-app/bash-common 30.107.0 → 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.107.0",
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",
@@ -346,6 +346,7 @@ model BashEvent {
346
346
  externalPriceMax Int? // Maximum ticket price in cents (for imported events)
347
347
  externalPriceSummary String? // Human-readable price summary e.g., "$50 - $150" or "$75"
348
348
  customTermsAndConditions String?
349
+ itinerary Json? // Array of { id: string, title: string, startTime: string, endTime: string, description?: string }
349
350
  associatedBashesReferencingMe AssociatedBash[]
350
351
  comments BashComment[]
351
352
  amountOfGuests AmountOfGuests? @relation(fields: [amountOfGuestsId], references: [id], onDelete: Cascade)