@gscdump/engine 0.27.2 → 0.28.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.
- package/dist/THIRD-PARTY-LICENSES.md +443 -0
- package/dist/_chunks/engine.mjs +26 -12
- package/dist/_chunks/libs/chokidar.d.mts +1 -0
- package/dist/_chunks/libs/db0.d.mts +1 -0
- package/dist/_chunks/libs/denque.d.mts +1 -0
- package/dist/_chunks/libs/fzstd.mjs +545 -0
- package/dist/_chunks/libs/hyparquet-compressors.mjs +2796 -0
- package/dist/_chunks/libs/icebird.d.mts +441 -0
- package/dist/_chunks/libs/icebird.mjs +3708 -0
- package/dist/_chunks/libs/ioredis.d.mts +1 -0
- package/dist/_chunks/libs/lru-cache.d.mts +1 -0
- package/dist/_chunks/libs/unstorage.d.mts +120 -0
- package/dist/_chunks/sink.d.mts +62 -11
- package/dist/_chunks/storage.d.mts +33 -1
- package/dist/iceberg/index.d.mts +3 -2
- package/dist/iceberg/index.mjs +169 -17
- package/dist/index.d.mts +21 -2
- package/dist/index.mjs +27 -1
- package/dist/vendor/hysnappy-purejs.mjs +1 -12
- package/package.json +7 -6
- package/LICENSE +0 -21
|
@@ -1,13 +1,2 @@
|
|
|
1
|
-
import { snappyUncompress
|
|
2
|
-
function decode(input, outputLength) {
|
|
3
|
-
const output = new Uint8Array(outputLength);
|
|
4
|
-
snappyUncompress$1(input, output);
|
|
5
|
-
return output;
|
|
6
|
-
}
|
|
7
|
-
function snappyUncompressor() {
|
|
8
|
-
return decode;
|
|
9
|
-
}
|
|
10
|
-
function snappyUncompress(input, outputLength) {
|
|
11
|
-
return decode(input, outputLength);
|
|
12
|
-
}
|
|
1
|
+
import { snappyUncompress, snappyUncompressor } from "../_chunks/libs/hyparquet-compressors.mjs";
|
|
13
2
|
export { snappyUncompress, snappyUncompressor };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gscdump/engine",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.28.1",
|
|
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",
|
|
@@ -188,18 +188,19 @@
|
|
|
188
188
|
},
|
|
189
189
|
"dependencies": {
|
|
190
190
|
"drizzle-orm": "1.0.0-rc.3",
|
|
191
|
-
"
|
|
191
|
+
"hyparquet": "^1.26.0",
|
|
192
|
+
"hyparquet-writer": "^0.15.6",
|
|
192
193
|
"proper-lockfile": "^4.1.2",
|
|
193
|
-
"
|
|
194
|
-
"gscdump": "0.
|
|
194
|
+
"gscdump": "0.28.1",
|
|
195
|
+
"@gscdump/contracts": "0.28.1"
|
|
195
196
|
},
|
|
196
197
|
"devDependencies": {
|
|
197
198
|
"@duckdb/duckdb-wasm": "^1.32.0",
|
|
198
199
|
"@types/proper-lockfile": "^4.1.4",
|
|
199
200
|
"aws4fetch": "^1.0.20",
|
|
200
|
-
"
|
|
201
|
-
"hyparquet-writer": "^0.15.6",
|
|
201
|
+
"icebird": "^0.8.10",
|
|
202
202
|
"tsx": "^4.22.4",
|
|
203
|
+
"unstorage": "^1.17.5",
|
|
203
204
|
"vitest": "^4.1.9"
|
|
204
205
|
},
|
|
205
206
|
"scripts": {
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Harlan Wilton
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|