@bash-app/bash-common 27.2.10 → 27.2.11

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.2.10",
3
+ "version": "27.2.11",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -17,7 +17,7 @@ model Club {
17
17
  street String
18
18
  userId String
19
19
  price Int?
20
- events BashEvent[]
20
+ events BashEvent[]
21
21
  members ClubMember[]
22
22
  admin ClubAdmin[]
23
23
  }
@@ -900,6 +900,7 @@ model Service {
900
900
  // stripeServiceCustomerId String? @unique
901
901
  stripeBusinessId String @unique
902
902
  // stripeBusinessType String @default("Individual")
903
+ serviceType ServiceTypes
903
904
  creatorId String
904
905
  creator User @relation("CreatedService", fields: [creatorId], references: [id], onDelete: Cascade)
905
906
  dateCreated DateTime @default(now())