drizzle-cube 0.2.29 → 0.2.30

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.
@@ -0,0 +1,6 @@
1
+ import { a8 as t } from "./components-DmAEuzWC.js";
2
+ export {
3
+ t as HighlightJS,
4
+ t as default
5
+ };
6
+ //# sourceMappingURL=core-C2bH1c5G.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"core-C2bH1c5G.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -493,6 +493,10 @@ export interface AnalysisBuilderStorageState {
493
493
  mergeStrategy?: QueryMergeStrategy;
494
494
  /** Dimension keys used for merging in 'merge' strategy */
495
495
  mergeKeys?: string[];
496
+ /** Binding key for funnel strategy (links steps together) */
497
+ funnelBindingKey?: FunnelBindingKey | null;
498
+ /** Time window per step for funnel strategy (ISO 8601 duration) */
499
+ stepTimeToConvert?: (string | null)[];
496
500
  }
497
501
  /**
498
502
  * Recent fields storage shape
@@ -1,4 +1,4 @@
1
- import { a as s, A as t, c as r, D as o, M as d, P as i, Q as l } from "./chunks/components-CCRoi0sB.js";
1
+ import { a as s, A as t, c as r, D as o, M as d, P as i, Q as l } from "./chunks/components-DmAEuzWC.js";
2
2
  import { c, j as u, h as y, e as P, d as b, v as h } from "./chunks/charts-Cr9ec7VQ.js";
3
3
  export {
4
4
  s as AnalyticsDashboard,
@@ -1,4 +1,4 @@
1
- import { d as s, a as t, A as i, C as r, c as l, D as u, p as o, M as n, b as d, P as c, Q as y, a6 as g, a5 as C, a4 as b, v as h, e as m, O as D, N as M, a3 as S, a0 as p, a2 as Q, a1 as A, S as T, W as F, a7 as f, $ as v, V as B, R as I, I as L, j as E, l as K, s as x, z as R, H as P, E as V, w as k, k as w, o as j, G as z, y as O, i as U, F as _, x as q, n as G, B as H, m as N, f as J, h as W, g as X, q as Y, r as Z, t as $, U as ee, u as ae, T as se, Y as te, _ as ie, X as re, L as le, J as ue, Z as oe, K as ne } from "./chunks/components-CCRoi0sB.js";
1
+ import { d as s, a as t, A as i, C as r, c as l, D as u, p as o, M as n, b as d, P as c, Q as y, a6 as g, a5 as C, a4 as b, v as h, e as m, O as D, N as M, a3 as S, a0 as p, a2 as Q, a1 as A, S as T, W as F, a7 as f, $ as v, V as B, R as I, I as L, j as E, l as K, s as x, z as R, H as P, E as V, w as k, k as w, o as j, G as z, y as O, i as U, F as _, x as q, n as G, B as H, m as N, f as J, h as W, g as X, q as Y, r as Z, t as $, U as ee, u as ae, T as se, Y as te, _ as ie, X as re, L as le, J as ue, Z as oe, K as ne } from "./chunks/components-DmAEuzWC.js";
2
2
  import { C as ce, D as ye, L as ge, T as Ce, i as be, e as he, y as me, z as De, m as Me, n as Se, t as pe, v as Qe, x as Ae, j as Te, h as Fe, l as fe, p as ve, q as Be, r as Ie, o as Le, k as Ee, s as Ke, a as xe, u as Re, c as Pe, d as Ve, b as ke, f as we, g as je, w as ze } from "./chunks/charts-nP6WCxHG.js";
3
3
  import { L as Ue, c as _e, f as qe, g as Ge, i as He, p as Ne, a as Je } from "./chunks/charts-Cr9ec7VQ.js";
4
4
  import { ScrollContainerProvider as Xe, useScrollContainer as Ye } from "./providers.js";
@@ -1,5 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  import { ColorPalette } from './utils/colorPalettes';
3
+ import { FunnelBindingKey } from './types/funnel';
3
4
  export interface CubeMetaField {
4
5
  name: string;
5
6
  title: string;
@@ -202,6 +203,8 @@ export interface MultiQueryConfig {
202
203
  mergeStrategy: QueryMergeStrategy;
203
204
  mergeKeys?: string[];
204
205
  queryLabels?: string[];
206
+ funnelBindingKey?: FunnelBindingKey | null;
207
+ stepTimeToConvert?: (string | null)[];
205
208
  }
206
209
  /**
207
210
  * Type guard to detect multi-query configuration