@nuskin/ns-product-lib 2.5.0-cx24-2685.1 → 2.5.0-cx24-2685.2

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.5.0-cx24-2685.2](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.5.0-cx24-2685.1...v2.5.0-cx24-2685.2) (2022-12-09)
2
+
3
+
4
+ ### New
5
+
6
+ * Added equinoxProductId for eqproductMapper and eqProductVariantMapper ([37d77c6](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/37d77c68379403db7ca1289b800f593f981b2710))
7
+
1
8
  # [2.5.0-cx24-2685.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.5.0-CX24.3.1...v2.5.0-cx24-2685.1) (2022-12-09)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.5.0-cx24-2685.1",
3
+ "version": "2.5.0-cx24-2685.2",
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": {
package/src/product.js CHANGED
@@ -532,6 +532,7 @@ const Product = function(productData) {
532
532
  retData.restrictedMarkets = this.restrictedMarkets;
533
533
  retData.addOns = this.addOns;
534
534
  retData.inventory = this.inventory;
535
+ retData.equinoxProductId = this.equinoxProductId;
535
536
 
536
537
  return retData;
537
538
  };