@synergenius/flow-weaver 0.21.12 → 0.21.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/LICENSE +23 -0
- package/dist/cli/flow-weaver.mjs +2 -2
- package/dist/generated-version.d.ts +1 -1
- package/dist/generated-version.js +1 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -37,6 +37,9 @@ Never permitted:
|
|
|
37
37
|
Remove or circumvent license keys Applies to software and derivatives
|
|
38
38
|
Remove licensing or copyright notices Must always be retained
|
|
39
39
|
Strip license key checks from forks Derivatives must retain protections
|
|
40
|
+
Reverse-engineer to build replacements Manual, automated, or AI-assisted
|
|
41
|
+
Use as AI/ML input to replicate features Training, prompting, or code generation
|
|
42
|
+
Extract specs for third-party cloning Indirect circumvention via intermediaries
|
|
40
43
|
|
|
41
44
|
---
|
|
42
45
|
|
|
@@ -81,6 +84,26 @@ mechanisms, and licensing notices present in the original software. Distributing
|
|
|
81
84
|
derivative works with license key protections removed, disabled, or bypassed
|
|
82
85
|
constitutes a violation of this license.
|
|
83
86
|
|
|
87
|
+
You may not use any part of the software, including but not limited to its
|
|
88
|
+
source code, test suites, documentation, specifications, observable behavior,
|
|
89
|
+
inputs, outputs, or error messages, to develop, train, fine-tune, prompt, or
|
|
90
|
+
otherwise assist in the creation of software that replicates, reimplements, or
|
|
91
|
+
substitutes for any functionality of the software. This restriction applies
|
|
92
|
+
whether the development is performed manually, through automated tools, or
|
|
93
|
+
through artificial intelligence or machine learning systems, and regardless of
|
|
94
|
+
whether the resulting software contains any code from the original.
|
|
95
|
+
|
|
96
|
+
You may not use any part of the software as input to any artificial intelligence,
|
|
97
|
+
machine learning, or large language model system for the purpose of generating,
|
|
98
|
+
synthesizing, or deriving source code, algorithms, data structures, or
|
|
99
|
+
architectures that replicate or approximate the functionality of the software.
|
|
100
|
+
|
|
101
|
+
You may not circumvent the limitations in this license through indirect means,
|
|
102
|
+
including but not limited to extracting specifications, behavioral descriptions,
|
|
103
|
+
or functional requirements from the software and providing them to third parties
|
|
104
|
+
or automated systems for the purpose of developing competing or functionally
|
|
105
|
+
equivalent software.
|
|
106
|
+
|
|
84
107
|
You may not alter, remove, or obscure any licensing, copyright, or other notices
|
|
85
108
|
of the licensor in the software. Any use of the licensor's trademarks is subject
|
|
86
109
|
to applicable law.
|
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.21.
|
|
9674
|
+
VERSION = "0.21.13";
|
|
9675
9675
|
}
|
|
9676
9676
|
});
|
|
9677
9677
|
|
|
@@ -93117,7 +93117,7 @@ function displayInstalledPackage(pkg) {
|
|
|
93117
93117
|
// src/cli/index.ts
|
|
93118
93118
|
init_logger();
|
|
93119
93119
|
init_error_utils();
|
|
93120
|
-
var version2 = true ? "0.21.
|
|
93120
|
+
var version2 = true ? "0.21.13" : "0.0.0-dev";
|
|
93121
93121
|
var program2 = new Command();
|
|
93122
93122
|
program2.name("fw").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", () => {
|
|
93123
93123
|
logger.banner(version2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.21.
|
|
1
|
+
export declare const VERSION = "0.21.13";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
package/package.json
CHANGED