@builder.io/ai-utils 0.5.19 → 0.5.21
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 +4 -1
package/package.json
CHANGED
package/src/codegen.d.ts
CHANGED
|
@@ -726,7 +726,7 @@ export interface CheckBackupDataResultValid {
|
|
|
726
726
|
}
|
|
727
727
|
export interface CheckBackupDataResultInvalid {
|
|
728
728
|
hasValidBackup: false;
|
|
729
|
-
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";
|
|
729
|
+
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" | "branch-uninitialized";
|
|
730
730
|
message: string;
|
|
731
731
|
backup: BranchBackup | undefined;
|
|
732
732
|
}
|
|
@@ -759,6 +759,7 @@ export interface AclEntry {
|
|
|
759
759
|
export interface AclPolicy {
|
|
760
760
|
secrets?: string[];
|
|
761
761
|
entries?: AclEntry[];
|
|
762
|
+
denyDescription?: string;
|
|
762
763
|
}
|
|
763
764
|
export interface AccessResult {
|
|
764
765
|
allowed: boolean;
|
|
@@ -872,6 +873,7 @@ export interface LaunchServerStatus {
|
|
|
872
873
|
startTime: number;
|
|
873
874
|
machine?: MachineConfig;
|
|
874
875
|
projectId?: string;
|
|
876
|
+
_attemptDryRunBackupOutcome?: string;
|
|
875
877
|
}
|
|
876
878
|
export interface FusionStatus {
|
|
877
879
|
status: "ok";
|
|
@@ -889,6 +891,7 @@ export interface FusionStatus {
|
|
|
889
891
|
projectId?: string;
|
|
890
892
|
secondsActive?: number;
|
|
891
893
|
backupDryRun?: string;
|
|
894
|
+
_attemptDryRunBackupOutcome?: string;
|
|
892
895
|
}
|
|
893
896
|
export interface FusionMetrics {
|
|
894
897
|
counters: {
|