@zkyc/evg 1.0.0 → 1.1.0

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +7 -2
package/index.js CHANGED
@@ -53,7 +53,7 @@ async function ZKYCProcess(config) {
53
53
  }
54
54
 
55
55
  // Build SDK URL with token
56
- const sdkUrl = new URL("https://sdk.zkyc.tech/");
56
+ const sdkUrl = new URL("https://evg.zkyc.tech/");
57
57
  sdkUrl.searchParams.set("apikey", token); // SDK will detect it's a token
58
58
  sdkUrl.searchParams.set("callback", callback);
59
59
  sdkUrl.searchParams.set("userId", userId);
package/package.json CHANGED
@@ -1,12 +1,17 @@
1
1
  {
2
2
  "name": "@zkyc/evg",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "zKYC SDK wrapper to generate tokens and redirect to KYC",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
7
7
  "type": "module",
8
8
  "scripts": {},
9
- "keywords": ["zkc", "kyc", "sdk", "token"],
9
+ "keywords": [
10
+ "zkc",
11
+ "kyc",
12
+ "sdk",
13
+ "token"
14
+ ],
10
15
  "author": "Your Name",
11
16
  "license": "MIT",
12
17
  "dependencies": {}