@bash-app/bash-common 29.17.5 → 29.18.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.17.5",
3
+ "version": "29.18.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",
@@ -978,6 +978,7 @@ model Service {
978
978
  cancellationPolicy String?
979
979
  refundPolicy String?
980
980
  insurancePolicy String?
981
+ hoursOfOperation Json
981
982
 
982
983
  stripeAccountId String?
983
984
  stripeAccount StripeAccount? @relation(fields: [stripeAccountId], references: [id], onDelete: Cascade)
@@ -136,6 +136,7 @@ export function extractAddressComponents(place: any): IAddress {
136
136
  const street = `${streetNumber} ${streetName}`.trim();
137
137
 
138
138
  return {
139
+ googlePlaceId: place.place_id,
139
140
  place: place.name || '',
140
141
  street,
141
142
  city,