@builder.io/dev-tools 1.25.0-dev.202602091727.eacc0b043 → 1.26.0-dev.202602091901.45f4b8d8b

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.
Files changed (228) hide show
  1. package/cli/index.cjs +1698 -406
  2. package/cli/index.cjs.map +4 -4
  3. package/core/index.cjs +1 -1
  4. package/core/index.mjs +1 -1
  5. package/node/index.cjs +1 -1
  6. package/node/index.mjs +1 -1
  7. package/package.json +3 -3
  8. package/server/index.cjs +16 -90
  9. package/server/index.mjs +16 -90
  10. package/types/_tests_/utils.d.ts +48 -35
  11. package/types/cli/abort-signal-any.d.ts +3 -1
  12. package/types/cli/auth/auth-utils.d.ts +3 -1
  13. package/types/cli/auth/auth.d.ts +5 -1
  14. package/types/cli/backup.d.ts +114 -60
  15. package/types/cli/builder-add/interface.d.ts +21 -4
  16. package/types/cli/code-file-utils.d.ts +11 -8
  17. package/types/cli/code.d.ts +13 -3
  18. package/types/cli/codegen.d.ts +9 -1
  19. package/types/cli/credentials.d.ts +61 -45
  20. package/types/cli/detectors/nextjs.d.ts +4 -1
  21. package/types/cli/detectors/svelte.d.ts +4 -1
  22. package/types/cli/detectors/vue.d.ts +4 -1
  23. package/types/cli/doctor/doctor.d.ts +3 -0
  24. package/types/cli/download.d.ts +9 -4
  25. package/types/cli/dsi-mcp.d.ts +4 -1
  26. package/types/cli/figma-publish.d.ts +34 -17
  27. package/types/cli/figma-utils.d.ts +51 -21
  28. package/types/cli/figma.d.ts +9 -2
  29. package/types/cli/generate.d.ts +14 -11
  30. package/types/cli/incremental-tsc.d.ts +19 -7
  31. package/types/cli/index.d.ts +154 -154
  32. package/types/cli/launch/config.d.ts +13 -3
  33. package/types/cli/launch/dry-run-backup.d.ts +14 -7
  34. package/types/cli/launch/errors.d.ts +7 -2
  35. package/types/cli/launch/grafana.d.ts +5 -1
  36. package/types/cli/launch/helpers.d.ts +19 -10
  37. package/types/cli/launch/machine-health.d.ts +8 -3
  38. package/types/cli/launch/proxy.d.ts +11 -4
  39. package/types/cli/launch/server.d.ts +19 -12
  40. package/types/cli/launch/vscode-tunnel-manager.d.ts +77 -68
  41. package/types/cli/launch.d.ts +109 -106
  42. package/types/cli/prettier.d.ts +9 -2
  43. package/types/cli/repo-connect/env-collector.d.ts +16 -11
  44. package/types/cli/repo-connect/file-collector.d.ts +22 -15
  45. package/types/cli/repo-connect/git-detector.d.ts +13 -11
  46. package/types/cli/repo-connect/install-runner.d.ts +8 -5
  47. package/types/cli/repo-connect/package-detector.d.ts +12 -8
  48. package/types/cli/repo-connect/repo-connect.d.ts +4 -1
  49. package/types/cli/repo-indexing/component-discovery.d.ts +30 -17
  50. package/types/cli/repo-indexing/icons.d.ts +36 -24
  51. package/types/cli/repo-indexing/installation.d.ts +22 -14
  52. package/types/cli/repo-indexing/repo-indexing-utils.d.ts +138 -79
  53. package/types/cli/repo-indexing/repo-indexing.d.ts +37 -17
  54. package/types/cli/repo-indexing/repo-indexing.mock.d.ts +3 -3
  55. package/types/cli/repo-indexing/tokens.d.ts +44 -25
  56. package/types/cli/repo-metrics-utils.d.ts +13 -5
  57. package/types/cli/repo-metrics.d.ts +4 -1
  58. package/types/cli/report/figma-report.d.ts +63 -36
  59. package/types/cli/server-ws.d.ts +40 -32
  60. package/types/cli/spinner.d.ts +4 -4
  61. package/types/cli/track.d.ts +4 -1
  62. package/types/cli/utils/agent-discovery.d.ts +10 -5
  63. package/types/cli/utils/agent-parser.d.ts +0 -6
  64. package/types/cli/utils/codegen-utils.d.ts +10 -1
  65. package/types/cli/utils/component-group-mdx-prompt.d.ts +2 -1
  66. package/types/cli/utils/discovery-test-utils.d.ts +3 -1
  67. package/types/cli/utils/env-capture.d.ts +21 -15
  68. package/types/cli/utils/env-substitution.d.ts +4 -1
  69. package/types/cli/utils/feature-flags.d.ts +3 -1
  70. package/types/cli/utils/file-overrides-manager.d.ts +39 -23
  71. package/types/cli/utils/git.d.ts +28 -16
  72. package/types/cli/utils/hosts-file-manager.d.ts +7 -4
  73. package/types/cli/utils/lock-file.d.ts +10 -7
  74. package/types/cli/utils/parseGitDiff.d.ts +4 -1
  75. package/types/cli/utils/process-tracker.d.ts +85 -51
  76. package/types/cli/utils/rules-discovery.d.ts +10 -5
  77. package/types/cli/utils/rules-parser.d.ts +5 -1
  78. package/types/cli/utils/terminal-buffer.d.ts +23 -23
  79. package/types/cli/utils/workspace-path-resolver.d.ts +23 -16
  80. package/types/cli/utils/yaml-frontmatter.d.ts +10 -6
  81. package/types/client/client-api.d.ts +42 -10
  82. package/types/client/edit-button/document-listeners.d.ts +3 -1
  83. package/types/client/edit-button/index.d.ts +6 -6
  84. package/types/client/menu/index.d.ts +3 -3
  85. package/types/client/menu/pages/component-detail.d.ts +8 -2
  86. package/types/client/menu/pages/component-input.d.ts +5 -1
  87. package/types/client/menu/pages/component-list.d.ts +4 -1
  88. package/types/client/menu/toggle/menu-toggle.d.ts +4 -1
  89. package/types/client/setup-ui/overview.d.ts +2 -2
  90. package/types/client/tracking.d.ts +11 -11
  91. package/types/client/utils.d.ts +5 -3
  92. package/types/common/ast/app-dependencies.d.ts +8 -2
  93. package/types/common/ast/component-info.d.ts +26 -6
  94. package/types/common/ast/component-input-types.d.ts +28 -9
  95. package/types/common/ast/component-registry.d.ts +23 -8
  96. package/types/common/ast/convert-values.d.ts +40 -8
  97. package/types/common/ast/ensure-array-statement.d.ts +7 -3
  98. package/types/common/ast/ensure-comments.d.ts +5 -1
  99. package/types/common/ast/ensure-imports.d.ts +10 -5
  100. package/types/common/ast/exported-statements.d.ts +8 -4
  101. package/types/common/ast/imported-statements.d.ts +5 -1
  102. package/types/common/ast/normalize-statements.d.ts +12 -3
  103. package/types/common/ast/remove-unused-imports.d.ts +4 -1
  104. package/types/common/ast/transform.d.ts +13 -3
  105. package/types/common/ast/utils.d.ts +42 -19
  106. package/types/common/builder/builder-api.d.ts +32 -23
  107. package/types/common/builder/builder-sdks.d.ts +10 -8
  108. package/types/common/builder/content-generation.d.ts +10 -7
  109. package/types/common/builder/content-ids.d.ts +2 -1
  110. package/types/common/cache.d.ts +4 -1
  111. package/types/common/constants.d.ts +2 -1
  112. package/types/common/dotenv.d.ts +24 -5
  113. package/types/common/errors.d.ts +50 -22
  114. package/types/common/fs.d.ts +17 -4
  115. package/types/common/interactive-select-files.d.ts +16 -2
  116. package/types/common/mem-sys.d.ts +7 -5
  117. package/types/common/node-request.d.ts +4 -4
  118. package/types/common/path.d.ts +1 -3
  119. package/types/common/test-utils.d.ts +21 -7
  120. package/types/common/typescript.d.ts +26 -7
  121. package/types/common/utils.d.ts +36 -8
  122. package/types/core/adapters/angular/angular-api-key.d.ts +29 -6
  123. package/types/core/adapters/angular/angular-app-module-imports.d.ts +12 -2
  124. package/types/core/adapters/angular/angular-app-routes-update.d.ts +6 -1
  125. package/types/core/adapters/angular/angular-components.d.ts +40 -12
  126. package/types/core/adapters/angular/angular-ensure-builder-setup.d.ts +9 -3
  127. package/types/core/adapters/angular/angular-ensure-config-plugin.d.ts +16 -4
  128. package/types/core/adapters/angular/angular-fix-tsconfig.d.ts +3 -1
  129. package/types/core/adapters/angular/angular-registry-parse.d.ts +22 -10
  130. package/types/core/adapters/angular/angular-registry.d.ts +15 -2
  131. package/types/core/adapters/angular/angular-test-utils.d.ts +8 -4
  132. package/types/core/adapters/angular/index.d.ts +20 -12
  133. package/types/core/adapters/angular/types.d.ts +5 -5
  134. package/types/core/adapters/next/index.d.ts +26 -18
  135. package/types/core/adapters/next/next-api-key.d.ts +4 -1
  136. package/types/core/adapters/next/next-component-info.d.ts +9 -2
  137. package/types/core/adapters/next/next-components.d.ts +4 -1
  138. package/types/core/adapters/next/next-ensure-builder-setup.d.ts +6 -2
  139. package/types/core/adapters/next/next-ensure-config-plugin.d.ts +5 -1
  140. package/types/core/adapters/next/next-registry-parse.d.ts +21 -8
  141. package/types/core/adapters/next/next-registry.d.ts +15 -2
  142. package/types/core/adapters/next/next-test-utils.d.ts +21 -11
  143. package/types/core/adapters/qwik-city/index.d.ts +14 -6
  144. package/types/core/adapters/qwik-city/qwik-api-key.d.ts +4 -1
  145. package/types/core/adapters/qwik-city/qwik-component-source-inputs.d.ts +4 -1
  146. package/types/core/adapters/qwik-city/qwik-components.d.ts +23 -8
  147. package/types/core/adapters/qwik-city/qwik-ensure-builder-setup.d.ts +6 -2
  148. package/types/core/adapters/qwik-city/qwik-ensure-config-plugin.d.ts +5 -1
  149. package/types/core/adapters/qwik-city/qwik-registry-parse.d.ts +22 -10
  150. package/types/core/adapters/qwik-city/qwik-registry.d.ts +15 -2
  151. package/types/core/adapters/qwik-city/qwik-test-utils.d.ts +8 -4
  152. package/types/core/adapters/qwik-city/qwik-ts-program.d.ts +3 -1
  153. package/types/core/adapters/react/index.d.ts +19 -11
  154. package/types/core/adapters/react/react-api-key.d.ts +4 -1
  155. package/types/core/adapters/react/react-builder-sdk-setup.d.ts +3 -1
  156. package/types/core/adapters/react/react-component-info.d.ts +9 -2
  157. package/types/core/adapters/react/react-components.d.ts +37 -11
  158. package/types/core/adapters/react/react-ensure-builder-setup.d.ts +6 -2
  159. package/types/core/adapters/react/react-registry-parse.d.ts +21 -8
  160. package/types/core/adapters/react/react-registry.d.ts +15 -2
  161. package/types/core/adapters/react/react-test-utils.d.ts +11 -5
  162. package/types/core/adapters/react/react-ts-program.d.ts +3 -1
  163. package/types/core/adapters/remix/index.d.ts +19 -11
  164. package/types/core/adapters/remix/remix-api-key.d.ts +4 -1
  165. package/types/core/adapters/remix/remix-components.d.ts +4 -1
  166. package/types/core/adapters/remix/remix-ensure-builder-setup.d.ts +9 -3
  167. package/types/core/adapters/remix/remix-ensure-config-plugin.d.ts +5 -1
  168. package/types/core/adapters/remix/remix-registry-parse.d.ts +22 -10
  169. package/types/core/adapters/remix/remix-registry.d.ts +15 -2
  170. package/types/core/adapters/remix/remix-test-utils.d.ts +11 -5
  171. package/types/core/adapters/vite/vite-ensure-config-plugin.d.ts +12 -2
  172. package/types/core/adapters/vue/index.d.ts +20 -12
  173. package/types/core/adapters/vue/vue-api-key.d.ts +4 -1
  174. package/types/core/adapters/vue/vue-components.d.ts +10 -2
  175. package/types/core/adapters/vue/vue-ensure-builder-setup.d.ts +7 -3
  176. package/types/core/adapters/vue/vue-registry-parse.d.ts +19 -9
  177. package/types/core/adapters/vue/vue-registry.d.ts +6 -3
  178. package/types/core/adapters/webpack/webpack-config-helpers.d.ts +8 -3
  179. package/types/core/adapters/webpack/webpack-ensure-config-plugin.d.ts +5 -1
  180. package/types/core/create-dev-tools.d.ts +4 -1
  181. package/types/core/detect-frameworks.d.ts +7 -2
  182. package/types/core/ensure-config-plugin.d.ts +6 -2
  183. package/types/core/find-dependencies.d.ts +6 -3
  184. package/types/core/import-export-registry.d.ts +9 -2
  185. package/types/core/index.d.ts +18 -3
  186. package/types/figma/index.d.ts +95 -64
  187. package/types/node/node-sys.d.ts +13 -6
  188. package/types/remix/index.d.ts +5 -3
  189. package/types/server/auth.d.ts +4 -1
  190. package/types/server/builder-connect.d.ts +21 -6
  191. package/types/server/client-script.d.ts +6 -2
  192. package/types/server/create-dev-tools-server.d.ts +3 -1
  193. package/types/server/dev-tools-api.d.ts +4 -1
  194. package/types/server/dev-tools-http-server.d.ts +3 -1
  195. package/types/server/index.d.ts +28 -1
  196. package/types/server/request-handler.d.ts +6 -1
  197. package/types/tsconfig.tsbuildinfo +1 -1
  198. package/types/types/codegen-server.d.ts +1 -1
  199. package/types/types/connection-tracker.d.ts +34 -34
  200. package/types/types/proxy-middleware.d.ts +25 -15
  201. package/types/types/websocket-types.d.ts +9 -7
  202. package/types/types.d.ts +387 -358
  203. package/types/vite/main.d.ts +1 -1
  204. package/types/webpack/main.d.ts +5 -5
  205. package/vendors/darwin-arm64/complete/rg.bash +783 -0
  206. package/vendors/darwin-arm64/complete/rg.fish +175 -0
  207. package/vendors/darwin-arm64/doc/rg.1 +2178 -0
  208. package/vendors/darwin-arm64/rg +0 -0
  209. package/vendors/darwin-x64/complete/rg.bash +783 -0
  210. package/vendors/darwin-x64/complete/rg.fish +175 -0
  211. package/vendors/darwin-x64/doc/rg.1 +2178 -0
  212. package/vendors/darwin-x64/rg +0 -0
  213. package/vendors/linux-arm64/complete/rg.bash +783 -0
  214. package/vendors/linux-arm64/complete/rg.fish +175 -0
  215. package/vendors/linux-arm64/doc/rg.1 +2178 -0
  216. package/vendors/linux-arm64/rg +0 -0
  217. package/vendors/linux-x64/complete/rg.bash +783 -0
  218. package/vendors/linux-x64/complete/rg.fish +175 -0
  219. package/vendors/linux-x64/doc/rg.1 +2178 -0
  220. package/vendors/linux-x64/rg +0 -0
  221. package/vendors/win32-x64/rg.exe +0 -0
  222. package/types/cli/indexing.d.ts +0 -5
  223. package/types/cli/launch/github.d.ts +0 -3
  224. package/types/cli/repo-indexing.d.ts +0 -17
  225. package/types/cli/repo-indexing.mock.d.ts +0 -5
  226. package/types/cli/utils/dev-server-url-parser.d.ts +0 -12
  227. package/types/cli/utils/dev-server-url-parser.test.d.ts +0 -1
  228. package/types/cli/utils/repo-indexing-group-prompts.d.ts +0 -1
@@ -1,4 +1,11 @@
1
- import { ChildProcess, type ChildProcessWithoutNullStreams, type ChildProcessByStdio, type SpawnOptions, type StdioPipe, type StdioNull } from "child_process";
1
+ import {
2
+ ChildProcess,
3
+ type ChildProcessWithoutNullStreams,
4
+ type ChildProcessByStdio,
5
+ type SpawnOptions,
6
+ type StdioPipe,
7
+ type StdioNull,
8
+ } from "child_process";
2
9
  import type { Readable } from "stream";
3
10
  import type { DevToolsSys } from "../../types";
4
11
  import type { DevCommandProcess } from "../launch/dev-server-orchestrator";
@@ -7,65 +14,81 @@ import type { DevCommandProcess } from "../launch/dev-server-orchestrator";
7
14
  * and ensures they are killed when the main process exits
8
15
  */
9
16
  declare class ProcessTracker {
10
- private processes;
11
- private cleanupHandlersRegistered;
12
- constructor();
13
- /**
14
- * Register a spawned process for tracking and cleanup
15
- */
16
- track(childProcess: ChildProcess): void;
17
- /**
18
- * Untrack a process (useful if you're managing it manually)
19
- */
20
- untrack(childProcess: ChildProcess): void;
21
- /**
22
- * Kill all tracked processes
23
- * @param sys - DevToolsSys for logging and Sentry integration
24
- */
25
- killAll(sys?: DevToolsSys): Promise<void>;
26
- /**
27
- * Register cleanup handlers for various exit signals
28
- */
29
- private registerCleanupHandlers;
30
- /**
31
- * Get the number of tracked processes
32
- */
33
- get count(): number;
17
+ private processes;
18
+ private cleanupHandlersRegistered;
19
+ constructor();
20
+ /**
21
+ * Register a spawned process for tracking and cleanup
22
+ */
23
+ track(childProcess: ChildProcess): void;
24
+ /**
25
+ * Untrack a process (useful if you're managing it manually)
26
+ */
27
+ untrack(childProcess: ChildProcess): void;
28
+ /**
29
+ * Kill all tracked processes
30
+ * @param sys - DevToolsSys for logging and Sentry integration
31
+ */
32
+ killAll(sys?: DevToolsSys): Promise<void>;
33
+ /**
34
+ * Register cleanup handlers for various exit signals
35
+ */
36
+ private registerCleanupHandlers;
37
+ /**
38
+ * Get the number of tracked processes
39
+ */
40
+ get count(): number;
34
41
  }
