@bash-app/bash-common 17.8.0 → 17.8.2

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": "17.8.0",
3
+ "version": "17.8.2",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -128,7 +128,6 @@ export interface VenueExt extends Venue {
128
128
  availableDateTimes: Availability[];
129
129
  targetAudience: VenueTargetAudience;
130
130
  venueLinks: ServiceLinkExt[];
131
- crowdSize: ServiceRange;
132
131
  capacity?: AmountOfGuests;
133
132
  media?: Media[];
134
133
  }
@@ -138,7 +137,6 @@ export const VENUE_DATA_TO_INCLUDE = {
138
137
  availableDateTimes: true,
139
138
  targetAudience: true,
140
139
  venueLinks: true,
141
- crowdSize: true,
142
140
  capacity: true,
143
141
  media: true,
144
142
  }