@nuskin/ns-product-lib 2.11.0-cx24-5092.29 → 2.11.0-cx24-5092.30
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/productGraphQL.js +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# [2.11.0-cx24-5092.30](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.11.0-cx24-5092.29...v2.11.0-cx24-5092.30) (2023-09-18)
|
2
|
+
|
3
|
+
|
4
|
+
### New
|
5
|
+
|
6
|
+
* Moving from AEM to CS for EQ markets ([a4a8e19](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/a4a8e19032147ed5c4d37a0dc607796e3b687091))
|
7
|
+
|
1
8
|
# [2.11.0-cx24-5092.29](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.11.0-cx24-5092.28...v2.11.0-cx24-5092.29) (2023-09-18)
|
2
9
|
|
3
10
|
|
package/package.json
CHANGED
package/src/productGraphQL.js
CHANGED
@@ -108,7 +108,7 @@ const ProductGraphQL = {
|
|
108
108
|
const promotions = await this.getProductPromotions(response.variants[0].sku, productID, config, locale)
|
109
109
|
console.log(promotions)
|
110
110
|
}
|
111
|
-
if (response.bundle) {
|
111
|
+
if (typeof response.bundle === 'object') {
|
112
112
|
res = await this.mapProductBundle(response, market.locale, config)
|
113
113
|
}
|
114
114
|
|