@coex/geosearch
Advanced tools
Comparing version 0.6.0 to 0.6.1
{ | ||
"name": "@coex/geosearch", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "Nodejs library for finding places using Mapy.cz Suggest API", | ||
@@ -23,3 +23,3 @@ "main": "./index.js", | ||
"dependencies": { | ||
"axios": "^0.22.0" | ||
"axios": "^0.24.0" | ||
}, | ||
@@ -26,0 +26,0 @@ "repository": { |
import { AxiosError, AxiosResponse } from 'axios'; | ||
import { GeoSearchData, GeoSearchError, GeoSearchErrorMessage, GeoSearchOptions, GeoSearchResult } from '../interface/geosearch.interface'; | ||
export declare const getBounds: (options: GeoSearchOptions | undefined) => Promise<string>; | ||
export declare const createError: (message: GeoSearchErrorMessage, axiosResponse?: AxiosResponse<GeoSearchData> | undefined, axiosError?: AxiosError<never> | undefined) => GeoSearchError; | ||
export declare const createError: (message: GeoSearchErrorMessage, axiosResponse?: AxiosResponse<GeoSearchData, any> | undefined, axiosError?: AxiosError<any, any> | undefined) => GeoSearchError; | ||
export declare const isGeoSearchError: (e: Error | GeoSearchError) => e is GeoSearchError; | ||
export declare function filterData(data: GeoSearchResult[], options: GeoSearchOptions | undefined): GeoSearchResult[]; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21130
+ Addedaxios@0.24.0(transitive)
- Removedaxios@0.22.0(transitive)
Updatedaxios@^0.24.0