@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.526 to 0.0.527
{ | ||
"name": "@dynamic-labs/sdk-api-core", | ||
"version": "0.0.526", | ||
"version": "0.0.527", | ||
"author": "Dynamic Labs", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -24,2 +24,8 @@ /** | ||
publicKey: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof RegisterSessionKeyRequest | ||
*/ | ||
prevSessionKeySignature?: string; | ||
} | ||
@@ -26,0 +32,0 @@ export declare function RegisterSessionKeyRequestFromJSON(json: any): RegisterSessionKeyRequest; |
@@ -0,14 +1,4 @@ | ||
import { exists } from '../runtime.js'; | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Dashboard API | ||
* Dashboard API documentation | ||
* | ||
* The version of the OpenAPI document: 1.0.0 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
function RegisterSessionKeyRequestFromJSON(json) { | ||
@@ -23,2 +13,3 @@ return RegisterSessionKeyRequestFromJSONTyped(json); | ||
'publicKey': json['publicKey'], | ||
'prevSessionKeySignature': !exists(json, 'prevSessionKeySignature') ? undefined : json['prevSessionKeySignature'], | ||
}; | ||
@@ -35,2 +26,3 @@ } | ||
'publicKey': value.publicKey, | ||
'prevSessionKeySignature': value.prevSessionKeySignature, | ||
}; | ||
@@ -37,0 +29,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
1651878
39186