@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.430 to 0.0.431
{ | ||
"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
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
1280196
30930