@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 +1 -1
- package/prisma/schema.prisma +14 -17
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -540,23 +540,20 @@ model CustomBashEventType {
|
|
|
540
540
|
}
|
|
541
541
|
|
|
542
542
|
model AmountOfGuests {
|
|
543
|
-
id
|
|
544
|
-
bashEvent
|
|
545
|
-
venue
|
|
546
|
-
exhibitor
|
|
547
|
-
eventService
|
|
548
|
-
entertainmentService
|
|
549
|
-
vendor
|
|
550
|
-
sponsor
|
|
551
|
-
organization
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
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 {
|