@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 +1 -1
- package/prisma/schema.prisma +4 -0
- package/src/extendedSchemas.ts +5 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -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 {
|
package/src/extendedSchemas.ts
CHANGED
|
@@ -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[];
|