1
0
Fork 0
mirror of synced 2024-07-06 15:00:49 +12:00

Only ui metadata fields

This commit is contained in:
Adria Navarro 2023-07-24 12:00:59 +02:00
parent e068e62eb1
commit 4e646bb463
2 changed files with 3 additions and 5 deletions

View file

@ -40,10 +40,8 @@ describe("/v2/views", () => {
order: SortOrder.DESCENDING,
type: SortType.STRING,
},
schema: {
columns: {
name: {
name: "name",
type: FieldType.STRING,
visible: true,
},
},

View file

@ -1,6 +1,6 @@
import { SortOrder, SortType } from "../../api"
import { SearchFilters } from "../../sdk"
import { TableSchema } from "./table"
import { TableSchema, UIFieldMetadata } from "./table"
export interface View {
name: string
@ -25,7 +25,7 @@ export interface ViewV2 {
order?: SortOrder
type?: SortType
}
schema?: TableSchema
columns?: Record<string, UIFieldMetadata>
}
export type ViewSchema = ViewCountOrSumSchema | ViewStatisticsSchema