auth-verify 1.14.0 → 1.14.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/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  const JWTManager = require("./src/jwt");
2
2
  const OTPManager = require("./src/otp");
3
- const SessionManager = require("./src/session");
3
+ // const SessionManager = require("./src/session");
4
4
  const OAuthManager = require("./src/oauth");
5
5
  const TOTPManager = require("./src/totp");
6
6
  const PasskeyManager = require("./src/passkey");
package/package.json CHANGED
@@ -15,11 +15,10 @@
15
15
  "nodemailer": "^7.0.6",
16
16
  "path": "^0.12.7",
17
17
  "qrcode": "^1.5.4",
18
- "resend": "^6.9.1",
19
- "uuid": "^9.0.1"
18
+ "resend": "^6.9.1"
20
19
  },
21
20
  "name": "auth-verify",
22
- "version": "1.14.0",
21
+ "version": "1.14.1",
23
22
  "description": "A simple Node.js library for sending and verifying OTP via email, SMS and Telegram bot. And generating TOTP codes and QR codes. And handling JWT with Cookies. And also handling passwordless logins with passkeys/webauth. And handling magiclink passwordless logins",
24
23
  "main": "index.js",
25
24
  "scripts": {
@@ -19,6 +19,8 @@ class OAuthManager {
19
19
  access_type: "offline",
20
20
  prompt: "consent",
21
21
  });
22
+
23
+ // console.log(googleURL);
22
24
  res.redirect(googleURL);
23
25
  },
24
26