@nodescript/core
Advanced tools
Comparing version 0.11.4 to 0.12.0
@@ -11,2 +11,3 @@ import * as t from '../types/index.js'; | ||
refs: Record<string, string>; | ||
aux: Record<string, any>; | ||
protected $nodeMap: Map<string, Node>; | ||
@@ -13,0 +14,0 @@ constructor($loader: t.GraphLoader, spec?: t.GraphSpec); |
@@ -8,2 +8,3 @@ import { GraphSchema } from '../schema/index.js'; | ||
this.refs = {}; | ||
this.aux = {}; | ||
this.$nodeMap = new Map(); | ||
@@ -10,0 +11,0 @@ const graph = Graph.schema.decode(spec); |
@@ -19,4 +19,11 @@ import { Schema } from 'airtight'; | ||
}, | ||
aux: { | ||
type: 'object', | ||
properties: {}, | ||
additionalProperties: { | ||
type: 'any', | ||
}, | ||
} | ||
}, | ||
}); | ||
//# sourceMappingURL=graph.js.map |
@@ -44,12 +44,4 @@ import { Schema } from 'airtight'; | ||
}, | ||
aux: { | ||
type: 'object', | ||
properties: {}, | ||
additionalProperties: { | ||
type: 'any', | ||
}, | ||
optional: true, | ||
} | ||
} | ||
}); | ||
//# sourceMappingURL=node-metadata.js.map |
@@ -8,2 +8,3 @@ import { DeepPartial } from './deep-partial.js'; | ||
refs: Record<string, string>; | ||
aux: Record<string, any>; | ||
} | ||
@@ -10,0 +11,0 @@ export declare type GraphSpec = DeepPartial<Graph>; |
@@ -17,3 +17,2 @@ import { DataSchemaSpec } from './data.js'; | ||
hideOutboundSocket?: boolean; | ||
aux?: Record<string, any>; | ||
}; |
{ | ||
"name": "@nodescript/core", | ||
"version": "0.11.4", | ||
"version": "0.12.0", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Visual programming language for Browser and Node", |
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
125482
146
2241