@builder.io/ai-utils 0.4.26 → 0.4.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 +1 -1
- package/src/projects.d.ts +2 -0
package/package.json
CHANGED
package/src/projects.d.ts
CHANGED
|
@@ -132,10 +132,12 @@ export interface ReadyMessage extends BaseMessage {
|
|
|
132
132
|
url: string;
|
|
133
133
|
status?: LaunchServerStatus;
|
|
134
134
|
}
|
|
135
|
+
export type EnsureContainerErrorCode = "FLY_APP_CHECK_ERROR" | "FLY_CAPACITY_ERROR" | "FLY_VOLUME_CREATE_ERROR" | "FLY_VOLUME_FORK_ERROR" | "FLY_VOLUME_DELETE_RECENTLY_FORKED_ERROR" | "FLY_MACHINE_CREATE_ERROR" | "FLY_VOLUME_CHECK_ERROR" | "FLY_NON_MOUNTABLE_VOLUME_ERROR" | "ensure-checking-existing-machines" | "found-multiple-failed-machine" | "maximun-retries-machine-creation" | "git-auth-failed" | "unknown" | "project-bad-state" | "project-not-found" | "project-branch-not-found" | "project-repo-full-name-not-found" | "project-org-not-found" | "no-available-regions";
|
|
135
136
|
export interface ErrorStateMessage extends BaseMessage {
|
|
136
137
|
state: "error";
|
|
137
138
|
message: string;
|
|
138
139
|
error: string;
|
|
140
|
+
code: EnsureContainerErrorCode;
|
|
139
141
|
}
|
|
140
142
|
export interface CleanupCompletedMessage extends BaseMessage {
|
|
141
143
|
state: "cleanupCompleted";
|