@bash-app/bash-common 27.5.4 → 27.5.5

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": "27.5.4",
3
+ "version": "27.5.5",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -1202,8 +1202,8 @@ model Sponsor {
1202
1202
 
1203
1203
  model Venue {
1204
1204
  id String @id @default(cuid())
1205
- creatorId String
1206
- creator User @relation(fields: [creatorId], references: [id], onDelete: Cascade)
1205
+ creatorId String?
1206
+ creator User? @relation(fields: [creatorId], references: [id], onDelete: Cascade)
1207
1207
  service Service? @relation(fields: [serviceId], references: [id], onDelete: Cascade)
1208
1208
  serviceId String?
1209
1209
  serviceConnectionId String?