@bash-app/bash-common 29.15.5 → 29.15.6
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 +6 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1028,6 +1028,7 @@ model EventService {
|
|
|
1028
1028
|
goodsOrServices String[]
|
|
1029
1029
|
menuItems String?
|
|
1030
1030
|
venueTypes String[]
|
|
1031
|
+
secondaryVenueTypes String[]
|
|
1031
1032
|
}
|
|
1032
1033
|
|
|
1033
1034
|
model EntertainmentService {
|
|
@@ -1044,6 +1045,7 @@ model EntertainmentService {
|
|
|
1044
1045
|
crowdSize AmountOfGuests? @relation(fields: [crowdSizeId], references: [id], onDelete: Cascade)
|
|
1045
1046
|
goodsOrServices String[]
|
|
1046
1047
|
venueTypes String[]
|
|
1048
|
+
secondaryVenueTypes String[]
|
|
1047
1049
|
}
|
|
1048
1050
|
|
|
1049
1051
|
model Vendor {
|
|
@@ -1058,6 +1060,7 @@ model Vendor {
|
|
|
1058
1060
|
goodsOrServices String[]
|
|
1059
1061
|
menuItems String?
|
|
1060
1062
|
venueTypes String[]
|
|
1063
|
+
secondaryVenueTypes String[]
|
|
1061
1064
|
}
|
|
1062
1065
|
|
|
1063
1066
|
model Exhibitor {
|
|
@@ -1071,6 +1074,7 @@ model Exhibitor {
|
|
|
1071
1074
|
crowdSize AmountOfGuests? @relation(fields: [crowdSizeId], references: [id], onDelete: Cascade)
|
|
1072
1075
|
goodsOrServices String[]
|
|
1073
1076
|
venueTypes String[]
|
|
1077
|
+
secondaryVenueTypes String[]
|
|
1074
1078
|
}
|
|
1075
1079
|
|
|
1076
1080
|
model Sponsor {
|
|
@@ -1097,6 +1101,7 @@ model Venue {
|
|
|
1097
1101
|
menuItems String?
|
|
1098
1102
|
features String[]
|
|
1099
1103
|
venueTypes String[]
|
|
1104
|
+
secondaryVenueTypes String[]
|
|
1100
1105
|
pitch String?
|
|
1101
1106
|
capacity Int?
|
|
1102
1107
|
trademark Boolean?
|
|
@@ -1116,6 +1121,7 @@ model Organization {
|
|
|
1116
1121
|
organizationType OrganizationType[]
|
|
1117
1122
|
goodsOrServices String[]
|
|
1118
1123
|
venueTypes String[]
|
|
1124
|
+
secondaryVenueTypes String[]
|
|
1119
1125
|
}
|
|
1120
1126
|
|
|
1121
1127
|
enum EventServiceType {
|