@ts-cloud/core 0.7.85 → 0.7.86

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.
@@ -11,6 +11,12 @@ export interface ComputeTarget {
11
11
  id: string;
12
12
  name?: string;
13
13
  publicIp?: string;
14
+ /**
15
+ * Public IPv6 address, normalized to something an AAAA record can point at
16
+ * (see `normalizePublicIpv6` — providers report anything from a plain
17
+ * address to a routed block).
18
+ */
19
+ publicIpv6?: string;
14
20
  privateIp?: string;
15
21
  status?: string;
16
22
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ts-cloud/core",
3
3
  "type": "module",
4
- "version": "0.7.85",
4
+ "version": "0.7.86",
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.85"
34
+ "@ts-cloud/aws-types": "0.7.86"
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^7.0.2"