Skip to content

Commit

Permalink
fix(geo): Added missing interpolated property to Geo Place (#10889)
Browse files Browse the repository at this point in the history
* Added missing interpolated property to Geo Place

* Updated test type

---------

Co-authored-by: Aaron S <[email protected]>
Co-authored-by: ashika112 <[email protected]>
Co-authored-by: AllanZhengYP <[email protected]>
  • Loading branch information
4 people authored Jan 7, 2025
1 parent e672807 commit 1515cab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/geo/__tests__/testData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export const TestPlacePascalCase = {
Geometry: {
Point: [2345, 6789],
},
Interpolated: false,
Label: "don't try to label me",
Municipality: 'Muni',
Neighborhood: 'hay',
Expand Down
1 change: 1 addition & 0 deletions packages/geo/src/types/Geo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export interface Place {
addressNumber?: string;
country?: string;
geometry: PlaceGeometry | undefined;
interpolated?: boolean;
label?: string;
municipality?: string;
neighborhood?: string;
Expand Down

0 comments on commit 1515cab

Please sign in to comment.