@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.511 to 0.0.512
{ | ||
"name": "@dynamic-labs/sdk-api-core", | ||
"version": "0.0.511", | ||
"version": "0.0.512", | ||
"author": "Dynamic Labs", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -75,2 +75,8 @@ /** | ||
label?: string; | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof ProjectSettingsKyc | ||
*/ | ||
position?: number; | ||
} | ||
@@ -77,0 +83,0 @@ export declare function ProjectSettingsKycFromJSON(json: any): ProjectSettingsKyc; |
@@ -24,2 +24,3 @@ import { exists } from '../runtime.js'; | ||
'label': !exists(json, 'label') ? undefined : json['label'], | ||
'position': !exists(json, 'position') ? undefined : json['position'], | ||
}; | ||
@@ -44,2 +45,3 @@ } | ||
'label': value.label, | ||
'position': value.position, | ||
}; | ||
@@ -46,0 +48,0 @@ } |
@@ -30,2 +30,3 @@ /** | ||
InvalidVerification = "invalid_verification", | ||
InvalidPosition = "invalid_position", | ||
TooManySmsVerificationAttempts = "too_many_sms_verification_attempts", | ||
@@ -32,0 +33,0 @@ TooManyEmailVerificationAttempts = "too_many_email_verification_attempts", |
@@ -33,2 +33,3 @@ /* tslint:disable */ | ||
UnprocessableEntityErrorCode["InvalidVerification"] = "invalid_verification"; | ||
UnprocessableEntityErrorCode["InvalidPosition"] = "invalid_position"; | ||
UnprocessableEntityErrorCode["TooManySmsVerificationAttempts"] = "too_many_sms_verification_attempts"; | ||
@@ -35,0 +36,0 @@ UnprocessableEntityErrorCode["TooManyEmailVerificationAttempts"] = "too_many_email_verification_attempts"; |
Sorry, the diff of this file is not supported yet
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
1491663
35625