@builder.io/ai-utils 0.9.0 → 0.9.2
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.
- package/package.json +1 -1
- package/src/codegen.d.ts +6 -3
- package/src/organization.d.ts +1 -0
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -854,7 +854,7 @@ export interface BackupMetadata {
|
|
|
854
854
|
check: CheckBackupDataResultValid | CheckBackupDataResultStale | CheckBackupDataResultForcedBackup;
|
|
855
855
|
downloadUrl: GitBackupDownloadUrlResult | undefined;
|
|
856
856
|
}
|
|
857
|
-
export
|
|
857
|
+
export type WorkspaceFolder = {
|
|
858
858
|
enableGit?: boolean;
|
|
859
859
|
path: string;
|
|
860
860
|
name?: string;
|
|
@@ -863,7 +863,8 @@ export interface WorkspaceFolder {
|
|
|
863
863
|
repoName?: string;
|
|
864
864
|
branchName?: string;
|
|
865
865
|
backupMetadata?: BackupMetadata;
|
|
866
|
-
|
|
866
|
+
initializationCommand?: string;
|
|
867
|
+
};
|
|
867
868
|
export interface WorkspaceConfiguration {
|
|
868
869
|
agentsMD?: string;
|
|
869
870
|
folders: WorkspaceFolder[];
|
|
@@ -936,6 +937,8 @@ export interface FusionConfig {
|
|
|
936
937
|
projectId?: string;
|
|
937
938
|
branchName?: string;
|
|
938
939
|
sessionId?: string;
|
|
940
|
+
featureBranch?: string;
|
|
941
|
+
aiBranch?: string;
|
|
939
942
|
workingDirectory?: string;
|
|
940
943
|
bashWorkingDirectory?: string;
|
|
941
944
|
workspace?: WorkspaceConfiguration;
|
|
@@ -988,7 +991,7 @@ export interface LoadHistoryResult {
|
|
|
988
991
|
updatedUnixTime: number;
|
|
989
992
|
turns: CodegenTurn[];
|
|
990
993
|
}
|
|
991
|
-
export type InitStateStep = "initial" | "init" | "validation" | "check-directories" | "create-directories" | "configure-git-repos" | "check-existing-git" | "update-remote-url" | "clone-repo" | "apply-partial-backup" | "configure-git-user" | "stash-changes" | "collect-repo-info" | "init-success" | "init-failed";
|
|
994
|
+
export type InitStateStep = "initial" | "init" | "validation" | "check-directories" | "create-directories" | "configure-git-repos" | "check-existing-git" | "update-remote-url" | "clone-repo" | "apply-partial-backup" | "configure-git-user" | "stash-changes" | "collect-repo-info" | "init-success" | "init-command" | "init-failed";
|
|
992
995
|
export interface InitStatusLog {
|
|
993
996
|
id: number;
|
|
994
997
|
timestamp: string;
|
package/src/organization.d.ts
CHANGED