@synergenius/flow-weaver 0.14.2 → 0.15.0
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 +416 -12202
- package/dist/deployment/index.d.ts +0 -6
- package/dist/deployment/index.js +0 -7
- package/dist/generated-version.d.ts +1 -1
- package/dist/generated-version.js +1 -1
- package/package.json +1 -2
- package/dist/deployment/targets/cloudflare.d.ts +0 -29
- package/dist/deployment/targets/cloudflare.js +0 -1128
- package/dist/deployment/targets/github-actions.d.ts +0 -54
- package/dist/deployment/targets/github-actions.js +0 -366
- package/dist/deployment/targets/gitlab-ci.d.ts +0 -65
- package/dist/deployment/targets/gitlab-ci.js +0 -374
- package/dist/deployment/targets/inngest.d.ts +0 -63
- package/dist/deployment/targets/inngest.js +0 -935
- package/dist/deployment/targets/lambda.d.ts +0 -40
- package/dist/deployment/targets/lambda.js +0 -1294
- package/dist/deployment/targets/vercel.d.ts +0 -39
- package/dist/deployment/targets/vercel.js +0 -891
|
@@ -17,12 +17,6 @@ export { SchemaConverter, schemaConverter, type OpenAPISchema, } from './openapi
|
|
|
17
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
18
|
export { isCICDWorkflow } from '../validation/cicd-detection.js';
|
|
19
19
|
export { generateStandaloneRuntimeModule } from '../api/inline-runtime.js';
|
|
20
|
-
export { LambdaTarget } from './targets/lambda.js';
|
|
21
|
-
export { VercelTarget } from './targets/vercel.js';
|
|
22
|
-
export { CloudflareTarget } from './targets/cloudflare.js';
|
|
23
|
-
export { InngestTarget } from './targets/inngest.js';
|
|
24
|
-
export { GitHubActionsTarget } from './targets/github-actions.js';
|
|
25
|
-
export { GitLabCITarget } from './targets/gitlab-ci.js';
|
|
26
20
|
export { BaseCICDTarget, NODE_ACTION_MAP, type CICDStep, type CICDJob, type ActionMapping, } from './targets/cicd-base.js';
|
|
27
21
|
import { ExportTargetRegistry } from './targets/base.js';
|
|
28
22
|
/**
|
package/dist/deployment/index.js
CHANGED
|
@@ -21,13 +21,6 @@ export { BaseExportTarget, ExportTargetRegistry, } from './targets/base.js';
|
|
|
21
21
|
// Utilities needed by export target packs
|
|
22
22
|
export { isCICDWorkflow } from '../validation/cicd-detection.js';
|
|
23
23
|
export { generateStandaloneRuntimeModule } from '../api/inline-runtime.js';
|
|
24
|
-
// Target implementations — still exported for direct use by pack authors and tests
|
|
25
|
-
export { LambdaTarget } from './targets/lambda.js';
|
|
26
|
-
export { VercelTarget } from './targets/vercel.js';
|
|
27
|
-
export { CloudflareTarget } from './targets/cloudflare.js';
|
|
28
|
-
export { InngestTarget } from './targets/inngest.js';
|
|
29
|
-
export { GitHubActionsTarget } from './targets/github-actions.js';
|
|
30
|
-
export { GitLabCITarget } from './targets/gitlab-ci.js';
|
|
31
24
|
export { BaseCICDTarget, NODE_ACTION_MAP, } from './targets/cicd-base.js';
|
|
32
25
|
import * as path from 'path';
|
|
33
26
|
import { ExportTargetRegistry } from './targets/base.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.15.0";
|
|
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.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "Deterministic workflow compiler for AI agents. Compiles to standalone TypeScript, no runtime dependencies.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -142,7 +142,6 @@
|
|
|
142
142
|
"source-map": "^0.7.6",
|
|
143
143
|
"ts-morph": "^21.0.1",
|
|
144
144
|
"ws": "^8.19.0",
|
|
145
|
-
"yaml": "^2.8.2",
|
|
146
145
|
"zod": "^3.22.4"
|
|
147
146
|
},
|
|
148
147
|
"devDependencies": {
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Cloudflare Workers export target
|
|
3
|
-
*
|
|
4
|
-
* Generates Cloudflare Workers with Wrangler configuration.
|
|
5
|
-
*/
|
|
6
|
-
import { BaseExportTarget, type ExportOptions, type ExportArtifacts, type DeployInstructions, type CompiledWorkflow, type MultiWorkflowArtifacts, type NodeTypeInfo, type NodeTypeExportOptions, type NodeTypeArtifacts, type BundleWorkflow, type BundleNodeType, type BundleArtifacts } from './base.js';
|
|
7
|
-
/**
|
|
8
|
-
* Cloudflare Workers export target
|
|
9
|
-
*/
|
|
10
|
-
export declare class CloudflareTarget extends BaseExportTarget {
|
|
11
|
-
readonly name = "cloudflare";
|
|
12
|
-
readonly description = "Cloudflare Workers";
|
|
13
|
-
readonly deploySchema: {
|
|
14
|
-
compatDate: {
|
|
15
|
-
type: "string";
|
|
16
|
-
description: string;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
generate(options: ExportOptions): Promise<ExportArtifacts>;
|
|
20
|
-
/**
|
|
21
|
-
* Generate OpenAPI specification for the workflow
|
|
22
|
-
*/
|
|
23
|
-
private generateOpenAPISpec;
|
|
24
|
-
generateMultiWorkflow(workflows: CompiledWorkflow[], options: ExportOptions): Promise<MultiWorkflowArtifacts>;
|
|
25
|
-
generateNodeTypeService(nodeTypes: NodeTypeInfo[], options: NodeTypeExportOptions): Promise<NodeTypeArtifacts>;
|
|
26
|
-
generateBundle(workflows: BundleWorkflow[], nodeTypes: BundleNodeType[], options: ExportOptions): Promise<BundleArtifacts>;
|
|
27
|
-
getDeployInstructions(artifacts: ExportArtifacts): DeployInstructions;
|
|
28
|
-
}
|
|
29
|
-
//# sourceMappingURL=cloudflare.d.ts.map
|