apple-maps-server-sdk 1.0.7 → 1.0.8

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/lib/globals.d.ts CHANGED
@@ -72,10 +72,10 @@ export interface SearchInput {
72
72
  userLocation?: string;
73
73
  }
74
74
  export interface GeocodeResponse {
75
- response: Place[];
75
+ results: Place[];
76
76
  }
77
77
  export interface ReverseGeocodeResponse {
78
- response: Place[];
78
+ results: Place[];
79
79
  }
80
80
  export interface ETAResponse {
81
81
  etas: ETA[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apple-maps-server-sdk",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "An SDK for the Apple Maps Server API",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/globals.ts CHANGED
@@ -129,11 +129,11 @@ export interface SearchInput {
129
129
  }
130
130
 
131
131
  export interface GeocodeResponse {
132
- response: Place[];
132
+ results: Place[];
133
133
  }
134
134
 
135
135
  export interface ReverseGeocodeResponse {
136
- response: Place[];
136
+ results: Place[];
137
137
  }
138
138
 
139
139
  export interface ETAResponse {