@alephdata/followthemoney
Advanced tools
Comparing version 1.11.5 to 1.11.6
@@ -5,1 +5,2 @@ export * from './entity'; | ||
export * from './schema'; | ||
export * from './type'; |
@@ -181,2 +181,3 @@ /** | ||
this.matchable = !!data.matchable; | ||
this.isEntity = name === PropertyType.ENTITY; | ||
} | ||
@@ -252,3 +253,3 @@ PropertyType.prototype.toString = function () { | ||
export { Entity, Model, Property, Schema }; | ||
export { Entity, Model, Property, PropertyType, Schema }; | ||
//# sourceMappingURL=followthemoney.es5.js.map |
@@ -187,2 +187,3 @@ (function (global, factory) { | ||
this.matchable = !!data.matchable; | ||
this.isEntity = name === PropertyType.ENTITY; | ||
} | ||
@@ -261,2 +262,3 @@ PropertyType.prototype.toString = function () { | ||
exports.Property = Property; | ||
exports.PropertyType = PropertyType; | ||
exports.Schema = Schema; | ||
@@ -263,0 +265,0 @@ |
@@ -10,2 +10,3 @@ "use strict"; | ||
__export(require("./schema")); | ||
__export(require("./type")); | ||
//# sourceMappingURL=followthemoney.js.map |
@@ -15,2 +15,3 @@ "use strict"; | ||
this.matchable = !!data.matchable; | ||
this.isEntity = name === PropertyType.ENTITY; | ||
} | ||
@@ -17,0 +18,0 @@ PropertyType.prototype.toString = function () { |
@@ -19,4 +19,5 @@ export interface IPropertyTypeDatum { | ||
matchable: boolean; | ||
private isEntity; | ||
constructor(name: string, data: IPropertyTypeDatum); | ||
toString(): string; | ||
} |
@@ -5,1 +5,2 @@ export * from './entity'; | ||
export * from './schema'; | ||
export * from './type'; |
@@ -19,4 +19,5 @@ export interface IPropertyTypeDatum { | ||
matchable: boolean; | ||
private isEntity; | ||
constructor(name: string, data: IPropertyTypeDatum); | ||
toString(): string; | ||
} |
{ | ||
"name": "@alephdata/followthemoney", | ||
"version": "1.11.5", | ||
"version": "1.11.6", | ||
"description": "JavaScript version of the followthemoney data model", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
85952
1164