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