@builder.io/ai-utils 0.11.1 → 0.11.2
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 +1 -1
- package/src/codegen.d.ts +3 -1
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -448,7 +448,7 @@ export interface GenerateCompletionStepContinue {
|
|
|
448
448
|
autoContinue: boolean;
|
|
449
449
|
}
|
|
450
450
|
export type DevCommandState = "running" | "stopped" | "starting" | "failed" | "unset";
|
|
451
|
-
export type SetupCommandState = "not-installed" | "installing" | "installed" | "install-failed" | "install-aborted"
|
|
451
|
+
export type SetupCommandState = "not-installed" | "installing" | "installed" | "install-failed" | "install-aborted";
|
|
452
452
|
export type HttpServerState = "ok-2xx" | "error-4xx" | "error-5xx" | "error-fetch" | "stopped" | "connecting";
|
|
453
453
|
export interface CodeGenHealthStatus {
|
|
454
454
|
devServerState: DevCommandState;
|
|
@@ -1120,6 +1120,8 @@ export interface ConfigureDevOrchestratorOpts {
|
|
|
1120
1120
|
replaceEnvs?: boolean;
|
|
1121
1121
|
forceSetupCommand?: boolean;
|
|
1122
1122
|
forceDevCommand?: boolean;
|
|
1123
|
+
autoDetectDevServer?: boolean;
|
|
1124
|
+
autoDetectDevServerPatterns?: string[];
|
|
1123
1125
|
}
|
|
1124
1126
|
export interface LanguageInfo {
|
|
1125
1127
|
color: string;
|