@absolutejs/auth 0.29.2 → 0.29.3
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/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -3467,7 +3467,7 @@ var credentialsLogin = ({
|
|
|
3467
3467
|
});
|
|
3468
3468
|
const mfaContext = {
|
|
3469
3469
|
headers: headerBag,
|
|
3470
|
-
ip: headerBag["cf-connecting-ip"] ?? headerBag["x-forwarded-for"]?.split(",")[0]?.trim() ?? undefined
|
|
3470
|
+
ip: headerBag["cf-connecting-ip"] ?? headerBag["do-connecting-ip"] ?? headerBag["x-forwarded-for"]?.split(",")[0]?.trim() ?? undefined
|
|
3471
3471
|
};
|
|
3472
3472
|
const normalizedEmail = email.trim().toLowerCase();
|
|
3473
3473
|
const lockState = lockoutGuard ? await lockoutGuard.check(normalizedEmail) : undefined;
|
|
@@ -23226,5 +23226,5 @@ export {
|
|
|
23226
23226
|
AuthIdentityConflictError
|
|
23227
23227
|
};
|
|
23228
23228
|
|
|
23229
|
-
//# debugId=
|
|
23229
|
+
//# debugId=A629114DF39943A964756E2164756E21
|
|
23230
23230
|
//# sourceMappingURL=index.js.map
|