@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.450 to 0.0.451
{ | ||
"name": "@dynamic-labs/sdk-api-core", | ||
"version": "0.0.450", | ||
"version": "0.0.451", | ||
"author": "Dynamic Labs", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -48,2 +48,8 @@ /** | ||
signature: string; | ||
/** | ||
* Optional captcha token to verify that the user is not a bot | ||
* @type {string} | ||
* @memberof FarcasterSignInRequest | ||
*/ | ||
captchaToken?: string; | ||
} | ||
@@ -50,0 +56,0 @@ export declare function FarcasterSignInRequestFromJSON(json: any): FarcasterSignInRequest; |
@@ -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 FarcasterSignInRequestFromJSON(json) { | ||
@@ -27,2 +17,3 @@ return FarcasterSignInRequestFromJSONTyped(json); | ||
'signature': json['signature'], | ||
'captchaToken': !exists(json, 'captchaToken') ? undefined : json['captchaToken'], | ||
}; | ||
@@ -43,2 +34,3 @@ } | ||
'signature': value.signature, | ||
'captchaToken': value.captchaToken, | ||
}; | ||
@@ -45,0 +37,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
1320646
31830