builder.io 1.6.122 → 1.6.124

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.
@@ -30,6 +30,7 @@ export interface CodeGenSessionOptionsBase {
30
30
  workspace?: WorkspaceConfiguration;
31
31
  mcpServers?: boolean;
32
32
  enabledTools?: string;
33
+ returnContentOnly?: boolean;
33
34
  }
34
35
  export interface CodeGenSessionOptionsSession extends CodeGenSessionOptionsBase {
35
36
  sessionOrCompletionId?: string;
@@ -29,6 +29,8 @@ export interface CLIArgs {
29
29
  skipHeader?: boolean;
30
30
  /** Design system package to use for repo indexing */
31
31
  designSystemPackage?: string;
32
+ /** Whether to store repository indexing files */
33
+ storeRepoIndexing?: boolean;
32
34
  /** Token to use for figma */
33
35
  token?: string;
34
36
  /** Url to start from */
@@ -1,3 +1,17 @@
1
1
  import type { DevToolsSys } from "../types";
2
2
  import type { CLIArgs } from "./index";
3
+ export interface RepoIndexingDoc {
4
+ name: string;
5
+ content: string | {
6
+ name: string;
7
+ description: string;
8
+ components: string[];
9
+ relevantFiles: string[];
10
+ }[];
11
+ createdDate: string;
12
+ description: string;
13
+ id: string;
14
+ ownerId: string;
15
+ userId: string;
16
+ }
3
17
  export declare const runRepoIndexing: (sys: DevToolsSys, args: CLIArgs) => Promise<void>;