35
42
  export declare const processTracker: ProcessTracker;
36
43
  /**
37
44
  * Options for trackedSpawn function
38
45
  */
39
46
  export interface TrackedSpawnOptions {
40
- /** The command to run */
41
- command: string;
42
- /** Arguments for the command */
43
- args?: readonly string[];
44
- /** Spawn options */
45
- options?: SpawnOptions;
47
+ /** The command to run */
48
+ command: string;
49
+ /** Arguments for the command */
50
+ args?: readonly string[];
51
+ /** Spawn options */
52
+ options?: SpawnOptions;
46
53
  }
47
54
  /**
48
55
  * Wrapper around child_process.spawn that automatically tracks the spawned process
49
56
  * and ensures it gets killed when the main process exits
50
57
  */
51
- export declare function trackedSpawn(config: TrackedSpawnOptions & {
52
- options: SpawnOptions & {
53
- stdio: "pipe" | [StdioPipe, StdioPipe, StdioPipe];
54
- };
55
- }): ChildProcessWithoutNullStreams;
56
- export declare function trackedSpawn(config: TrackedSpawnOptions & {
57
- options: SpawnOptions & {
58
- stdio: [StdioNull | "ignore", StdioPipe, StdioPipe];
59
- };
60
- }): ChildProcessByStdio<null, Readable, Readable>;
58
+ export declare function trackedSpawn(
59
+ config: TrackedSpawnOptions & {
60
+ options: SpawnOptions & {
61
+ stdio: "pipe" | [StdioPipe, StdioPipe, StdioPipe];
62
+ };
63
+ },
64
+ ): ChildProcessWithoutNullStreams;
65
+ export declare function trackedSpawn(
66
+ config: TrackedSpawnOptions & {
67
+ options: SpawnOptions & {
68
+ stdio: [StdioNull | "ignore", StdioPipe, StdioPipe];
69
+ };
70
+ },
71
+ ): ChildProcessByStdio<null, Readable, Readable>;
61
72
  export declare function trackedSpawn(config: TrackedSpawnOptions): ChildProcess;
