builder.io 1.9.5 → 1.9.6

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.
@@ -43,6 +43,17 @@ export declare function backupGitRepo({ sys, credentials, projectId, branchName,
43
43
  skipped?: undefined;
44
44
  reason?: undefined;
45
45
  }>;
46
+ interface InitialCommitHashResult {
47
+ initialCommitHash: string;
48
+ partial: boolean;
49
+ }
50
+ export declare function getInitialCommitHash({ sys, repoPath, featureBranch, debug, workspace, }: {
51
+ sys: DevToolsSys;
52
+ repoPath: string;
53
+ featureBranch: string;
54
+ debug: boolean;
55
+ workspace: WorkspaceConfiguration | undefined;
56
+ }): Promise<InitialCommitHashResult>;
46
57
  /**
47
58
  * Requests a signed upload URL for git backup
48
59
  */
@@ -90,4 +90,6 @@ export interface CLIArgs {
90
90
  index?: boolean;
91
91
  /** If true list indexed repositories */
92
92
  listIndexedRepos?: boolean;
93
+ /** MCP support */
94
+ mcpSupport?: boolean;
93
95
  }