@databutton/firebase-types 1.27.0 → 1.27.1
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.
|
@@ -417,8 +417,17 @@ export interface ProjectTemplate {
|
|
|
417
417
|
name: string;
|
|
418
418
|
code: string;
|
|
419
419
|
}[];
|
|
420
|
+
/** @deprecated Use requirements */
|
|
420
421
|
requirementsRef: string;
|
|
422
|
+
requirements?: {
|
|
423
|
+
requirementsHash: string;
|
|
424
|
+
} | null;
|
|
425
|
+
/** @deprecated Use build */
|
|
421
426
|
buildRef?: string | null;
|
|
427
|
+
build?: {
|
|
428
|
+
requirementsSnapshots: RequirementsSnapshot[];
|
|
429
|
+
devxRequirementsId: string;
|
|
430
|
+
} | null;
|
|
422
431
|
}
|
|
423
432
|
export interface Requirements {
|
|
424
433
|
createdBy: PerformedBy;
|