Add combined lat lng field to ev chargers response (#222)

This commit is contained in:
Dominic Wong
2021-10-04 16:27:00 +01:00
committed by GitHub
parent 19582c661f
commit f23a935a9a
7 changed files with 202 additions and 188 deletions

View File

@@ -35,6 +35,7 @@ type Address struct {
AddressLine2 string `json:"addressLine2"`
Country *Country `json:"country"`
CountryId string `json:"countryId"`
LatLng string `json:"latLng"`
Location *Coordinates `json:"location"`
Postcode string `json:"postcode"`
StateOrProvince string `json:"stateOrProvince"`

View File

@@ -31,6 +31,7 @@ export interface Address {
addressLine2?: string;
country?: { [key: string]: any };
countryId?: string;
latLng?: string;
location?: Coordinates;
postcode?: string;
stateOrProvince?: string;

View File

@@ -64,5 +64,5 @@
},
"type": "module",
"types": "dist/index.d.ts",
"version": "1.0.536"
"version": "1.0.537"
}