builder.io 1.6.99 → 1.6.101

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.
@@ -190,6 +190,10 @@ export declare class CodeGenSession {
190
190
  requestRefresh(): void;
191
191
  close(): Promise<void>;
192
192
  emitGitStatus(): Promise<GenerateCompletionStepGit | null>;
193
+ manualCommit(options: {
194
+ add: string;
195
+ commitMessage: string;
196
+ }): Promise<void>;
193
197
  connectToEventLoop(shouldReplay: boolean, onStep: (step: GenerateCompletionStep) => void): () => void;
194
198
  waitUntilIdle(): Promise<void>;
195
199
  waitForEventLoop(): Promise<void>;
@@ -1,19 +1,2 @@
1
- import type { DevToolsSys } from "@builder.io/dev-tools/core";
2
- import type { Credentials } from "cli/credentials";
3
- export declare const getInitialDescription: (projectId: string) => string;
4
- export declare function updatePRDescription({ repoFullName, githubToken, prNumber, projectId, sys, credentials, builderProjectBranchName, gitWorkingDirectory, }: {
5
- repoFullName: string;
6
- githubToken: string;
7
- prNumber: number;
8
- projectId: string | undefined;
9
- sys: DevToolsSys;
10
- credentials: Credentials;
11
- builderProjectBranchName: string | undefined;
12
- gitWorkingDirectory?: string;
13
- }): Promise<{
14
- success: boolean;
15
- lastTurn: any;
16
- responseText: string;
17
- generatedTitle: string;
18
- generatedDescription: string;
19
- }>;
1
+ export declare const getKVHiddenComment: (key: string, value: string) => string;
2
+ export declare const getInitialDescription: (projectId: string, branchName: string) => string;