@nuskin/ns-product-lib 2.6.0-cx24-3464.7 → 2.6.0-cx24-3464.8

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.0-cx24-3464.8](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0-cx24-3464.7...v2.6.0-cx24-3464.8) (2023-03-10)
2
+
3
+
4
+ ### Update
5
+
6
+ * get child skus to be used for add-to-cart #CX24-3464 ([6159e20](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/6159e208230e7b7bd06a120e1d1dd388248fe4d2)), closes [#CX24-3464](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/issues/CX24-3464)
7
+
1
8
  # [2.6.0-cx24-3464.7](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0-cx24-3464.6...v2.6.0-cx24-3464.7) (2023-03-10)
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.0-cx24-3464.7",
3
+ "version": "2.6.0-cx24-3464.8",
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": {
@@ -508,7 +508,7 @@ const ProductData = {
508
508
  });
509
509
  const skus = kits.map(k => k.sku);
510
510
  const res = await this.searchEquinoxProduct(skus, locale, config);
511
- const childSkus = res.product.map(p => this.buildChildSkus(kits, p));
511
+ const childSkus = res.data.product.map(p => this.buildChildSkus(kits, p));
512
512
 
513
513
  return childSkus;
514
514
  }