🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@builder.io/ai-utils

Package Overview
Dependencies
Maintainers
21
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@builder.io/ai-utils - npm Package Compare versions

Comparing version

to
0.4.25

2

package.json
{
"name": "@builder.io/ai-utils",
"version": "0.4.24",
"version": "0.4.25",
"description": "Builder.io AI utils",

@@ -5,0 +5,0 @@ "type": "module",

@@ -633,1 +633,18 @@ import type { Attachment, ContentMessageItemToolResult } from "./messages";

}
export interface InitState {
isRunning: boolean;
isComplete: boolean;
success: boolean;
currentStep: string;
error: string | undefined;
}
export interface LaunchServerStatus {
status: "ok";
state: "initial" | "init-running" | "init-complete" | "ready" | "active-session" | "error";
setupState?: SetupCommandState;
devState?: DevCommandState;
httpServerState?: HttpServerState;
editorReady: boolean;
initState?: InitState;
errorMessage?: string;
}