[feature-136] parse model saber string search to query filter

This commit is contained in:
MathieuG-P
2023-05-16 22:04:33 +02:00
parent db656259e1
commit ace7657edb
2 changed files with 12 additions and 2 deletions
+4 -2
View File
@@ -1,4 +1,4 @@
import { MSGetSort, MSModelType } from "./model-saber.model";
import { MSGetQueryFilterType, MSGetSort, MSModelType } from "./model-saber.model";
export const MODEL_SABER_URL = "https://modelsaber.com";
@@ -24,4 +24,6 @@ export const MODEL_FILE_EXTENSIONS = {
}
export const MODEL_TYPES = Array.from(Object.values(MSModelType));
export const MS_GET_QUERY_SORTS = Array.from(Object.values(MSGetSort));
export const MS_GET_QUERY_SORTS = Array.from(Object.values(MSGetSort));
export const MS_QUERY_FILTER_TYPES = Array.from(Object.values(MSGetQueryFilterType));