@bash-app/bash-common 23.2.0 → 23.3.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": "23.2.0",
3
+ "version": "23.3.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",
@@ -937,6 +937,9 @@ model VolunteerService {
937
937
  links Link[] @relation("VolunteerServiceLinks")
938
938
  availableDateTimes Availability[] @relation("AvailableDateTimes")
939
939
  fullName String?
940
+ address String?
941
+ email String?
942
+ phone String?
940
943
  }
941
944
 
942
945
  model EventService {
@@ -238,6 +238,9 @@ export interface VolunteerServiceExt extends VolunteerService {
238
238
  links?: Link[];
239
239
  availableDateTimes?: Availability[];
240
240
  fullName: string | null;
241
+ address: string | null;
242
+ email: string | null;
243
+ phone: string | null;
241
244
  }
242
245
 
243
246