@ts-cloud/core 0.7.11 → 0.7.12

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +10 -0
  2. package/package.json +2 -2
package/dist/types.d.ts CHANGED
@@ -7,6 +7,16 @@ export interface CloudProviderConfig {
7
7
  * @default 'aws'
8
8
  */
9
9
  provider?: 'aws' | 'hetzner';
10
+ /**
11
+ * Attach this project's sites to a box owned by ANOTHER project instead of
12
+ * provisioning one. Set to the owner project's `project.slug` (e.g. `'stacks'`);
13
+ * the deploy targets the owner's `<slug>-<environment>-app` server, ships only
14
+ * this project's sites, and adds its own additive rpx `sites.d/<slug>.json`
15
+ * fragment + DNS — never touching the owner's box lifecycle, firewall, or other
16
+ * tenants. The owner provisions and manages the shared box; attachers only
17
+ * deploy onto it. Requires read access via the same `HCLOUD_TOKEN`.
18
+ */
19
+ attachTo?: string;
10
20
  }
11
21
  /**
12
22
  * Object storage provider selection.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-cloud/core",
3
- "version": "0.7.11",
3
+ "version": "0.7.12",
4
4
  "type": "module",
5
5
  "description": "Core CloudFormation generation library for ts-cloud",
6
6
  "author": "Chris Breuer <chris@stacksjs.com>",
@@ -31,7 +31,7 @@
31
31
  "typecheck": "tsc --noEmit"
32
32
  },
33
33
  "dependencies": {
34
- "@ts-cloud/aws-types": "0.7.11"
34
+ "@ts-cloud/aws-types": "0.7.12"
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^5.9.3"