@bash-app/bash-common 23.1.1 → 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.1.1",
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",
@@ -936,6 +936,10 @@ model VolunteerService {
936
936
  media Media[] @relation("VolunteerServiceMedia")
937
937
  links Link[] @relation("VolunteerServiceLinks")
938
938
  availableDateTimes Availability[] @relation("AvailableDateTimes")
939
+ fullName String?
940
+ address String?
941
+ email String?
942
+ phone String?
939
943
  }
940
944
 
941
945
  model EventService {
@@ -237,9 +237,14 @@ export interface VolunteerServiceExt extends VolunteerService {
237
237
  media?: Media[];
238
238
  links?: Link[];
239
239
  availableDateTimes?: Availability[];
240
+ fullName: string | null;
241
+ address: string | null;
242
+ email: string | null;
243
+ phone: string | null;
240
244
  }
241
245
 
242
246
 
247
+
243
248
  export interface BusinessExt extends Business {
244
249
  owner: PublicUser;
245
250
  media: Media[];