builder.io 1.6.38 → 1.6.40
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 +315 -304
- 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 +77 -77
- package/server/index.mjs +77 -77
- package/types/cli/codegen.d.ts +0 -1
- package/types/cli/launch.d.ts +4 -0
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -54,7 +54,6 @@ export interface CodeGenSessionOptionsInitialUrl extends CodeGenSessionOptionsBa
|
|
|
54
54
|
initialUrl: string;
|
|
55
55
|
}
|
|
56
56
|
export type CodeGenSessionOptions = CodeGenSessionOptionsSession | CodeGenSessionOptionsInitialUrl;
|
|
57
|
-
export declare function createCodeSession(options: CodeGenSessionOptions): Promise<CodeGenSession>;
|
|
58
57
|
export declare class CodeGenSession {
|
|
59
58
|
#private;
|
|
60
59
|
constructor(options: CodeGenSessionOptions);
|
package/types/cli/launch.d.ts
CHANGED
|
@@ -4,6 +4,10 @@ import type { CLIArgs } from "./index";
|
|
|
4
4
|
* Large random-ish port number that is unlikely to be used
|
|
5
5
|
*/
|
|
6
6
|
export declare const PROXY_PORT = 48752;
|
|
7
|
+
/**
|
|
8
|
+
* Maximum number of attempts to generate PR description
|
|
9
|
+
*/
|
|
10
|
+
export declare const MAX_PR_CONTENT_ATTEMPTS = 2;
|
|
7
11
|
export interface LaunchArgs extends CLIArgs {
|
|
8
12
|
cwdAgent?: string;
|
|
9
13
|
/** Fusion project ID */
|