@bash-app/bash-common 29.17.5 → 29.17.6

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.17.6",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -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,