@bash-app/bash-common 29.29.0 → 29.30.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": "29.
|
|
3
|
+
"version": "29.30.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",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"@aws-sdk/client-s3": "^3.529.0",
|
|
22
22
|
"@aws-sdk/client-textract": "^3.529.0",
|
|
23
23
|
"@aws-sdk/s3-request-presigner": "^3.529.0",
|
|
24
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
24
25
|
"@types/qrcode": "^1.5.5",
|
|
25
26
|
"qrcode": "^1.5.3"
|
|
26
27
|
},
|
package/prisma/schema.prisma
CHANGED
|
@@ -994,6 +994,9 @@ model Service {
|
|
|
994
994
|
// insurancePolicy String?
|
|
995
995
|
// hoursOfOperation Json? @default("{}")
|
|
996
996
|
|
|
997
|
+
displayGoogleReviewsOnDetailPage Boolean?
|
|
998
|
+
displayBashReviewsOnDetailPage Boolean?
|
|
999
|
+
|
|
997
1000
|
stripeAccountId String?
|
|
998
1001
|
stripeAccount StripeAccount? @relation(fields: [stripeAccountId], references: [id], onDelete: Restrict)
|
|
999
1002
|
|
package/src/utils/objectUtils.ts
DELETED
|
File without changes
|
package/src/utils/typeUtils.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
|