@stacksjs/ts-cloud 0.1.14 → 0.2.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/bin/cli.js +229 -228
- package/dist/index.d.ts +3 -7
- package/dist/index.js +615 -164
- package/package.json +4 -5
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Validation exports - types with prefixed names for conflicts with ts-cloud
|
|
1
|
+
// Validation exports - types with prefixed names for conflicts with @ts-cloud/core
|
|
2
2
|
export type {
|
|
3
3
|
ValidationError as TemplateValidationError,
|
|
4
4
|
ValidationResult as TemplateValidationResult,
|
|
@@ -68,7 +68,7 @@ export type {
|
|
|
68
68
|
ListRecordsResult,
|
|
69
69
|
} from './dns';
|
|
70
70
|
// Re-export ts-cloud-aws-types with explicit handling for duplicates
|
|
71
|
-
// Note: ts-cloud
|
|
71
|
+
// Note: @ts-cloud/core also exports CloudFormation* types, so we skip re-exporting them here
|
|
72
72
|
// to avoid duplicates. Users can import directly from ts-cloud-aws-types if needed.
|
|
73
73
|
export type {
|
|
74
74
|
// S3 types
|
|
@@ -81,8 +81,6 @@ export type {
|
|
|
81
81
|
CloudFrontOrigin,
|
|
82
82
|
} from 'ts-cloud-aws-types';
|
|
83
83
|
export * from './config';
|
|
84
|
-
// Note: ./types re-exports ts-cloud-types, which we export below
|
|
85
|
-
// export * from './types'
|
|
86
84
|
export * from './generators';
|
|
87
85
|
// Validation exports - functions
|
|
88
86
|
export {
|
|
@@ -168,6 +166,4 @@ export {
|
|
|
168
166
|
createRoute53Validator,
|
|
169
167
|
} from './dns';
|
|
170
168
|
// Re-export core functionality (these take precedence for common types)
|
|
171
|
-
export * from 'ts-cloud
|
|
172
|
-
// Re-export ts-cloud-types (includes VpcConfig, etc.)
|
|
173
|
-
export * from 'ts-cloud-types';
|
|
169
|
+
export * from '@ts-cloud/core';
|