@databutton/firebase-types 1.21.4 → 1.21.6
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.
|
@@ -419,6 +419,7 @@ export interface ProjectTemplate {
|
|
|
419
419
|
export interface Requirements {
|
|
420
420
|
createdBy: PerformedBy;
|
|
421
421
|
prevRequirementsId: string | null;
|
|
422
|
+
installStartedAt: Timestamp | null;
|
|
422
423
|
installSuccessAt: Timestamp | null;
|
|
423
424
|
installFailedAt: Timestamp | null;
|
|
424
425
|
logs: string | null;
|
|
@@ -536,7 +537,7 @@ export interface AppConfigSnapshot {
|
|
|
536
537
|
jobs: JobSnapshotDeprecated[];
|
|
537
538
|
views: ViewSnapshotDeprecated[];
|
|
538
539
|
}
|
|
539
|
-
export type
|
|
540
|
+
export type RequirementsSnapshot = {
|
|
540
541
|
requirementsId: string;
|
|
541
542
|
baseRequirementsTxt: string;
|
|
542
543
|
userRequirementsTxt: string;
|
|
@@ -551,8 +552,9 @@ export type Build = {
|
|
|
551
552
|
eventRef: string;
|
|
552
553
|
devxVersion: "@default" | string;
|
|
553
554
|
devxRequirementsId: string;
|
|
554
|
-
requirementsSnapshots:
|
|
555
|
+
requirementsSnapshots: RequirementsSnapshot[];
|
|
555
556
|
createdBy: PerformedBy;
|
|
557
|
+
resolveStartedAt?: Timestamp;
|
|
556
558
|
resolveFailedAt?: Timestamp;
|
|
557
559
|
resolveSucceededAt?: Timestamp;
|
|
558
560
|
buildStartedAt?: Timestamp;
|