@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
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 interface WorkspaceFolder {
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;
@@ -27,6 +27,7 @@ interface OrganizationSettings {
27
27
  githubEnterpriseSetupValue?: GithubEnterpriseSetupValue;
28
28
  fusionProviderOverride?: "ssh";
29
29
  bitbucketEnterprisePAT?: BitbucketEnterprisePAT;
30
+ useProxy?: boolean;
30
31
  }
31
32
  interface RoleOptions {
32
33
  read?: boolean;