Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@corbado/node-sdk

Package Overview
Dependencies
Maintainers
2
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@corbado/node-sdk - npm Package Compare versions

Comparing version 1.1.13 to 1.1.14

src/services/associationtokens.service.js

2

package.json
{
"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) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc