@bash-app/bash-common 29.26.1 → 29.28.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": "29.26.1",
3
+ "version": "29.28.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",
@@ -995,10 +995,10 @@ model Service {
995
995
 
996
996
  visibility VisibilityPreference @default(Public)
997
997
 
998
- bashesInterestedIn BashEventType[]
999
- bookings Booking[]
1000
- media Media[]
1001
- serviceLinks ServiceLink[]
998
+ bashesNotInterestedIn BashEventType[]
999
+ bookings Booking[]
1000
+ media Media[]
1001
+ serviceLinks ServiceLink[]
1002
1002
 
1003
1003
  volunteerServiceId String?
1004
1004
  volunteerService VolunteerService? @relation(fields: [volunteerServiceId], references: [id])
@@ -326,6 +326,7 @@ export interface ServiceRatesAssociationExt extends ServiceRatesAssociation {
326
326
 
327
327
  addons?: ServiceAddon[];
328
328
  packages?: ServicePackageExt[];
329
+ media?: Media[];
329
330
  }
330
331
 
331
332