@builder.io/ai-utils 0.5.20 → 0.5.22

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.20",
3
+ "version": "0.5.22",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -717,6 +717,7 @@ export interface BranchBackup {
717
717
  status: "initiated" | "completed";
718
718
  contentMd5?: string;
719
719
  empty?: boolean;
720
+ version?: "v1" | "v2";
720
721
  }
721
722
  export interface CheckBackupDataResultValid {
722
723
  hasValidBackup: true;
@@ -759,6 +760,7 @@ export interface AclEntry {
759
760
  export interface AclPolicy {
760
761
  secrets?: string[];
761
762
  entries?: AclEntry[];
763
+ denyDescription?: string;
762
764
  }
763
765
  export interface AccessResult {
764
766
  allowed: boolean;
package/src/projects.d.ts CHANGED
@@ -176,6 +176,7 @@ export interface GitBackupDownloadUrlOptions {
176
176
  spaceId: string;
177
177
  projectId: string;
178
178
  branchName: string;
179
+ partial: boolean;
179
180
  }
180
181
  export interface GitBackupRecordOptions {
181
182
  projectId: string;
@@ -188,6 +189,7 @@ export interface GitBackupRecordOptions {
188
189
  empty: boolean;
189
190
  status: "completed";
190
191
  contentMd5?: string;
192
+ version: "v1" | "v2";
191
193
  }
192
194
  export interface GitBackupRecordResult {
193
195
  success: boolean;