@bash-app/bash-common 27.5.6 → 27.7.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 +1 -1
- package/prisma/schema.prisma +14 -14
- package/src/extendedSchemas.ts +1 -9
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -993,7 +993,7 @@ model EventService {
|
|
|
993
993
|
serviceId String?
|
|
994
994
|
serviceConnectionId String?
|
|
995
995
|
serviceConnection String?
|
|
996
|
-
|
|
996
|
+
name String?
|
|
997
997
|
eventServiceTypes EventServiceType[]
|
|
998
998
|
eventServiceSubType String?
|
|
999
999
|
email String?
|
|
@@ -1038,7 +1038,7 @@ model EntertainmentService {
|
|
|
1038
1038
|
serviceId String?
|
|
1039
1039
|
serviceConnectionId String?
|
|
1040
1040
|
serviceConnection String?
|
|
1041
|
-
|
|
1041
|
+
name String?
|
|
1042
1042
|
entertainmentServiceTypes EntertainmentServiceType[]
|
|
1043
1043
|
entertainmentServiceSubType String?
|
|
1044
1044
|
genre MusicGenreType?
|
|
@@ -1083,14 +1083,14 @@ model Vendor {
|
|
|
1083
1083
|
serviceId String?
|
|
1084
1084
|
serviceConnectionId String?
|
|
1085
1085
|
serviceConnection String?
|
|
1086
|
-
|
|
1087
|
-
email String
|
|
1088
|
-
street String
|
|
1089
|
-
city String
|
|
1090
|
-
state String
|
|
1091
|
-
zipCode String
|
|
1092
|
-
country String
|
|
1093
|
-
phone String
|
|
1086
|
+
name String?
|
|
1087
|
+
email String?
|
|
1088
|
+
street String?
|
|
1089
|
+
city String?
|
|
1090
|
+
state String?
|
|
1091
|
+
zipCode String?
|
|
1092
|
+
country String?
|
|
1093
|
+
phone String?
|
|
1094
1094
|
coverPhoto String?
|
|
1095
1095
|
media Media[]
|
|
1096
1096
|
visibility VisibilityPreference? @default(Public)
|
|
@@ -1126,7 +1126,7 @@ model Exhibitor {
|
|
|
1126
1126
|
serviceId String?
|
|
1127
1127
|
serviceConnectionId String?
|
|
1128
1128
|
serviceConnection String?
|
|
1129
|
-
|
|
1129
|
+
name String?
|
|
1130
1130
|
email String?
|
|
1131
1131
|
street String?
|
|
1132
1132
|
city String?
|
|
@@ -1168,7 +1168,7 @@ model Sponsor {
|
|
|
1168
1168
|
serviceId String?
|
|
1169
1169
|
serviceConnectionId String?
|
|
1170
1170
|
serviceConnection String?
|
|
1171
|
-
|
|
1171
|
+
name String?
|
|
1172
1172
|
email String?
|
|
1173
1173
|
street String?
|
|
1174
1174
|
city String?
|
|
@@ -1212,7 +1212,7 @@ model Venue {
|
|
|
1212
1212
|
serviceConnection String?
|
|
1213
1213
|
ownerId String?
|
|
1214
1214
|
owner User? @relation("VenueProfileOwner", fields: [ownerId], references: [id], onDelete: Cascade)
|
|
1215
|
-
|
|
1215
|
+
name String?
|
|
1216
1216
|
email String?
|
|
1217
1217
|
place String?
|
|
1218
1218
|
street String?
|
|
@@ -1263,7 +1263,7 @@ model Organization {
|
|
|
1263
1263
|
serviceId String?
|
|
1264
1264
|
serviceConnectionId String?
|
|
1265
1265
|
serviceConnection String?
|
|
1266
|
-
|
|
1266
|
+
name String?
|
|
1267
1267
|
organizationType OrganizationType[]
|
|
1268
1268
|
email String?
|
|
1269
1269
|
street String?
|
package/src/extendedSchemas.ts
CHANGED
|
@@ -157,7 +157,6 @@ export interface EventServiceExt extends EventService {
|
|
|
157
157
|
links: ServiceLinkExt[];
|
|
158
158
|
crowdSize?: AmountOfGuests;
|
|
159
159
|
media?: Media[];
|
|
160
|
-
serviceType: ServiceTypes;
|
|
161
160
|
}
|
|
162
161
|
|
|
163
162
|
export interface EntertainmentServiceExt extends EntertainmentService {
|
|
@@ -168,7 +167,6 @@ export interface EntertainmentServiceExt extends EntertainmentService {
|
|
|
168
167
|
crowdSize?: AmountOfGuests;
|
|
169
168
|
media?: Media[];
|
|
170
169
|
status: ServiceStatus;
|
|
171
|
-
serviceType: ServiceTypes;
|
|
172
170
|
}
|
|
173
171
|
|
|
174
172
|
export interface ExhibitorExt extends Exhibitor {
|
|
@@ -179,7 +177,6 @@ export interface ExhibitorExt extends Exhibitor {
|
|
|
179
177
|
crowdSize?: AmountOfGuests;
|
|
180
178
|
media?: Media[];
|
|
181
179
|
status: ServiceStatus;
|
|
182
|
-
serviceType: ServiceTypes;
|
|
183
180
|
}
|
|
184
181
|
|
|
185
182
|
export interface SponsorExt extends Sponsor {
|
|
@@ -190,7 +187,6 @@ export interface SponsorExt extends Sponsor {
|
|
|
190
187
|
crowdSize?: AmountOfGuests;
|
|
191
188
|
media?: Media[];
|
|
192
189
|
status: ServiceStatus;
|
|
193
|
-
serviceType: ServiceTypes;
|
|
194
190
|
}
|
|
195
191
|
|
|
196
192
|
export interface VendorExt extends Vendor {
|
|
@@ -201,7 +197,6 @@ export interface VendorExt extends Vendor {
|
|
|
201
197
|
crowdSize?: AmountOfGuests;
|
|
202
198
|
media?: Media[];
|
|
203
199
|
status: ServiceStatus;
|
|
204
|
-
serviceType: ServiceTypes;
|
|
205
200
|
}
|
|
206
201
|
|
|
207
202
|
export interface VenueExt extends Venue {
|
|
@@ -215,7 +210,6 @@ export interface VenueExt extends Venue {
|
|
|
215
210
|
media?: Media[];
|
|
216
211
|
amountOfGuests?: AmountOfGuests | null;
|
|
217
212
|
status: ServiceStatus;
|
|
218
|
-
serviceType: ServiceTypes;
|
|
219
213
|
}
|
|
220
214
|
|
|
221
215
|
export interface OrganizationExt extends Organization {
|
|
@@ -226,7 +220,6 @@ export interface OrganizationExt extends Organization {
|
|
|
226
220
|
crowdSize?: AmountOfGuests;
|
|
227
221
|
media?: Media[];
|
|
228
222
|
status: ServiceStatus;
|
|
229
|
-
serviceType: ServiceTypes;
|
|
230
223
|
}
|
|
231
224
|
|
|
232
225
|
export interface VolunteerServiceExt extends VolunteerService {
|
|
@@ -259,7 +252,6 @@ targetAudience?: TargetAudience | null;
|
|
|
259
252
|
sponsors?: Sponsor[];
|
|
260
253
|
organizations?: Organization[];
|
|
261
254
|
bookings?: Booking[];
|
|
262
|
-
serviceType: ServiceTypes;
|
|
263
255
|
}
|
|
264
256
|
|
|
265
257
|
|
|
@@ -348,7 +340,7 @@ export interface UserExtraData extends User {
|
|
|
348
340
|
}
|
|
349
341
|
|
|
350
342
|
export interface UserExt extends User {
|
|
351
|
-
|
|
343
|
+
services?: Service[] | null;
|
|
352
344
|
|
|
353
345
|
// Do not include in fetch as there could be thousands of these
|
|
354
346
|
associatedBashes?: AssociatedBash[] | null;
|