@nuskin/product-components 3.17.22 → 3.17.23-td-924.1.1
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/.releaserc +1 -1
- package/docs/CHANGELOG.md +1 -1
- package/gl-sbom-npm-yarn.cdx.json +351 -2439
- package/package.json +1 -1
- package/services/EQPromotionService.js +1 -1
- package/services/NsProductContentService.js +3 -3
package/package.json
CHANGED
|
@@ -138,7 +138,7 @@ const _equinoxRequest = async options => {
|
|
|
138
138
|
const getEquinoxRequestConfiguration = async () => {
|
|
139
139
|
const marketLocale = UrlService.getLocale();
|
|
140
140
|
const config = (await getConfiguration(["Equinox_Markets"])).Equinox_Markets;
|
|
141
|
-
const storefrontURL =
|
|
141
|
+
const storefrontURL = `https://apis.test.nuskin.com/storefront/`;
|
|
142
142
|
|
|
143
143
|
const sessionData = sessionStorage.getItem("oktaTokens");
|
|
144
144
|
const parsedSessionData = JSON.parse(sessionData);
|
|
@@ -94,14 +94,14 @@ function getProductGraphqlUrl() {
|
|
|
94
94
|
|
|
95
95
|
switch (env) {
|
|
96
96
|
case "dev":
|
|
97
|
-
return "https://
|
|
97
|
+
return "https://apis.dev.nuskin.com/product/graphql";
|
|
98
98
|
case "stage":
|
|
99
99
|
case "test":
|
|
100
|
-
return "https://
|
|
100
|
+
return "https://apis.test.nuskin.com/product/graphql";
|
|
101
101
|
case "unknown":
|
|
102
102
|
case "prod":
|
|
103
103
|
default:
|
|
104
|
-
return "https://
|
|
104
|
+
return "https://apis.nuskin.com/product/graphql";
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
107
|
|