62
- export declare function safeSpawn(shell: string, command: string, options: SpawnOptions & {
63
- stdio: "pipe" | [StdioPipe, StdioPipe, StdioPipe];
64
- }): ChildProcessWithoutNullStreams;
65
- export declare function safeSpawn(shell: string, command: string, options: SpawnOptions & {
66
- stdio: [StdioNull | "ignore", StdioPipe, StdioPipe];
67
- }): ChildProcessByStdio<null, Readable, Readable>;
68
- export declare function safeSpawn(shell: string, command: string, options: SpawnOptions): ChildProcess;
73
+ export declare function safeSpawn(
74
+ shell: string,
75
+ command: string,
76
+ options: SpawnOptions & {
77
+ stdio: "pipe" | [StdioPipe, StdioPipe, StdioPipe];
78
+ },
79
+ ): ChildProcessWithoutNullStreams;
80
+ export declare function safeSpawn(
81
+ shell: string,
82
+ command: string,
83
+ options: SpawnOptions & {
84
+ stdio: [StdioNull | "ignore", StdioPipe, StdioPipe];
85
+ },
86
+ ): ChildProcessByStdio<null, Readable, Readable>;
87
+ export declare function safeSpawn(
88
+ shell: string,
89
+ command: string,
90
+ options: SpawnOptions,
91
+ ): ChildProcess;
69
92
  export declare const getTempFolder: () => string;
70
93
  export declare const cleanupTempFolder: () => boolean;
71
94
  /**
@@ -75,13 +98,19 @@ export declare const isMultiLineCommand: (command: string) => boolean;
75
98
  /**
76
99
  * Creates a temporary script file for multi-line commands
77
100
  */
78
- export declare const createTempScript: (command: string, shell: string) => string;
101
+ export declare const createTempScript: (
102
+ command: string,
103
+ shell: string,
104
+ ) => string;
79
105
  export declare const getTempScriptPath: (extension: string) => string;
80
106
  /**
81
107
  * Cleans up a temporary script file
82
108
  */
83
109
  export declare const cleanupTempScript: (scriptPath: string) => void;
