@nuskin/ns-product-lib 2.6.1 → 2.6.2-cx24-3563.1

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.6.2-cx24-3563.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.1...v2.6.2-cx24-3563.1) (2023-03-18)
2
+
3
+
4
+ ### Fix
5
+
6
+ * modified childSkus to equinoxChildSkus ([9f42ae5](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/9f42ae5d02b3e1e810bdb289cf6afee1de086a8b))
7
+
1
8
  ## [2.6.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0...v2.6.1) (2023-03-16)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.6.1",
3
+ "version": "2.6.2-cx24-3563.1",
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": {
@@ -8,8 +8,8 @@ function availableQuantity(product) {
8
8
  return product.inventoryProperties.atpQty;
9
9
  }
10
10
 
11
- if (product.childSkus && product.childSkus.length > 0) {
12
- const quantities = product.childSkus
11
+ if (product.equinoxChildSkus && product.equinoxChildSkus.length > 0) {
12
+ const quantities = product.equinoxChildSkus
13
13
  .filter(cs => cs.inventory !== undefined)
14
14
  .map(cs => cs.inventory.atpQty);
15
15
 
package/src/product.js CHANGED
@@ -76,6 +76,7 @@ const Product = function(productData) {
76
76
  //@example "IN STOCK"
77
77
  this.inventory = "";
78
78
  this.equinoxProductId = "";
79
+ this.equinoxChildSkus = [];
79
80
 
80
81
  this.setMarketAttributes = function(productStatus) {
81
82
  if (productStatus.marketAttributes) {
@@ -504,6 +505,7 @@ const Product = function(productData) {
504
505
  retData.pvMap = this.pvMap;
505
506
  retData.orderTypes = this.orderTypes;
506
507
  retData.childSkus = this.childSkus;
508
+ retData.equinoxChildSkus = this.equinoxChildSkus;
507
509
  retData.custTypes = this.custTypes;
508
510
  retData.division = this.division;
509
511
  retData.backOrderDate = this.backOrderDate;
@@ -675,6 +677,10 @@ const Product = function(productData) {
675
677
  }
676
678
 
677
679
  this.equinoxProductId = data.equinoxProductId;
680
+
681
+ if(data.equinoxChildSkus) {
682
+ this.equinoxChildSkus = data.equinoxChildSkus;
683
+ }
678
684
  }
679
685
  };
680
686
 
@@ -366,7 +366,7 @@ const ProductData = {
366
366
  const productPrice = eventName ? defaultProductPrice : product.priceFacets["Regular Price"];
367
367
  const discountedPrice = eventName ? computedPrice : product.priceFacets["Regular Price"];
368
368
 
369
- product.childSkus = await this.fetchChildSkus(product);
369
+ product.equinoxChildSkus = await this.fetchChildSkus(product);
370
370
  product.availableQuantity = mapAvailableQuantity(product);
371
371
  product = {
372
372
  ...product,
@@ -427,6 +427,7 @@ const ProductData = {
427
427
  "WHL": product.priceFacets.PV
428
428
  },
429
429
  "orderTypes": this._setOrderType(product.properties),
430
+ "childSkus": [],
430
431
  "custTypes": this.switchCustType(product.properties.customerTypes),
431
432
  "division": productData.properties.division,
432
433
  "backOrderDate": null,