@gscdump/engine-duckdb-wasm 0.35.7 → 0.35.8
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.
- package/dist/index.d.mts +7 -0
- package/dist/index.mjs +1 -0
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -215,6 +215,13 @@ interface OpfsAttachedHandle {
|
|
|
215
215
|
* caller routes these to the server tail. Empty on a clean attach.
|
|
216
216
|
*/
|
|
217
217
|
degradedTables: string[];
|
|
218
|
+
/**
|
|
219
|
+
* Why each degraded table degraded. 'quota' is actionable (the caller can
|
|
220
|
+
* reclaim space via `clearOpfsSnapshotCache` and retry once); 'contention'
|
|
221
|
+
* and 'incomplete' are transient multi-tab races the buffer fallback
|
|
222
|
+
* already absorbs.
|
|
223
|
+
*/
|
|
224
|
+
degradeReasons: Partial<Record<string, 'quota' | 'contention' | 'incomplete'>>;
|
|
218
225
|
/** Detach the created views + release the registered OPFS file handles. */
|
|
219
226
|
detach: () => Promise<void>;
|
|
220
227
|
}
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gscdump/engine-duckdb-wasm",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.35.
|
|
4
|
+
"version": "0.35.8",
|
|
5
5
|
"description": "DuckDB-WASM engine adapter for @gscdump/analysis — typed browser analytics against parquet via R2.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Harlan Wilton",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"drizzle-orm": "1.0.0-rc.3",
|
|
48
|
-
"@gscdump/contracts": "0.35.
|
|
49
|
-
"gscdump": "0.35.
|
|
50
|
-
"
|
|
48
|
+
"@gscdump/contracts": "0.35.8",
|
|
49
|
+
"@gscdump/engine": "0.35.8",
|
|
50
|
+
"gscdump": "0.35.8"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@duckdb/duckdb-wasm": "^1.32.0",
|