@bash-app/bash-common 27.2.6 → 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.6",
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?
@@ -1233,8 +1233,8 @@ model Venue {
1233
1233
  capacity Int?
1234
1234
  amountOfGuests AmountOfGuests? @relation(fields: [amountOfGuestsId], references: [id], onDelete: Cascade)
1235
1235
  amountOfGuestsId String? @unique
1236
- trademark Boolean @default(false)
1237
- manager Boolean @default(false)
1236
+ trademark Boolean?
1237
+ manager Boolean?
1238
1238
  }
1239
1239
 
1240
1240
 
@@ -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