@synergenius/flow-weaver 0.14.0 → 0.14.1
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/api/index.d.ts +2 -0
- package/dist/api/index.js +3 -0
- package/dist/cli/flow-weaver.mjs +3375 -3369
- package/dist/deployment/index.d.ts +3 -1
- package/dist/deployment/index.js +3 -0
- package/dist/generated-version.d.ts +1 -1
- package/dist/generated-version.js +1 -1
- package/package.json +1 -1
|
@@ -14,7 +14,9 @@ export { DEFAULT_CONFIG, DEFAULT_SERVER_CONFIG, DEFAULT_EXECUTION_CONFIG, getDef
|
|
|
14
14
|
export { loadConfig, loadConfigSync, getConfigValue } from './config/loader.js';
|
|
15
15
|
export { OpenAPIGenerator, generateOpenAPIJson, generateOpenAPIYaml, type OpenAPIDocument, type OpenAPIInfo, type OpenAPIServer, type GeneratorOptions, } from './openapi/generator.js';
|
|
16
16
|
export { SchemaConverter, schemaConverter, type OpenAPISchema, } from './openapi/schema-converter.js';
|
|
17
|
-
export { type ExportTarget, type ExportOptions, type ExportArtifacts, type GeneratedFile, type DeployInstructions, type DeploySchema, type DeploySchemaField, BaseExportTarget, ExportTargetRegistry, } from './targets/base.js';
|
|
17
|
+
export { type ExportTarget, type ExportOptions, type ExportArtifacts, type GeneratedFile, type DeployInstructions, type DeploySchema, type DeploySchemaField, type CompiledWorkflow, type MultiWorkflowArtifacts, type NodeTypeInfo, type NodeTypeExportOptions, type NodeTypeArtifacts, type BundleWorkflow, type BundleNodeType, type BundleArtifacts, BaseExportTarget, ExportTargetRegistry, } from './targets/base.js';
|
|
18
|
+
export { isCICDWorkflow } from '../validation/cicd-detection.js';
|
|
19
|
+
export { generateStandaloneRuntimeModule } from '../api/inline-runtime.js';
|
|
18
20
|
export { LambdaTarget } from './targets/lambda.js';
|
|
19
21
|
export { VercelTarget } from './targets/vercel.js';
|
|
20
22
|
export { CloudflareTarget } from './targets/cloudflare.js';
|
package/dist/deployment/index.js
CHANGED
|
@@ -18,6 +18,9 @@ export { OpenAPIGenerator, generateOpenAPIJson, generateOpenAPIYaml, } from './o
|
|
|
18
18
|
export { SchemaConverter, schemaConverter, } from './openapi/schema-converter.js';
|
|
19
19
|
// Export Targets
|
|
20
20
|
export { BaseExportTarget, ExportTargetRegistry, } from './targets/base.js';
|
|
21
|
+
// Utilities needed by export target packs
|
|
22
|
+
export { isCICDWorkflow } from '../validation/cicd-detection.js';
|
|
23
|
+
export { generateStandaloneRuntimeModule } from '../api/inline-runtime.js';
|
|
21
24
|
// Target implementations — still exported for direct use by pack authors and tests
|
|
22
25
|
export { LambdaTarget } from './targets/lambda.js';
|
|
23
26
|
export { VercelTarget } from './targets/vercel.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.14.
|
|
1
|
+
export declare const VERSION = "0.14.1";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
package/package.json
CHANGED