@synergenius/flow-weaver 0.17.12 → 0.17.13
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/cli/flow-weaver.mjs
CHANGED
|
@@ -9671,7 +9671,7 @@ var VERSION;
|
|
|
9671
9671
|
var init_generated_version = __esm({
|
|
9672
9672
|
"src/generated-version.ts"() {
|
|
9673
9673
|
"use strict";
|
|
9674
|
-
VERSION = "0.17.
|
|
9674
|
+
VERSION = "0.17.13";
|
|
9675
9675
|
}
|
|
9676
9676
|
});
|
|
9677
9677
|
|
|
@@ -105891,7 +105891,7 @@ function displayInstalledPackage(pkg) {
|
|
|
105891
105891
|
// src/cli/index.ts
|
|
105892
105892
|
init_logger();
|
|
105893
105893
|
init_error_utils();
|
|
105894
|
-
var version2 = true ? "0.17.
|
|
105894
|
+
var version2 = true ? "0.17.13" : "0.0.0-dev";
|
|
105895
105895
|
var program2 = new Command();
|
|
105896
105896
|
program2.name("flow-weaver").description("Flow Weaver Annotations - Compile and validate workflow files").option("-v, --version", "Output the current version").option("--no-color", "Disable colors").option("--color", "Force colors").on("option:version", () => {
|
|
105897
105897
|
logger.banner(version2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.17.
|
|
1
|
+
export declare const VERSION = "0.17.13";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synergenius/flow-weaver",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.13",
|
|
4
4
|
"description": "Deterministic workflow compiler for AI agents. Compiles to standalone TypeScript, no runtime dependencies.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -82,6 +82,10 @@
|
|
|
82
82
|
"./cli": {
|
|
83
83
|
"types": "./dist/cli/exports.d.ts",
|
|
84
84
|
"default": "./dist/cli/exports.js"
|
|
85
|
+
},
|
|
86
|
+
"./executor": {
|
|
87
|
+
"types": "./dist/mcp/workflow-executor.d.ts",
|
|
88
|
+
"default": "./dist/mcp/workflow-executor.js"
|
|
85
89
|
}
|
|
86
90
|
},
|
|
87
91
|
"bin": {
|