@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
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* AWS Lambda export target
|
|
3
|
-
*
|
|
4
|
-
* Generates deployment-ready AWS Lambda functions with SAM templates.
|
|
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
|
-
* AWS Lambda export target
|
|
9
|
-
*/
|
|
10
|
-
export declare class LambdaTarget extends BaseExportTarget {
|
|
11
|
-
readonly name = "lambda";
|
|
12
|
-
readonly description = "AWS Lambda with SAM (Serverless Application Model)";
|
|
13
|
-
readonly deploySchema: {
|
|
14
|
-
memory: {
|
|
15
|
-
type: "number";
|
|
16
|
-
description: string;
|
|
17
|
-
default: number;
|
|
18
|
-
};
|
|
19
|
-
runtime: {
|
|
20
|
-
type: "string";
|
|
21
|
-
description: string;
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
|
-
timeout: {
|
|
25
|
-
type: "number";
|
|
26
|
-
description: string;
|
|
27
|
-
default: number;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
generate(options: ExportOptions): Promise<ExportArtifacts>;
|
|
31
|
-
/**
|
|
32
|
-
* Generate OpenAPI specification for the workflow
|
|
33
|
-
*/
|
|
34
|
-
private generateOpenAPISpec;
|
|
35
|
-
generateMultiWorkflow(workflows: CompiledWorkflow[], options: ExportOptions): Promise<MultiWorkflowArtifacts>;
|
|
36
|
-
generateNodeTypeService(nodeTypes: NodeTypeInfo[], options: NodeTypeExportOptions): Promise<NodeTypeArtifacts>;
|
|
37
|
-
generateBundle(workflows: BundleWorkflow[], nodeTypes: BundleNodeType[], options: ExportOptions): Promise<BundleArtifacts>;
|
|
38
|
-
getDeployInstructions(artifacts: ExportArtifacts): DeployInstructions;
|
|
39
|
-
}
|
|
40
|
-
//# sourceMappingURL=lambda.d.ts.map
|