/** * Information about the analysis period. */ export type PeriodInfo = { /** * Start date of analysis period */ start_date?: string; /** * End date of analysis period */ end_date?: string; /** * Number of days in period */ period_days?: number; /** * Type of date range (custom, default, all_time, etc.) */ range_type?: string; };