84
- export declare const getCommandWithShellArgs: (command: string, shell: string) => string[];
110
+ export declare const getCommandWithShellArgs: (
111
+ command: string,
112
+ shell: string,
113
+ ) => string[];
85
114
  /**
86
115
  * Checks if a process with the given PID is still running.
87
116
  * Uses process.kill(pid, 0) which sends a signal 0 to check process existence.
@@ -89,5 +118,10 @@ export declare const getCommandWithShellArgs: (command: string, shell: string) =
89
118
  * @returns true if the process is alive, false otherwise
90
119
  */
91
120
  export declare function isProcessAlive(pid: number): boolean;
92
- export declare function killProcess(sys: DevToolsSys | undefined, procOrPid: ChildProcess | DevCommandProcess | number | undefined, abortSignal?: AbortSignal, timeout?: number): Promise<Error | null>;
121
+ export declare function killProcess(
122
+ sys: DevToolsSys | undefined,
123
+ procOrPid: ChildProcess | DevCommandProcess | number | undefined,
124
+ abortSignal?: AbortSignal,
125
+ timeout?: number,
126
+ ): Promise<Error | null>;
93
127
  export {};
@@ -20,9 +20,14 @@ import type { CustomInstruction } from "$/ai-utils";
20
20
  * @param rootDir - Root directory to stop search
21
21
  * @returns Array of discovered custom instructions (both rules and skills)
22
22
  */
