@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 +1 -1
- package/prisma/schema.prisma +3 -3
- package/src/definitions.ts +1 -1
- package/src/extendedSchemas.ts +1 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -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 {
|
package/src/definitions.ts
CHANGED
|
@@ -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<
|
package/src/extendedSchemas.ts
CHANGED