@nuskin/ns-product-lib 2.11.0-cx24-5092.27 → 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,17 @@
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
+
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)
9
+
10
+
11
+ ### New
12
+
13
+ * Moving from AEM to CS for EQ markets ([2374b2e](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/2374b2e9abaac6bb92cfcea1d5b35a40f4cf742c))
14
+
1
15
  # [2.11.0-cx24-5092.27](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.11.0-cx24-5092.26...v2.11.0-cx24-5092.27) (2023-09-18)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.11.0-cx24-5092.27",
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,17 +102,17 @@ 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
+ const productID = (response.id) ? response.id : response.variants[0].id
108
+ const promotions = await this.getProductPromotions(response.variants[0].sku, productID, config, locale)
109
+ console.log(promotions)
107
110
  }
108
- if (response.bundles) {
111
+ if (response.bundle) {
109
112
  res = await this.mapProductBundle(response, market.locale, config)
110
113
  }
111
114
 
112
- const productID = (response.id) ? response.id : response.variants[0].id
113
115
 
114
- const promotions = await this.getProductPromotions(response.variants[0].sku, productID, config, locale)
115
- console.log(promotions)
116
116
  return res;
117
117
  },
118
118