@qite/tide-client 1.1.133 → 1.1.134

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.
@@ -11,6 +11,16 @@ export declare const getCountries: (
11
11
  config: TideClientConfig,
12
12
  signal?: AbortSignal | undefined
13
13
  ) => Promise<PageResult<CountryItem>>;
14
+ export declare const searchRegions: (
15
+ config: TideClientConfig,
16
+ searchTerm: string,
17
+ signal?: AbortSignal | undefined
18
+ ) => Promise<PageResult<LocationItem>>;
19
+ export declare const searchOords: (
20
+ config: TideClientConfig,
21
+ searchTerm: string,
22
+ signal?: AbortSignal | undefined
23
+ ) => Promise<PageResult<LocationItem>>;
14
24
  export declare const searchLocations: (
15
25
  config: TideClientConfig,
16
26
  searchTerm: string,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "1.1.133",
3
+ "version": "1.1.134",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {