@mono-labs/cli 0.0.188 → 0.0.190

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.188",
3
+ "version": "0.0.190",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -80,6 +80,7 @@ type DefaultDeployConfig = {
80
80
  baseDomain?: string;
81
81
  webSubdomain?: string;
82
82
  apiSubdomain?: string;
83
+ defaultKeyPair?: string;
83
84
  regions?: string[];
84
85
  };
85
86
 
@@ -95,7 +96,7 @@ type ConfigTypeMap = {
95
96
  type ResolveConfig<TType extends string, TCustom = unknown> =
96
97
  TType extends keyof ConfigTypeMap ? ConfigTypeMap[TType] : TCustom;
97
98
 
98
- export function loadAppConfig<TCustom = unknown, TType extends string = string>(
99
+ export function loadAppConfig<TCustom = unknown, TType extends string = 'app'>(
99
100
  configType: TType = 'app' as TType,
100
101
  startDir: string = process.cwd()
101
102
  ): { config: ResolveConfig<TType, TCustom>; meta: WorkspaceDetectResult } {