23
- export declare function getCustomInstructions({ sys, projectDir, currentDir, rootDir, }: {
24
- sys: DevToolsSys;
25
- projectDir: string;
26
- currentDir: string;
27
- rootDir: string;
23
+ export declare function getCustomInstructions({
24
+ sys,
25
+ projectDir,
26
+ currentDir,
27
+ rootDir,
28
+ }: {
29
+ sys: DevToolsSys;
30
+ projectDir: string;
31
+ currentDir: string;
32
+ rootDir: string;
28
33
  }): Promise<CustomInstruction[]>;
@@ -14,4 +14,8 @@ import type { CustomInstruction } from "$/ai-utils";
14
14
  * @param hashFunction - Optional hash function for generating unique IDs
15
15
  * @returns Parsed CustomInstruction or null
16
16
  */
17
- export declare function parseCustomInstructionFile(fileContent: string, filePath: string, hashFunction?: (content: string) => string): CustomInstruction | null;
17
+ export declare function parseCustomInstructionFile(
18
+ fileContent: string,
19
+ filePath: string,
20
+ hashFunction?: (content: string) => string,
21
+ ): CustomInstruction | null;
@@ -3,27 +3,27 @@
3
3
  * to properly represent what would be shown in a real terminal
4
4
  */
5
5
  export declare class TerminalBuffer {
6
- private lines;
7
- private currentLine;
8
- private currentColumn;
9
- private maxLines;
10
- private maxColumns;
11
- private chunks;
12
- constructor(maxLines?: number, maxColumns?: number);
13
- write(data: string): void;
14
- private ensureLineExists;
15
- getWrite(): string;
16
- getContent(): string;
17
- clear(): void;
18
- /**
19
- * Get current cursor position for testing/debugging
20
- */
21
- getCursorPosition(): {
22
- line: number;
23
- column: number;
24
- };
25
- /**
26
- * Get the current number of lines for testing/debugging
27
- */
28
- getLineCount(): number;
6
+ private lines;
7
+ private currentLine;
8
+ private currentColumn;
9
+ private maxLines;
10
+ private maxColumns;
11
+ private chunks;
12
+ constructor(maxLines?: number, maxColumns?: number);
13
+ write(data: string): void;
14
+ private ensureLineExists;
15
+ getWrite(): string;
16
+ getContent(): string;
17
+ clear(): void;
18
+ /**
19
+ * Get current cursor position for testing/debugging
20
+ */
21
+ getCursorPosition(): {
22
+ line: number;
23
+ column: number;
24
+ };
25
+ /**
26
+ * Get the current number of lines for testing/debugging
27
+ */
28
+ getLineCount(): number;
29
29
  }
@@ -1,16 +1,19 @@
1
- import type { WorkspaceFolder, WorkspaceConfiguration } from "@builder.io/ai-utils";
1
+ import type {
2
+ WorkspaceFolder,
3
+ WorkspaceConfiguration,
4
+ } from "@builder.io/ai-utils";
2
5
  import type { DevToolsSys } from "../../types";
3
6
  export interface ResolveWorkspacePathOptions {
4
- filePath: string;
5
- forceWorkspace?: boolean;
6
- workspace?: WorkspaceConfiguration;
7
- workingDirectory: string;
8
- sys: DevToolsSys;
9
- canCollapseWorkspace?: boolean;
7
+ filePath: string;
8
+ forceWorkspace?: boolean;
9
+ workspace?: WorkspaceConfiguration;
10
+ workingDirectory: string;
11
+ sys: DevToolsSys;
12
+ canCollapseWorkspace?: boolean;
10
13
  }
11
14
  export interface ResolveWorkspacePathResult {
12
- resolvedPath: string;
13
- workspaceFolder?: WorkspaceFolder;
15
+ resolvedPath: string;
16
+ workspaceFolder?: WorkspaceFolder;
14
17
  }
15
18
  /**
16
19
  * Resolves a workspace file path to its actual file system path.
@@ -49,13 +52,15 @@ export interface ResolveWorkspacePathResult {
49
52
  * // }
50
53
  * ```
51
54
  */
52
- export declare function resolveWorkspacePath(options: ResolveWorkspacePathOptions): ResolveWorkspacePathResult;
55
+ export declare function resolveWorkspacePath(
56
+ options: ResolveWorkspacePathOptions,
57
+ ): ResolveWorkspacePathResult;
53
58
  export interface AbsolutePathToWorkspaceUrlOptions {
54
- absolutePath: string;
55
- workspace?: WorkspaceConfiguration;
56
- workingDirectory: string;
57
- sys: DevToolsSys;
58
- canCollapseWorkspace?: boolean;
59
+ absolutePath: string;
60
+ workspace?: WorkspaceConfiguration;
61
+ workingDirectory: string;
62
+ sys: DevToolsSys;
63
+ canCollapseWorkspace?: boolean;
59
64
  }
60
65
  /**
61
66
  * Converts an absolute file system path to a workspace URL if possible.
@@ -89,4 +94,6 @@ export interface AbsolutePathToWorkspaceUrlOptions {
89
94
  * // Returns: 'frontend/src/components/Button.tsx'
90
95
  * ```
91
96
  */
92
- export declare function absolutePathToWorkspaceUrl(options: AbsolutePathToWorkspaceUrlOptions): string | undefined;
97
+ export declare function absolutePathToWorkspaceUrl(
98
+ options: AbsolutePathToWorkspaceUrlOptions,
99
+ ): string | undefined;
@@ -3,8 +3,8 @@
3
3
  * Supports both simple key-value pairs and arrays
4
4
  */
5
5
  export interface YamlFrontmatterResult<T = Record<string, any>> {
6
- frontmatter: T;
7
- body: string;
6
+ frontmatter: T;
7
+ body: string;
8
8
  }
9
9
  /**
10
10
  * Checks if content has YAML frontmatter
@@ -14,19 +14,23 @@ export declare function hasYamlFrontmatter(content: string): boolean;
14
14
  * Parses YAML frontmatter from a string
15
15
  * Handles simple YAML: key-value pairs, arrays, and comments
16
16
  */
17
- export declare function parseYamlFrontmatter(yamlContent: string): Record<string, any>;
17
+ export declare function parseYamlFrontmatter(
18
+ yamlContent: string,
19
+ ): Record<string, any>;
18
20
  /**
19
21
  * Extracts YAML frontmatter and body from Markdown content
20
22
  * @param content - The raw Markdown content with frontmatter
21
23
  * @returns Object with frontmatter and body, or null if no frontmatter found
22
24
  */
23
25
  export declare function extractYamlFrontmatter(content: string): {
24
- frontmatterContent: string;
25
- body: string;
26
+ frontmatterContent: string;
27
+ body: string;
26
28
  } | null;
27
29
  /**
28
30
  * Parse Markdown file with YAML frontmatter
29
31
  * @param content - The raw file content
30
32
  * @returns Parsed frontmatter and body
31
33
  */
32
- export declare function parseMarkdownWithYaml<T = Record<string, any>>(content: string): YamlFrontmatterResult<T>;
34
+ export declare function parseMarkdownWithYaml<T = Record<string, any>>(
35
+ content: string,
36
+ ): YamlFrontmatterResult<T>;
@@ -1,12 +1,44 @@
1
- import type { ComponentRegistry, ConnectedBuilder, GetRegistryOptions, LaunchEditorFile, LoadComponentOptions, LocalConfig, RegisterComponentOptions, SetComponentInfoOptions, SetComponentInputOptions, UnregisterComponentOptions, ValidatedBuilder } from "../types";
2
- export declare const apiConnectBuilder: (publicApiKey: string, privateAuthKey: string, kind: string | null) => Promise<ConnectedBuilder>;
1
+ import type {
2
+ ComponentRegistry,
3
+ ConnectedBuilder,
4
+ GetRegistryOptions,
5
+ LaunchEditorFile,
6
+ LoadComponentOptions,
7
+ LocalConfig,
8
+ RegisterComponentOptions,
9
+ SetComponentInfoOptions,
10
+ SetComponentInputOptions,
11
+ UnregisterComponentOptions,
12
+ ValidatedBuilder,
13
+ } from "../types";
14
+ export declare const apiConnectBuilder: (
15
+ publicApiKey: string,
16
+ privateAuthKey: string,
17
+ kind: string | null,
18
+ ) => Promise<ConnectedBuilder>;
3
19
  export declare const apiValidateBuilder: () => Promise<ValidatedBuilder>;
4
- export declare const apiLaunchEditor: (file: LaunchEditorFile) => Promise<unknown>;
5
- export declare const apiRegistry: (opts?: GetRegistryOptions) => Promise<ComponentRegistry>;
6
- export declare const apiLoadComponent: (opts: LoadComponentOptions) => Promise<ComponentRegistry>;
7
- export declare const apiRegisterComponent: (opts: RegisterComponentOptions) => Promise<ComponentRegistry>;
8
- export declare const apiSetComponentInfo: (opts: SetComponentInfoOptions) => Promise<ComponentRegistry>;
9
- export declare const apiSetComponentInput: (opts: SetComponentInputOptions) => Promise<ComponentRegistry>;
10
- export declare const apiUnregisterComponent: (opts: UnregisterComponentOptions) => Promise<ComponentRegistry>;
11
- export declare const apiDevToolsEnabled: (enabled: boolean) => Promise<ComponentRegistry>;
20
+ export declare const apiLaunchEditor: (
21
+ file: LaunchEditorFile,
22
+ ) => Promise<unknown>;
23
+ export declare const apiRegistry: (
24
+ opts?: GetRegistryOptions,
25
+ ) => Promise<ComponentRegistry>;
26
+ export declare const apiLoadComponent: (
27
+ opts: LoadComponentOptions,
28
+ ) => Promise<ComponentRegistry>;
29
+ export declare const apiRegisterComponent: (
30
+ opts: RegisterComponentOptions,
31
+ ) => Promise<ComponentRegistry>;
32
+ export declare const apiSetComponentInfo: (
33
+ opts: SetComponentInfoOptions,
34
+ ) => Promise<ComponentRegistry>;
35
+ export declare const apiSetComponentInput: (
36
+ opts: SetComponentInputOptions,
37
+ ) => Promise<ComponentRegistry>;
38
+ export declare const apiUnregisterComponent: (
39
+ opts: UnregisterComponentOptions,
40
+ ) => Promise<ComponentRegistry>;
41
+ export declare const apiDevToolsEnabled: (
42
+ enabled: boolean,
43
+ ) => Promise<ComponentRegistry>;
12
44
  export declare const apiLocalConfig: () => Promise<LocalConfig>;
@@ -1,2 +1,4 @@
1
1
  import type { BuilderDevToolsEditButton } from ".";
2
- export declare function initDocumentListeners(editButton: BuilderDevToolsEditButton): void;
2
+ export declare function initDocumentListeners(
3
+ editButton: BuilderDevToolsEditButton,
4
+ ): void;
@@ -1,8 +1,8 @@
1
1
  export declare class BuilderDevToolsEditButton extends HTMLElement {
2
- openInBuilder: HTMLAnchorElement | null;
3
- block: HTMLElement | null;
4
- constructor();
5
- connectedCallback(): void;
6
- show(contentElm: HTMLElement, blockElm: HTMLElement): string | null;
7
- hide(): void;
2
+ openInBuilder: HTMLAnchorElement | null;
3
+ block: HTMLElement | null;
4
+ constructor();
5
+ connectedCallback(): void;
6
+ show(contentElm: HTMLElement, blockElm: HTMLElement): string | null;
7
+ hide(): void;
8
8
  }
@@ -1,5 +1,5 @@
1
1
  export declare class BuilderDevToolsMenu extends HTMLElement {
2
- constructor();
3
- connectedCallback(): void;
4
- highlightOpener(): void;
2
+ constructor();
3
+ connectedCallback(): void;
4
+ highlightOpener(): void;
5
5
  }
@@ -1,4 +1,10 @@
1
1
  import type { ComponentInfo } from "../../../types";
2
2
  export declare function initComponentDetailSection(shadow: ShadowRoot): void;
3
- export declare function loadComponentDetail(shadow: ShadowRoot, opt: "load" | "update"): Promise<void>;
4
- export declare function renderComponentDetail(shadow: ShadowRoot, cmpId: string): ComponentInfo | null;
3
+ export declare function loadComponentDetail(
4
+ shadow: ShadowRoot,
5
+ opt: "load" | "update",
6
+ ): Promise<void>;
7
+ export declare function renderComponentDetail(
8
+ shadow: ShadowRoot,
9
+ cmpId: string,
10
+ ): ComponentInfo | null;
@@ -1,3 +1,7 @@
1
1
  import type { ComponentInput } from "../../../types";
2
2
  export declare function initComponentInputSection(shadow: ShadowRoot): void;
3
- export declare function renderComponentInput(shadow: ShadowRoot, cmpId: string, propName: string): ComponentInput | null;
3
+ export declare function renderComponentInput(
4
+ shadow: ShadowRoot,
5
+ cmpId: string,
6
+ propName: string,
7
+ ): ComponentInput | null;
@@ -1,4 +1,7 @@
1
1
  import type { ComponentInfo } from "../../../types";
2
2
  export declare function initComponentListSection(shadow: ShadowRoot): void;
3
3
  export declare function loadComponentsSection(shadow: ShadowRoot): void;
4
- export declare function renderComponentList(shadow: ShadowRoot, filteredComponents?: ComponentInfo[]): void;
4
+ export declare function renderComponentList(
5
+ shadow: ShadowRoot,
6
+ filteredComponents?: ComponentInfo[],
7
+ ): void;
@@ -1,2 +1,5 @@
1
1
  export declare const initMenuToggle: (shadow: ShadowRoot) => void;
2
- export declare const openMenu: (shadow: ShadowRoot, openDevToolsMenu: boolean) => void;
2
+ export declare const openMenu: (
3
+ shadow: ShadowRoot,
4
+ openDevToolsMenu: boolean,
5
+ ) => void;
@@ -1,4 +1,4 @@
1
1
  export declare class BuilderOverviewStep extends HTMLElement {
2
- constructor();
3
- connectedCallback(): void;
2
+ constructor();
3
+ connectedCallback(): void;
4
4
  }
@@ -6,17 +6,17 @@ export declare const getTracking: () => ClientTracking;
6
6
  export declare const hasCTA: (ctaName: string) => boolean;
7
7
  export declare const setCTA: (ctaName: string) => ClientTracking;
8
8
  interface ClientTracking {
9
- /**
10
- * first time visit timestamp
11
- */
12
- firstVisitTs: number;
13
- /**
14
- * Name of the call to actions and timestamps when they happened
15
- */
16
- ctas: {
17
- [ctaName: string]: number;
18
- };
19
- builderUserId: string;
9
+ /**
10
+ * first time visit timestamp
11
+ */
12
+ firstVisitTs: number;
13
+ /**
14
+ * Name of the call to actions and timestamps when they happened
15
+ */
16
+ ctas: {
17
+ [ctaName: string]: number;
18
+ };
19
+ builderUserId: string;
20
20
  }
21
21
  export type TriggerName = "init" | "menuOpen" | "menuClose" | "registryUpdate";
22
22
  export {};
@@ -6,9 +6,11 @@ export declare const closeToasts: (shadow: ShadowRoot) => void;
6
6
  export declare const isEditEnabled: () => boolean;
7
7
  export declare const enableEdit: (enable: boolean) => void;
8
8
  export declare const getEditorUrl: () => string;
9
- export declare const getBuilderContentUrl: (contentId?: string | null, blockId?: string | null) => string;
9
+ export declare const getBuilderContentUrl: (
10
+ contentId?: string | null,
11
+ blockId?: string | null,
12
+ ) => string;
10
13
  export declare const DEV_TOOLS_URL = "__DEV_TOOLS_URL__";
11
14
  export declare const APP_STATE: AppState;
12
15
  export declare const updateAppState: (registry: ComponentRegistry) => void;
13
- export interface AppState extends ComponentRegistry {
14
- }
16
+ export interface AppState extends ComponentRegistry {}
@@ -1,4 +1,10 @@
1
1
  import type { AppDependency, ComponentInfo, DevToolsSys } from "../../types";
2
2
  import type ts from "typescript";
3
- export declare function getSourceDependencies(sys: DevToolsSys, typeChecker: ts.TypeChecker | null, fnNode: ts.Node): AppDependency[] | undefined;
4
- export declare function getAppDependencies(cmps: ComponentInfo[]): AppDependency[];
3
+ export declare function getSourceDependencies(
4
+ sys: DevToolsSys,
5
+ typeChecker: ts.TypeChecker | null,
6
+ fnNode: ts.Node,
7
+ ): AppDependency[] | undefined;
8
+ export declare function getAppDependencies(
9
+ cmps: ComponentInfo[],
10
+ ): AppDependency[];
@@ -1,9 +1,29 @@
1
1
  import type ts from "typescript";
2
2
  import type { ComponentInfo, ComponentInput, DevToolsSys } from "../../types";
3
- export declare function parseRegisteredComponentInfo(sys: DevToolsSys, cmpInfo: ComponentInfo, cmpObjLit: ts.ObjectLiteralExpression): ComponentInfo;
4
- export declare function updateComponentObjLiteralInfoProperties(sys: DevToolsSys, cmpObjExp: ts.ObjectLiteralExpression, cmpInfo: ComponentInfo): ts.ObjectLiteralExpression;
5
- export declare function updateComponentInputsArrayLiteralExp(sys: DevToolsSys, arrExp: ts.ArrayLiteralExpression, inputs: ComponentInput[]): ts.ArrayLiteralExpression;
6
- export declare function mergeComponentInputs(cmp: ComponentInfo, inputs: ComponentInput[]): void;
3
+ export declare function parseRegisteredComponentInfo(
4
+ sys: DevToolsSys,
5
+ cmpInfo: ComponentInfo,
6
+ cmpObjLit: ts.ObjectLiteralExpression,
7
+ ): ComponentInfo;
8
+ export declare function updateComponentObjLiteralInfoProperties(
9
+ sys: DevToolsSys,
10
+ cmpObjExp: ts.ObjectLiteralExpression,
11
+ cmpInfo: ComponentInfo,
12
+ ): ts.ObjectLiteralExpression;
13
+ export declare function updateComponentInputsArrayLiteralExp(
14
+ sys: DevToolsSys,
15
+ arrExp: ts.ArrayLiteralExpression,
16
+ inputs: ComponentInput[],
17
+ ): ts.ArrayLiteralExpression;
18
+ export declare function mergeComponentInputs(
19
+ cmp: ComponentInfo,
20
+ inputs: ComponentInput[],
21
+ ): void;
7
22
  export declare function componentAcceptsChildren(cmp: ComponentInfo): boolean;
8
- export declare function normalizeComponentInput(input: ComponentInput): ComponentInput;
9
- export declare function componentHasAcceptChildrenProp(sys: DevToolsSys, cmpObjLit: ts.ObjectLiteralExpression): boolean;
23
+ export declare function normalizeComponentInput(
24
+ input: ComponentInput,
25
+ ): ComponentInput;
26
+ export declare function componentHasAcceptChildrenProp(
27
+ sys: DevToolsSys,
28
+ cmpObjLit: ts.ObjectLiteralExpression,
29
+ ): boolean;
@@ -1,24 +1,43 @@
1
1
  import type ts from "typescript";
2
2
  import type { ComponentInput, DevToolsSys } from "../../types";
3
- export declare function parseComponentSourcePropsFromNode(sys: DevToolsSys, typeChecker: ts.TypeChecker, fnNode: ts.Node | undefined): ComponentInput[];
3
+ export declare function parseComponentSourcePropsFromNode(
4
+ sys: DevToolsSys,
5
+ typeChecker: ts.TypeChecker,
6
+ fnNode: ts.Node | undefined,
7
+ ): ComponentInput[];
4
8
  export declare function normalizeBuilderInputType(t: string): {
5
- builderType: string;
6
- knownType: boolean;
9
+ builderType: string;
10
+ knownType: boolean;
7
11
  };
8
12
  /**
9
13
  * https://www.builder.io/c/docs/custom-components-input-types
10
14
  */
11
15
  export declare const INPUT_TYPES: {
12
- value: string;
13
- text: string;
16
+ value: string;
17
+ text: string;
14
18
  }[];
15
19
  export declare const STRING_TYPES: string[];
16
20
  export declare const NUMBER_TYPES: string[];
17
21
  export declare const BOOLEAN_TYPES: string[];
18
22
  export declare const ARRAY_TYPES: string[];
19
23
  export declare const OBJECT_TYPES: string[];
20
- export declare function getPrimitiveType(t: string): "number" | "string" | "boolean" | "object" | "array";
24
+ export declare function getPrimitiveType(
25
+ t: string,
26
+ ): "string" | "boolean" | "object" | "number" | "array";
21
27
  export declare function removeQuotes(text: string): string;
22
- export declare const resolveType: (sys: DevToolsSys, checker: ts.TypeChecker, type: ts.Type) => string[] | undefined;
23
- export declare const typeToString: (sys: DevToolsSys, checker: ts.TypeChecker, type: ts.Type) => string;
24
- export declare const parseDocsType: (sys: DevToolsSys, checker: ts.TypeChecker, type: ts.Type, parts: Set<string>) => void;
28
+ export declare const resolveType: (
29
+ sys: DevToolsSys,
30
+ checker: ts.TypeChecker,
31
+ type: ts.Type,
32
+ ) => string[] | undefined;
33
+ export declare const typeToString: (
34
+ sys: DevToolsSys,
35
+ checker: ts.TypeChecker,
36
+ type: ts.Type,
37
+ ) => string;
38
+ export declare const parseDocsType: (
39
+ sys: DevToolsSys,
40
+ checker: ts.TypeChecker,
41
+ type: ts.Type,
42
+ parts: Set<string>,
43
+ ) => void;