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:
@@ -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';
|
||||
}
|
||||
|
@@ -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,
|
||||
|
1
libs/common/src/lib/types/market-data-query.type.ts
Normal file
1
libs/common/src/lib/types/market-data-query.type.ts
Normal file
@@ -0,0 +1 @@
|
||||
export type MarketDataQuery = 'ETF_WITHOUT_COUNTRIES' | 'ETF_WITHOUT_SECTORS';
|
Reference in New Issue
Block a user