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.426 to 0.0.427

2

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

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

@@ -174,2 +174,8 @@ /**

walletAdditionalAddresses?: Array<WalletAdditionalAddress>;
/**
* This timestamp indicates the last time this verified wallet was either connected to the user account or selected to become the primary wallet on the account.
* @type {Date}
* @memberof JwtVerifiedCredential
*/
lastSelectedAt?: Date;
}

@@ -176,0 +182,0 @@ export declare function JwtVerifiedCredentialFromJSON(json: any): JwtVerifiedCredential;

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

'walletAdditionalAddresses': !exists(json, 'wallet_additional_addresses') ? undefined : (json['wallet_additional_addresses'].map(WalletAdditionalAddressFromJSON)),
'lastSelectedAt': !exists(json, 'lastSelectedAt') ? undefined : (new Date(json['lastSelectedAt'])),
};

@@ -79,2 +80,3 @@ }

'wallet_additional_addresses': value.walletAdditionalAddresses === undefined ? undefined : (value.walletAdditionalAddresses.map(WalletAdditionalAddressToJSON)),
'lastSelectedAt': value.lastSelectedAt === undefined ? undefined : (value.lastSelectedAt.toISOString()),
};

@@ -81,0 +83,0 @@ }

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