@gscdump/cloudflare 0.33.10 → 0.35.1

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.
@@ -334,8 +334,6 @@ function resolveServerTailEngineResult(query) {
334
334
  if (cls === "cloud-only") return err(new ServerTailRoutingError(`archetype '${query.archetype}' is cloud-only — not a server-tail query`));
335
335
  if (cls === "duckdb") return ok("duckdb");
336
336
  if (query.archetype === "top-n-breakdown" && query.offset && query.offset > 0) return ok("duckdb");
337
- if (query.archetype === "top-n-breakdown" && query.includeTotal) return ok("duckdb");
338
- if (query.archetype === "top-n-breakdown" && query.compareRange) return ok("duckdb");
339
337
  if (query.archetype === "top-n-breakdown" && query.dimension === "queryCanonical") return ok("duckdb");
340
338
  if (hasRegexFacet(query)) return ok("duckdb");
341
339
  return ok("r2-sql");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/cloudflare",
3
3
  "type": "module",
4
- "version": "0.33.10",
4
+ "version": "0.35.1",
5
5
  "description": "Cloudflare-Workers-flavored helpers for the gscdump analytics stack: AnalyticsEnv binding contract, R2 SigV4 presigner, size-hint HMAC, DuckDB Workers shims, engine factory.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -46,10 +46,10 @@
46
46
  "dependencies": {
47
47
  "@uwdata/flechette": "^2.5.0",
48
48
  "aws4fetch": "^1.0.20",
49
- "@gscdump/contracts": "0.33.10",
50
- "@gscdump/engine": "0.33.10",
51
- "@gscdump/engine-sqlite": "0.33.10",
52
- "gscdump": "0.33.10"
49
+ "@gscdump/engine-sqlite": "0.35.1",
50
+ "gscdump": "0.35.1",
51
+ "@gscdump/engine": "0.35.1",
52
+ "@gscdump/contracts": "0.35.1"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@cloudflare/vitest-pool-workers": "^0.16.20",