@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,11 +1,11 @@
1
1
  import type { SetupMiseDependency } from "$/ai-utils";
2
2
  export interface PackageVersions {
3
- node?: string;
4
- npm?: string;
5
- pnpm?: string;
6
- yarn?: string;
7
- bun?: string;
8
- deno?: string;
3
+ node?: string;
4
+ npm?: string;
5
+ pnpm?: string;
6
+ yarn?: string;
7
+ bun?: string;
8
+ deno?: string;
9
9
  }
10
10
  /**
11
11
  * Detect versions of installed package managers and runtimes
@@ -14,8 +14,12 @@ export declare function detectPackageVersions(): Promise<PackageVersions>;
14
14
  /**
15
15
  * Convert package versions to SetupMiseDependency array
16
16
  */
17
- export declare function packagesToSetupDependencies(versions: PackageVersions): SetupMiseDependency[];
17
+ export declare function packagesToSetupDependencies(
18
+ versions: PackageVersions,
19
+ ): SetupMiseDependency[];
18
20
  /**
19
21
  * Format package versions for display
20
22
  */
21
- export declare function formatPackageVersions(versions: PackageVersions): string;
23
+ export declare function formatPackageVersions(
24
+ versions: PackageVersions,
25
+ ): string;
@@ -3,4 +3,7 @@ import type { CLIArgs } from "../index";
3
3
  /**
4
4
  * Main connect-repo command handler
5
5
  */
6
- export declare function runRepoConnectCommand(sys: DevToolsSys, args: CLIArgs): Promise<void>;
6
+ export declare function runRepoConnectCommand(
7
+ sys: DevToolsSys,
8
+ args: CLIArgs,
9
+ ): Promise<void>;
@@ -1,21 +1,34 @@
1
1
  import type { DevToolsSys } from "../../types";
2
2
  import type { Credentials } from "../credentials";
3
- import type { WorkspaceConfiguration, ComponentDocument, PrivacyMode } from "$/ai-utils";
3
+ import type {
4
+ WorkspaceConfiguration,
5
+ ComponentDocument,
6
+ PrivacyMode,
7
+ } from "$/ai-utils";
4
8
  import type { ComponentTask } from "./types";
