@ts-cloud/core 0.7.84 → 0.7.85

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.
@@ -19,6 +19,12 @@ export interface ComputeStackOutputs {
19
19
  deployStoragePath?: string;
20
20
  appInstanceId?: string;
21
21
  appPublicIp?: string;
22
+ /**
23
+ * Public IPv6 address of the app box, when the provider gives it one. Drivers
24
+ * narrow a routed block to the address the interface actually holds before
25
+ * reporting it here, so this is always something an AAAA record can point at.
26
+ */
27
+ appPublicIpv6?: string;
22
28
  sshUser?: string;
23
29
  /** Fleet: private IP of the dedicated services box (DB/cache/search). */
24
30
  servicesPrivateIp?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ts-cloud/core",
3
3
  "type": "module",
4
- "version": "0.7.84",
4
+ "version": "0.7.85",
5
5
  "description": "Core CloudFormation generation library for ts-cloud",
6
6
  "author": "Chris Breuer <chris@stacksjs.com>",
7
7
  "license": "MIT",
@@ -31,7 +31,7 @@
31
31
  "typecheck": "tsc --noEmit"
32
32
  },
33
33
  "dependencies": {
34
- "@ts-cloud/aws-types": "0.7.84"
34
+ "@ts-cloud/aws-types": "0.7.85"
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^7.0.2"