@builder.io/ai-utils 0.5.25 → 0.5.27

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.5.25",
3
+ "version": "0.5.27",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -729,7 +729,7 @@ export interface CheckBackupDataResultValid {
729
729
  }
730
730
  export interface CheckBackupDataResultInvalid {
731
731
  hasValidBackup: false;
732
- outcome: "valid" | "no-backup" | "hash-mismatch" | "error" | "not-completed" | "no-session-id" | "no-last-commit-hash" | "no-backup-file" | "empty-full-backup" | "no-vcpCodeGenEvent" | "no-after-commit" | "no-signed-url" | "no-git-branch-name" | "repo-url-mismatch" | "branch-uninitialized";
732
+ outcome: "no-backup" | "hash-mismatch" | "error" | "not-completed" | "no-session-id" | "no-last-commit-hash" | "no-backup-file" | "empty-full-backup" | "no-vcpCodeGenEvent" | "no-after-commit" | "no-signed-url" | "no-git-branch-name" | "repo-url-mismatch" | "branch-uninitialized";
733
733
  message: string;
734
734
  backup: BranchBackup | undefined;
735
735
  }
@@ -64,5 +64,6 @@ export interface Organization {
64
64
  subscriptionSettings?: string;
65
65
  totalBytesStored?: number;
66
66
  lastUpdateBy?: string | null;
67
+ enterpriseTrialEndDate?: number;
67
68
  }
68
69
  export {};
package/src/projects.d.ts CHANGED
@@ -199,5 +199,6 @@ export interface CodegenSetLastCommit {
199
199
  projectId: string;
200
200
  branchName: string;
201
201
  lastCommitHash: string;
202
+ clearSecondaryVolumeId: boolean;
202
203
  }
203
204
  export {};
package/src/projects.js CHANGED
@@ -3,6 +3,9 @@ export const EXAMPLE_REPOS = [
3
3
  "steve8708/carbon-vite",
4
4
  "steve8708/vite-react-shopify-polaris",
5
5
  "steve8708/cloudscape-demos",
6
+ "BuilderIO/fusion-angular-tailwind-starter",
7
+ "BuilderIO/fusion-svelte-tailwind-starter",
8
+ "BuilderIO/fusion-vue-tailwind-starter",
6
9
  ];
7
10
  export const STARTER_REPO = "BuilderIO/fusion-starter";
8
11
  export const EXAMPLE_OR_STARTER_REPOS = [...EXAMPLE_REPOS, STARTER_REPO];