@yarrow-uz/yarrow-map-web-sdk 1.0.44 → 1.0.46

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/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  All notable changes to this project are documented in this file.
4
4
 
5
+ ## [1.0.46] - 2026-04-06
6
+
7
+ ### Changed
8
+ - Removed `axios` dependency and migrated to native `fetch` API for all HTTP requests.
9
+ - Replaced axios interceptor with `addApiKeyToUrl()` helper to append API key to request URLs.
10
+
11
+ ### Added
12
+ - CSS injection implementation for improved style handling.
13
+
14
+ ## [1.0.45] - 2026-03-12
15
+
16
+ ### Changed
17
+ - Upgraded `maplibre-gl` dependency from `^5.5.0` to `^5.19.0`.
18
+ - Migrated search API to new endpoint (`api.yarrow.uz/api/search/`) with updated query parameters (`lng`, `country`, `sort_by`, `page`, `page_size`).
19
+ - Search results response mapping updated to new API format.
20
+ - Search result markers now fall back to circle markers with text labels when icon images are unavailable.
21
+ - Adjusted dark theme opacity for brand badge and map controls for a softer appearance.
22
+
5
23
  ## [1.0.44] - 2026-02-28
6
24
 
7
25
  ### Added
package/README.md CHANGED
@@ -1036,8 +1036,8 @@ interface SearchOptions {
1036
1036
 
1037
1037
  ## Version Information
1038
1038
 
1039
- - **Current Version**: 1.0.44
1040
- - **Dependencies**: maplibre-gl ^5.5.0, axios ^1.7.9
1039
+ - **Current Version**: 1.0.46
1040
+ - **Dependencies**: maplibre-gl ^5.19.0
1041
1041
  - **Changelog**: `CHANGELOG.md`
1042
1042
 
1043
1043
  ## Support
@@ -1,5 +1,6 @@
1
1
  declare const YARROW_MAP_URL: string;
2
- export { YARROW_MAP_URL };
2
+ declare const YARROW_SEARCH_API_URL: string;
3
+ export { YARROW_MAP_URL, YARROW_SEARCH_API_URL };
3
4
  export declare function setYarrowApiKey(apiKey: string): void;
4
5
  export declare function getYarrowApiKey(): string;
5
6
  //# sourceMappingURL=main.d.ts.map