builder.io 1.5.5 → 1.5.6
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 +328 -322
- 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/remix/server-build/index.cjs +3 -3
- package/server/index.cjs +69 -64
- package/server/index.mjs +85 -80
- package/types/cli/code.d.ts +3 -2
- package/types/cli/index.d.ts +1 -1
- package/types/cli/version.d.ts +1 -0
- package/types/cli/cli.e2e.d.ts +0 -1
package/types/cli/code.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ type CodegenUsage = {
|
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
17
|
export interface ArtifactItem {
|
|
18
|
-
type: "shell" | "file" | "text" | "delta" | "done" | "diff" | "thinking";
|
|
18
|
+
type: "shell" | "file" | "text" | "delta" | "done" | "diff" | "thinking" | "continue";
|
|
19
19
|
id?: string;
|
|
20
20
|
content: string;
|
|
21
21
|
filePath?: string;
|
|
@@ -23,12 +23,13 @@ export interface ArtifactItem {
|
|
|
23
23
|
actionTitle?: string;
|
|
24
24
|
synthetic?: boolean;
|
|
25
25
|
incomplete?: boolean;
|
|
26
|
+
nextUrl?: string;
|
|
26
27
|
actions?: ArtifactItem[];
|
|
27
28
|
stopReason?: "end" | "limit" | "error" | "max_tokens";
|
|
28
29
|
usage?: CodegenUsage;
|
|
29
30
|
}
|
|
30
31
|
export declare const runCodeCommand: (sys: DevToolsSys, subCommand: string, args: CLIArgs) => Promise<void>;
|
|
31
|
-
export declare const runCodeGen: (sys: DevToolsSys, args: CLIArgs) => Promise<
|
|
32
|
+
export declare const runCodeGen: (sys: DevToolsSys, args: CLIArgs) => Promise<undefined>;
|
|
32
33
|
export declare function createApp(userId: string, spaceId: string, privateKey: string, body: any): Promise<void>;
|
|
33
34
|
export declare function transformStream(body: ReadableStream<Uint8Array> | null): AsyncGenerator<string, void, unknown>;
|
|
34
35
|
export {};
|
package/types/cli/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export interface CLIArgs {
|
|
|
10
10
|
/** Force operation even if there are warnings */
|
|
11
11
|
force?: boolean;
|
|
12
12
|
/** Print output as JSON */
|
|
13
|
-
|
|
13
|
+
verbose?: boolean;
|
|
14
14
|
/** Run in dry-run mode without making changes */
|
|
15
15
|
dryrun?: boolean;
|
|
16
16
|
/** Auto-confirm all prompts */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const pkgVersion: string;
|
package/types/cli/cli.e2e.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|