@stacksjs/cloud 0.68.0 → 0.69.1

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/helpers.d.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  import type { CountryCode, RegisterDomainCommandOutput } from '@aws-sdk/client-route-53-domains';
2
2
  import type { Result } from '@stacksjs/error-handling';
3
3
 
4
- export { InstanceType }
5
4
  declare const appEnv: unknown;
6
5
  export declare function getSecurityGroupId(securityGroupName: string): Promise<Result<string | undefined, string>>;
7
6
  export declare interface PurchaseOptions {
@@ -48,7 +47,7 @@ export declare interface PurchaseOptions {
48
47
  contactType: ContactType
49
48
  verbose: boolean
50
49
  }
51
- export declare function purchaseDomain(domain: string, options: PurchaseOptions,): Result<Promise<RegisterDomainCommandOutput>, Error>;
50
+ export declare function purchaseDomain(domain: string, options: PurchaseOptions): Result<Promise<RegisterDomainCommandOutput>, Error>;
52
51
  export declare function getJumpBoxInstanceId(name?: string): Promise<string | undefined>;
53
52
  export declare function deleteEc2Instance(id: string, stackName?: string): Promise<Result<string, string>>;
54
53
  export declare function deleteJumpBox(stackName?: string): Promise<Result<string, string>>;
@@ -68,4 +67,6 @@ export declare function getSecurityGroupFromInstanceId(instanceId: string): Prom
68
67
  export declare function isFirstDeployment(): Promise<boolean>;
69
68
  export declare function isFailedState(): Promise<boolean>;
70
69
  export declare function getOrCreateTimestamp(): Promise<string>;
71
- export declare function getCloudFrontDistributionId(): Promise<string>;
70
+ export declare function getCloudFrontDistributionId(): Promise<string>;
71
+
72
+ export { InstanceType }