@bash-app/bash-common 30.31.0 → 30.33.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 +2 -1
- package/prisma/schema.prisma +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bash-app/bash-common",
|
|
3
|
-
"version": "30.
|
|
3
|
+
"version": "30.33.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",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"@aws-sdk/s3-request-presigner": "^3.529.0",
|
|
24
24
|
"@testing-library/jest-dom": "^6.6.3",
|
|
25
25
|
"@types/qrcode": "^1.5.5",
|
|
26
|
+
"lodash-es": "^4.17.21",
|
|
26
27
|
"npm": "^10.5.0",
|
|
27
28
|
"qrcode": "^1.5.3"
|
|
28
29
|
},
|
package/prisma/schema.prisma
CHANGED
|
@@ -1310,10 +1310,11 @@ model Service {
|
|
|
1310
1310
|
|
|
1311
1311
|
visibility VisibilityPreference @default(Public)
|
|
1312
1312
|
|
|
1313
|
-
bashesNotInterestedIn
|
|
1313
|
+
bashesNotInterestedIn BashEventType[]
|
|
1314
|
+
customExcludedEventTypes String[] @default([])
|
|
1314
1315
|
// bookings Booking[]
|
|
1315
|
-
media
|
|
1316
|
-
serviceLinks
|
|
1316
|
+
media Media[]
|
|
1317
|
+
serviceLinks ServiceLink[]
|
|
1317
1318
|
|
|
1318
1319
|
volunteerServiceId String? @unique
|
|
1319
1320
|
volunteerService VolunteerService? @relation("ServiceToVolunteer")
|