@bash-app/bash-common 29.18.2 → 29.18.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": "29.18.2",
3
+ "version": "29.18.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",
@@ -792,7 +792,7 @@ model GoogleReview {
792
792
  text String?
793
793
  createdAt DateTime @default(now())
794
794
  serviceId String
795
- service Service @relation(fields: [serviceId], references: [id], onDelete: Cascade)
795
+ // service Service @relation(fields: [serviceId], references: [id], onDelete: Cascade)
796
796
  }
797
797
 
798
798
  model Session {
@@ -978,7 +978,7 @@ model Service {
978
978
  cancellationPolicy String?
979
979
  refundPolicy String?
980
980
  insurancePolicy String?
981
- hoursOfOperation Json? @default("{}")
981
+ // hoursOfOperation Json? @default("{}")
982
982
 
983
983
  stripeAccountId String?
984
984
  stripeAccount StripeAccount? @relation(fields: [stripeAccountId], references: [id], onDelete: Cascade)
@@ -1002,7 +1002,7 @@ model Service {
1002
1002
  venue Venue?
1003
1003
  organization Organization?
1004
1004
 
1005
- googleReviews GoogleReview[]
1005
+ // googleReviews GoogleReview[]
1006
1006
  }
1007
1007
 
1008
1008
  model StripeAccount {
@@ -100,7 +100,7 @@ export const SERVICE_DATA_TO_INCLUDE = {
100
100
  serviceLinks: {
101
101
  include: SERVICE_LINK_DATA_TO_INCLUDE
102
102
  },
103
- googleReviews: true,
103
+ // googleReviews: true,
104
104
  } satisfies Prisma.ServiceInclude;
105
105
 
106
106
  // export type ServiceSpecificName = keyof Pick<
@@ -175,7 +175,7 @@ export interface ServiceExt extends Service {
175
175
  venue?: Venue;
176
176
  organization?: Organization;
177
177
 
178
- googleReviews: GoogleReview[];
178
+ // googleReviews: GoogleReview[];
179
179
  }
180
180
 
181
181
  export interface EventServiceExt extends EventService {