apple-maps-server-sdk 1.1.3 → 1.1.4

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/index.d.ts CHANGED
@@ -30,4 +30,5 @@ declare class AppleMaps {
30
30
  */
31
31
  search(input: SearchInput): Promise<SearchResponse>;
32
32
  }
33
+ export type { GeocodeInput, GeocodeResponse, ReverseGeocodeInput, ReverseGeocodeResponse, ETAInput, ETAResponse, SearchInput, SearchResponse, };
33
34
  export default AppleMaps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apple-maps-server-sdk",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
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/index.ts CHANGED
@@ -144,4 +144,15 @@ class AppleMaps {
144
144
  }
145
145
  }
146
146
 
147
+ export type {
148
+ GeocodeInput,
149
+ GeocodeResponse,
150
+ ReverseGeocodeInput,
151
+ ReverseGeocodeResponse,
152
+ ETAInput,
153
+ ETAResponse,
154
+ SearchInput,
155
+ SearchResponse,
156
+ };
157
+
147
158
  export default AppleMaps;