@nuskin/ns-product-lib 2.14.4-cx15-10535.1 → 2.14.4
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +11 -5
- package/src/contentstack/contentstack.js +1 -1
- package/src/product.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nuskin/ns-product-lib",
|
3
|
-
"version": "2.14.4
|
3
|
+
"version": "2.14.4",
|
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": {
|
@@ -19,6 +19,10 @@
|
|
19
19
|
"license": "ISC",
|
20
20
|
"homepage": "https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/blob/master/README.md",
|
21
21
|
"devDependencies": {
|
22
|
+
"@nuskin/configuration-sdk": "2.3.2",
|
23
|
+
"@nuskin/ns-common-lib": "1.4.7",
|
24
|
+
"@nuskin/ns-util": "4.5.3",
|
25
|
+
"axios": ">=1.6.5",
|
22
26
|
"axios-mock-adapter": "1.21.2",
|
23
27
|
"eslint": "5.16.0",
|
24
28
|
"eslint-config-google": "0.14.0",
|
@@ -30,11 +34,13 @@
|
|
30
34
|
"jest-sonar-reporter": "2.0.0",
|
31
35
|
"prettier": "1.19.1"
|
32
36
|
},
|
37
|
+
"peerDependencies": {
|
38
|
+
"@nuskin/configuration-sdk": "2.x",
|
39
|
+
"@nuskin/ns-common-lib": "1.x",
|
40
|
+
"@nuskin/ns-util": "4.x",
|
41
|
+
"axios": ">=1.6.5"
|
42
|
+
},
|
33
43
|
"dependencies": {
|
34
|
-
"@nuskin/configuration-sdk": "^2.3.2",
|
35
|
-
"@nuskin/ns-common-lib": "^1.4.7",
|
36
|
-
"@nuskin/ns-util": "^4.5.3",
|
37
|
-
"axios": "0.27.2",
|
38
44
|
"qs": "6.11.0"
|
39
45
|
},
|
40
46
|
"files": [
|
@@ -5,7 +5,7 @@ const config = require('./environment');
|
|
5
5
|
|
6
6
|
// contentstack HTTP service
|
7
7
|
const platform = usePlatformSpecificVariables();
|
8
|
-
const http = axios.create({ baseURL: platform.baseURL, headers: platform.headers });
|
8
|
+
const http = (axios.create || axios.default.create)({ baseURL: platform.baseURL, headers: platform.headers });
|
9
9
|
|
10
10
|
// usePlatformVariables returns an object with platform-specific values; defaults to Lambda environment
|
11
11
|
function usePlatformSpecificVariables() {
|
package/src/product.js
CHANGED
@@ -448,7 +448,7 @@ const Product = function (productData) {
|
|
448
448
|
};
|
449
449
|
|
450
450
|
this.isBase = function () {
|
451
|
-
return this.sku.substring(2, 4) === "55"
|
451
|
+
return this.sku.substring(2, 4) === "55";
|
452
452
|
};
|
453
453
|
|
454
454
|
this.isVariant = function () {
|