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

@dynamic-labs/sdk-api-core

Package Overview
Dependencies
Maintainers
1
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynamic-labs/sdk-api-core - npm Package Compare versions

Comparing version 0.0.430 to 0.0.431

2

package.json
{
"name": "@dynamic-labs/sdk-api-core",
"version": "0.0.430",
"version": "0.0.431",
"author": "Dynamic Labs",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",

@@ -43,2 +43,14 @@ /**

*/
lastVerifiedCredentialId?: string;
/**
*
* @type {string}
* @memberof BaseUser
*/
sessionId?: string;
/**
*
* @type {string}
* @memberof BaseUser
*/
alias?: string | null;

@@ -45,0 +57,0 @@ /**

@@ -17,2 +17,4 @@ import { exists } from '../runtime.js';

'verifiedCredentials': !exists(json, 'verifiedCredentials') ? undefined : (json['verifiedCredentials'].map(JwtVerifiedCredentialFromJSON)),
'lastVerifiedCredentialId': !exists(json, 'lastVerifiedCredentialId') ? undefined : json['lastVerifiedCredentialId'],
'sessionId': !exists(json, 'sessionId') ? undefined : json['sessionId'],
'alias': !exists(json, 'alias') ? undefined : json['alias'],

@@ -58,2 +60,4 @@ 'country': !exists(json, 'country') ? undefined : json['country'],

'verifiedCredentials': value.verifiedCredentials === undefined ? undefined : (value.verifiedCredentials.map(JwtVerifiedCredentialToJSON)),
'lastVerifiedCredentialId': value.lastVerifiedCredentialId,
'sessionId': value.sessionId,
'alias': value.alias,

@@ -60,0 +64,0 @@ 'country': value.country,

@@ -43,2 +43,14 @@ /**

*/
lastVerifiedCredentialId?: string;
/**
*
* @type {string}
* @memberof SdkUser
*/
sessionId?: string;
/**
*
* @type {string}
* @memberof SdkUser
*/
alias?: string | null;

@@ -45,0 +57,0 @@ /**

@@ -17,2 +17,4 @@ import { exists } from '../runtime.js';

'verifiedCredentials': (json['verifiedCredentials'].map(JwtVerifiedCredentialFromJSON)),
'lastVerifiedCredentialId': !exists(json, 'lastVerifiedCredentialId') ? undefined : json['lastVerifiedCredentialId'],
'sessionId': !exists(json, 'sessionId') ? undefined : json['sessionId'],
'alias': !exists(json, 'alias') ? undefined : json['alias'],

@@ -58,2 +60,4 @@ 'country': !exists(json, 'country') ? undefined : json['country'],

'verifiedCredentials': (value.verifiedCredentials.map(JwtVerifiedCredentialToJSON)),
'lastVerifiedCredentialId': value.lastVerifiedCredentialId,
'sessionId': value.sessionId,
'alias': value.alias,

@@ -60,0 +64,0 @@ 'country': value.country,

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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