@venturekit/infra 0.0.0-dev.20260329113511 → 0.0.0-dev.20260414205339
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/venture.d.ts +25 -39
- package/dist/venture.d.ts.map +1 -1
- package/dist/venture.js +63 -7
- package/dist/venture.js.map +1 -1
- package/package.json +2 -2
package/dist/venture.d.ts
CHANGED
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
* - `vk deploy` → CLI reads metadata, generates CDK app, runs `cdk deploy`
|
|
10
10
|
* - Infrastructure lives in CDK VentureStack
|
|
11
11
|
*/
|
|
12
|
-
import { BaseConfig, SecurityConfig, EnvConfigInput, ResolvedConfig
|
|
12
|
+
import { BaseConfig, SecurityConfig, EnvConfigInput, ResolvedConfig } from '@venturekit/core';
|
|
13
|
+
import type { VentureIntent, DatabaseIntent, StorageIntent, AuthIntent, QueueIntent, CacheIntent, ScheduleIntent, FunctionIntent, MonitoringIntent, SecretsIntent, EnvVarIntent, DomainIntent } from '@venturekit/core';
|
|
13
14
|
/**
|
|
14
15
|
* VentureKit application definition
|
|
15
16
|
*/
|
|
@@ -32,21 +33,28 @@ export interface VentureDefinition {
|
|
|
32
33
|
queuesDir?: string;
|
|
33
34
|
/** Path to cron/scheduled task handlers directory (relative to project root) - default: 'src/crons' */
|
|
34
35
|
cronsDir?: string;
|
|
35
|
-
/**
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
36
|
+
/** Databases — shared definitions (name, type) */
|
|
37
|
+
databases?: DatabaseIntent[];
|
|
38
|
+
/** Storage buckets — shared definitions (purpose, id) */
|
|
39
|
+
storage?: StorageIntent[];
|
|
40
|
+
/** Authentication pools — shared definitions */
|
|
41
|
+
auth?: AuthIntent[];
|
|
42
|
+
/** Message queues — shared definitions */
|
|
43
|
+
queues?: QueueIntent[];
|
|
44
|
+
/** Caches — shared definitions */
|
|
45
|
+
caches?: CacheIntent[];
|
|
46
|
+
/** Scheduled tasks — shared definitions */
|
|
47
|
+
schedules?: ScheduleIntent[];
|
|
48
|
+
/** Standalone Lambda functions — shared definitions */
|
|
49
|
+
functions?: FunctionIntent[];
|
|
50
|
+
/** Monitoring — shared definitions */
|
|
51
|
+
monitoring?: MonitoringIntent[];
|
|
52
|
+
/** Secrets — shared definitions */
|
|
53
|
+
secrets?: SecretsIntent[];
|
|
54
|
+
/** Environment variables for all Lambda functions */
|
|
55
|
+
envVars?: EnvVarIntent[];
|
|
56
|
+
/** Custom domains — shared definitions */
|
|
57
|
+
domains?: DomainIntent[];
|
|
50
58
|
}
|
|
51
59
|
/**
|
|
52
60
|
* VentureKit app configuration (returned by app())
|
|
@@ -60,34 +68,12 @@ export interface VentureAppConfig {
|
|
|
60
68
|
};
|
|
61
69
|
};
|
|
62
70
|
}
|
|
63
|
-
/**
|
|
64
|
-
* Define a VentureKit application
|
|
65
|
-
*
|
|
66
|
-
* This is the main entry point for VentureKit projects.
|
|
67
|
-
* Returns an object with metadata that CLI tools (vk dev, vk deploy) read.
|
|
68
|
-
*
|
|
69
|
-
* @example
|
|
70
|
-
* ```typescript
|
|
71
|
-
* // vk.config.ts
|
|
72
|
-
* import { defineVenture } from '@venturekit/infra';
|
|
73
|
-
* import { base } from './config/base.js';
|
|
74
|
-
* import { security } from './config/security.js';
|
|
75
|
-
* import { dev } from './config/dev.js';
|
|
76
|
-
* import { prod } from './config/prod.js';
|
|
77
|
-
*
|
|
78
|
-
* export default defineVenture({
|
|
79
|
-
* base,
|
|
80
|
-
* security,
|
|
81
|
-
* envs: { dev, prod },
|
|
82
|
-
* });
|
|
83
|
-
* ```
|
|
84
|
-
*/
|
|
85
71
|
export declare function defineVenture(definition: VentureDefinition): {
|
|
86
72
|
_routesDir: string;
|
|
87
73
|
_functionsDir: string;
|
|
88
74
|
_queuesDir: string;
|
|
89
75
|
_cronsDir: string;
|
|
90
|
-
|
|
76
|
+
_resolveInfrastructure: (stage: string) => VentureIntent | undefined;
|
|
91
77
|
_definition: VentureDefinition;
|
|
92
78
|
app(input: {
|
|
93
79
|
stage: string;
|
package/dist/venture.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"venture.d.ts","sourceRoot":"","sources":["../src/venture.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EACL,UAAU,EACV,cAAc,EACd,cAAc,EAEd,cAAc,EACd,aAAa,
|
|
1
|
+
{"version":3,"file":"venture.d.ts","sourceRoot":"","sources":["../src/venture.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EACL,UAAU,EACV,cAAc,EACd,cAAc,EAEd,cAAc,EAKf,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EACV,aAAa,EACb,cAAc,EACd,aAAa,EACb,UAAU,EACV,WAAW,EACX,WAAW,EACX,cAAc,EACd,cAAc,EACd,gBAAgB,EAChB,aAAa,EACb,YAAY,EACZ,YAAY,EACb,MAAM,kBAAkB,CAAC;AAE1B;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,4CAA4C;IAC5C,IAAI,EAAE,UAAU,CAAC;IAEjB,+CAA+C;IAC/C,QAAQ,EAAE,cAAc,CAAC;IAEzB,0CAA0C;IAC1C,IAAI,EAAE;QACJ,GAAG,CAAC,EAAE,cAAc,CAAC;QACrB,KAAK,CAAC,EAAE,cAAc,CAAC;QACvB,IAAI,CAAC,EAAE,cAAc,CAAC;KACvB,CAAC;IAEF,kFAAkF;IAClF,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,mGAAmG;IACnG,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,mGAAmG;IACnG,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,uGAAuG;IACvG,QAAQ,CAAC,EAAE,MAAM,CAAC;IAKlB,kDAAkD;IAClD,SAAS,CAAC,EAAE,cAAc,EAAE,CAAC;IAE7B,yDAAyD;IACzD,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC;IAE1B,gDAAgD;IAChD,IAAI,CAAC,EAAE,UAAU,EAAE,CAAC;IAEpB,0CAA0C;IAC1C,MAAM,CAAC,EAAE,WAAW,EAAE,CAAC;IAEvB,kCAAkC;IAClC,MAAM,CAAC,EAAE,WAAW,EAAE,CAAC;IAEvB,2CAA2C;IAC3C,SAAS,CAAC,EAAE,cAAc,EAAE,CAAC;IAE7B,uDAAuD;IACvD,SAAS,CAAC,EAAE,cAAc,EAAE,CAAC;IAE7B,sCAAsC;IACtC,UAAU,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAEhC,mCAAmC;IACnC,OAAO,CAAC,EAAE,aAAa,EAAE,CAAC;IAE1B,qDAAqD;IACrD,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;IAEzB,0CAA0C;IAC1C,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,KAAK,CAAC;IACZ,SAAS,EAAE;QACT,GAAG,EAAE;YACH,MAAM,EAAE,MAAM,CAAC;SAChB,CAAC;KACH,CAAC;CACH;AAmDD,wBAAgB,aAAa,CAAC,UAAU,EAAE,iBAAiB;;;;;oCAS5B,MAAM,KAAG,aAAa,GAAG,SAAS;;eAqClD;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;;;;;EAY/B;AAED;;;;GAIG;AACH,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,UAAU,EAChB,QAAQ,EAAE,cAAc,EACxB,QAAQ,EAAE,cAAc,GACvB,cAAc,CAIhB"}
|
package/dist/venture.js
CHANGED
|
@@ -19,32 +19,88 @@ import { resolveConfig, validateBaseConfig, validateSecurityConfig, assertValid,
|
|
|
19
19
|
* @example
|
|
20
20
|
* ```typescript
|
|
21
21
|
* // vk.config.ts
|
|
22
|
-
* import { defineVenture } from '@venturekit/infra';
|
|
23
|
-
* import { base } from './config/base.js';
|
|
24
|
-
* import { security } from './config/security.js';
|
|
25
|
-
* import { dev } from './config/dev.js';
|
|
26
|
-
* import { prod } from './config/prod.js';
|
|
27
|
-
*
|
|
28
22
|
* export default defineVenture({
|
|
29
23
|
* base,
|
|
30
24
|
* security,
|
|
25
|
+
* databases: [{ id: 'main', type: 'postgres', name: 'app' }],
|
|
26
|
+
* storage: [{ id: 'uploads', purpose: 'uploads' }],
|
|
31
27
|
* envs: { dev, prod },
|
|
32
28
|
* });
|
|
29
|
+
*
|
|
30
|
+
* // config/dev.ts — overrides sizing
|
|
31
|
+
* export const dev: EnvConfigInput = {
|
|
32
|
+
* preset: 'free',
|
|
33
|
+
* databases: [{ id: 'main', size: 'small' }],
|
|
34
|
+
* };
|
|
35
|
+
*
|
|
36
|
+
* // config/prod.ts — overrides sizing/behavior
|
|
37
|
+
* export const prod: EnvConfigInput = {
|
|
38
|
+
* preset: 'medium',
|
|
39
|
+
* databases: [{ id: 'main', size: 'large', highAvailability: true }],
|
|
40
|
+
* storage: [{ id: 'uploads', cdn: true }],
|
|
41
|
+
* };
|
|
33
42
|
* ```
|
|
34
43
|
*/
|
|
44
|
+
/**
|
|
45
|
+
* Merge shared intent definitions with per-env overrides by matching `id`.
|
|
46
|
+
* Override fields are shallow-merged onto the shared definition.
|
|
47
|
+
*/
|
|
48
|
+
function mergeById(shared, overrides) {
|
|
49
|
+
if (!shared && !overrides)
|
|
50
|
+
return undefined;
|
|
51
|
+
if (!shared)
|
|
52
|
+
return overrides;
|
|
53
|
+
if (!overrides || overrides.length === 0)
|
|
54
|
+
return shared;
|
|
55
|
+
const overrideMap = new Map(overrides.map((o) => [o.id, o]));
|
|
56
|
+
return shared.map((item) => {
|
|
57
|
+
const override = overrideMap.get(item.id);
|
|
58
|
+
return override ? { ...item, ...override } : item;
|
|
59
|
+
});
|
|
60
|
+
}
|
|
35
61
|
export function defineVenture(definition) {
|
|
36
62
|
// Validate configs
|
|
37
63
|
const baseValidation = validateBaseConfig(definition.base);
|
|
38
64
|
assertValid(baseValidation);
|
|
39
65
|
const securityValidation = validateSecurityConfig(definition.security);
|
|
40
66
|
assertValid(securityValidation);
|
|
67
|
+
// Helper: merge shared definitions from vk.config with per-env overrides.
|
|
68
|
+
const resolveInfra = (stage) => {
|
|
69
|
+
const env = (stage === 'prod' ? 'prod' : stage === 'stage' ? 'stage' : 'dev');
|
|
70
|
+
const envConfig = definition.envs?.[env];
|
|
71
|
+
const intent = {};
|
|
72
|
+
let hasAny = false;
|
|
73
|
+
const assign = (key, val) => {
|
|
74
|
+
if (val && val.length > 0) {
|
|
75
|
+
intent[key] = val;
|
|
76
|
+
hasAny = true;
|
|
77
|
+
}
|
|
78
|
+
};
|
|
79
|
+
assign('databases', mergeById(definition.databases, envConfig?.databases));
|
|
80
|
+
assign('storage', mergeById(definition.storage, envConfig?.storage));
|
|
81
|
+
assign('auth', mergeById(definition.auth, envConfig?.auth));
|
|
82
|
+
assign('queues', mergeById(definition.queues, envConfig?.queues));
|
|
83
|
+
assign('caches', mergeById(definition.caches, envConfig?.caches));
|
|
84
|
+
assign('schedules', mergeById(definition.schedules, envConfig?.schedules));
|
|
85
|
+
assign('functions', mergeById(definition.functions, envConfig?.functions));
|
|
86
|
+
assign('monitoring', mergeById(definition.monitoring, envConfig?.monitoring));
|
|
87
|
+
assign('secrets', mergeById(definition.secrets, envConfig?.secrets));
|
|
88
|
+
assign('domains', mergeById(definition.domains, envConfig?.domains));
|
|
89
|
+
// envVars: concat shared + env-specific (no id matching)
|
|
90
|
+
const allEnvVars = [...(definition.envVars || []), ...(envConfig?.envVars || [])];
|
|
91
|
+
if (allEnvVars.length > 0) {
|
|
92
|
+
intent.envVars = allEnvVars;
|
|
93
|
+
hasAny = true;
|
|
94
|
+
}
|
|
95
|
+
return hasAny ? intent : undefined;
|
|
96
|
+
};
|
|
41
97
|
return {
|
|
42
98
|
// Metadata exposed for CLI tools (vk dev, vk deploy) to read
|
|
43
99
|
_routesDir: definition.routesDir || 'src/routes',
|
|
44
100
|
_functionsDir: definition.functionsDir || 'src/functions',
|
|
45
101
|
_queuesDir: definition.queuesDir || 'src/queues',
|
|
46
102
|
_cronsDir: definition.cronsDir || 'src/crons',
|
|
47
|
-
|
|
103
|
+
_resolveInfrastructure: resolveInfra,
|
|
48
104
|
_definition: definition,
|
|
49
105
|
app(input) {
|
|
50
106
|
return {
|
package/dist/venture.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"venture.js","sourceRoot":"","sources":["../src/venture.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"venture.js","sourceRoot":"","sources":["../src/venture.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@venturekit/infra",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.20260414205339",
|
|
4
4
|
"description": "VentureKit infrastructure - AWS CDK constructs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
],
|
|
38
38
|
"license": "Apache-2.0",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@venturekit/core": "0.0.0-dev.
|
|
40
|
+
"@venturekit/core": "0.0.0-dev.20260414205339",
|
|
41
41
|
"aws-cdk-lib": "^2.170.0",
|
|
42
42
|
"constructs": "^10.4.0"
|
|
43
43
|
},
|