@bash-app/bash-common 29.17.4 → 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.4",
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",
@@ -575,6 +575,7 @@ export type AllKeys<T> = AllKeysUnion<T>[];
575
575
 
576
576
  export interface IAddress {
577
577
  place?: string;
578
+ googlePlaceId?: string;
578
579
  street: string;
579
580
  city: string;
580
581
  state: string;
@@ -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,