@databutton/firebase-types 1.26.6 → 1.26.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.
|
@@ -546,9 +546,7 @@ export type RequirementsSnapshot = {
|
|
|
546
546
|
venvHash?: string | null;
|
|
547
547
|
};
|
|
548
548
|
export type Build = {
|
|
549
|
-
|
|
550
|
-
eventRef?: string | null;
|
|
551
|
-
devxVersion: "@default" | string;
|
|
549
|
+
devxVersion?: string;
|
|
552
550
|
devxRequirementsId: string;
|
|
553
551
|
requirementsSnapshots: RequirementsSnapshot[];
|
|
554
552
|
createdBy: PerformedBy;
|
|
@@ -593,7 +591,7 @@ export type PageSnapshot<T = ComponentSnapshotBase> = T & {
|
|
|
593
591
|
slug: string;
|
|
594
592
|
};
|
|
595
593
|
export type MultipageAppSnapshot<T = ComponentSnapshotBase> = {
|
|
596
|
-
id: "main";
|
|
594
|
+
id: "main" | string;
|
|
597
595
|
pages: PageSnapshot<T>[];
|
|
598
596
|
dependencies: ComponentDependenciesSnapshot<T>;
|
|
599
597
|
};
|