@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.513 to 0.0.514
{ | ||
"name": "@dynamic-labs/sdk-api-core", | ||
"version": "0.0.513", | ||
"version": "0.0.514", | ||
"author": "Dynamic Labs", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -49,2 +49,8 @@ /** | ||
_default?: boolean; | ||
/** | ||
* The optional alias for the MFA device | ||
* @type {string} | ||
* @memberof MFADevice | ||
*/ | ||
alias?: string; | ||
} | ||
@@ -51,0 +57,0 @@ export declare function MFADeviceFromJSON(json: any): MFADevice; |
@@ -18,2 +18,3 @@ import { exists } from '../runtime.js'; | ||
'_default': !exists(json, 'default') ? undefined : json['default'], | ||
'alias': !exists(json, 'alias') ? undefined : json['alias'], | ||
}; | ||
@@ -34,2 +35,3 @@ } | ||
'default': value._default, | ||
'alias': value.alias, | ||
}; | ||
@@ -36,0 +38,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
1505731
35946