@synergenius/flow-weaver 0.19.1 → 0.19.2
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/ast/types.d.ts
CHANGED
|
@@ -492,10 +492,14 @@ export type TCICDSecret = {
|
|
|
492
492
|
export type TCICDCache = {
|
|
493
493
|
/** Cache strategy name (e.g., npm, pip, custom) */
|
|
494
494
|
strategy: string;
|
|
495
|
-
/** Cache path override */
|
|
495
|
+
/** Cache path override (comma-separated for multiple paths) */
|
|
496
496
|
path?: string;
|
|
497
497
|
/** Cache key file (e.g., package-lock.json) */
|
|
498
498
|
key?: string;
|
|
499
|
+
/** Cache policy (pull, push, pull-push) */
|
|
500
|
+
policy?: string;
|
|
501
|
+
/** Files to use for cache key generation */
|
|
502
|
+
files?: string[];
|
|
499
503
|
};
|
|
500
504
|
/** Artifact declaration from @artifact annotation */
|
|
501
505
|
export type TCICDArtifact = {
|
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.19.
|
|
9674
|
+
VERSION = "0.19.2";
|
|
9675
9675
|
}
|
|
9676
9676
|
});
|
|
9677
9677
|
|
|
@@ -106425,7 +106425,7 @@ function displayInstalledPackage(pkg) {
|
|
|
106425
106425
|
// src/cli/index.ts
|
|
106426
106426
|
init_logger();
|
|
106427
106427
|
init_error_utils();
|
|
106428
|
-
var version2 = true ? "0.19.
|
|
106428
|
+
var version2 = true ? "0.19.2" : "0.0.0-dev";
|
|
106429
106429
|
var program2 = new Command();
|
|
106430
106430
|
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", () => {
|
|
106431
106431
|
logger.banner(version2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.19.
|
|
1
|
+
export declare const VERSION = "0.19.2";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
package/package.json
CHANGED