@bash-app/bash-common 28.1.0 → 28.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "28.1.0",
3
+ "version": "28.2.0",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -173,37 +173,37 @@ export interface ServiceExt extends Service {
173
173
  }
174
174
 
175
175
  export interface EventServiceExt extends EventService {
176
- service: Service;
176
+ service: ServiceExt;
177
177
  crowdSize?: AmountOfGuests;
178
178
  }
179
179
 
180
180
  export interface EntertainmentServiceExt extends EntertainmentService {
181
- service: Service;
181
+ service: ServiceExt;
182
182
  crowdSize?: AmountOfGuests;
183
183
  }
184
184
 
185
185
  export interface ExhibitorExt extends Exhibitor {
186
- service: Service;
186
+ service: ServiceExt;
187
187
  crowdSize?: AmountOfGuests;
188
188
  }
189
189
 
190
190
  export interface SponsorExt extends Sponsor {
191
- service: Service;
191
+ service: ServiceExt;
192
192
  crowdSize?: AmountOfGuests;
193
193
  }
194
194
 
195
195
  export interface VendorExt extends Vendor {
196
- service: Service;
196
+ service: ServiceExt;
197
197
  crowdSize?: AmountOfGuests;
198
198
  }
199
199
 
200
200
  export interface VenueExt extends Venue {
201
- service?: Service;
201
+ service?: ServiceExt;
202
202
  crowdSize?: AmountOfGuests;
203
203
  }
204
204
 
205
205
  export interface OrganizationExt extends Organization {
206
- service?: Service;
206
+ service?: ServiceExt;
207
207
  amountOfGuests?: AmountOfGuests;
208
208
  }
209
209
  //-----------------------------------------