@stacksjs/ts-cloud-core 0.1.6 → 0.1.8

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.
Files changed (225) hide show
  1. package/dist/advanced-features.test.d.ts +0 -0
  2. package/dist/aws/cloudformation.d.ts +69 -0
  3. package/dist/aws/cloudfront.d.ts +21 -0
  4. package/dist/aws/credentials.d.ts +66 -0
  5. package/dist/aws/credentials.test.d.ts +0 -0
  6. package/dist/aws/index.d.ts +73 -0
  7. package/dist/aws/s3.d.ts +130 -0
  8. package/dist/aws/s3.test.d.ts +0 -0
  9. package/dist/aws/signature.d.ts +101 -0
  10. package/dist/aws/signature.test.d.ts +0 -0
  11. package/dist/backup/disaster-recovery.d.ts +98 -0
  12. package/dist/backup/disaster-recovery.test.d.ts +0 -0
  13. package/dist/backup/index.d.ts +24 -0
  14. package/dist/backup/manager.d.ts +112 -0
  15. package/dist/backup/manager.test.d.ts +0 -0
  16. package/dist/cicd/circleci.d.ts +47 -0
  17. package/dist/cicd/github-actions.d.ts +55 -0
  18. package/dist/cicd/gitlab-ci.d.ts +46 -0
  19. package/dist/cicd/index.d.ts +3 -0
  20. package/dist/cli/history.d.ts +66 -0
  21. package/dist/cli/index.d.ts +5 -0
  22. package/dist/cli/progress.d.ts +97 -0
  23. package/dist/cli/repl.d.ts +76 -0
  24. package/dist/cli/suggestions.d.ts +67 -0
  25. package/dist/cli/table.d.ts +70 -0
  26. package/dist/cli/table.test.d.ts +0 -0
  27. package/dist/cloudformation/builder.d.ts +59 -0
  28. package/dist/cloudformation/builder.test.d.ts +0 -0
  29. package/dist/cloudformation/builders/api-gateway.d.ts +30 -0
  30. package/dist/cloudformation/builders/cache.d.ts +35 -0
  31. package/dist/cloudformation/builders/cdn.d.ts +34 -0
  32. package/dist/cloudformation/builders/compute.d.ts +66 -0
  33. package/dist/cloudformation/builders/database.d.ts +61 -0
  34. package/dist/cloudformation/builders/functions.d.ts +32 -0
  35. package/dist/cloudformation/builders/messaging.d.ts +17 -0
  36. package/dist/cloudformation/builders/monitoring.d.ts +36 -0
  37. package/dist/cloudformation/builders/network.d.ts +14 -0
  38. package/dist/cloudformation/builders/queue.d.ts +8 -0
  39. package/dist/cloudformation/builders/security.d.ts +31 -0
  40. package/dist/cloudformation/builders/storage.d.ts +8 -0
  41. package/dist/cloudformation/index.d.ts +24 -0
  42. package/dist/cloudformation/types.d.ts +132 -0
  43. package/dist/compliance/aws-config.d.ts +88 -0
  44. package/dist/compliance/cloudtrail.d.ts +96 -0
  45. package/dist/compliance/compliance.test.d.ts +0 -0
  46. package/dist/compliance/guardduty.d.ts +110 -0
  47. package/dist/compliance/index.d.ts +50 -0
  48. package/dist/compliance/security-hub.d.ts +110 -0
  49. package/dist/containers/build-optimization.d.ts +110 -0
  50. package/dist/containers/containers.test.d.ts +0 -0
  51. package/dist/containers/image-scanning.d.ts +96 -0
  52. package/dist/containers/index.d.ts +4 -0
  53. package/dist/containers/registry.d.ts +99 -0
  54. package/dist/containers/service-mesh.d.ts +206 -0
  55. package/dist/database/database.test.d.ts +0 -0
  56. package/dist/database/index.d.ts +4 -0
  57. package/dist/database/migrations.d.ts +102 -0
  58. package/dist/database/performance.d.ts +168 -0
  59. package/dist/database/replicas.d.ts +146 -0
  60. package/dist/database/users.d.ts +102 -0
  61. package/dist/dependency-graph.d.ts +19 -0
  62. package/dist/deployment/ab-testing.d.ts +114 -0
  63. package/dist/deployment/blue-green.d.ts +98 -0
  64. package/dist/deployment/canary.d.ts +103 -0
  65. package/dist/deployment/deployment.test.d.ts +0 -0
  66. package/dist/deployment/index.d.ts +45 -0
  67. package/dist/deployment/progressive.d.ts +34 -0
  68. package/dist/dns/dns.test.d.ts +0 -0
  69. package/dist/dns/dnssec.d.ts +75 -0
  70. package/dist/dns/index.d.ts +3 -0
  71. package/dist/dns/resolver.d.ts +150 -0
  72. package/dist/dns/routing.d.ts +217 -0
  73. package/dist/email/advanced/analytics.d.ts +78 -0
  74. package/dist/email/advanced/index.d.ts +7 -0
  75. package/dist/email/advanced/rules.d.ts +60 -0
  76. package/dist/email/advanced/scheduling.d.ts +63 -0
  77. package/dist/email/advanced/search.d.ts +76 -0
  78. package/dist/email/advanced/shared-mailboxes.d.ts +66 -0
  79. package/dist/email/advanced/templates.d.ts +39 -0
  80. package/dist/email/advanced/threading.d.ts +53 -0
  81. package/dist/email/analytics.d.ts +144 -0
  82. package/dist/email/bounce-handling.d.ts +120 -0
  83. package/dist/email/email.test.d.ts +0 -0
  84. package/dist/email/handlers/__tests__/inbound.test.d.ts +0 -0
  85. package/dist/email/handlers/__tests__/outbound.test.d.ts +0 -0
  86. package/dist/email/handlers/converter.d.ts +225 -0
  87. package/dist/email/handlers/feedback.d.ts +226 -0
  88. package/dist/email/handlers/inbound.d.ts +167 -0
  89. package/dist/email/handlers/outbound.d.ts +176 -0
  90. package/dist/email/index.d.ts +6 -0
  91. package/dist/email/reputation.d.ts +97 -0
  92. package/dist/email/templates.d.ts +82 -0
  93. package/dist/errors/index.d.ts +186 -0
  94. package/dist/errors/index.test.d.ts +0 -0
  95. package/dist/health-checks/index.d.ts +35 -0
  96. package/dist/index.d.ts +256 -0
  97. package/dist/index.js +63499 -0
  98. package/dist/intrinsic-functions.d.ts +37 -0
  99. package/dist/lambda/concurrency.d.ts +98 -0
  100. package/dist/lambda/destinations.d.ts +99 -0
  101. package/dist/lambda/dlq.d.ts +109 -0
  102. package/dist/lambda/index.d.ts +6 -0
  103. package/dist/lambda/lambda.test.d.ts +0 -0
  104. package/dist/lambda/layers.d.ts +81 -0
  105. package/dist/lambda/versions.d.ts +91 -0
  106. package/dist/lambda/vpc.d.ts +116 -0
  107. package/dist/local/config.d.ts +44 -0
  108. package/dist/local/index.d.ts +2 -0
  109. package/dist/local/mock-aws.d.ts +60 -0
  110. package/dist/modules/ai.d.ts +47 -0
  111. package/dist/modules/api.d.ts +98 -0
  112. package/dist/modules/auth.d.ts +165 -0
  113. package/dist/modules/cache.d.ts +73 -0
  114. package/dist/modules/cdn.d.ts +125 -0
  115. package/dist/modules/communication.d.ts +98 -0
  116. package/dist/modules/compute.d.ts +309 -0
  117. package/dist/modules/database.d.ts +105 -0
  118. package/dist/modules/deployment.d.ts +181 -0
  119. package/dist/modules/dns.d.ts +45 -0
  120. package/dist/modules/email.d.ts +217 -0
  121. package/dist/modules/filesystem.d.ts +94 -0
  122. package/dist/modules/index.d.ts +27 -0
  123. package/dist/modules/messaging.d.ts +108 -0
  124. package/dist/modules/monitoring.d.ts +127 -0
  125. package/dist/modules/network.d.ts +102 -0
  126. package/dist/modules/parameter-store.d.ts +33 -0
  127. package/dist/modules/permissions.d.ts +132 -0
  128. package/dist/modules/phone.d.ts +80 -0
  129. package/dist/modules/queue.d.ts +210 -0
  130. package/dist/modules/redirects.d.ts +59 -0
  131. package/dist/modules/registry.d.ts +73 -0
  132. package/dist/modules/search.d.ts +56 -0
  133. package/dist/modules/secrets.d.ts +80 -0
  134. package/dist/modules/security.d.ts +100 -0
  135. package/dist/modules/sms.d.ts +52 -0
  136. package/dist/modules/storage.d.ts +160 -0
  137. package/dist/modules/workflow.d.ts +205 -0
  138. package/dist/multi-account/config.d.ts +315 -0
  139. package/dist/multi-account/index.d.ts +2 -0
  140. package/dist/multi-account/manager.d.ts +100 -0
  141. package/dist/multi-region/cross-region.d.ts +114 -0
  142. package/dist/multi-region/index.d.ts +3 -0
  143. package/dist/multi-region/manager.d.ts +72 -0
  144. package/dist/multi-region/regions.d.ts +98 -0
  145. package/dist/network-security/index.d.ts +39 -0
  146. package/dist/observability/index.d.ts +4 -0
  147. package/dist/observability/logs.d.ts +129 -0
  148. package/dist/observability/metrics.d.ts +153 -0
  149. package/dist/observability/observability.test.d.ts +0 -0
  150. package/dist/observability/synthetics.d.ts +146 -0
  151. package/dist/observability/xray.d.ts +129 -0
  152. package/dist/phone/advanced/analytics.d.ts +66 -0
  153. package/dist/phone/advanced/callbacks.d.ts +50 -0
  154. package/dist/phone/advanced/index.d.ts +4 -0
  155. package/dist/phone/advanced/ivr-builder.d.ts +83 -0
  156. package/dist/phone/advanced/recording.d.ts +48 -0
  157. package/dist/phone/handlers/__tests__/incoming-call.test.d.ts +0 -0
  158. package/dist/phone/handlers/incoming-call.d.ts +115 -0
  159. package/dist/phone/handlers/missed-call.d.ts +114 -0
  160. package/dist/phone/handlers/voicemail.d.ts +177 -0
  161. package/dist/phone/index.d.ts +2 -0
  162. package/dist/presets/api-backend.d.ts +11 -0
  163. package/dist/presets/data-pipeline.d.ts +11 -0
  164. package/dist/presets/extend.d.ts +194 -0
  165. package/dist/presets/extend.test.d.ts +0 -0
  166. package/dist/presets/fullstack-app.d.ts +12 -0
  167. package/dist/presets/index.d.ts +24 -0
  168. package/dist/presets/jamstack.d.ts +12 -0
  169. package/dist/presets/microservices.d.ts +18 -0
  170. package/dist/presets/ml-api.d.ts +13 -0
  171. package/dist/presets/nodejs-server.d.ts +14 -0
  172. package/dist/presets/nodejs-serverless.d.ts +14 -0
  173. package/dist/presets/realtime-app.d.ts +11 -0
  174. package/dist/presets/static-site.d.ts +12 -0
  175. package/dist/presets/traditional-web-app.d.ts +16 -0
  176. package/dist/presets/wordpress.d.ts +12 -0
  177. package/dist/preview/github.d.ts +32 -0
  178. package/dist/preview/github.test.d.ts +0 -0
  179. package/dist/preview/index.d.ts +27 -0
  180. package/dist/preview/manager.d.ts +58 -0
  181. package/dist/preview/manager.test.d.ts +0 -0
  182. package/dist/preview/notifications.d.ts +55 -0
  183. package/dist/preview/notifications.test.d.ts +0 -0
  184. package/dist/queue/batch-processing.d.ts +87 -0
  185. package/dist/queue/dlq-monitoring.d.ts +95 -0
  186. package/dist/queue/fifo.d.ts +90 -0
  187. package/dist/queue/index.d.ts +4 -0
  188. package/dist/queue/management.d.ts +105 -0
  189. package/dist/queue/queue.test.d.ts +0 -0
  190. package/dist/resource-mgmt/index.d.ts +29 -0
  191. package/dist/resource-naming.d.ts +26 -0
  192. package/dist/s3/index.d.ts +173 -0
  193. package/dist/schema/index.d.ts +9 -0
  194. package/dist/security/certificate-manager.d.ts +121 -0
  195. package/dist/security/index.d.ts +4 -0
  196. package/dist/security/scanning.d.ts +147 -0
  197. package/dist/security/secrets-manager.d.ts +144 -0
  198. package/dist/security/secrets-rotation.d.ts +115 -0
  199. package/dist/security/security.test.d.ts +0 -0
  200. package/dist/sms/advanced/ab-testing.d.ts +54 -0
  201. package/dist/sms/advanced/analytics.d.ts +56 -0
  202. package/dist/sms/advanced/campaigns.d.ts +82 -0
  203. package/dist/sms/advanced/chatbot.d.ts +48 -0
  204. package/dist/sms/advanced/index.d.ts +6 -0
  205. package/dist/sms/advanced/link-tracking.d.ts +42 -0
  206. package/dist/sms/advanced/mms.d.ts +35 -0
  207. package/dist/sms/handlers/__tests__/send.test.d.ts +0 -0
  208. package/dist/sms/handlers/delivery-status.d.ts +131 -0
  209. package/dist/sms/handlers/receive.d.ts +160 -0
  210. package/dist/sms/handlers/send.d.ts +172 -0
  211. package/dist/sms/index.d.ts +2 -0
  212. package/dist/stack-diff.d.ts +34 -0
  213. package/dist/static-site/index.d.ts +49 -0
  214. package/dist/template-builder.d.ts +14 -0
  215. package/dist/template-validator.d.ts +24 -0
  216. package/dist/utils/cache.d.ts +55 -0
  217. package/dist/utils/diff.d.ts +48 -0
  218. package/dist/utils/hash.d.ts +58 -0
  219. package/dist/utils/index.d.ts +4 -0
  220. package/dist/utils/parallel.d.ts +60 -0
  221. package/dist/validators/credentials.d.ts +23 -0
  222. package/dist/validators/credentials.test.d.ts +0 -0
  223. package/dist/validators/quotas.d.ts +60 -0
  224. package/dist/validators/quotas.test.d.ts +0 -0
  225. package/package.json +4 -4
