@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 +1 -1
- package/prisma/schema.prisma +3 -0
- package/src/extendedSchemas.ts +3 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -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 {
|
package/src/extendedSchemas.ts
CHANGED