@nuskin/ns-product-lib 1.5.0-cx24-2121.1.2 → 1.5.0-cx24-2121.1.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 +1 -8
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# [1.5.0-cx24-2121.1.3](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v1.5.0-cx24-2121.1.2...v1.5.0-cx24-2121.1.3) (2022-08-19)
|
2
|
+
|
3
|
+
|
4
|
+
### Update
|
5
|
+
|
6
|
+
* pass the store ID to getProductData (CX24-2121) ([8bb39fb](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/8bb39fb1179514ed02a5efd35ed86e1f75b53ff7))
|
7
|
+
|
1
8
|
# [1.5.0-cx24-2121.1.2](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v1.5.0-cx24-2121.1.1...v1.5.0-cx24-2121.1.2) (2022-08-19)
|
2
9
|
|
3
10
|
|
package/package.json
CHANGED
package/src/productData.js
CHANGED
@@ -20,14 +20,7 @@ const ProductData = {
|
|
20
20
|
},
|
21
21
|
|
22
22
|
getProductFromEquinox: async function(skus, locale, marketConfig, storeID) {
|
23
|
-
const filter = `{
|
24
|
-
"filters": [{
|
25
|
-
"fields": "index_key_skuId",
|
26
|
-
"operation": "IN",
|
27
|
-
"value": "${skus.toString()}"
|
28
|
-
}]
|
29
|
-
}`;
|
30
|
-
|
23
|
+
const filter = `{"filters": [{"fields": "index_key_skuId","operation": "IN","value": "${skus.toString()}"}]}`;
|
31
24
|
axios.defaults.withCredentials = true;
|
32
25
|
const productDataResponse = await axios.request({
|
33
26
|
method: 'get',
|