@databutton/firebase-types 1.78.22 → 1.78.24
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.
|
@@ -1342,68 +1342,6 @@ export type BuildV2 = {
|
|
|
1342
1342
|
buildProdxVenvImageSucceededAt?: Timestamp | null;
|
|
1343
1343
|
buildProdxVenvImageFailedAt?: Timestamp | null;
|
|
1344
1344
|
};
|
|
1345
|
-
export type BuildV3 = {
|
|
1346
|
-
schema: "2025-06-18";
|
|
1347
|
-
createdBy: PerformedBy;
|
|
1348
|
-
createdReason: "initial" | "workspace-upgrade" | "frontend-install" | "backend-install";
|
|
1349
|
-
eventRef: string | null;
|
|
1350
|
-
workspaceVersion: string;
|
|
1351
|
-
devxVersion: string;
|
|
1352
|
-
backendPackagesId: string;
|
|
1353
|
-
frontendPackagesId: string;
|
|
1354
|
-
isFly: boolean;
|
|
1355
|
-
baseDevxImage: string;
|
|
1356
|
-
nextStages: string[];
|
|
1357
|
-
currentStage: string | null;
|
|
1358
|
-
currentStageStartedAt: Timestamp | null;
|
|
1359
|
-
completedStages: string[];
|
|
1360
|
-
stageResults: {
|
|
1361
|
-
exampleStage?: {
|
|
1362
|
-
startedAt: Timestamp | null;
|
|
1363
|
-
stoppedAt: Timestamp | null;
|
|
1364
|
-
status: "success" | "failure" | "timeout";
|
|
1365
|
-
};
|
|
1366
|
-
installBackendPackages?: {
|
|
1367
|
-
startedAt: Timestamp | null;
|
|
1368
|
-
succeededAt: Timestamp | null;
|
|
1369
|
-
failedAt: Timestamp | null;
|
|
1370
|
-
};
|
|
1371
|
-
installFrontendPackages?: {
|
|
1372
|
-
startedAt: Timestamp | null;
|
|
1373
|
-
succeededAt: Timestamp | null;
|
|
1374
|
-
failedAt: Timestamp | null;
|
|
1375
|
-
};
|
|
1376
|
-
buildDevxVenvImage?: {
|
|
1377
|
-
startedAt: Timestamp | null;
|
|
1378
|
-
succeededAt: Timestamp | null;
|
|
1379
|
-
failedAt: Timestamp | null;
|
|
1380
|
-
image: string | null;
|
|
1381
|
-
};
|
|
1382
|
-
buildDevxYarnImage?: {
|
|
1383
|
-
startedAt: Timestamp | null;
|
|
1384
|
-
succeededAt: Timestamp | null;
|
|
1385
|
-
failedAt: Timestamp | null;
|
|
1386
|
-
image: string | null;
|
|
1387
|
-
};
|
|
1388
|
-
buildDevxAppImage?: {
|
|
1389
|
-
startedAt: Timestamp | null;
|
|
1390
|
-
succeededAt: Timestamp | null;
|
|
1391
|
-
failedAt: Timestamp | null;
|
|
1392
|
-
image: string | null;
|
|
1393
|
-
};
|
|
1394
|
-
devxDeploy?: {
|
|
1395
|
-
startedAt: Timestamp | null;
|
|
1396
|
-
succeededAt: Timestamp | null;
|
|
1397
|
-
failedAt: Timestamp | null;
|
|
1398
|
-
};
|
|
1399
|
-
buildProdxVenvImage?: {
|
|
1400
|
-
startedAt: Timestamp | null;
|
|
1401
|
-
succeededAt: Timestamp | null;
|
|
1402
|
-
failedAt: Timestamp | null;
|
|
1403
|
-
image: string | null;
|
|
1404
|
-
};
|
|
1405
|
-
};
|
|
1406
|
-
};
|
|
1407
1345
|
export type Build = BuildV1 | BuildV2;
|
|
1408
1346
|
type WithDocRef<T> = T & {
|
|
1409
1347
|
id: string;
|
|
@@ -1479,12 +1417,18 @@ export interface ProjectDeploymentBase<T = ComponentSnapshotBase> extends AppSna
|
|
|
1479
1417
|
deployStartedAt?: Timestamp | null;
|
|
1480
1418
|
deploySucceededAt?: Timestamp | null;
|
|
1481
1419
|
deployFailedAt?: Timestamp | null;
|
|
1420
|
+
databaseMigrationStartedAt?: Timestamp | null;
|
|
1421
|
+
databaseMigrationSucceededAt?: Timestamp | null;
|
|
1422
|
+
databaseMigrationFailedAt?: Timestamp | null;
|
|
1482
1423
|
buildDistsStartedAt?: Timestamp | null;
|
|
1483
1424
|
buildDistsSucceededAt?: Timestamp | null;
|
|
1484
1425
|
buildDistsFailedAt?: Timestamp | null;
|
|
1485
1426
|
buildProdxAppImageStartedAt?: Timestamp | null;
|
|
1486
1427
|
buildProdxAppImageSucceededAt?: Timestamp | null;
|
|
1487
1428
|
buildProdxAppImageFailedAt?: Timestamp | null;
|
|
1429
|
+
prodxUpdateStartedAt?: Timestamp | null;
|
|
1430
|
+
prodxUpdateSucceededAt?: Timestamp | null;
|
|
1431
|
+
prodxUpdateFailedAt?: Timestamp | null;
|
|
1488
1432
|
uploadStartedAt?: Timestamp | null;
|
|
1489
1433
|
uploadSucceededAt?: Timestamp | null;
|
|
1490
1434
|
uploadFailedAt?: Timestamp | null;
|