diff --git a/src/client/dd-hub-react/src/_mock/_data.ts b/src/client/dd-hub-react/src/_mock/_data.ts index ef00abf..b1a87d6 100644 --- a/src/client/dd-hub-react/src/_mock/_data.ts +++ b/src/client/dd-hub-react/src/_mock/_data.ts @@ -235,5 +235,7 @@ export const _filters: Filter[] = [ { id: 7, label: 'Höchstbetrag', name: 'maxAmount', type: 'DECIMAL' }, { id: 8, label: 'Steuer inbegriffen?', name: 'taxIncluded', type: 'BOOLEAN' }, { id: 9, label: 'Währung', name: 'currency', type: 'VARCHAR' }, - { id: 10, label: 'Erstellungsdatum', name: 'createdAt', type: 'DATE' } + { id: 10, label: 'Erstellungsdatum', name: 'createdAt', type: 'DATE' }, + { id: 11, label: 'Lieferzeit', name: 'deliveryTime', type: 'TIME' }, + { id: 12, label: 'Letzte Aktualisierung', name: 'lastUpdated', type: 'DATETIME' } ]; \ No newline at end of file diff --git a/src/client/dd-hub-react/src/api/filter-service.ts b/src/client/dd-hub-react/src/api/filter-service.ts index a544205..3dffcf1 100644 --- a/src/client/dd-hub-react/src/api/filter-service.ts +++ b/src/client/dd-hub-react/src/api/filter-service.ts @@ -1,6 +1,6 @@ import { _filters } from 'src/_mock/_data'; -export type Type = 'BOOLEAN' | 'DATE' | 'VARCHAR' | 'INTEGER' | 'DECIMAL'; +export type Type = 'BOOLEAN' | 'DATE' | 'TIME' | 'DATETIME' | 'VARCHAR' | 'INTEGER' | 'DECIMAL'; export type Filter = { id: number;