@databutton/firebase-types 1.78.33 → 1.78.35
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.
|
@@ -209,6 +209,17 @@ export type TransferOwnershipRequest = {
|
|
|
209
209
|
export type TransferOwnershipResponse = {
|
|
210
210
|
success: boolean;
|
|
211
211
|
};
|
|
212
|
+
export type InstallNewWorkspaceVersionRequest = {
|
|
213
|
+
requestedBy: PerformedBy;
|
|
214
|
+
projectId: string;
|
|
215
|
+
prevBuildId: string | null;
|
|
216
|
+
workspaceVersion: string;
|
|
217
|
+
wait: boolean;
|
|
218
|
+
};
|
|
219
|
+
export type InstallNewWorkspaceVersionResponse = {
|
|
220
|
+
status: "pending" | "success" | "failure";
|
|
221
|
+
buildId: string;
|
|
222
|
+
};
|
|
212
223
|
export type InstallFrontendDependenciesRequest = {
|
|
213
224
|
requestedBy: PerformedBy;
|
|
214
225
|
projectId: string;
|