supertokens-website
Advanced tools
Comparing version 17.0.4 to 17.0.5
@@ -10,2 +10,8 @@ # Changelog | ||
## [17.0.5] - 2024-01-03 | ||
### Fixes | ||
- Fix typo in debug logging | ||
## [17.0.4] - 2023-09-24 | ||
@@ -12,0 +18,0 @@ |
@@ -171,2 +171,3 @@ "use strict"; | ||
var sessionClaimValidatorStore_1 = require("./utils/sessionClaimValidatorStore"); | ||
var logger_1 = require("./logger"); | ||
var AuthHttpRequest = /** @class */ (function () { | ||
@@ -182,2 +183,5 @@ function AuthHttpRequest() {} | ||
var config = (0, utils_1.validateAndNormaliseInputOrThrowError)(options); | ||
if (options.enableDebugLogs !== undefined && options.enableDebugLogs) { | ||
(0, logger_1.enableLogging)(); | ||
} | ||
var recipeImpl = new supertokens_js_override_1.default( | ||
@@ -184,0 +188,0 @@ (0, recipeImplementation_1.default)({ |
@@ -171,3 +171,2 @@ "use strict"; | ||
var windowHandler_1 = require("../utils/windowHandler"); | ||
var logger_1 = require("../logger"); | ||
function normaliseURLDomainOrThrowError(input) { | ||
@@ -283,5 +282,2 @@ var str = new normalisedURLDomain_1.default(input).getAsStringDangerous(); | ||
); | ||
if (options.enableDebugLogs !== undefined && options.enableDebugLogs) { | ||
(0, logger_1.enableLogging)(); | ||
} | ||
return { | ||
@@ -288,0 +284,0 @@ apiDomain: apiDomain, |
@@ -1,2 +0,2 @@ | ||
export declare const package_version = "17.0.4"; | ||
export declare const package_version = "17.0.5"; | ||
export declare const supported_fdi: string[]; |
@@ -18,3 +18,3 @@ "use strict"; | ||
*/ | ||
exports.package_version = "17.0.4"; | ||
exports.package_version = "17.0.5"; | ||
exports.supported_fdi = ["1.16", "1.17", "1.18"]; |
{ | ||
"name": "supertokens-website", | ||
"version": "17.0.4", | ||
"version": "17.0.5", | ||
"description": "frontend sdk for website to be used for auth solution.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
378030