import { CommonParams } from './time-series'; import { ExtendedParams } from '../base-interfaces'; import { Content as HistoricalPricingContent, InterdayInterval, IntradayInterval } from './historical-pricing'; export { InterdayInterval, IntradayInterval, SessionType, Table, TableRow } from './historical-pricing'; export type TimestampLabel = 'startPeriod' | 'endPeriod'; export type Adjustment = 'unadjusted' | 'exchangeCorrection' | 'manualCorrection' | 'CCH' | 'CRE' | 'RPO' | 'RTS'; export interface Params extends HistoricalPricingContent, ExtendedParams, CommonParams { interval?: InterdayInterval | IntradayInterval; adjustments?: Adjustment[]; summaryTimestampLabel?: TimestampLabel; } export type Content = Pick>;