@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.426 to 0.0.427
{ | ||
"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
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
1261036
30486