@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 +10 -4
- package/dist/api/index.cjs +1 -1
- package/dist/api/index.d.cts +291 -310
- package/dist/api/index.d.mts +291 -310
- package/dist/api/index.d.ts +291 -310
- package/dist/api/index.mjs +1 -1
- package/dist/index.cjs +2 -1
- package/dist/index.d.cts +22 -2
- package/dist/index.d.mts +22 -2
- package/dist/index.d.ts +22 -2
- package/dist/index.mjs +2 -1
- package/dist/plugin-visualizer/bundle.html +4949 -0
- package/dist/storefront/index.cjs +1 -1
- package/dist/storefront/index.d.cts +1 -3
- package/dist/storefront/index.d.mts +1 -3
- package/dist/storefront/index.d.ts +1 -3
- package/dist/storefront/index.mjs +1 -1
- package/package.json +11 -7
- package/dist/chunks/download-product-file-mock.cjs +0 -1
- package/dist/chunks/download-product-file-mock.mjs +0 -1
- package/dist/chunks/get-product-mock.cjs +0 -1
- package/dist/chunks/get-product-mock.mjs +0 -1
- package/dist/chunks/get-store-profile-mock.cjs +0 -5
- package/dist/chunks/get-store-profile-mock.mjs +0 -5
- package/dist/chunks/search-categories-mock.cjs +0 -1
- package/dist/chunks/search-categories-mock.mjs +0 -1
- package/dist/chunks/search-products-mock.cjs +0 -1
- package/dist/chunks/search-products-mock.mjs +0 -1
- package/dist/shared/ecom-headless.BCjY03ea.mjs +0 -1
- package/dist/shared/ecom-headless.Cr34mwOt.cjs +0 -1
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.
|
package/dist/api/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const
|
|
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;
|