@databutton/firebase-types 1.21.5 → 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,14 +537,13 @@ 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;
|
|
543
544
|
pyprojectToml?: string | null;
|
|
544
545
|
pdmLock?: string | null;
|
|
545
546
|
venvHash?: string | null;
|
|
546
|
-
oldVenvHash?: string | null;
|
|
547
547
|
};
|
|
548
548
|
export type Build = {
|
|
549
549
|
projectId: string;
|
|
@@ -552,8 +552,9 @@ export type Build = {
|
|
|
552
552
|
eventRef: string;
|
|
553
553
|
devxVersion: "@default" | string;
|
|
554
554
|
devxRequirementsId: string;
|
|
555
|
-
requirementsSnapshots:
|
|
555
|
+
requirementsSnapshots: RequirementsSnapshot[];
|
|
556
556
|
createdBy: PerformedBy;
|
|
557
|
+
resolveStartedAt?: Timestamp;
|
|
557
558
|
resolveFailedAt?: Timestamp;
|
|
558
559
|
resolveSucceededAt?: Timestamp;
|
|
559
560
|
buildStartedAt?: Timestamp;
|