@nuskin/ns-product-lib 2.19.1 → 2.19.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.19.1",
3
+ "version": "2.19.2",
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": {
@@ -2,15 +2,15 @@ const { getEnvironmentFromUrl } = require('@nuskin/ns-common-lib');
2
2
 
3
3
  const config = {
4
4
  dev: {
5
- url: 'https://test.nuskin.com/product-api/graphql',
5
+ url: 'https://product.api.dev.nuskin.com/graphql',
6
6
  env: 'dev'
7
7
  },
8
8
  test: {
9
- url: 'https://test.nuskin.com/product-api/graphql',
9
+ url: 'https://product.api.test.nuskin.com/graphql',
10
10
  env: 'test'
11
11
  },
12
12
  prod: {
13
- url: 'https://nuskin.com/product-api/graphql',
13
+ url: 'https://product.api.nuskin.com/graphql',
14
14
  env: 'public'
15
15
  }
16
16
  };