stacktape 3.2.0-beta.13 → 3.2.0-beta.15
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 +25 -0
- package/package.json +1 -1
- package/types.d.ts +25 -0
package/index.d.ts
CHANGED
|
@@ -239,3 +239,28 @@ export type StacktapeStackConfig = import('./sdk').StackConfig;
|
|
|
239
239
|
*/
|
|
240
240
|
export type StacktapeCloudformationResources = { [resourceName: string]: import('./cloudformation').CloudFormationResource };
|
|
241
241
|
|
|
242
|
+
/**
|
|
243
|
+
* Stack outputs type (stackConfig.outputs).
|
|
244
|
+
*/
|
|
245
|
+
export type StacktapeOutputs = import('./sdk').StackConfig['outputs'];
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* Variables section type.
|
|
249
|
+
*/
|
|
250
|
+
export type StacktapeVariables = import('./sdk').StacktapeConfig['variables'];
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Provider config section type.
|
|
254
|
+
*/
|
|
255
|
+
export type StacktapeProviderConfig = import('./sdk').StacktapeConfig['providerConfig'];
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Budget control section type.
|
|
259
|
+
*/
|
|
260
|
+
export type StacktapeBudgetControl = import('./sdk').BudgetControl;
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Directives section type.
|
|
264
|
+
*/
|
|
265
|
+
export type StacktapeDirectives = import('./sdk').StacktapeConfig['directives'];
|
|
266
|
+
|
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -3104,6 +3104,31 @@ export type StacktapeStackConfigPlain = import('./sdk').StackConfig;
|
|
|
3104
3104
|
*/
|
|
3105
3105
|
export type StacktapeCloudformationResourcesPlain = import('./sdk').StacktapeConfig['cloudformationResources'];
|
|
3106
3106
|
|
|
3107
|
+
/**
|
|
3108
|
+
* Plain stack outputs type (stackConfig.outputs).
|
|
3109
|
+
*/
|
|
3110
|
+
export type StacktapeOutputsPlain = import('./sdk').StackConfig['outputs'];
|
|
3111
|
+
|
|
3112
|
+
/**
|
|
3113
|
+
* Plain variables section type.
|
|
3114
|
+
*/
|
|
3115
|
+
export type StacktapeVariablesPlain = import('./sdk').StacktapeConfig['variables'];
|
|
3116
|
+
|
|
3117
|
+
/**
|
|
3118
|
+
* Plain provider config section type.
|
|
3119
|
+
*/
|
|
3120
|
+
export type StacktapeProviderConfigPlain = import('./sdk').StacktapeConfig['providerConfig'];
|
|
3121
|
+
|
|
3122
|
+
/**
|
|
3123
|
+
* Plain budget control section type.
|
|
3124
|
+
*/
|
|
3125
|
+
export type StacktapeBudgetControlPlain = import('./sdk').BudgetControl;
|
|
3126
|
+
|
|
3127
|
+
/**
|
|
3128
|
+
* Plain directives section type.
|
|
3129
|
+
*/
|
|
3130
|
+
export type StacktapeDirectivesPlain = import('./sdk').StacktapeConfig['directives'];
|
|
3131
|
+
|
|
3107
3132
|
/**
|
|
3108
3133
|
* Function type for plain config (legacy getConfig pattern).
|
|
3109
3134
|
* Returns plain objects (YAML-equivalent), no class instances.
|