@bash-app/bash-common 22.0.1 → 22.0.2

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": "22.0.1",
3
+ "version": "22.0.2",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -540,23 +540,20 @@ model CustomBashEventType {
540
540
  }
541
541
 
542
542
  model AmountOfGuests {
543
- id String @id @default(cuid())
544
- bashEvent BashEvent?
545
- venue Venue? // Just reference the Venue here, no need to define fields/references
546
- exhibitor Exhibitor?
547
- eventService EventService?
548
- entertainmentService EntertainmentService?
549
- vendor Vendor?
550
- sponsor Sponsor?
551
- organization Organization?
552
- minimum Int? @default(10)
553
- ideal Int? @default(35)
554
- showMinimumGuests Boolean @default(true)
555
- showIdealGuests Boolean @default(true)
556
- venueId String? @unique // Keep this unique if it's one-to-one
557
- eventServiceId String?
558
- entertainmentServiceId String?
559
- vendorId String?
543
+ id String @id @default(cuid())
544
+ bashEvent BashEvent?
545
+ venue Venue?
546
+ exhibitor Exhibitor?
547
+ eventService EventService?
548
+ entertainmentService EntertainmentService?
549
+ vendor Vendor?
550
+ sponsor Sponsor?
551
+ organization Organization?
552
+
553
+ minimum Int? @default(10)
554
+ ideal Int? @default(35)
555
+ showMinimumGuests Boolean @default(true)
556
+ showIdealGuests Boolean @default(true)
560
557
  }
561
558
 
562
559
  enum Privacy {