builder.io 1.11.16 → 1.11.18

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.
@@ -92,4 +92,6 @@ export interface CLIArgs {
92
92
  listIndexedRepos?: boolean;
93
93
  /** Disable MCP support */
94
94
  disableMcp?: boolean;
95
+ /** Enable privacy mode for codegen */
96
+ privacyMode?: boolean;
95
97
  }
@@ -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;
@@ -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;