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

@dynamic-labs/sdk-api

Package Overview
Dependencies
Maintainers
2
Versions
551
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 0.0.78 to 0.0.79

2

package.json
{
"name": "@dynamic-labs/sdk-api",
"version": "0.0.78",
"version": "0.0.79",
"author": "Dynamic Labs",

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

@@ -24,3 +24,3 @@ /**

*/
id?: string;
id: string;
/**

@@ -31,3 +31,3 @@ *

*/
createdAt?: Date;
createdAt: Date;
/**

@@ -38,3 +38,3 @@ *

*/
result?: ChainalysisCheckResultEnum;
result: ChainalysisCheckResultEnum;
/**

@@ -45,3 +45,3 @@ * Valid blockchain wallet address, must be an alphanumeric string without any special characters

*/
walletPublicKey?: string;
walletPublicKey: string;
/**

@@ -52,3 +52,3 @@ *

*/
response?: string;
response: string;
}

@@ -55,0 +55,0 @@ export declare function ChainalysisCheckFromJSON(json: any): ChainalysisCheck;

@@ -17,3 +17,2 @@ "use strict";

exports.ChainalysisCheckToJSON = exports.ChainalysisCheckFromJSONTyped = exports.ChainalysisCheckFromJSON = void 0;
const runtime_1 = require("../runtime");
const ChainalysisCheckResultEnum_1 = require("./ChainalysisCheckResultEnum");

@@ -29,7 +28,7 @@ function ChainalysisCheckFromJSON(json) {

return {
'id': !(0, runtime_1.exists)(json, 'id') ? undefined : json['id'],
'createdAt': !(0, runtime_1.exists)(json, 'createdAt') ? undefined : (new Date(json['createdAt'])),
'result': !(0, runtime_1.exists)(json, 'result') ? undefined : (0, ChainalysisCheckResultEnum_1.ChainalysisCheckResultEnumFromJSON)(json['result']),
'walletPublicKey': !(0, runtime_1.exists)(json, 'walletPublicKey') ? undefined : json['walletPublicKey'],
'response': !(0, runtime_1.exists)(json, 'response') ? undefined : json['response'],
'id': json['id'],
'createdAt': (new Date(json['createdAt'])),
'result': (0, ChainalysisCheckResultEnum_1.ChainalysisCheckResultEnumFromJSON)(json['result']),
'walletPublicKey': json['walletPublicKey'],
'response': json['response'],
};

@@ -47,3 +46,3 @@ }

'id': value.id,
'createdAt': value.createdAt === undefined ? undefined : (value.createdAt.toISOString()),
'createdAt': (value.createdAt.toISOString()),
'result': (0, ChainalysisCheckResultEnum_1.ChainalysisCheckResultEnumToJSON)(value.result),

@@ -50,0 +49,0 @@ 'walletPublicKey': value.walletPublicKey,

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