@builder.io/ai-utils 0.4.7 → 0.4.9
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 +2 -0
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -296,6 +296,7 @@ export interface GenerateCompletionStepContinue {
|
|
|
296
296
|
}
|
|
297
297
|
export type DevCommandState = "running" | "stopped" | "unset";
|
|
298
298
|
export type SetupCommandState = "not-installed" | "installing" | "installed" | "install-failed";
|
|
299
|
+
export type HttpServerState = "ok-2xx" | "error-4xx" | "error-5xx" | "error-fetch" | "stopped" | "connecting";
|
|
299
300
|
export interface CodeGenHealthStatus {
|
|
300
301
|
devServerState: DevCommandState;
|
|
301
302
|
setupState: SetupCommandState;
|
|
@@ -348,6 +349,7 @@ export interface GenerateCompletionStepDevServerState {
|
|
|
348
349
|
type: "dev-server";
|
|
349
350
|
devServerState: DevCommandState;
|
|
350
351
|
setupState: SetupCommandState;
|
|
352
|
+
httpServerState: HttpServerState;
|
|
351
353
|
}
|
|
352
354
|
export interface GenerateCompletionStepGit {
|
|
353
355
|
type: "git";
|