@nuskin/ns-product-lib 2.6.0-cx24-3464.2 → 2.6.0-cx24-3464.3

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.3](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0-cx24-3464.2...v2.6.0-cx24-3464.3) (2023-03-10)
2
+
3
+
4
+ ### Update
5
+
6
+ * get child skus to be used for add-to-cart #CX24-3464 ([b3c334f](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/b3c334f01b851737aff78d8345e4eea8aa702bb3)), 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.2](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0-cx24-3464.1...v2.6.0-cx24-3464.2) (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.2",
3
+ "version": "2.6.0-cx24-3464.3",
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": {
@@ -495,7 +495,7 @@ const ProductData = {
495
495
  return { sku, qty };
496
496
  });
497
497
  const skus = kits.map(k => k.sku);
498
- const products = await this.getProductFromEquinox(skus, 'en_US', config.data);
498
+ const products = await this.getProductFromEquinox(skus, 'en_US', config);
499
499
  console.log(products);
500
500
  }
501
501