@ts-cloud/core 0.7.85 → 0.7.87
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 +6 -0
- package/dist/index.js +2 -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
|
}
|
package/dist/index.js
CHANGED
|
@@ -22435,6 +22435,8 @@ function resolveManagementDashboardSites(config, environment, opts) {
|
|
|
22435
22435
|
start: `bun ${DASHBOARD_ENTRY} dashboard:serve --box --host 127.0.0.1 --port ${port}`,
|
|
22436
22436
|
port,
|
|
22437
22437
|
env: {
|
|
22438
|
+
APP_ENV: "production",
|
|
22439
|
+
NODE_ENV: "production",
|
|
22438
22440
|
TS_CLOUD_DASHBOARD_TELEMETRY: "1"
|
|
22439
22441
|
},
|
|
22440
22442
|
zeroDowntime: false,
|
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.87",
|
|
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.87"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"typescript": "^7.0.2"
|