@bash-app/bash-common 21.2.1 → 21.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "21.2.1",
3
+ "version": "21.3.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",
@@ -1169,6 +1169,7 @@ model Venue {
1169
1169
  targetAudienceId String? @unique
1170
1170
  bashesInterestedIn BashEventType[]
1171
1171
  links ServiceLink[]
1172
+ amountOfGuests Int?
1172
1173
  }
1173
1174
 
1174
1175
  model Organization {
@@ -206,6 +206,7 @@ export const VENUE_DATA_TO_INCLUDE = {
206
206
  },
207
207
  capacity: true,
208
208
  media: true,
209
+ amountOfGuests: true,
209
210
  }
210
211
 
211
212
  export interface OrganizationExt extends Organization {