Merge branch 'master' into 14452-my-account
[arvados-workbench2.git] / src / models / search-bar.ts
index 9fadc2af4a9d616f93ccbff5829799e39cf18bda..4df5c38f2527278babfa187210681d89310685cb 100644 (file)
@@ -4,15 +4,21 @@
 
 import { ResourceKind } from '~/models/resource';
 
-export interface SearchBarAdvanceFormData {
+export type SearchBarAdvanceFormData = {
     type?: ResourceKind;
     cluster?: ClusterObjectType;
-    project?: string;
+    projectUuid?: string;
     inTrash: boolean;
     dateFrom: string;
     dateTo: string;
     saveQuery: boolean;
     searchQuery: string;
+    properties: PropertyValues[];
+} & PropertyValues;
+
+export interface PropertyValues {
+    key: string;
+    value: string;
 }
 
 export enum ClusterObjectType {