@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.515 to 0.0.516
{ | ||
"name": "@dynamic-labs/sdk-api-core", | ||
"version": "0.0.515", | ||
"version": "0.0.516", | ||
"author": "Dynamic Labs", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -44,2 +44,8 @@ /** | ||
/** | ||
* The date and time the MFA device was verified | ||
* @type {Date} | ||
* @memberof MFADevice | ||
*/ | ||
verifiedAt?: Date | null; | ||
/** | ||
* Whether or not this is the default MFA device for the user | ||
@@ -46,0 +52,0 @@ * @type {boolean} |
@@ -17,2 +17,3 @@ import { exists } from '../runtime.js'; | ||
'createdAt': !exists(json, 'createdAt') ? undefined : (new Date(json['createdAt'])), | ||
'verifiedAt': !exists(json, 'verifiedAt') ? undefined : (json['verifiedAt'] === null ? null : new Date(json['verifiedAt'])), | ||
'_default': !exists(json, 'default') ? undefined : json['default'], | ||
@@ -34,2 +35,3 @@ 'alias': !exists(json, 'alias') ? undefined : json['alias'], | ||
'createdAt': value.createdAt === undefined ? undefined : (value.createdAt.toISOString()), | ||
'verifiedAt': value.verifiedAt === undefined ? undefined : (value.verifiedAt === null ? null : value.verifiedAt.toISOString()), | ||
'default': value._default, | ||
@@ -36,0 +38,0 @@ 'alias': value.alias, |
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
1509501
36021