@nuskin/product-components 3.17.15 → 3.17.16

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.15",
3
+ "version": "3.17.16",
4
4
  "description": "Nu Skin Product Components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -29,8 +29,8 @@
29
29
  "@nuskin/ns-core-styles": "2.11.2",
30
30
  "@nuskin/ns-icon": "^2.12.0",
31
31
  "@nuskin/ns-loyalty-web": "1.5.6",
32
- "@nuskin/ns-product-lib": "2.19.0",
33
- "@nuskin/ns-shop": "7.0.10",
32
+ "@nuskin/ns-product-lib": "2.19.2",
33
+ "@nuskin/ns-shop": "7.1.3",
34
34
  "@nuskin/product-recommendation": "2.0.1",
35
35
  "axios": "1.6.7",
36
36
  "lodash": "4.17.21",
@@ -94,14 +94,14 @@ function getProductGraphqlUrl() {
94
94
 
95
95
  switch (env) {
96
96
  case "dev":
97
- return "https://test.nuskin.com/product-api/graphql";
97
+ return "https://product.api.dev.nuskin.com/graphql";
98
98
  case "stage":
99
99
  case "test":
100
- return "https://test.nuskin.com/product-api/graphql";
100
+ return "https://product.api.test.nuskin.com/graphql";
101
101
  case "unknown":
102
102
  case "prod":
103
103
  default:
104
- return "https://www.nuskin.com/product-api/graphql";
104
+ return "https://product.api.nuskin.com/graphql";
105
105
  }
106
106
  }
107
107