builder.io 1.13.5 → 1.14.0

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.
@@ -86,4 +86,5 @@ export interface CLIArgs {
86
86
  disableMcp?: boolean;
87
87
  /** Clear all stored credentials (logout) */
88
88
  reset?: boolean;
89
+ nativeApp?: boolean;
89
90
  }
@@ -97,6 +97,14 @@ export interface LaunchArgs extends CLIArgs {
97
97
  * Useful for development with custom SSL certificates.
98
98
  */
99
99
  localHttpsDomain?: string;
100
+ /**
101
+ * Enable native app mode.
102
+ * When enabled, runs setup and dev commands without proxy server functionality.
103
+ * Useful for native app development where the simulator handles its own server.
104
+ *
105
+ * @default false
106
+ */
107
+ nativeApp?: boolean;
100
108
  }
101
109
  export declare function runFusionCommand({ sys, args, }: {
102
110
  sys: DevToolsSys;
@@ -6,5 +6,6 @@ export declare const SUPPORTED_FRAMEWORKS: {
6
6
  next: string;
7
7
  qwik: string;
8
8
  vue: string;
9
+ native: string;
9
10
  };
10
11
  export declare function getSDKDetailsForFramework(framework: string): SDKVersionInfo[];
@@ -1,2 +1,2 @@
1
1
  import type { CreateDevToolsOptions, DevTools } from "../types";
2
- export declare function createDevTools(opts: CreateDevToolsOptions): Promise<DevTools>;
2
+ export declare function createDevTools(opts: CreateDevToolsOptions, nativeOverride?: boolean): Promise<DevTools>;