@ts-cloud/core 0.7.13 → 0.7.14

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 +4 -0
  2. package/package.json +2 -2
package/dist/types.d.ts CHANGED
@@ -158,6 +158,10 @@ export type DeploymentMode = 'server' | 'serverless';
158
158
  export type EnvironmentType = 'production' | 'staging' | 'development';
159
159
  export interface EnvironmentConfig {
160
160
  type: EnvironmentType;
161
+ /** Git branch deployed when this environment is targeted. */
162
+ deployBranch?: string;
163
+ /** Optional subdomain prefix used for non-production environments. */
164
+ domainPrefix?: string;
161
165
  region?: string;
162
166
  variables?: Record<string, string>;
163
167
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-cloud/core",
3
- "version": "0.7.13",
3
+ "version": "0.7.14",
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.13"
34
+ "@ts-cloud/aws-types": "0.7.14"
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^7.0.2"