add to data management page

This commit is contained in:
Michael Genson
2026-02-22 21:35:08 +00:00
parent 74c73f051d
commit 0380baedb1
3 changed files with 131 additions and 1 deletions

View File

@@ -58,3 +58,13 @@ export interface QueryFilterJSONPart {
relationalOperator?: RelationalKeyword | RelationalOperator | null;
value?: string | string[] | null;
}
export type StandardizedUnitType
= | "fluid ounce"
| "cup"
| "ounce"
| "pound"
| "milliliter"
| "liter"
| "gram"
| "kilogram";