@stacksjs/ts-cloud 0.2.0 → 0.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/dist/bin/cli.js +580 -583
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1094 -1968
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -67,9 +67,9 @@ export type {
|
|
|
67
67
|
DeleteRecordResult,
|
|
68
68
|
ListRecordsResult,
|
|
69
69
|
} from './dns';
|
|
70
|
-
// Re-export ts-cloud
|
|
70
|
+
// Re-export @ts-cloud/aws-types with explicit handling for duplicates
|
|
71
71
|
// Note: @ts-cloud/core also exports CloudFormation* types, so we skip re-exporting them here
|
|
72
|
-
// to avoid duplicates. Users can import directly from ts-cloud
|
|
72
|
+
// to avoid duplicates. Users can import directly from @ts-cloud/aws-types if needed.
|
|
73
73
|
export type {
|
|
74
74
|
// S3 types
|
|
75
75
|
S3Bucket,
|
|
@@ -79,7 +79,7 @@ export type {
|
|
|
79
79
|
CloudFrontOriginAccessControl,
|
|
80
80
|
CloudFrontCacheBehavior,
|
|
81
81
|
CloudFrontOrigin,
|
|
82
|
-
} from 'ts-cloud
|
|
82
|
+
} from '@ts-cloud/aws-types';
|
|
83
83
|
export * from './config';
|
|
84
84
|
export * from './generators';
|
|
85
85
|
// Validation exports - functions
|