@bash-app/bash-common 27.6.0 → 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/src/extendedSchemas.ts +1 -9
package/package.json
CHANGED
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;
|