@builder.io/dev-tools 1.18.23-dev.202511281430.4aba488e3 → 1.18.24-dev.202511281450.a219c5a05
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 +13 -6
- package/cli/index.cjs.map +2 -2
- 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 +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/codegen.d.ts +1 -0
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -276,6 +276,7 @@ export declare class CodeGenSession {
|
|
|
276
276
|
}): Promise<boolean>;
|
|
277
277
|
getLastSuggestedAction(): SuggestedActionBuildError | undefined;
|
|
278
278
|
connectToEventLoop(shouldReplay: boolean, onStep: (step: GenerateCompletionStep) => void): () => void;
|
|
279
|
+
waitUntilPendingPromises(): Promise<void>;
|
|
279
280
|
waitUntilIdle(): Promise<void>;
|
|
280
281
|
waitForEventLoop(): Promise<void>;
|
|
281
282
|
commitWorkInProgress(lastTurn: CodegenTurn, changedFiles: string[]): Promise<string | false | undefined>;
|