Feature/rename queries to presets in market data table of admin control (#2165)

* Rename queries to presets

* Update changelog
This commit is contained in:
Thomas Kaul
2023-07-21 11:40:49 +02:00
committed by GitHub
parent d5b3c52602
commit cd67ce82fa
17 changed files with 970 additions and 127 deletions

View File

@@ -5,7 +5,7 @@ export interface Filter {
| 'ACCOUNT'
| 'ASSET_CLASS'
| 'ASSET_SUB_CLASS'
| 'QUERY_ID'
| 'PRESET_ID'
| 'SYMBOL'
| 'TAG';
}

View File

@@ -5,7 +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 { MarketDataPreset } from './market-data-preset.type';
import type { MarketState } from './market-state.type';
import type { Market } from './market.type';
import type { OrderWithAccount } from './order-with-account.type';
@@ -24,7 +24,7 @@ export type {
Granularity,
GroupBy,
Market,
MarketDataQuery,
MarketDataPreset,
MarketState,
OrderWithAccount,
RequestWithUser,

View File

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

View File

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