engagelab-otp 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +14 -36
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,36 +1,14 @@
1
- {
2
- "name": "engagelab-otp",
3
- "version": "1.0.0",
4
- "description": "Official Node.js SDK for EngageLab OTP — send, verify, and parse webhook callbacks",
5
- "main": "src/index.js",
6
- "types": "src/index.d.ts",
7
- "files": [
8
- "src/",
9
- "README.md",
10
- "LICENSE"
11
- ],
12
- "engines": {
13
- "node": ">=14"
14
- },
15
- "license": "MIT",
16
- "repository": {
17
- "type": "git",
18
- "url": "git+https://github.com/engagelab/engagelab-otp-node.git"
19
- },
20
- "homepage": "https://www.engagelab.com",
21
- "keywords": [
22
- "engagelab",
23
- "otp",
24
- "sms",
25
- "verification",
26
- "webhook",
27
- "two-factor",
28
- "2fa"
29
- ],
30
- "scripts": {
31
- "test": "node test/test.js"
32
- },
33
- "dependencies": {
34
- "engagelab-otp": "file:engagelab-otp-1.0.0.tgz"
35
- }
36
- }
1
+ {
2
+ "name": "engagelab-otp",
3
+ "version": "1.0.1",
4
+ "description": "Official Node.js SDK for EngageLab OTP — send, verify, and parse webhook callbacks",
5
+ "main": "src/index.js",
6
+ "types": "src/index.d.ts",
7
+ "files": ["src/", "README.md", "LICENSE"],
8
+ "engines": { "node": ">=14" },
9
+ "license": "MIT",
10
+ "repository": { "type": "git", "url": "git+https://github.com/devengagelab/engagelab-otp-node.git" },
11
+ "homepage": "https://www.engagelab.com",
12
+ "keywords": ["engagelab", "otp", "sms", "verification", "webhook", "two-factor", "2fa"],
13
+ "scripts": { "test": "node test/test.js" }
14
+ }
package/src/index.js CHANGED
@@ -4,7 +4,7 @@ const https = require('https');
4
4
  const crypto = require('crypto');
5
5
  const { URL } = require('url');
6
6
 
7
- const SDK_VERSION = '1.0.0';
7
+ const SDK_VERSION = '1.0.1';
8
8
 
9
9
  // ─── Errors ───────────────────────────────────────────────────────────────────
10
10