@corbado/node-sdk
Advanced tools
Comparing version 1.1.13 to 1.1.14
{ | ||
"name": "@corbado/node-sdk", | ||
"version": "1.1.13", | ||
"version": "1.1.14", | ||
"description": "This Node.js SDK eases the integration of Corbado's passkey-first authentication solution.", | ||
@@ -5,0 +5,0 @@ "main": "dist/cjs/index.js", |
@@ -10,2 +10,3 @@ import Passkeys from './services/passkeys.service.js'; | ||
import {utils} from "./utils/clientInfo.utils.js"; | ||
import AssociationTokens from "./services/associationtokens.service.js"; | ||
@@ -24,2 +25,3 @@ | ||
#emailLinks = null; | ||
#associationTokens = null; | ||
#authTokens = null; | ||
@@ -90,2 +92,11 @@ #session = null; | ||
get associationTokens() { | ||
if (this.#associationTokens === null) { | ||
this.#associationTokens = new AssociationTokens( | ||
this.#client | ||
) | ||
} | ||
return this.#associationTokens; | ||
} | ||
get authTokens() { | ||
@@ -92,0 +103,0 @@ if (this.#authTokens === null) { |
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
201968
43
3054