* Respect data source in symbol data endpoint * Respect data source in the data provider service * Combine symbol with data source in get() of data provider service * Improve search functionality for multiple data sources * Update changelog
12 lines
359 B
TypeScript
12 lines
359 B
TypeScript
import { IDataGatheringItem } from '@ghostfolio/api/services/interfaces/interfaces';
|
|
import { Currency } from '@prisma/client';
|
|
|
|
import { DateQuery } from './date-query.interface';
|
|
|
|
export interface GetValuesParams {
|
|
currencies: { [symbol: string]: Currency };
|
|
dataGatheringItems: IDataGatheringItem[];
|
|
dateQuery: DateQuery;
|
|
userCurrency: Currency;
|
|
}
|