@bash-app/bash-common 29.19.22 → 29.19.23

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": "29.19.22",
3
+ "version": "29.19.23",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -954,7 +954,7 @@ model AssociatedService {
954
954
  model Service {
955
955
  id String @id @default(cuid())
956
956
 
957
- serviceType ServiceTypes
957
+ serviceType ServiceTypes?
958
958
  serviceStatus ServiceStatus @default(Draft)
959
959
  serviceCondition ServiceCondition @default(Pending)
960
960
 
@@ -967,7 +967,7 @@ model Service {
967
967
  creator User? @relation("CreatedService", fields: [creatorId], references: [id])
968
968
 
969
969
  createdAt DateTime @default(now())
970
- updatedAt DateTime @updatedAt
970
+ updatedAt DateTime? @updatedAt
971
971
 
972
972
  associatedBashesReferencingMe AssociatedBash[]
973
973
  associatedServicesReferencingMe AssociatedService[]