builder.io 1.11.17 → 1.11.19
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 +310 -303
- 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 -40
- package/server/index.mjs +48 -46
- package/types/cli/codegen.d.ts +1 -1
- package/types/cli/index.d.ts +2 -0
- package/types/cli/launch/dev-server-orchestrator.d.ts +2 -0
- package/types/cli/launch.d.ts +7 -0
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -329,7 +329,7 @@ export declare class CodeGenSession {
|
|
|
329
329
|
* @param filePath A file path that may include a workspace prefix
|
|
330
330
|
* @returns The file content or null if the file doesn't exist
|
|
331
331
|
*/
|
|
332
|
-
readFileSync(filePath: string): string | null;
|
|
332
|
+
readFileSync(filePath: string, skipAclCheck?: boolean): string | null;
|
|
333
333
|
/**
|
|
334
334
|
* Writes content to a file in the workspace
|
|
335
335
|
* @param filePath A file path that may include a workspace prefix
|
package/types/cli/index.d.ts
CHANGED
|
@@ -13,6 +13,8 @@ export interface DevServerOrchestrator {
|
|
|
13
13
|
devCommand: string;
|
|
14
14
|
setupCommand: string | undefined;
|
|
15
15
|
setupState: SetupCommandState;
|
|
16
|
+
lastServerBody: string | undefined;
|
|
17
|
+
lastServerStatus: number | undefined;
|
|
16
18
|
devState: DevCommandState;
|
|
17
19
|
httpServerState: HttpServerState;
|
|
18
20
|
state: DevServerState;
|
package/types/cli/launch.d.ts
CHANGED
|
@@ -68,6 +68,13 @@ export interface LaunchArgs extends CLIArgs {
|
|
|
68
68
|
* @default false
|
|
69
69
|
*/
|
|
70
70
|
local?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Enable privacy mode for codegen.
|
|
73
|
+
* When enabled, encrypts sensitive data in communication with the AI service.
|
|
74
|
+
*
|
|
75
|
+
* @default false
|
|
76
|
+
*/
|
|
77
|
+
privacyMode?: boolean;
|
|
71
78
|
}
|
|
72
79
|
export declare function runFusionCommand({ sys, args, }: {
|
|
73
80
|
sys: DevToolsSys;
|