@nodescript/core
Advanced tools
Comparing version 0.7.1 to 0.7.2
@@ -12,2 +12,4 @@ export const Result = { | ||
result: { type: 'any' }, | ||
hidden: true, | ||
hideOutputSocket: true, | ||
}, | ||
@@ -14,0 +16,0 @@ compute() { }, |
@@ -26,6 +26,2 @@ import { Schema } from 'airtight'; | ||
}, | ||
hidden: { | ||
type: 'boolean', | ||
optional: true, | ||
}, | ||
async: { | ||
@@ -41,4 +37,12 @@ type: 'boolean', | ||
result: DataSchemaSchema.schema, | ||
hidden: { | ||
type: 'boolean', | ||
optional: true, | ||
}, | ||
hideOutputSocket: { | ||
type: 'boolean', | ||
optional: true, | ||
}, | ||
} | ||
}); | ||
//# sourceMappingURL=node-metadata.js.map |
@@ -12,6 +12,7 @@ import { DataSchemaSpec } from './data.js'; | ||
deprecated?: string; | ||
hidden?: boolean; | ||
async?: boolean; | ||
params: Record<string, ParamMetadata>; | ||
result: DataSchemaSpec; | ||
async?: boolean; | ||
hidden?: boolean; | ||
hideOutputSocket?: boolean; | ||
}; |
{ | ||
"name": "@nodescript/core", | ||
"version": "0.7.1", | ||
"version": "0.7.2", | ||
"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
122622
2201