@builder.io/ai-utils 0.9.0 → 0.9.1

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.1",
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[];
@@ -988,7 +989,7 @@ export interface LoadHistoryResult {
988
989
  updatedUnixTime: number;
989
990
  turns: CodegenTurn[];
990
991
  }
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";
992
+ 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
993
  export interface InitStatusLog {
993
994
  id: number;
994
995
  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;