Skip to content

Commit

Permalink
feat! Added Address Descriptors to Geocoding response.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Clifford committed Apr 8, 2024
1 parent fcabacd commit 236004d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/geocode/reversegeocode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ test("reverseGeocode should return correct response when address descriptors are
lat: 28.650080,
lng: 77.233172,
},
enabled_address_descriptor: true,
enable_address_descriptor: true,
key: process.env.GOOGLE_MAPS_API_KEY,
};
const r = await reverseGeocode({ params: params });
Expand Down
2 changes: 1 addition & 1 deletion src/geocode/reversegeocode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export interface ReverseGeocodeRequest extends Partial<AxiosRequestConfig> {
/**
* Determines whether the address descriptor is returned in the response.
*/
enabled_address_descriptor?: boolean;
enable_address_descriptor?: boolean;
} & RequestParams;
}

Expand Down

0 comments on commit 236004d

Please sign in to comment.