@bash-app/bash-common 28.1.0 → 28.3.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 +7 -7
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -173,37 +173,37 @@ export interface ServiceExt extends Service {
|
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
export interface EventServiceExt extends EventService {
|
|
176
|
-
service:
|
|
176
|
+
service: ServiceExt;
|
|
177
177
|
crowdSize?: AmountOfGuests;
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
export interface EntertainmentServiceExt extends EntertainmentService {
|
|
181
|
-
service:
|
|
181
|
+
service: ServiceExt;
|
|
182
182
|
crowdSize?: AmountOfGuests;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
export interface ExhibitorExt extends Exhibitor {
|
|
186
|
-
service:
|
|
186
|
+
service: ServiceExt;
|
|
187
187
|
crowdSize?: AmountOfGuests;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
export interface SponsorExt extends Sponsor {
|
|
191
|
-
service:
|
|
191
|
+
service: ServiceExt;
|
|
192
192
|
crowdSize?: AmountOfGuests;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
export interface VendorExt extends Vendor {
|
|
196
|
-
service:
|
|
196
|
+
service: ServiceExt;
|
|
197
197
|
crowdSize?: AmountOfGuests;
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
export interface VenueExt extends Venue {
|
|
201
|
-
service
|
|
201
|
+
service: ServiceExt;
|
|
202
202
|
crowdSize?: AmountOfGuests;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
export interface OrganizationExt extends Organization {
|
|
206
|
-
service
|
|
206
|
+
service: ServiceExt;
|
|
207
207
|
amountOfGuests?: AmountOfGuests;
|
|
208
208
|
}
|
|
209
209
|
//-----------------------------------------
|