@ts-cloud/core 0.2.10 → 0.2.11

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 +6 -0
  2. package/package.json +2 -2
package/dist/types.d.ts CHANGED
@@ -2417,6 +2417,12 @@ export declare const RealtimePresets: {
2417
2417
  export interface ApiConfig {
2418
2418
  enabled?: boolean;
2419
2419
  name?: string;
2420
+ /**
2421
+ * Origin port for app API traffic routed through the public CDN.
2422
+ * Defaults to 3008 so APIs do not contend with HTTP services such as
2423
+ * mail or ACME challenge responders on port 80.
2424
+ */
2425
+ port?: number;
2420
2426
  }
2421
2427
  /**
2422
2428
  * Load Balancer Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-cloud/core",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
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.2.10"
34
+ "@ts-cloud/aws-types": "0.2.11"
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^5.9.3"