@truffle/contract-schema
Advanced tools
Comparing version 3.3.1 to 3.3.2
@@ -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 @@ }, |
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
273858
6697