@bash-app/bash-common 27.2.12 → 27.2.13

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.12",
3
+ "version": "27.2.13",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -23,6 +23,7 @@ import {
23
23
  Organization,
24
24
  Booking,
25
25
  VolunteerService, Prisma, ServiceRange,
26
+ ServiceTypes,
26
27
  } from "@prisma/client";
27
28
  import {UnionFromArray} from "./definitions";
28
29
 
@@ -272,6 +273,7 @@ targetAudience?: TargetAudience | null;
272
273
  sponsors?: Sponsor[];
273
274
  organizations?: Organization[];
274
275
  bookings?: Booking[];
276
+ serviceType: ServiceTypes;
275
277
  }
276
278
 
277
279