@bash-app/bash-common 20.0.0 → 20.1.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": "20.0.0",
3
+ "version": "20.1.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",
@@ -20,6 +20,7 @@ import {
20
20
  Exhibitor,
21
21
  Sponsor,
22
22
  Organization,
23
+ Booking,
23
24
  } from "@prisma/client";
24
25
  import { AttendeeOfBashEvent } from "./definitions";
25
26
 
@@ -221,6 +222,7 @@ export interface ServiceExt extends Service {
221
222
  exhibitor?: Exhibitor[];
222
223
  sponsor?: Sponsor[];
223
224
  organization?: Organization[];
225
+ bookings?: Booking[];
224
226
  }
225
227
 
226
228
  export interface ServiceLinkExt extends ServiceLink {