@nuskin/ns-product-lib 1.5.0-cx24-2103.2 → 1.5.0-cx24-2103.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/productData.js +4 -4
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# [1.5.0-cx24-2103.3](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v1.5.0-cx24-2103.2...v1.5.0-cx24-2103.3) (2022-09-08)
|
2
|
+
|
3
|
+
|
4
|
+
### Update
|
5
|
+
|
6
|
+
* updating the product data map (#CX24-2103) ([680a718](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/680a7188c3ba1a9073f513277f14c1abb3356184)), closes [#CX24-2103](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/issues/CX24-2103)
|
7
|
+
|
1
8
|
# [1.5.0-cx24-2103.2](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v1.5.0-cx24-2103.1...v1.5.0-cx24-2103.2) (2022-09-07)
|
2
9
|
|
3
10
|
|
package/package.json
CHANGED
package/src/productData.js
CHANGED
@@ -131,12 +131,12 @@ const ProductData = {
|
|
131
131
|
"cv": data.sku[count].priceFacets.CV,
|
132
132
|
"pv": data.sku[count].priceFacets.PV,
|
133
133
|
"priceType": "WRTL",
|
134
|
-
"price": data.sku[count].
|
134
|
+
"price": data.sku[count].priceFacets["Regular Price"],
|
135
135
|
"priceMap": {
|
136
|
-
"WRTL":
|
137
|
-
"WADW-WRTL":
|
136
|
+
"WRTL": data.sku[count].priceFacets["Regular Price"],
|
137
|
+
"WADW-WRTL": data.sku[count].priceFacets["Regular Price"],
|
138
138
|
"WADR": 9999.01,
|
139
|
-
"RTL":
|
139
|
+
"RTL": data.sku[count].priceFacets["Regular Price"],
|
140
140
|
"WWHL": 9998.01,
|
141
141
|
"WADW": 9998.01,
|
142
142
|
"WHL": 9998.01
|