@bash-app/bash-common 30.0.0 → 30.1.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "30.0.0",
3
+ "version": "30.1.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",
@@ -196,7 +196,7 @@ model BashEvent {
196
196
  title String
197
197
  creatorId String
198
198
  creator User @relation("CreatedEvent", fields: [creatorId], references: [id], onDelete: Cascade)
199
- createdAt DateTime @default(now())
199
+ createdAt DateTime? @default(now())
200
200
  isApproved Boolean? @default(false)
201
201
  description String?
202
202
  eventType String @default("Other")