@gscdump/engine 0.25.5 → 0.25.6

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.
@@ -9,6 +9,14 @@ interface AnalysisParams {
9
9
  brandTerms?: string[];
10
10
  limit?: number;
11
11
  offset?: number;
12
+ /**
13
+ * movers: select a single direction and paginate within it. When set, the
14
+ * analyzer filters to that direction, reports `meta.total` as the full
15
+ * pre-pagination count for the direction, and applies `limit`/`offset`. When
16
+ * unset, both directions are returned uncapped (the top-N callers slice
17
+ * themselves).
18
+ */
19
+ direction?: 'rising' | 'declining';
12
20
  /** Sort column. Each analyzer enforces its own whitelist. */
13
21
  sortBy?: string;
14
22
  /** Sort direction. Default per-analyzer. */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/engine",
3
3
  "type": "module",
4
- "version": "0.25.5",
4
+ "version": "0.25.6",
5
5
  "description": "Append-only Parquet/DuckDB storage engine + planner + adapters for the gscdump pipeline. Node + edge runtimes; opt-in heavy peers.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -185,8 +185,8 @@
185
185
  "drizzle-orm": "1.0.0-rc.3",
186
186
  "icebird": "^0.8.8",
187
187
  "proper-lockfile": "^4.1.2",
188
- "gscdump": "0.25.5",
189
- "@gscdump/contracts": "0.25.5"
188
+ "@gscdump/contracts": "0.25.6",
189
+ "gscdump": "0.25.6"
190
190
  },
191
191
  "devDependencies": {
192
192
  "@duckdb/duckdb-wasm": "^1.32.0",