stacktape 3.2.0 → 3.2.2
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/index.d.ts +10 -10
- package/package.json +1 -1
- package/{sdk.d.ts → plain.d.ts} +335 -935
- package/types.d.ts +108 -108
package/index.d.ts
CHANGED
|
@@ -210,28 +210,28 @@ export declare const AWS_SES: "aws:ses";
|
|
|
210
210
|
* Resources section type (accepts class instances).
|
|
211
211
|
* Use this with defineConfig for enhanced type-safe configs.
|
|
212
212
|
*/
|
|
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('./
|
|
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 };
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
216
|
* Scripts section type (accepts class instances).
|
|
217
217
|
* Use this with defineConfig for enhanced type-safe configs.
|
|
218
218
|
*/
|
|
219
|
-
export type StacktapeScripts = { [scriptName: string]: LocalScript | BastionScript | LocalScriptWithBastionTunneling | import('./
|
|
219
|
+
export type StacktapeScripts = { [scriptName: string]: LocalScript | BastionScript | LocalScriptWithBastionTunneling | import('./plain').LocalScript | import('./plain').BastionScript | import('./plain').LocalScriptWithBastionTunneling };
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
222
|
* Hooks section type.
|
|
223
223
|
*/
|
|
224
|
-
export type StacktapeHooks = import('./
|
|
224
|
+
export type StacktapeHooks = import('./plain').Hooks;
|
|
225
225
|
|
|
226
226
|
/**
|
|
227
227
|
* Deployment config section type.
|
|
228
228
|
*/
|
|
229
|
-
export type StacktapeDeploymentConfig = import('./
|
|
229
|
+
export type StacktapeDeploymentConfig = import('./plain').DeploymentConfig;
|
|
230
230
|
|
|
231
231
|
/**
|
|
232
232
|
* Stack config section type.
|
|
233
233
|
*/
|
|
234
|
-
export type StacktapeStackConfig = import('./
|
|
234
|
+
export type StacktapeStackConfig = import('./plain').StackConfig;
|
|
235
235
|
|
|
236
236
|
/**
|
|
237
237
|
* Cloudformation resources section type.
|
|
@@ -246,25 +246,25 @@ export type StacktapeCloudformationResource = import('./cloudformation').CloudFo
|
|
|
246
246
|
/**
|
|
247
247
|
* Stack outputs type (stackConfig.outputs).
|
|
248
248
|
*/
|
|
249
|
-
export type StacktapeOutputs = import('./
|
|
249
|
+
export type StacktapeOutputs = import('./plain').StackConfig['outputs'];
|
|
250
250
|
|
|
251
251
|
/**
|
|
252
252
|
* Variables section type.
|
|
253
253
|
*/
|
|
254
|
-
export type StacktapeVariables = import('./
|
|
254
|
+
export type StacktapeVariables = import('./plain').StacktapeConfig['variables'];
|
|
255
255
|
|
|
256
256
|
/**
|
|
257
257
|
* Provider config section type.
|
|
258
258
|
*/
|
|
259
|
-
export type StacktapeProviderConfig = import('./
|
|
259
|
+
export type StacktapeProviderConfig = import('./plain').StacktapeConfig['providerConfig'];
|
|
260
260
|
|
|
261
261
|
/**
|
|
262
262
|
* Budget control section type.
|
|
263
263
|
*/
|
|
264
|
-
export type StacktapeBudgetControl = import('./
|
|
264
|
+
export type StacktapeBudgetControl = import('./plain').BudgetControl;
|
|
265
265
|
|
|
266
266
|
/**
|
|
267
267
|
* Directives section type.
|
|
268
268
|
*/
|
|
269
|
-
export type StacktapeDirectives = import('./
|
|
269
|
+
export type StacktapeDirectives = import('./plain').StacktapeConfig['directives'];
|
|
270
270
|
|