@lightspeed/ecom-headless 0.1.0 → 0.1.1

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
@@ -1,11 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1 - 2025-09-09
4
+
5
+ ### Changed
6
+
7
+ - Replace Axios with custom Fetch-based HTTP client and modernize codebase.
8
+
3
9
  ## 0.1.0 - 2025-08-06
4
10
 
5
11
  ### Added
6
12
 
7
13
  - Add support for REST API :: Store Profile :: Get store Profile.
8
- - Add support for REST API :: Products :: Search products
9
- - Add support for REST API :: Products :: Get product
10
- - Add support for REST API :: Products :: Product files :: Download product file
11
- - Add support for REST API :: Categories :: Search categories
14
+ - Add support for REST API :: Products :: Search products.
15
+ - Add support for REST API :: Products :: Get product.
16
+ - Add support for REST API :: Products :: Product files :: Download product file.
17
+ - Add support for REST API :: Categories :: Search categories.
@@ -1 +1 @@
1
- "use strict";const index=require("../shared/ecom-headless.Cr34mwOt.cjs");require("../storefront/index.cjs"),require("axios"),exports.downloadProductFile=index.downloadProductFile,exports.getApiConfig=index.getApiConfig,exports.getProduct=index.getProduct,exports.getStoreProfile=index.getStoreProfile,exports.initStorefrontApi=index.initStorefrontApi,exports.searchCategories=index.searchCategories,exports.searchProducts=index.searchProducts;
1
+ "use strict";const api_index=require("../index.cjs");require("../storefront/index.cjs"),exports.downloadProductFile=api_index.downloadProductFile,exports.getProduct=api_index.getProduct,exports.getStoreProfile=api_index.getStoreProfile,exports.searchCategories=api_index.searchCategories,exports.searchProducts=api_index.searchProducts;