@synergenius/flow-weaver 0.14.0 → 0.14.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/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 +4 -2
- package/dist/deployment/index.js +4 -1
- package/dist/generated-version.d.ts +1 -1
- package/dist/generated-version.js +1 -1
- package/package.json +1 -1
|
@@ -14,14 +14,16 @@ 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';
|
|
21
23
|
export { InngestTarget } from './targets/inngest.js';
|
|
22
24
|
export { GitHubActionsTarget } from './targets/github-actions.js';
|
|
23
25
|
export { GitLabCITarget } from './targets/gitlab-ci.js';
|
|
24
|
-
export { BaseCICDTarget, NODE_ACTION_MAP } from './targets/cicd-base.js';
|
|
26
|
+
export { BaseCICDTarget, NODE_ACTION_MAP, type CICDStep, type CICDJob, type ActionMapping, } from './targets/cicd-base.js';
|
|
25
27
|
import { ExportTargetRegistry } from './targets/base.js';
|
|
26
28
|
/**
|
|
27
29
|
* Create an export target registry via marketplace discovery.
|
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';
|
|
@@ -25,7 +28,7 @@ export { CloudflareTarget } from './targets/cloudflare.js';
|
|
|
25
28
|
export { InngestTarget } from './targets/inngest.js';
|
|
26
29
|
export { GitHubActionsTarget } from './targets/github-actions.js';
|
|
27
30
|
export { GitLabCITarget } from './targets/gitlab-ci.js';
|
|
28
|
-
export { BaseCICDTarget, NODE_ACTION_MAP } from './targets/cicd-base.js';
|
|
31
|
+
export { BaseCICDTarget, NODE_ACTION_MAP, } from './targets/cicd-base.js';
|
|
29
32
|
import * as path from 'path';
|
|
30
33
|
import { ExportTargetRegistry } from './targets/base.js';
|
|
31
34
|
/**
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.14.
|
|
1
|
+
export declare const VERSION = "0.14.2";
|
|
2
2
|
//# sourceMappingURL=generated-version.d.ts.map
|
package/package.json
CHANGED