@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 +1 -1
- package/src/codegen.d.ts +2 -0
- package/src/projects.d.ts +2 -0
package/package.json
CHANGED
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;
|