Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dynamic-labs/sdk-api-core

Package Overview
Dependencies
Maintainers
1
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynamic-labs/sdk-api-core - npm Package Compare versions

Comparing version 0.0.420 to 0.0.421

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc