Socket
Socket
Sign inDemoInstall

@dynamic-labs/sdk-api-core

Package Overview
Dependencies
Maintainers
1
Versions
122
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.523 to 0.0.524

2

package.json
{
"name": "@dynamic-labs/sdk-api-core",
"version": "0.0.523",
"version": "0.0.524",
"author": "Dynamic Labs",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",

@@ -14,2 +14,3 @@ /**

import { Duration } from './Duration';
import { EmbeddedWalletVersionEnum } from './EmbeddedWalletVersionEnum';
import { SupportedSecurityMethods } from './SupportedSecurityMethods';

@@ -76,2 +77,8 @@ /**

domainEnabledByProvider?: boolean;
/**
*
* @type {EmbeddedWalletVersionEnum}
* @memberof ProjectSettingsSdkEmbeddedWallets
*/
defaultWalletVersion?: EmbeddedWalletVersionEnum;
}

@@ -78,0 +85,0 @@ export declare function ProjectSettingsSdkEmbeddedWalletsFromJSON(json: any): ProjectSettingsSdkEmbeddedWallets;

import { exists } from '../runtime.js';
import { ChainConfigurationFromJSON, ChainConfigurationToJSON } from './ChainConfiguration.js';
import { DurationFromJSON, DurationToJSON } from './Duration.js';
import { EmbeddedWalletVersionEnumFromJSON, EmbeddedWalletVersionEnumToJSON } from './EmbeddedWalletVersionEnum.js';
import { SupportedSecurityMethodsFromJSON, SupportedSecurityMethodsToJSON } from './SupportedSecurityMethods.js';

@@ -24,2 +25,3 @@

'domainEnabledByProvider': !exists(json, 'domainEnabledByProvider') ? undefined : json['domainEnabledByProvider'],
'defaultWalletVersion': !exists(json, 'defaultWalletVersion') ? undefined : EmbeddedWalletVersionEnumFromJSON(json['defaultWalletVersion']),
};

@@ -44,2 +46,3 @@ }

'domainEnabledByProvider': value.domainEnabledByProvider,
'defaultWalletVersion': EmbeddedWalletVersionEnumToJSON(value.defaultWalletVersion),
};

@@ -46,0 +49,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