@bash-app/bash-common 24.5.2 → 24.5.3

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": "24.5.2",
3
+ "version": "24.5.3",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -950,7 +950,7 @@ model VolunteerService {
950
950
  phone String?
951
951
  agreedToAgreement Boolean @default(false)
952
952
  description String?
953
- status VolunteerServiceStatus
953
+ status VolunteerServiceStatus?
954
954
  }
955
955
 
956
956
  model EventService {
@@ -245,7 +245,7 @@ export interface VolunteerServiceExt extends VolunteerService {
245
245
  phone: string | null;
246
246
  agreedToAgreement: boolean;
247
247
  description: string | null;
248
- status: VolunteerServiceStatus;
248
+ status: VolunteerServiceStatus | null;
249
249
  }
250
250
 
251
251