simple-graph-query 2.5.2 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -25,3 +25,7 @@ export interface IDataInstance {
25
25
  getAtoms(): readonly IAtom[];
26
26
  getRelations(): readonly IRelation[];
27
27
  }
28
+ export interface IForgeSchema {
29
+ getTypes(): readonly IType[];
30
+ getRelations(): readonly IRelation[];
31
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simple-graph-query",
3
- "version": "2.5.2",
3
+ "version": "2.7.0",
4
4
  "description": "TypeScript evaluator for Forge expressions with browser-compatible UMD bundle",
5
5
  "main": "dist/simple-graph-query.bundle.js",
6
6
  "types": "dist/index.d.ts",