stacktape 3.2.4 → 3.2.6
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/cloudformation.d.ts +0 -1432
- package/index.d.ts +2 -3
- package/index.js +9 -4
- package/package.json +1 -1
- package/plain.d.ts +0 -64557
- package/types.d.ts +330 -308
package/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
// @ts-nocheck
|
|
3
2
|
// Generated file - Do not edit manually
|
|
4
3
|
// Main export for 'stacktape' - classes, directives, defineConfig, augmented section types
|
|
5
4
|
// For plain types (getConfig pattern), use: import type { X } from 'stacktape/types'
|
|
@@ -210,13 +209,13 @@ export declare const AWS_SES: "aws:ses";
|
|
|
210
209
|
* Resources section type (accepts class instances).
|
|
211
210
|
* Use this with defineConfig for enhanced type-safe configs.
|
|
212
211
|
*/
|
|
213
|
-
export type StacktapeResources = { [resourceName: string]: RelationalDatabase | WebService | PrivateService | WorkerService | MultiContainerWorkload | LambdaFunction | BatchJob | Bucket | HostingBucket | DynamoDbTable | EventBus | HttpApiGateway | ApplicationLoadBalancer | NetworkLoadBalancer | RedisCluster | MongoDbAtlasCluster | StateMachine | UserAuthPool | UpstashRedis | SqsQueue | SnsTopic | WebAppFirewall | OpenSearchDomain | EfsFilesystem | NextjsWeb | Bastion | import('./plain').StacktapeResourceDefinition };
|
|
212
|
+
export type StacktapeResources = { [resourceName: string]: import('./types').RelationalDatabase | import('./types').WebService | import('./types').PrivateService | import('./types').WorkerService | import('./types').MultiContainerWorkload | import('./types').LambdaFunction | import('./types').BatchJob | import('./types').Bucket | import('./types').HostingBucket | import('./types').DynamoDbTable | import('./types').EventBus | import('./types').HttpApiGateway | import('./types').ApplicationLoadBalancer | import('./types').NetworkLoadBalancer | import('./types').RedisCluster | import('./types').MongoDbAtlasCluster | import('./types').StateMachine | import('./types').UserAuthPool | import('./types').UpstashRedis | import('./types').SqsQueue | import('./types').SnsTopic | import('./types').WebAppFirewall | import('./types').OpenSearchDomain | import('./types').EfsFilesystem | import('./types').NextjsWeb | import('./types').Bastion | import('./plain').StacktapeResourceDefinition };
|
|
214
213
|
|
|
215
214
|
/**
|
|
216
215
|
* Scripts section type (accepts class instances).
|
|
217
216
|
* Use this with defineConfig for enhanced type-safe configs.
|
|
218
217
|
*/
|
|
219
|
-
export type StacktapeScripts = { [scriptName: string]: LocalScript | BastionScript | LocalScriptWithBastionTunneling | import('./plain').LocalScript | import('./plain').BastionScript | import('./plain').LocalScriptWithBastionTunneling };
|
|
218
|
+
export type StacktapeScripts = { [scriptName: string]: import('./types').LocalScript | import('./types').BastionScript | import('./types').LocalScriptWithBastionTunneling | import('./plain').LocalScript | import('./plain').BastionScript | import('./plain').LocalScriptWithBastionTunneling };
|
|
220
219
|
|
|
221
220
|
/**
|
|
222
221
|
* Hooks section type.
|