@databutton/firebase-types 1.78.34 → 1.78.36

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.
@@ -1309,8 +1309,8 @@ export type BuildV2 = {
1309
1309
  eventRef: string | null;
1310
1310
  workspaceVersion: string;
1311
1311
  devxVersion: string;
1312
- backendPackagesId: string;
1313
- frontendPackagesId: string;
1312
+ backendPackagesId: string | null;
1313
+ frontendPackagesId: string | null;
1314
1314
  isFly: boolean;
1315
1315
  errorMessages?: string[];
1316
1316
  baseDevxImage: string;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.78.34",
3
+ "version": "1.78.36",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {