@bash-app/bash-common 17.8.1 → 17.8.3
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 +0 -3
- package/src/extendedSchemas.ts +0 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -882,8 +882,6 @@ model Venue {
|
|
|
882
882
|
cancellationPolicy String?
|
|
883
883
|
refundPolicy String?
|
|
884
884
|
safetyPolicy String?
|
|
885
|
-
crowdSizeId String? @unique
|
|
886
|
-
crowdSize ServiceRange? @relation("CrowdSize", fields: [crowdSizeId], references: [id], onDelete: Cascade)
|
|
887
885
|
targetAudience VenueTargetAudience?
|
|
888
886
|
bashesInterestedIn BashEventType[]
|
|
889
887
|
venueLinks ServiceLink[]
|
|
@@ -912,7 +910,6 @@ model ServiceRange {
|
|
|
912
910
|
id String @id @default(cuid())
|
|
913
911
|
min Int @default(0)
|
|
914
912
|
max Int @default(50)
|
|
915
|
-
serviceCrowdSize Venue? @relation("CrowdSize")
|
|
916
913
|
serviceServiceRange Service? @relation("ServiceRange")
|
|
917
914
|
}
|
|
918
915
|
|
package/src/extendedSchemas.ts
CHANGED
|
@@ -128,7 +128,6 @@ export interface VenueExt extends Venue {
|
|
|
128
128
|
availableDateTimes: Availability[];
|
|
129
129
|
targetAudience: VenueTargetAudience;
|
|
130
130
|
venueLinks: ServiceLinkExt[];
|
|
131
|
-
crowdSize: ServiceRange;
|
|
132
131
|
capacity?: AmountOfGuests;
|
|
133
132
|
media?: Media[];
|
|
134
133
|
}
|
|
@@ -138,7 +137,6 @@ export const VENUE_DATA_TO_INCLUDE = {
|
|
|
138
137
|
availableDateTimes: true,
|
|
139
138
|
targetAudience: true,
|
|
140
139
|
venueLinks: true,
|
|
141
|
-
crowdSize: true,
|
|
142
140
|
capacity: true,
|
|
143
141
|
media: true,
|
|
144
142
|
}
|