@nuskin/ns-product-lib 2.11.0-cx24-5092.28 → 2.11.0-cx24-5092.29

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [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
+
3
+
4
+ ### New
5
+
6
+ * Moving from AEM to CS for EQ markets ([6c50857](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/6c50857164b3bbe363bd75010015238dacbbf552))
7
+
1
8
  # [2.11.0-cx24-5092.28](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.11.0-cx24-5092.27...v2.11.0-cx24-5092.28) (2023-09-18)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.11.0-cx24-5092.28",
3
+ "version": "2.11.0-cx24-5092.29",
4
4
  "description": "This project contains shared Product models and code between the backend and frontend.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -102,13 +102,13 @@ const ProductGraphQL = {
102
102
  mapResponseToProduct: async function (response, market, locale, config) {
103
103
  //console.log('RESPONSE ' + JSON.stringify(response))
104
104
  let res;
105
- if (response.variants.length >= 1) {
105
+ if (response.variants && response.variants.length >= 1) {
106
106
  res = await this.mapProductRegular(response, market, locale, config)
107
107
  const productID = (response.id) ? response.id : response.variants[0].id
108
108
  const promotions = await this.getProductPromotions(response.variants[0].sku, productID, config, locale)
109
109
  console.log(promotions)
110
110
  }
111
- if (response.bundles) {
111
+ if (response.bundle) {
112
112
  res = await this.mapProductBundle(response, market.locale, config)
113
113
  }
114
114