@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/product-components",
3
- "version": "3.17.22",
3
+ "version": "3.17.23-td-924.1.1",
4
4
  "description": "Nu Skin Product Components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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 = config.API_Base_URLs;
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://product.api.dev.nuskin.com/graphql";
97
+ return "https://apis.dev.nuskin.com/product/graphql";
98
98
  case "stage":
99
99
  case "test":
100
- return "https://product.api.test.nuskin.com/graphql";
100
+ return "https://apis.test.nuskin.com/product/graphql";
101
101
  case "unknown":
102
102
  case "prod":
103
103
  default:
104
- return "https://product.api.nuskin.com/graphql";
104
+ return "https://apis.nuskin.com/product/graphql";
105
105
  }
106
106
  }
107
107