drizzle-cube 0.1.63 → 0.1.65

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.
@@ -1335,6 +1335,12 @@ export declare interface SemanticQuery {
1335
1335
  limit?: number;
1336
1336
  offset?: number;
1337
1337
  order?: Record<string, 'asc' | 'desc'>;
1338
+ /**
1339
+ * Default value to fill missing time series gaps with.
1340
+ * Used when fillMissingDates is enabled on time dimensions.
1341
+ * Default: 0
1342
+ */
1343
+ fillMissingDatesValue?: number | null;
1338
1344
  }
1339
1345
 
1340
1346
  export { SQL }
@@ -1374,6 +1380,12 @@ export declare interface TimeDimension {
1374
1380
  dimension: string;
1375
1381
  granularity?: TimeGranularity;
1376
1382
  dateRange?: string | string[];
1383
+ /**
1384
+ * Fill missing dates in time series with the fill value.
1385
+ * Requires both granularity and dateRange to be set.
1386
+ * Default: true (enabled)
1387
+ */
1388
+ fillMissingDates?: boolean;
1377
1389
  }
1378
1390
 
1379
1391
  export declare interface TimeDimensionAnnotation {