@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.420 to 0.0.421
{ | ||
"name": "@dynamic-labs/sdk-api-core", | ||
"version": "0.0.420", | ||
"version": "0.0.421", | ||
"author": "Dynamic Labs", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -37,2 +37,8 @@ /** | ||
validOptions?: Array<CustomFieldValidValue>; | ||
/** | ||
* text that will be displayed next to the checkbox | ||
* @type {string} | ||
* @memberof CustomFieldValidationRules | ||
*/ | ||
checkboxText?: string; | ||
} | ||
@@ -39,0 +45,0 @@ export declare function CustomFieldValidationRulesFromJSON(json: any): CustomFieldValidationRules; |
@@ -16,2 +16,3 @@ import { exists } from '../runtime.js'; | ||
'validOptions': !exists(json, 'validOptions') ? undefined : (json['validOptions'].map(CustomFieldValidValueFromJSON)), | ||
'checkboxText': !exists(json, 'checkboxText') ? undefined : json['checkboxText'], | ||
}; | ||
@@ -30,2 +31,3 @@ } | ||
'validOptions': value.validOptions === undefined ? undefined : (value.validOptions.map(CustomFieldValidValueToJSON)), | ||
'checkboxText': value.checkboxText, | ||
}; | ||
@@ -32,0 +34,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
1252697
30300