@@ -0,0 +1,48 @@
1
+ import type { CloudFormationTemplate } from '../cloudformation/types';
2
+ /**
3
+ * Compare two CloudFormation templates
4
+ */
5
+ export declare function diffTemplates(oldTemplate: CloudFormationTemplate, newTemplate: CloudFormationTemplate): TemplateDiff;
6
+ /**
7
+ * Get diff summary string
8
+ */
9
+ export declare function getDiffSummary(diff: TemplateDiff): string;
10
+ /**
11
+ * Check if diff requires replacement (destructive changes)
12
+ */
13
+ export declare function requiresReplacement(diff: TemplateDiff, oldTemplate: CloudFormationTemplate, newTemplate: CloudFormationTemplate): boolean;
14
+ /**
15
+ * Categorize changes by risk level
16
+ */
17
+ export declare function categorizeChanges(diff: TemplateDiff): {
18
+ safe: string[]
19
+ caution: string[]
20
+ dangerous: string[]
21
+ };
22
+ /**
23
+ * Get deployment strategy based on diff
24
+ */
25
+ export declare function getDeploymentStrategy(diff: TemplateDiff): {
26
+ strategy: 'create' | 'update' | 'replace' | 'skip'
27
+ reason: string
28
+ };
29
+ /**
30
+ * Calculate diff statistics
31
+ */
32
+ export declare function getDiffStats(diff: TemplateDiff): {
33
+ total: number
34
+ added: number
35
+ modified: number
36
+ deleted: number
37
+ unchanged: number
38
+ changePercentage: number
39
+ };
40
+ export declare interface TemplateDiff {
41
+ added: string[]
42
+ modified: string[]
43
+ deleted: string[]
44
+ unchanged: string[]
45
+ parametersChanged: boolean
46
+ outputsChanged: boolean
47
+ hasChanges: boolean
48
+ }
@@ -0,0 +1,58 @@
1
+ import path from 'node:path';
2
+ /**
3
+ * Hash a file using streaming for large files
4
+ */
5
+ export declare function hashFile(filePath: string, options?: HashOptions): Promise<string>;
6
+ /**
7
+ * Hash a string
8
+ */
9
+ export declare function hashString(content: string, algorithm?: 'md5' | 'sha1' | 'sha256'): string;
10
+ /**
11
+ * Hash a buffer
12
+ */
13
+ export declare function hashBuffer(buffer: Buffer, algorithm?: 'md5' | 'sha1' | 'sha256'): string;
14
+ /**
15
+ * Hash all files in a directory
16
+ */
17
+ export declare function hashDirectory(dirPath: string, options?: HashOptions): Promise<FileHash[]>;
18
+ /**
19
+ * Create a manifest hash from multiple file hashes
20
+ * Useful for detecting if any file in a directory has changed
21
+ */
22
+ export declare function hashManifest(fileHashes: FileHash[]): string;
23
+ /**
24
+ * Fast hash using file metadata (size + mtime)
25
+ * Much faster than content hash, but less reliable
26
+ * Use for quick change detection
27
+ */
28
+ export declare function quickHash(filePath: string): string;
29
+ /**
30
+ * Compare two sets of file hashes to find changes
31
+ */
32
+ export declare function findChangedFiles(oldHashes: FileHash[], newHashes: FileHash[]): {
33
+ added: FileHash[]
34
+ modified: FileHash[]
35
+ deleted: FileHash[]
36
+ };
37
+ export declare interface FileHash {
38
+ path: string
39
+ hash: string
40
+ size: number
41
+ mtime: number
42
+ }
43
+ export declare interface HashOptions {
44
+ algorithm?: 'md5' | 'sha1' | 'sha256'
45
+ chunkSize?: number
46
+ ignorePatterns?: string[]
47
+ }
48
+ /**
49
+ * Cache for file hashes
50
+ */
51
+ export declare class HashCache {
52
+ private cache: Map<string, { hash: string, mtime: number, size: number }>;
53
+ constructor();
54
+ get(filePath: string): string | undefined;
55
+ set(filePath: string, hash: string): void;
56
+ getOrCompute(filePath: string, options?: HashOptions): Promise<string>;
57
+ clear(): void;
58
+ }
@@ -0,0 +1,4 @@
1
+ export * from './cache';
2
+ export * from './hash';
3
+ export * from './parallel';
4
+ export * from './diff';
@@ -0,0 +1,60 @@
1
+ /**
2
+ * Execute tasks in parallel with configurable concurrency
3
+ */
4
+ export declare function parallel<T>(tasks: (() => Promise<T>)[], options?: ParallelOptions): Promise<ParallelResult<T>>;
5
+ /**
6
+ * Execute tasks in batches with controlled concurrency
7
+ */
8
+ export declare function batch<T, R>(items: T[], processor: (item: T) => Promise<R>, options?: ParallelOptions): Promise<ParallelResult<R>>;
9
+ /**
10
+ * Map over array with parallel execution
11
+ */
12
+ export declare function parallelMap<T, R>(items: T[], mapper: (item: T, index: number) => Promise<R>, concurrency?: number): Promise<R[]>;
13
+ /**
14
+ * Execute tasks with retry logic
15
+ */
16
+ export declare function parallelWithRetry<T>(tasks: (() => Promise<T>)[], options?: ParallelOptions & { retries?: number, retryDelay?: number }): Promise<ParallelResult<T>>;
17
+ /**
18
+ * Execute tasks in sequence (one after another)
19
+ */
20
+ export declare function sequence<T>(tasks: (() => Promise<T>)[]): Promise<T[]>;
21
+ /**
22
+ * Execute tasks with timeout
23
+ */
24
+ export declare function withTimeout<T>(task: () => Promise<T>, timeoutMs: number, timeoutMessage?: string): Promise<T>;
25
+ /**
26
+ * Chunk array into smaller batches
27
+ */
28
+ export declare function chunk<T>(array: T[], size: number): T[][];
29
+ /**
30
+ * Process array in chunks with parallel execution
31
+ */
32
+ export declare function processInChunks<T, R>(items: T[], chunkSize: number, processor: (chunk: T[]) => Promise<R[]>): Promise<R[]>;
33
+ /**
34
+ * Parallel execution utilities
35
+ * Optimize deployment performance with parallel operations
36
+ */
37
+ export declare interface ParallelOptions {
38
+ concurrency?: number
39
+ stopOnError?: boolean
40
+ }
41
+ export declare interface ParallelResult<T> {
42
+ results: T[]
43
+ errors: Error[]
44
+ duration: number
45
+ }
46
+ /**
47
+ * Rate limiter for API calls
48
+ */
49
+ export declare class RateLimiter {
50
+ private queue: (() => void)[];
51
+ private running: any;
52
+ private lastExecution: any;
53
+ private maxConcurrent?: number;
54
+ private minInterval?: number;
55
+ constructor(maxConcurrent?: number, minInterval?: number);
56
+ execute<T>(task: () => Promise<T>): Promise<T>;
57
+ private waitForSlot(): Promise<void>;
58
+ private processQueue(): void;
59
+ stats(): { running: number, queued: number };
60
+ }
@@ -0,0 +1,23 @@
1
+ import type { AWSCredentials } from '../aws/credentials';
2
+ /**
3
+ * Validate AWS credentials
4
+ */
5
+ export declare function validateCredentials(profile?: string): Promise<CredentialValidationResult>;
6
+ /**
7
+ * Check IAM permissions
8
+ */
9
+ export declare function checkIAMPermissions(credentials: AWSCredentials, requiredActions: string[]): Promise<{ allowed: string[], denied: string[] }>;
10
+ /**
11
+ * Get required IAM permissions for deployment
12
+ */
13
+ export declare function getRequiredPermissions(config: any): string[];
14
+ /**
15
+ * Suggest IAM policy for deployment
16
+ */
17
+ export declare function suggestIAMPolicy(config: any): string;
18
+ export declare interface CredentialValidationResult {
19
+ valid: boolean
20
+ accountId?: string
21
+ region?: string
22
+ error?: string
23
+ }
File without changes
@@ -0,0 +1,60 @@
1
+ /**
2
+ * Check service quotas for deployment
3
+ */
4
+ export declare function checkServiceQuotas(config: any): Promise<ServiceQuota[]>;
5
+ /**
6
+ * Get quota usage summary
7
+ */
8
+ export declare function getQuotaUsageSummary(quotas: ServiceQuota[]): string;
9
+ /**
10
+ * Suggest quota increase if needed
11
+ */
12
+ export declare function suggestQuotaIncrease(quotas: ServiceQuota[]): string[];
13
+ /**
14
+ * Common AWS service limits by region
15
+ */
16
+ export declare const DEFAULT_SERVICE_LIMITS: {
17
+ ec2: {
18
+ 'Running On-Demand Instances': 20;
19
+ 'Elastic IPs': 5;
20
+ 'VPCs': 5;
21
+ 'Internet Gateways': 5;
22
+ 'NAT Gateways': 5;
23
+ 'Security Groups': 500
24
+ };
25
+ rds: {
26
+ 'DB Instances': 40;
27
+ 'DB Snapshots': 100;
28
+ 'DB Parameter Groups': 50
29
+ };
30
+ lambda: {
31
+ 'Concurrent Executions': 1000;
32
+ 'Function Storage': unknown
33
+ };
34
+ s3: {
35
+ 'Buckets': 100
36
+ };
37
+ cloudformation: {
38
+ 'Stacks': 200;
39
+ 'StackSets': 100
40
+ };
41
+ elasticache: {
42
+ 'Nodes': 100;
43
+ 'Clusters': 100
44
+ };
45
+ dynamodb: {
46
+ 'Tables': 256
47
+ };
48
+ ecs: {
49
+ 'Clusters': 10000;
50
+ 'Services per Cluster': 2000
51
+ }
52
+ };
53
+ export declare interface ServiceQuota {
54
+ service: string
55
+ quotaName: string
56
+ currentValue: number
57
+ limit: number
58
+ percentage: number
59
+ warning: boolean
60
+ }
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stacksjs/ts-cloud-core",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "description": "Core CloudFormation generation library for ts-cloud",
6
6
  "author": "Chris Breuer <chris@stacksjs.com>",
@@ -26,13 +26,13 @@
26
26
  "dist"
27
27
  ],
28
28
  "scripts": {
29
- "build": "bun build src/index.ts --outdir dist --target bun",
29
+ "build": "bun --bun build.ts",
30
30
  "prepublishOnly": "bun --bun run build",
31
31
  "typecheck": "tsc --noEmit"
32
32
  },
33
33
  "dependencies": {
34
- "@stacksjs/ts-cloud-types": "0.1.6",
35
- "@stacksjs/ts-cloud-aws-types": "0.1.6"
34
+ "@stacksjs/ts-cloud-types": "0.1.8",
35
+ "@stacksjs/ts-cloud-aws-types": "0.1.8"
36
36
  },
37
37
  "devDependencies": {
38
38
  "typescript": "^5.9.3"