builder.io 1.18.18 → 1.18.20

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.
@@ -273,7 +273,7 @@ export declare class CodeGenSession {
273
273
  manualCommit(options: {
274
274
  add: string;
275
275
  commitMessage: string;
276
- }): Promise<void>;
276
+ }): Promise<boolean>;
277
277
  getLastSuggestedAction(): SuggestedActionBuildError | undefined;
278
278
  connectToEventLoop(shouldReplay: boolean, onStep: (step: GenerateCompletionStep) => void): () => void;
279
279
  waitUntilIdle(): Promise<void>;
@@ -1,6 +1,6 @@
1
1
  import type { DevToolsSys } from "@builder.io/dev-tools/core";
2
2
  import type { ProxyMiddleware } from "../../types/proxy-middleware";
3
- import type { DevCommandResult, DevCommandState, EnvironmentVariable, HttpServerData, ProxyServerSelection, SetupCommandResult, SetupDependency, ValidateCommandResult } from "$/ai-utils";
3
+ import type { DevCommandResult, DevCommandState, EnvironmentVariable, HttpServerData, HttpServerState, ProxyServerSelection, SetupCommandResult, SetupDependency, ValidateCommandResult } from "$/ai-utils";
4
4
  import EventEmitter from "events";
5
5
  import type { FusionConfig, SetupCommandState } from "$/ai-utils";
6
6
  export type DevServerState = Exclude<SetupCommandState | DevCommandState, "installed" | "starting">;
@@ -92,7 +92,8 @@ export interface DevServerOrchestrator {
92
92
  installStderr: [string];
93
93
  setupState: [SetupCommandState];
94
94
  devState: [DevCommandState];
95
- httpServerState: [HttpServerData];
95
+ httpServerData: [HttpServerData];
96
+ httpServerState: [HttpServerState];
96
97
  urlDetected: [string];
97
98
  }>;
98
99
  close: () => Promise<void>;