@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.429 to 0.0.430
{ | ||
"name": "@dynamic-labs/sdk-api-core", | ||
"version": "0.0.429", | ||
"version": "0.0.430", | ||
"author": "Dynamic Labs", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -69,2 +69,8 @@ /** | ||
validationType?: CustomFieldType; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ProjectSettingsKyc | ||
*/ | ||
label?: string; | ||
} | ||
@@ -71,0 +77,0 @@ export declare function ProjectSettingsKycFromJSON(json: any): ProjectSettingsKyc; |
@@ -23,2 +23,3 @@ import { exists } from '../runtime.js'; | ||
'validationType': !exists(json, 'validationType') ? undefined : CustomFieldTypeFromJSON(json['validationType']), | ||
'label': !exists(json, 'label') ? undefined : json['label'], | ||
}; | ||
@@ -42,2 +43,3 @@ } | ||
'validationType': CustomFieldTypeToJSON(value.validationType), | ||
'label': value.label, | ||
}; | ||
@@ -44,0 +46,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
1278504
30890