@gscdump/engine 0.25.4 → 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.
|
|
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",
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
"peerDependencies": {
|
|
169
169
|
"@duckdb/duckdb-wasm": "^1.32.0",
|
|
170
170
|
"hyparquet": "^1.26.0",
|
|
171
|
-
"hyparquet-writer": "^0.15.
|
|
171
|
+
"hyparquet-writer": "^0.15.6"
|
|
172
172
|
},
|
|
173
173
|
"peerDependenciesMeta": {
|
|
174
174
|
"@duckdb/duckdb-wasm": {
|
|
@@ -183,18 +183,18 @@
|
|
|
183
183
|
},
|
|
184
184
|
"dependencies": {
|
|
185
185
|
"drizzle-orm": "1.0.0-rc.3",
|
|
186
|
-
"icebird": "^0.8.
|
|
186
|
+
"icebird": "^0.8.8",
|
|
187
187
|
"proper-lockfile": "^4.1.2",
|
|
188
|
-
"gscdump": "0.25.
|
|
189
|
-
"
|
|
188
|
+
"@gscdump/contracts": "0.25.6",
|
|
189
|
+
"gscdump": "0.25.6"
|
|
190
190
|
},
|
|
191
191
|
"devDependencies": {
|
|
192
192
|
"@duckdb/duckdb-wasm": "^1.32.0",
|
|
193
193
|
"@types/proper-lockfile": "^4.1.4",
|
|
194
194
|
"aws4fetch": "^1.0.20",
|
|
195
195
|
"hyparquet": "^1.26.0",
|
|
196
|
-
"hyparquet-writer": "^0.15.
|
|
197
|
-
"tsx": "^4.22.
|
|
196
|
+
"hyparquet-writer": "^0.15.6",
|
|
197
|
+
"tsx": "^4.22.4",
|
|
198
198
|
"vitest": "^4.1.7"
|
|
199
199
|
},
|
|
200
200
|
"scripts": {
|