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.
- package/cli/index.cjs +20 -20
- package/cli/index.cjs.map +4 -4
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +42 -42
- package/server/index.mjs +44 -44
- package/types/cli/codegen.d.ts +1 -1
- package/types/cli/launch/dev-server-orchestrator.d.ts +3 -2
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -273,7 +273,7 @@ export declare class CodeGenSession {
|
|
|
273
273
|
manualCommit(options: {
|
|
274
274
|
add: string;
|
|
275
275
|
commitMessage: string;
|
|
276
|
-
}): Promise<
|
|
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
|
-
|
|
95
|
+
httpServerData: [HttpServerData];
|
|
96
|
+
httpServerState: [HttpServerState];
|
|
96
97
|
urlDetected: [string];
|
|
97
98
|
}>;
|
|
98
99
|
close: () => Promise<void>;
|