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

@truffle/contract-schema

Package Overview
Dependencies
Maintainers
5
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@truffle/contract-schema - npm Package Compare versions

Comparing version 3.3.1 to 3.3.2

4

index.js

@@ -179,3 +179,4 @@ var pkgVersion = require("./package.json").version;

devdoc: {},
userdoc: {}
userdoc: {},
db: {}
};

@@ -248,3 +249,2 @@

data,
schema, // eslint-disable-line no-unused-vars
parentSchema

@@ -251,0 +251,0 @@ }) =>

@@ -11,3 +11,3 @@ {

},
"version": "3.3.1",
"version": "3.3.2",
"main": "index.js",

@@ -43,3 +43,3 @@ "directories": {

},
"gitHead": "911755f0a603f033a716ff921e7e0f5fe24a241d"
"gitHead": "198cde0e2ce60647bf80c420c053df32da7d898c"
}

@@ -93,2 +93,16 @@ {

"$ref": "#/definitions/GeneratedSources"
},
"db": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "object",
"description": "Reference to @truffle/db canonical ID object for correlation purposes",
"properties": {
"id": {
"type": "string"
}
}
}
}
}

@@ -95,0 +109,0 @@ },

@@ -111,2 +111,14 @@ /* tslint:disable */

deployedGeneratedSources?: GeneratedSources;
db?: {
/**
* Reference to @truffle/db canonical ID object for correlation purposes
*
* This interface was referenced by `undefined`'s JSON-Schema definition
* via the `patternProperty` "^[a-zA-Z0-9]+$".
*/
[k: string]: {
id?: string;
[k: string]: any;
};
};
/**

@@ -163,2 +175,14 @@ * This interface was referenced by `ContractObject`'s JSON-Schema definition

};
db?: {
/**
* Reference to @truffle/db canonical ID object for correlation purposes
*
* This interface was referenced by `undefined`'s JSON-Schema definition
* via the `patternProperty` "^[a-zA-Z0-9]+$".
*/
[k: string]: {
id?: string;
[k: string]: any;
};
};
}

@@ -165,0 +189,0 @@ export interface NatSpec {

@@ -23,2 +23,16 @@ {

"additionalProperties": false
},
"db": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "object",
"description": "Reference to @truffle/db canonical ID object for correlation purposes",
"properties": {
"id": {
"type": "string"
}
}
}
}
}

@@ -25,0 +39,0 @@ },

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