builder.io 1.6.22 → 1.6.23

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.
@@ -9,7 +9,6 @@ type FigmaAPIOpts = {
9
9
  };
10
10
  params?: Record<string, any>;
11
11
  };
12
- export declare const REMOVE_EMOJI: RegExp;
13
12
  export declare const parseFigmaURL: (str: string) => {
14
13
  fileID: string;
15
14
  nodeId: string;
@@ -27,6 +27,8 @@ export interface CLIArgs {
27
27
  token?: string;
28
28
  /** Url to start from */
29
29
  url?: string;
30
+ /** Node ID from Figma URL */
31
+ nodeId?: string;
30
32
  /** Prompt text for non-interactive mode */
31
33
  prompt?: string;
32
34
  /** Generation mode */
@@ -57,4 +59,6 @@ export interface CLIArgs {
57
59
  _: string[];
58
60
  builderPublicKey?: string;
59
61
  builderPrivateKey?: string;
62
+ /** Silent mode for launch command */
63
+ silent?: boolean;
60
64
  }
@@ -1,4 +1,4 @@
1
1
  import type { DevToolsSys } from "@builder.io/dev-tools/core";
2
2
  import type { CLIArgs } from "./index";
3
3
  export declare const PROXY_PORT = 48752;
4
- export declare function runLaunchCommand(sys: DevToolsSys, subCommand: string, args: CLIArgs): Promise<number>;
4
+ export declare function runLaunchCommand(sys: DevToolsSys, _subCommand: string, args: CLIArgs): Promise<number>;