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