@bash-app/bash-common 27.2.7 → 27.2.8

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": "27.2.7",
3
+ "version": "27.2.8",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -934,8 +934,8 @@ model Service {
934
934
  exhibitor Exhibitor[]
935
935
  sponsors Sponsor[]
936
936
  organizations Organization[]
937
- trademark String?
938
- manager String?
937
+ trademark Boolean?
938
+ manager Boolean?
939
939
  dba String?
940
940
  contactPerson String?
941
941
  contactPhone String?
@@ -215,6 +215,7 @@ export interface VenueExt extends Venue {
215
215
  coverPhotoUrl?: string;
216
216
  media?: Media[];
217
217
  amountOfGuests?: AmountOfGuests | null;
218
+
218
219
  }
219
220
 
220
221