Feature/add queries to market data table in admin control (#2153)

* Add queries

* ETF_WITHOUT_COUNTRIES
* ETF_WITHOUT_SECTORS

* Update changelog
This commit is contained in:
Thomas Kaul
2023-07-15 17:54:16 +02:00
committed by GitHub
parent 81ef95e13e
commit 68a9a7f6f9
10 changed files with 113 additions and 45 deletions

View File

@@ -1,5 +1,11 @@
export interface Filter {
id: string;
label?: string;
type: 'ACCOUNT' | 'ASSET_CLASS' | 'ASSET_SUB_CLASS' | 'SYMBOL' | 'TAG';
type:
| 'ACCOUNT'
| 'ASSET_CLASS'
| 'ASSET_SUB_CLASS'
| 'QUERY_ID'
| 'SYMBOL'
| 'TAG';
}

View File

@@ -5,6 +5,7 @@ import type { ColorScheme } from './color-scheme.type';
import type { DateRange } from './date-range.type';
import type { Granularity } from './granularity.type';
import type { GroupBy } from './group-by.type';
import type { MarketDataQuery } from './market-data-query.type';
import type { MarketState } from './market-state.type';
import type { Market } from './market.type';
import type { OrderWithAccount } from './order-with-account.type';
@@ -23,6 +24,7 @@ export type {
Granularity,
GroupBy,
Market,
MarketDataQuery,
MarketState,
OrderWithAccount,
RequestWithUser,

View File

@@ -0,0 +1 @@
export type MarketDataQuery = 'ETF_WITHOUT_COUNTRIES' | 'ETF_WITHOUT_SECTORS';