@nuskin/product-components 4.0.0-cx15-11969.1 → 4.0.0-cx15-11969.2
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/docs/CHANGELOG.md +1 -1
- package/gl-sbom-npm-yarn.cdx.json +4135 -0
- package/package.json +13 -11
- package/services/EQPromotionService.js +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuskin/product-components",
|
|
3
|
-
"version": "4.0.0-cx15-11969.
|
|
3
|
+
"version": "4.0.0-cx15-11969.2",
|
|
4
4
|
"description": "Nu Skin Product Components",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,13 +23,15 @@
|
|
|
23
23
|
"homepage": "https://code.tls.nuskin.io/ns-am/ux/product-components/-/blob/master/README.md",
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@mdi/font": "3.9.97",
|
|
26
|
-
"@
|
|
27
|
-
"@nuskin/
|
|
28
|
-
"@nuskin/ns-
|
|
29
|
-
"@nuskin/ns-
|
|
30
|
-
"@nuskin/ns-
|
|
31
|
-
"@nuskin/ns-
|
|
32
|
-
"
|
|
26
|
+
"@ns/ns-contentstack-lib": "2.2.2",
|
|
27
|
+
"@nuskin/design-components": "8.8.1",
|
|
28
|
+
"@nuskin/ns-common-lib": "1.4.8",
|
|
29
|
+
"@nuskin/ns-core-styles": "2.12.0",
|
|
30
|
+
"@nuskin/ns-icon": "2.12.1",
|
|
31
|
+
"@nuskin/ns-loyalty-web": "1.5.7",
|
|
32
|
+
"@nuskin/ns-product-lib": "2.20.0",
|
|
33
|
+
"@nuskin/ns-shop": "7.5.0",
|
|
34
|
+
"axios": "1.8.3",
|
|
33
35
|
"lodash": "4.17.21",
|
|
34
36
|
"sass": "^1.19.0",
|
|
35
37
|
"sass-loader": "^8.0.2",
|
|
@@ -47,16 +49,16 @@
|
|
|
47
49
|
"@nuskin/ns-checkout-common": "3.x",
|
|
48
50
|
"@nuskin/ns-feature-flags": "1.x",
|
|
49
51
|
"@nuskin/ns-product": "3.x",
|
|
50
|
-
"@nuskin/ns-shop": "
|
|
52
|
+
"@nuskin/ns-shop": "7.x",
|
|
51
53
|
"@nuskin/ns-util": "4.x",
|
|
52
54
|
"@nuskin/my-site-api": "3.x"
|
|
53
55
|
},
|
|
54
56
|
"resolutions": {
|
|
55
|
-
"@nuskin/configuration-sdk": "
|
|
57
|
+
"@nuskin/configuration-sdk": "3.0.0",
|
|
56
58
|
"@nuskin/nuskinjquery": "2.3.1",
|
|
57
59
|
"ansi-html": "0.0.8",
|
|
58
60
|
"async": "2.6.4",
|
|
59
|
-
"axios": "1.8.
|
|
61
|
+
"axios": "1.8.3",
|
|
60
62
|
"decode-uri-component": "0.2.1",
|
|
61
63
|
"eventsource/eventsource": "2.0.2",
|
|
62
64
|
"fast-xml-parser": "4.2.5",
|
|
@@ -120,9 +120,13 @@ const _equinoxRequest = async options => {
|
|
|
120
120
|
storeId: storeId
|
|
121
121
|
};
|
|
122
122
|
|
|
123
|
+
let orchestrationURL = `${storefrontURL}/orchestrationservices/storefront/${options.endpoint}`;
|
|
124
|
+
if (storefrontURL && storefrontURL.indexOf("apis") > -1) {
|
|
125
|
+
orchestrationURL = `${storefrontURL}/${options.endpoint}`;
|
|
126
|
+
}
|
|
123
127
|
let axiosRequest = {
|
|
124
128
|
method: options.method,
|
|
125
|
-
url:
|
|
129
|
+
url: orchestrationURL,
|
|
126
130
|
headers: headers,
|
|
127
131
|
withCredentials: options.method !== "DELETE",
|
|
128
132
|
params: equinoxParams
|