filter behaviour refactor

This commit is contained in:
Jan Prochazka
2024-08-19 12:57:50 +02:00
parent 17cf9d5007
commit 64e770f51e
4 changed files with 16 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
import type { DatabaseInfo, ForeignKeyInfo, NamedObjectInfo, TableInfo } from 'dbgate-types';
import type { DatabaseInfo, FilterBehaviour, ForeignKeyInfo, NamedObjectInfo, TableInfo } from 'dbgate-types';
import uuidv1 from 'uuid/v1';
// export interface PerspectiveConfigColumns {
@@ -31,7 +31,7 @@ export interface PerspectiveCustomJoinConfig {
export interface PerspectiveFilterColumnInfo {
columnName: string;
filterType: string;
filterBehaviour: FilterBehaviour;
pureName: string;
schemaName: string;
foreignKey: ForeignKeyInfo;