@ts-cloud/core 0.7.84 → 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.
- package/dist/drivers/types.d.ts +12 -0
- package/package.json +2 -2
package/dist/drivers/types.d.ts
CHANGED
|
@@ -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
|
}
|
|
@@ -19,6 +25,12 @@ export interface ComputeStackOutputs {
|
|
|
19
25
|
deployStoragePath?: string;
|
|
20
26
|
appInstanceId?: string;
|
|
21
27
|
appPublicIp?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Public IPv6 address of the app box, when the provider gives it one. Drivers
|
|
30
|
+
* narrow a routed block to the address the interface actually holds before
|
|
31
|
+
* reporting it here, so this is always something an AAAA record can point at.
|
|
32
|
+
*/
|
|
33
|
+
appPublicIpv6?: string;
|
|
22
34
|
sshUser?: string;
|
|
23
35
|
/** Fleet: private IP of the dedicated services box (DB/cache/search). */
|
|
24
36
|
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.
|
|
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.
|
|
34
|
+
"@ts-cloud/aws-types": "0.7.86"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"typescript": "^7.0.2"
|