@gscdump/engine-sqlite 0.15.0 → 0.17.0

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -0
  2. package/package.json +4 -4
package/dist/index.mjs CHANGED
@@ -287,6 +287,7 @@ function createD1ManifestStore(db) {
287
287
  const cond = tierMatchCond(filter.tier);
288
288
  if (cond) baseConds.push(cond);
289
289
  }
290
+ if (filter.searchType !== void 0) baseConds.push(filter.searchType === "web" ? or(eq$1(r2Manifest.searchType, "web"), isNull(r2Manifest.searchType)) : eq$1(r2Manifest.searchType, filter.searchType));
290
291
  const PARTITION_CHUNK = 80;
291
292
  if (filter.partitions && filter.partitions.length > 0) {
292
293
  const out = [];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/engine-sqlite",
3
3
  "type": "module",
4
- "version": "0.15.0",
4
+ "version": "0.17.0",
5
5
  "description": "SQLite / D1 engine adapter for @gscdump/analysis — typed analytics over sqlite-proxy executors (Cloudflare D1, libsql).",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -44,12 +44,12 @@
44
44
  "drizzle-orm": "^0.45.2"
45
45
  },
46
46
  "dependencies": {
47
- "@gscdump/engine": "0.15.0",
48
- "gscdump": "0.15.0"
47
+ "@gscdump/engine": "0.17.0",
48
+ "gscdump": "0.17.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "drizzle-orm": "^0.45.2",
52
- "vitest": "^4.1.5"
52
+ "vitest": "^4.1.6"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "obuild",