@nuskin/ns-product-lib
Advanced tools
Comparing version 1.3.7 to 1.4.0
@@ -0,1 +1,9 @@ | ||
# [1.4.0](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v1.3.7...v1.4.0) (2022-03-31) | ||
### Update | ||
* adding locallyProduced flag (#CX16-5842) ([9213365](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/92133654db85e4af7f46a2223a5d999f75dbc9a5)), closes [#CX16-5842](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/issues/CX16-5842) | ||
* adding locallyProduced flag (#CX16-5842) ([7e303af](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/7e303af1f14fd870ef571376e1960eb40fb7bd12)), closes [#CX16-5842](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/issues/CX16-5842) | ||
## [1.3.7](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v1.3.6...v1.3.7) (2021-09-17) | ||
@@ -2,0 +10,0 @@ |
{ | ||
"name": "@nuskin/ns-product-lib", | ||
"version": "1.3.7", | ||
"version": "1.4.0", | ||
"description": "This project contains shared Product models and code between the backend and frontend.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -20,2 +20,3 @@ "use strict"; | ||
this.productCarouselImages = []; | ||
this.locallyProduced = false; | ||
@@ -353,3 +354,3 @@ //class variables to be used instead of getters/setters | ||
}; | ||
this.getEventPriceTypes = () => { | ||
@@ -495,2 +496,3 @@ const eventPriceTypes = []; | ||
retData.backOrderDate = this.backOrderDate; | ||
retData.locallyProduced = this.locallyProduced; | ||
retData.agelocme = this.agelocme ? this.agelocme.toJSON() : null; | ||
@@ -603,2 +605,3 @@ retData.count = this.count; | ||
} | ||
this.locallyProduced = data.locallyProduced; | ||
this.count = productData.count; | ||
@@ -605,0 +608,0 @@ this.flavor = productData.flavor; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52901
1194