5
- export declare const discoverComponents: (sys: DevToolsSys, credentials: Credentials, sessionId: string, remoteComponents: ComponentDocument[], opts?: {
6
- force?: boolean;
7
- designSystemPackage?: string;
8
- designSystemVersion?: string;
9
- workspaceConfig?: WorkspaceConfiguration;
10
- debug?: boolean;
11
- specificComponents?: string[];
12
- include?: string | string[];
13
- exclude?: string | string[];
14
- instructions?: string;
15
- privacyMode?: PrivacyMode;
16
- }) => Promise<{
17
- numComponentsFound: number;
18
- componentsToIndex: ComponentTask[];
19
- discoveredComponents: ComponentTask[];
9
+ export declare const discoverComponents: (
10
+ sys: DevToolsSys,
11
+ credentials: Credentials,
12
+ sessionId: string,
13
+ remoteComponents: ComponentDocument[],
14
+ opts?: {
15
+ force?: boolean;
16
+ designSystemPackage?: string;
17
+ designSystemVersion?: string;
18
+ workspaceConfig?: WorkspaceConfiguration;
19
+ debug?: boolean;
20
+ specificComponents?: string[];
21
+ include?: string | string[];
22
+ exclude?: string | string[];
23
+ instructions?: string;
24
+ privacyMode?: PrivacyMode;
25
+ },
26
+ ) => Promise<{
27
+ numComponentsFound: number;
28
+ componentsToIndex: ComponentTask[];
29
+ discoveredComponents: ComponentTask[];
20
30
  }>;
21
- export declare const computeHash: (sys: DevToolsSys, files: string[]) => Promise<string>;
31
+ export declare const computeHash: (
32
+ sys: DevToolsSys,
33
+ files: string[],
34
+ ) => Promise<string>;
@@ -1,27 +1,39 @@
1
1
  import type { DevToolsSys } from "../../types";
2
2
  import type { Credentials } from "../credentials";
3
3
  import type { WorkspaceConfiguration, PrivacyMode } from "$/ai-utils";
4
- export declare const discoverIcons: (sys: DevToolsSys, credentials: Credentials, sessionId: string, opts?: {
5
- designSystemPackage?: string;
6
- workspaceConfig?: WorkspaceConfiguration;
7
- debug?: boolean;
8
- include?: string | string[];
9
- exclude?: string | string[];
10
- instructions?: string;
11
- privacyMode?: PrivacyMode;
12
- }) => Promise<{
13
- icons: string[];
14
- usage: string;
15
- hash: string | undefined;
16
- } | undefined>;
17
- export declare const processIcons: (credentials: Credentials, iconDiscovery: {
18
- icons: string[];
19
- usage: string;
20
- hash?: string;
21
- }, opts: {
22
- designSystemId: string;
23
- sessionId: string;
24
- debug?: boolean;
25
- previousHash?: string | null;
26
- force?: boolean;
27
- }) => Promise<boolean>;
4
+ export declare const discoverIcons: (
5
+ sys: DevToolsSys,
6
+ credentials: Credentials,
7
+ sessionId: string,
8
+ opts?: {
9
+ designSystemPackage?: string;
10
+ workspaceConfig?: WorkspaceConfiguration;
11
+ debug?: boolean;
12
+ include?: string | string[];
13
+ exclude?: string | string[];
14
+ instructions?: string;
15
+ privacyMode?: PrivacyMode;
16
+ },
17
+ ) => Promise<
18
+ | {
19
+ icons: string[];
20
+ usage: string;
21
+ hash: string | undefined;
22
+ }
23
+ | undefined
24
+ >;
25
+ export declare const processIcons: (
26
+ credentials: Credentials,
27
+ iconDiscovery: {
28
+ icons: string[];
29
+ usage: string;
30
+ hash?: string;
31
+ },
32
+ opts: {
33
+ designSystemId: string;
34
+ sessionId: string;
35
+ debug?: boolean;
36
+ previousHash?: string | null;
37
+ force?: boolean;
38
+ },
39
+ ) => Promise<boolean>;
@@ -1,17 +1,25 @@
1
1
  import type { DevToolsSys } from "../../types";
2
2
  import type { Credentials } from "../credentials";
3
3
  import type { WorkspaceConfiguration, PrivacyMode } from "$/ai-utils";
4
- export declare const discoverInstallation: (sys: DevToolsSys, credentials: Credentials, sessionId: string, opts: {
5
- designSystemId: string;
6
- designSystemPackage?: string;
7
- designSystemVersion?: string;
8
- workspaceConfig?: WorkspaceConfiguration;
9
- debug?: boolean;
10
- include?: string | string[];
11
- exclude?: string | string[];
12
- instructions?: string;
13
- privacyMode?: PrivacyMode;
14
- }) => Promise<{
15
- hash: string;
16
- relevantFiles: string[];
17
- } | undefined>;
4
+ export declare const discoverInstallation: (
5
+ sys: DevToolsSys,
6
+ credentials: Credentials,
7
+ sessionId: string,
8
+ opts: {
9
+ designSystemId: string;
10
+ designSystemPackage?: string;
11
+ designSystemVersion?: string;
12
+ workspaceConfig?: WorkspaceConfiguration;
13
+ debug?: boolean;
14
+ include?: string | string[];
15
+ exclude?: string | string[];
16
+ instructions?: string;
17
+ privacyMode?: PrivacyMode;
18
+ },
19
+ ) => Promise<
20
+ | {
21
+ hash: string;
22
+ relevantFiles: string[];
23
+ }
24
+ | undefined
25
+ >;
@@ -1,74 +1,105 @@
1
1
  import type { DevToolsSys } from "../../core";
2
2
  import { type Credentials } from "../credentials";
3
- import type { DesignSystem, GenerateUserMessage, WorkspaceConfiguration, UpdateDesignSystemInput, DesignSystemScope, DisplayDesignSystem, IndexDocumentV1, AclPolicy, PrivacyMode } from "$/ai-utils";
3
+ import type {
4
+ DesignSystem,
5
+ GenerateUserMessage,
6
+ WorkspaceConfiguration,
7
+ UpdateDesignSystemInput,
8
+ DesignSystemScope,
9
+ DisplayDesignSystem,
10
+ IndexDocumentV1,
11
+ AclPolicy,
12
+ PrivacyMode,
13
+ } from "$/ai-utils";
4
14
  export declare const AGENT_FILE = "AGENTS.md";
5
15
  export declare const ICONS_FILE = "icons.mdx";
6
16
  export declare const TOKENS_FILE = "tokens.mdx";
7
17
  export declare const INSTALLATION_FILE = "installation.md";
8
18
  export declare const REPO_INDEXING_FOLDER = "repo-indexing";
9
19
  export interface UserSettings {
10
- isAdminInOrganization: boolean;
11
- email: string;
20
+ isAdminInOrganization: boolean;
21
+ email: string;
12
22
  }
13
23
  interface GetAllDesignSystemsOpts {
14
- /**
15
- * If true, only design systems that the user has permission to edit will be
16
- * returned. If false, all design systems that the user has permission to edit
17
- * as well as design systems that the user has permission to read but not edit
18
- * will be returned. Defaults to false.
19
- */
20
- onlyEditAccess?: boolean;
21
- /**
22
- * If true, design systems that are scoped to the global space will be included.
23
- * Defaults to false.
24
- */
25
- includeGlobalScopeDesignSystems?: boolean;
26
- /**
27
- * If true, the # of component docs in each design system will also be returned.
28
- * Defaults to false.
29
- */
30
- includeDocumentCount?: boolean;
24
+ /**
25
+ * If true, only design systems that the user has permission to edit will be
26
+ * returned. If false, all design systems that the user has permission to edit
27
+ * as well as design systems that the user has permission to read but not edit
28
+ * will be returned. Defaults to false.
29
+ */
30
+ onlyEditAccess?: boolean;
31
+ /**
32
+ * If true, design systems that are scoped to the global space will be included.
33
+ * Defaults to false.
34
+ */
35
+ includeGlobalScopeDesignSystems?: boolean;
36
+ /**
37
+ * If true, the # of component docs in each design system will also be returned.
38
+ * Defaults to false.
39
+ */
40
+ includeDocumentCount?: boolean;
31
41
  }
32
- export declare const promptForDesignSystemScope: (credentials: Credentials, userSettings: UserSettings | null, selectedScope?: DesignSystemScope) => Promise<DesignSystemScope | undefined>;
33
- export declare const parseDesignSystem: (sys: DevToolsSys, designSystemPackage?: string) => Promise<{
34
- name: any;
35
- version: string | undefined;
42
+ export declare const promptForDesignSystemScope: (
43
+ credentials: Credentials,
44
+ userSettings: UserSettings | null,
45
+ selectedScope?: DesignSystemScope,
46
+ ) => Promise<DesignSystemScope | undefined>;
47
+ export declare const parseDesignSystem: (
48
+ sys: DevToolsSys,
49
+ designSystemPackage?: string,
50
+ ) => Promise<{
51
+ name: any;
52
+ version: string | undefined;
36
53
  }>;
37
- export declare const storeComponentDocs: (credentials: Credentials, body: IndexDocumentV1, debug?: boolean) => Promise<any>;
38
- export declare const runCodeGen: (sys: DevToolsSys, credentials: Credentials, sessionId: string, message: GenerateUserMessage, debug?: boolean, designSystemPackage?: string, workspaceConfig?: WorkspaceConfiguration, opts?: {
39
- tags?: object;
40
- maxTokens?: number;
41
- retriesAllowed?: number;
42
- /**
43
- * What kind of file to expect from the LLM.
44
- * `'tool'`: The LLM will use the Write tool to output the file. We will intercept that
45
- * and keep the file contents in-memory. File is not written to disk.
46
- * `string`: The LLM will write the file directly to the file system. We will read the
47
- * contents into memory and then delete the file from the file system. This is useful
48
- * for writing large files that would otherwise consume a lot of tokens.
49
- */
50
- expectFile?: "tool" | string;
51
- /**
52
- * Glob pattern(s) to include for access control.
53
- * When specified, only these patterns will be accessible by default.
54
- * Can be a single string or array of strings.
55
- */
56
- include?: string | string[];
57
- /**
58
- * Glob pattern(s) to exclude for access control.
59
- * These patterns will be denied access even if included.
60
- * Can be a single string or array of strings.
61
- */
62
- exclude?: string | string[];
63
- /**
64
- * Extra instructions to be taken into account during repo indexing.
65
- */
66
- instructions?: string;
67
- /**
68
- * Privacy mode settings for encryption key handling.
69
- */
70
- privacyMode?: PrivacyMode;
71
- }, metadata?: any) => Promise<string>;
54
+ export declare const storeComponentDocs: (
55
+ credentials: Credentials,
56
+ body: IndexDocumentV1,
57
+ debug?: boolean,
58
+ ) => Promise<any>;
59
+ export declare const runCodeGen: (
60
+ sys: DevToolsSys,
61
+ credentials: Credentials,
62
+ sessionId: string,
63
+ message: GenerateUserMessage,
64
+ debug?: boolean,
65
+ designSystemPackage?: string,
66
+ workspaceConfig?: WorkspaceConfiguration,
67
+ opts?: {
68
+ tags?: object;
69
+ maxTokens?: number;
70
+ retriesAllowed?: number;
71
+ /**
72
+ * What kind of file to expect from the LLM.
73
+ * `'tool'`: The LLM will use the Write tool to output the file. We will intercept that
74
+ * and keep the file contents in-memory. File is not written to disk.
75
+ * `string`: The LLM will write the file directly to the file system. We will read the
76
+ * contents into memory and then delete the file from the file system. This is useful
77
+ * for writing large files that would otherwise consume a lot of tokens.
78
+ */
79
+ expectFile?: "tool" | string;
80
+ /**
81
+ * Glob pattern(s) to include for access control.
82
+ * When specified, only these patterns will be accessible by default.
83
+ * Can be a single string or array of strings.
84
+ */
85
+ include?: string | string[];
86
+ /**
87
+ * Glob pattern(s) to exclude for access control.
88
+ * These patterns will be denied access even if included.
89
+ * Can be a single string or array of strings.
90
+ */
91
+ exclude?: string | string[];
92
+ /**
93
+ * Extra instructions to be taken into account during repo indexing.
94
+ */
95
+ instructions?: string;
96
+ /**
97
+ * Privacy mode settings for encryption key handling.
98
+ */
99
+ privacyMode?: PrivacyMode;
100
+ },
101
+ metadata?: any,
102
+ ) => Promise<string>;
72
103
  /**
73
104
  * Generates an ACL policy for repo indexing based on include/exclude patterns.
74
105
  *
@@ -90,24 +121,52 @@ export declare const runCodeGen: (sys: DevToolsSys, credentials: Credentials, se
90
121
  * const policy2 = generateRepoIndexingAclPolicy("src/**\/*", "dist/**");
91
122
  * ```
92
123
  */
93
- export declare const generateRepoIndexingAclPolicy: (include?: string | string[], exclude?: string | string[]) => AclPolicy;
94
- export declare function getAllDesignSystems(credentials: Credentials, opts: {
95
- includeDocumentCount: true;
96
- } & Omit<GetAllDesignSystemsOpts, "includeDocumentCount">): Promise<DisplayDesignSystem[]>;
97
- export declare function getAllDesignSystems(credentials: Credentials, opts?: GetAllDesignSystemsOpts): Promise<DesignSystem[]>;
98
- export declare const getDesignSystemsByScope: (scope: DesignSystemScope, designSystems: DesignSystem[]) => DesignSystem[];
99
- export declare const getDesignSystemByName: (designSystemName: string, designSystems: DesignSystem[]) => DesignSystem | null;
100
- export declare const getDesignSystemByNameAndScope: (credentials: Credentials, designSystemName: string, scope: DesignSystemScope, designSystems: DesignSystem[]) => DesignSystem | null;
101
- export declare const addDesignSystem: (credentials: Credentials, body: {
102
- designSystemName: string;
103
- designSystemVersion?: string;
104
- designSystemPackage?: string;
105
- status: string;
106
- scope: DesignSystemScope;
107
- gitOriginUrl: string | undefined;
108
- gitRelativePath: string | undefined;
109
- cliArgs: string[];
110
- }) => Promise<any>;
111
- export declare const updateDesignSystem: (credentials: Credentials, body: UpdateDesignSystemInput) => Promise<any>;
112
- export declare const checkRepoIndexingFolder: (sys: DevToolsSys) => Promise<boolean>;
124
+ export declare const generateRepoIndexingAclPolicy: (
125
+ include?: string | string[],
126
+ exclude?: string | string[],
127
+ ) => AclPolicy;
128
+ export declare function getAllDesignSystems(
129
+ credentials: Credentials,
130
+ opts: {
131
+ includeDocumentCount: true;
132
+ } & Omit<GetAllDesignSystemsOpts, "includeDocumentCount">,
133
+ ): Promise<DisplayDesignSystem[]>;
134
+ export declare function getAllDesignSystems(
135
+ credentials: Credentials,
136
+ opts?: GetAllDesignSystemsOpts,
137
+ ): Promise<DesignSystem[]>;
138
+ export declare const getDesignSystemsByScope: (
139
+ scope: DesignSystemScope,
140
+ designSystems: DesignSystem[],
141
+ ) => DesignSystem[];
142
+ export declare const getDesignSystemByName: (
143
+ designSystemName: string,
144
+ designSystems: DesignSystem[],
145
+ ) => DesignSystem | null;
146
+ export declare const getDesignSystemByNameAndScope: (
147
+ credentials: Credentials,
148
+ designSystemName: string,
149
+ scope: DesignSystemScope,
150
+ designSystems: DesignSystem[],
151
+ ) => DesignSystem | null;
152
+ export declare const addDesignSystem: (
153
+ credentials: Credentials,
154
+ body: {
155
+ designSystemName: string;
156
+ designSystemVersion?: string;
157
+ designSystemPackage?: string;
158
+ status: string;
159
+ scope: DesignSystemScope;
160
+ gitOriginUrl: string | undefined;
161
+ gitRelativePath: string | undefined;
162
+ cliArgs: string[];
163
+ },
164
+ ) => Promise<any>;
165
+ export declare const updateDesignSystem: (
166
+ credentials: Credentials,
167
+ body: UpdateDesignSystemInput,
168
+ ) => Promise<any>;
169
+ export declare const checkRepoIndexingFolder: (
170
+ sys: DevToolsSys,
171
+ ) => Promise<boolean>;
113
172
  export {};
@@ -2,23 +2,43 @@ import type { DevToolsSys } from "../../types";
2
2
  import type { CLIArgs } from "../index";
3
3
  import { type Credentials } from "../credentials";
4
4
  import type { ComponentTask, TokenTask } from "./types";
5
- export declare const displayComponentLibrarySummary: (components: ComponentTask[], indexedComponents: ComponentTask[], startTime: number, failedComponents: string[] | undefined, isForce: boolean | undefined, designSystemName: string, designSystemId?: string, numIconsIndexed?: number, tokenGroupsFound?: TokenTask[], tokenGroupsToIndex?: TokenTask[], tokenGroupsFailed?: string[]) => void;
5
+ export declare const displayComponentLibrarySummary: (
6
+ components: ComponentTask[],
7
+ indexedComponents: ComponentTask[],
8
+ startTime: number,
9
+ failedComponents: string[] | undefined,
10
+ isForce: boolean | undefined,
11
+ designSystemName: string,
12
+ designSystemId?: string,
13
+ numIconsIndexed?: number,
14
+ tokenGroupsFound?: TokenTask[],
15
+ tokenGroupsToIndex?: TokenTask[],
16
+ tokenGroupsFailed?: string[],
17
+ ) => void;
6
18
  export interface RepoIndexingDoc {
7
- name: string;
8
- content: string | {
9
- name: string;
10
- description: string;
11
- components: string[];
12
- relevantFiles: string[];
13
- }[];
14
- createdDate: string;
15
- description: string;
16
- id: string;
17
- ownerId: string;
18
- userId: string;
19
+ name: string;
20
+ content:
21
+ | string
22
+ | {
23
+ name: string;
24
+ description: string;
25
+ components: string[];
26
+ relevantFiles: string[];
27
+ }[];
28
+ createdDate: string;
29
+ description: string;
30
+ id: string;
31
+ ownerId: string;
32
+ userId: string;
19
33
  }
20
- export declare const runRepoIndexing: (sys: DevToolsSys, args: CLIArgs) => Promise<void>;
21
- export declare const isFeatureAllowed: (credentials: Credentials, debug?: boolean) => Promise<{
22
- isAllowed: boolean;
23
- reason?: string;
34
+ export declare const runRepoIndexing: (
35
+ sys: DevToolsSys,
36
+ args: CLIArgs,
37
+ ) => Promise<void>;
38
+ export declare const isFeatureAllowed: (
39
+ credentials: Credentials,
40
+ debug?: boolean,
41
+ ) => Promise<{
42
+ isAllowed: boolean;
43
+ reason?: string;
24
44
  }>;
@@ -1,5 +1,5 @@
1
1
  export declare const mockDeps: {
2
- getStoredComponentDocs: () => Promise<never[]>;
3
- storeComponentDocs: () => Promise<{}>;
4
- runCodeGen: () => Promise<string>;
2
+ getStoredComponentDocs: () => Promise<never[]>;
3
+ storeComponentDocs: () => Promise<{}>;
4
+ runCodeGen: () => Promise<string>;
5
5
  };
@@ -1,28 +1,47 @@
1
1
  import type { DevToolsSys } from "../../types";
2
2
  import type { TokenTask } from "./types";
3
3
  import type { Credentials } from "../credentials";
4
- import type { WorkspaceConfiguration, TokenDocument, PrivacyMode } from "$/ai-utils";
5
- export declare const discoverTokens: (sys: DevToolsSys, credentials: Credentials, sessionId: string, remoteTokens: TokenDocument[], opts?: {
6
- force?: boolean;
7
- designSystemPackage?: string;
8
- workspaceConfig?: WorkspaceConfiguration;
9
- debug?: boolean;
10
- include?: string | string[];
11
- exclude?: string | string[];
12
- instructions?: string;
13
- privacyMode?: PrivacyMode;
14
- }) => Promise<{
15
- tokenGroupsToIndex: TokenTask[];
16
- discoveredTokenGroups: TokenTask[];
17
- } | undefined>;
18
- export declare const processTokens: (sys: DevToolsSys, credentials: Credentials, sessionId: string, group: TokenTask, opts: {
19
- designSystemId: string;
20
- designSystemPackage?: string;
21
- designSystemVersion?: string;
22
- debug?: boolean;
23
- workspaceConfig?: WorkspaceConfiguration;
24
- include?: string | string[];
25
- exclude?: string | string[];
26
- instructions?: string;
27
- privacyMode?: PrivacyMode;
28
- }) => Promise<void>;
4
+ import type {
5
+ WorkspaceConfiguration,
6
+ TokenDocument,
7
+ PrivacyMode,
8
+ } from "$/ai-utils";
9
+ export declare const discoverTokens: (
10
+ sys: DevToolsSys,
11
+ credentials: Credentials,
12
+ sessionId: string,
13
+ remoteTokens: TokenDocument[],
14
+ opts?: {
15
+ force?: boolean;
16
+ designSystemPackage?: string;
17
+ workspaceConfig?: WorkspaceConfiguration;
18
+ debug?: boolean;
19
+ include?: string | string[];
20
+ exclude?: string | string[];
21
+ instructions?: string;
22
+ privacyMode?: PrivacyMode;
23
+ },
24
+ ) => Promise<
25
+ | {
26
+ tokenGroupsToIndex: TokenTask[];
27
+ discoveredTokenGroups: TokenTask[];
28
+ }
29
+ | undefined
30
+ >;
31
+ export declare const processTokens: (
32
+ sys: DevToolsSys,
33
+ credentials: Credentials,
34
+ sessionId: string,
35
+ group: TokenTask,
36
+ opts: {
37
+ designSystemId: string;
38
+ designSystemPackage?: string;
39
+ designSystemVersion?: string;
40
+ debug?: boolean;
41
+ workspaceConfig?: WorkspaceConfiguration;
42
+ include?: string | string[];
43
+ exclude?: string | string[];
44
+ instructions?: string;
45
+ privacyMode?: PrivacyMode;
46
+ },
47
+ ) => Promise<void>;
@@ -10,14 +10,16 @@ export declare function safeReadFile(filePath: string): string | null;
10
10
  * Package manager information
11
11
  */
12
12
  export interface PackageManagerInfo {
13
- manager: "npm" | "yarn" | "pnpm" | "bun";
14
- setupCommand: string;
13
+ manager: "npm" | "yarn" | "pnpm" | "bun";
14
+ setupCommand: string;
15
15
  }
16
16
  /**
17
17
  * Detect the package manager at the root level based on lock files
18
18
  * Returns the specific package manager command for setup
19
19
  */
20
- export declare function detectRootPackageManager(files: string[]): PackageManagerInfo | null;
20
+ export declare function detectRootPackageManager(
21
+ files: string[],
22
+ ): PackageManagerInfo | null;
21
23
  /**
22
24
  * Check if a file exists at the root level
23
25
  */
@@ -25,8 +27,14 @@ export declare function hasRootFile(files: string[], fileName: string): boolean;
25
27
  /**
26
28
  * Check if any file matches a pattern at the root level
27
29
  */
28
- export declare function hasRootFileMatching(files: string[], predicate: (fileName: string) => boolean): boolean;
30
+ export declare function hasRootFileMatching(
31
+ files: string[],
32
+ predicate: (fileName: string) => boolean,
33
+ ): boolean;
29
34
  /**
30
35
  * Check if a directory exists at the root level
31
36
  */
32
- export declare function hasRootDirectory(files: string[], directoryName: string): boolean;
37
+ export declare function hasRootDirectory(
38
+ files: string[],
39
+ directoryName: string,
40
+ ): boolean;
@@ -15,4 +15,7 @@ export declare function isExactVersion(version: string | undefined): boolean;
15
15
  * @param basePath - Absolute path to the repository root
16
16
  * @param rootPath - Relative path within the repository to analyze (default: "/" for entire repo)
17
17
  */
18
- export declare function collectRepoMetrics(sys: DevToolsSys, basePath: string): Promise<RepoMetrics>;
18
+ export declare function collectRepoMetrics(
19
+ sys: DevToolsSys,
20
+ basePath: string,
21
+ ): Promise<RepoMetrics>;