@query-farm/vgi-rpc 0.7.3 → 0.7.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@query-farm/vgi-rpc",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "license": "Apache-2.0",
5
5
  "homepage": "https://vgi-rpc-typescript.query.farm",
6
6
  "repository": {
@@ -50,7 +50,7 @@
50
50
  "dependencies": {
51
51
  "@noble/ciphers": "^2.2.0",
52
52
  "@query-farm/apache-arrow": "^21.1.1",
53
- "@uwdata/flechette": "github:Query-farm/flechette#fix/timestamp-bigint-encode",
53
+ "@query-farm/flechette": "^2.4.0",
54
54
  "fzstd": "^0.1.1",
55
55
  "oauth4webapi": "^3.8.6"
56
56
  },
@@ -90,7 +90,7 @@
90
90
  "build": "bun run build:types && bun run build:js",
91
91
  "build:types": "bunx tsc -p tsconfig.build.json",
92
92
  "build:js": "bun build ./src/index.ts --outdir dist --target node --format esm --sourcemap=external --external @query-farm/apache-arrow",
93
- "postinstall": "cd node_modules/@query-farm/apache-arrow && node -e \"const fs=require('fs');const p=JSON.parse(fs.readFileSync('package.json','utf8'));p.main='src/Arrow.node.ts';fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n')\" && cd ../../.. && bun scripts/patch-flechette.mjs",
93
+ "postinstall": "cd node_modules/@query-farm/apache-arrow && node -e \"const fs=require('fs');const p=JSON.parse(fs.readFileSync('package.json','utf8'));p.main='src/Arrow.node.ts';fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n')\"",
94
94
  "test": "bun test",
95
95
  "lint": "biome check .",
96
96
  "lint:fix": "biome check --write .",
@@ -36,7 +36,7 @@ import {
36
36
  tableFromIPC,
37
37
  tablesToIPC,
38
38
  tableToIPC,
39
- } from "@uwdata/flechette";
39
+ } from "@query-farm/flechette";
40
40
  import type {
41
41
  IncrementalEncoder,
42
42
  VgiBackendInfo,
@@ -38,7 +38,7 @@ import {
38
38
  timestamp,
39
39
  union,
40
40
  utf8,
41
- } from "@uwdata/flechette";
41
+ } from "@query-farm/flechette";
42
42
 
43
43
  function fField(f: any): any {
44
44
  return f_field(f.name, toFlechetteType(f.type), f.nullable ?? true, f.metadata ?? null);