@ts-cloud/core 0.12.14 → 0.12.16

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 +21 -0
  2. package/package.json +2 -2
package/dist/types.d.ts CHANGED
@@ -3548,9 +3548,30 @@ export interface ComputeProxyConfig {
3548
3548
  engine: 'rpx';
3549
3549
  /**
3550
3550
  * npm version/range of `@stacksjs/rpx` to install on the box.
3551
+ *
3552
+ * The box OWNER's setting. There is one gateway per machine, and every
3553
+ * provisioning deploy reinstalls and recompiles it, so this version is
3554
+ * imposed on every project routed through that box - a tenant that pins an
3555
+ * old release rolls the whole machine back to it. A project with
3556
+ * `cloud.attachTo` set therefore does not provision the gateway at all and
3557
+ * this field is ignored for it.
3558
+ *
3551
3559
  * @default 'latest'
3552
3560
  */
3553
3561
  version?: string;
3562
+ /**
3563
+ * npm version/range of `@stacksjs/tlsx`, the ACME client the cert-renewal
3564
+ * timer runs. Owner-only, for the same reason as {@link version}.
3565
+ *
3566
+ * Separate from {@link version} because they are separate packages: the
3567
+ * renewal step used to install `@stacksjs/tlsx@<the rpx version>`, which
3568
+ * resolved to nothing whenever rpx was pinned, failed, and was swallowed by
3569
+ * its own `|| true` - leaving the box with no ACME client and renewal
3570
+ * failing silently until a cert expired.
3571
+ *
3572
+ * @default 'latest'
3573
+ */
3574
+ tlsxVersion?: string;
3554
3575
  /**
3555
3576
  * Directory on the box holding real TLS certs (PEM `<domain>.crt`/`.key`),
3556
3577
  * served per-SNI by rpx. @default '/etc/rpx/certs'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ts-cloud/core",
3
3
  "type": "module",
4
- "version": "0.12.14",
4
+ "version": "0.12.16",
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.12.14"
34
+ "@ts-cloud/aws-types": "0.12.16"
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^7.0.2"