@databutton/firebase-types 1.17.15 → 1.17.17
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.
|
@@ -407,10 +407,6 @@ export interface ProjectTemplate {
|
|
|
407
407
|
code: string;
|
|
408
408
|
}[];
|
|
409
409
|
requirementsRef: string;
|
|
410
|
-
requirements: {
|
|
411
|
-
requirementsTxt: string;
|
|
412
|
-
requirementsHash: string;
|
|
413
|
-
};
|
|
414
410
|
}
|
|
415
411
|
export interface Requirements {
|
|
416
412
|
createdBy: PerformedBy;
|
|
@@ -476,4 +472,10 @@ export interface Measurement {
|
|
|
476
472
|
title: string;
|
|
477
473
|
durationInMs: number;
|
|
478
474
|
}
|
|
475
|
+
export interface Metric {
|
|
476
|
+
createdBy: PerformedBy;
|
|
477
|
+
projectId: string | null;
|
|
478
|
+
title: string;
|
|
479
|
+
meta: Record<string, string | number | boolean | null>;
|
|
480
|
+
}
|
|
479
481
|
export {};
|