@barchart/chart-lib 2.313.2 → 2.314.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2057,6 +2057,11 @@ declare module "@barchart/chart-lib" {
2057
2057
  aggregation: Aggregation;
2058
2058
  /** Limit returned data to a given time span. */
2059
2059
  range?: Range;
2060
+ /** Should we apply the splits (`true` by default) to the data? */
2061
+ splits?: boolean;
2062
+ /** Should we pad the data (`false` by default) with almost empty values - for holidays - to make sure that
2063
+ * the time series is continuous? */
2064
+ padded?: boolean;
2060
2065
  }
2061
2066
 
2062
2067
  interface EventsTimeSeriesQuery extends BaseTimeSeriesQuery {