@bash-app/bash-common 23.1.1 → 23.2.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 +1 -0
- package/src/extendedSchemas.ts +2 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -936,6 +936,7 @@ model VolunteerService {
|
|
|
936
936
|
media Media[] @relation("VolunteerServiceMedia")
|
|
937
937
|
links Link[] @relation("VolunteerServiceLinks")
|
|
938
938
|
availableDateTimes Availability[] @relation("AvailableDateTimes")
|
|
939
|
+
fullName String?
|
|
939
940
|
}
|
|
940
941
|
|
|
941
942
|
model EventService {
|
package/src/extendedSchemas.ts
CHANGED
|
@@ -237,9 +237,11 @@ export interface VolunteerServiceExt extends VolunteerService {
|
|
|
237
237
|
media?: Media[];
|
|
238
238
|
links?: Link[];
|
|
239
239
|
availableDateTimes?: Availability[];
|
|
240
|
+
fullName: string | null;
|
|
240
241
|
}
|
|
241
242
|
|
|
242
243
|
|
|
244
|
+
|
|
243
245
|
export interface BusinessExt extends Business {
|
|
244
246
|
owner: PublicUser;
|
|
245
247
|
media: Media[];
|