@dynamic-labs/sdk-api
Advanced tools
Comparing version 0.0.524 to 0.0.525
{ | ||
"name": "@dynamic-labs/sdk-api", | ||
"version": "0.0.524", | ||
"version": "0.0.525", | ||
"author": "Dynamic Labs", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -29,2 +29,8 @@ /** | ||
*/ | ||
code?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof OauthResultRequest | ||
*/ | ||
sessionPublicKey?: string; | ||
@@ -31,0 +37,0 @@ } |
@@ -13,2 +13,3 @@ import { exists } from '../runtime.js'; | ||
'state': json['state'], | ||
'code': !exists(json, 'code') ? undefined : json['code'], | ||
'sessionPublicKey': !exists(json, 'sessionPublicKey') ? undefined : json['sessionPublicKey'], | ||
@@ -26,2 +27,3 @@ }; | ||
'state': value.state, | ||
'code': value.code, | ||
'sessionPublicKey': value.sessionPublicKey, | ||
@@ -28,0 +30,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
2898680
69345