@taladb/web 0.10.0 → 0.10.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/LICENSE CHANGED
@@ -187,7 +187,7 @@
187
187
  same "printed page" as the copyright notice for easier
188
188
  identification within third-party archives.
189
189
 
190
- Copyright 2025-2026 thinkgrid-labs
190
+ Copyright 2025-2026 taladb
191
191
 
192
192
  Licensed under the Apache License, Version 2.0 (the "License");
193
193
  you may not use this file except in compliance with the License.
package/README.md CHANGED
@@ -86,8 +86,8 @@ pnpm --filter @taladb/web build
86
86
 
87
87
  ## Full Documentation
88
88
 
89
- **[https://thinkgrid-labs.github.io/taladb/guide/web](https://thinkgrid-labs.github.io/taladb/guide/web)**
89
+ **[https://taladb.github.io/taladb/guide/web](https://taladb.github.io/taladb/guide/web)**
90
90
 
91
91
  ## License
92
92
 
93
- Apache 2.0 © [ThinkGrid Labs](https://github.com/thinkgrid-labs)
93
+ Apache 2.0 © [TalaDB](https://github.com/taladb)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taladb/web",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "TalaDB WASM bindings — document queries and vector search in the browser",
5
5
  "main": "pkg/taladb_web.js",
6
6
  "types": "pkg/taladb_web.d.ts",
@@ -18,12 +18,12 @@
18
18
  ],
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "https://github.com/thinkgrid-labs/taladb.git",
21
+ "url": "https://github.com/taladb/taladb.git",
22
22
  "directory": "packages/bindings/web"
23
23
  },
24
- "homepage": "https://thinkgrid-labs.github.io/taladb/guide/web",
24
+ "homepage": "https://taladb.github.io/taladb/guide/web",
25
25
  "bugs": {
26
- "url": "https://github.com/thinkgrid-labs/taladb/issues"
26
+ "url": "https://github.com/taladb/taladb/issues"
27
27
  },
28
28
  "engines": {
29
29
  "node": ">=18"
package/pkg/README.md CHANGED
@@ -86,8 +86,8 @@ pnpm --filter @taladb/web build
86
86
 
87
87
  ## Full Documentation
88
88
 
89
- **[https://thinkgrid-labs.github.io/taladb/guide/web](https://thinkgrid-labs.github.io/taladb/guide/web)**
89
+ **[https://taladb.github.io/taladb/guide/web](https://taladb.github.io/taladb/guide/web)**
90
90
 
91
91
  ## License
92
92
 
93
- Apache 2.0 © [ThinkGrid Labs](https://github.com/thinkgrid-labs)
93
+ Apache 2.0 © [TalaDB](https://github.com/taladb)
package/pkg/package.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "name": "taladb-web",
3
3
  "type": "module",
4
4
  "collaborators": [
5
- "thinkgrid-labs"
5
+ "taladb"
6
6
  ],
7
7
  "description": "TalaDB browser WASM bindings (wasm-bindgen + OPFS) and Cloudflare Workers",
8
- "version": "0.10.0",
8
+ "version": "0.10.1",
9
9
  "license": "Apache-2.0",
10
10
  "files": [
11
11
  "taladb_web_bg.wasm",
@@ -593,13 +593,13 @@ export interface InitOutput {
593
593
  readonly taladbwasm_setUserVersion: (a: number, b: number) => [number, number];
594
594
  readonly taladbwasm_userVersion: (a: number) => [number, number, number];
595
595
  readonly init: () => void;
596
+ readonly idb_load_snapshot: (a: number, b: number) => any;
597
+ readonly idb_save_snapshot: (a: number, b: number, c: number, d: number) => any;
598
+ readonly opfs_open_backend: (a: number, b: number) => any;
596
599
  readonly is_opfs_available: () => any;
597
600
  readonly opfs_delete_snapshot: (a: number, b: number) => any;
598
601
  readonly opfs_flush_snapshot: (a: number, b: number, c: number, d: number) => any;
599
602
  readonly opfs_load_snapshot: (a: number, b: number) => any;
600
- readonly idb_load_snapshot: (a: number, b: number) => any;
601
- readonly idb_save_snapshot: (a: number, b: number, c: number, d: number) => any;
602
- readonly opfs_open_backend: (a: number, b: number) => any;
603
603
  readonly wasm_bindgen_4501a39796791c69___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_4501a39796791c69___JsValue____Output_______: (a: number, b: number) => void;
604
604
  readonly wasm_bindgen_4501a39796791c69___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
605
605
  readonly wasm_bindgen_4501a39796791c69___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_4501a39796791c69___JsValue____Output___core_9b3796e30d99ddb7___result__Result_____wasm_bindgen_4501a39796791c69___JsError___: (a: number, b: number) => void;
Binary file
@@ -82,13 +82,13 @@ export const taladbwasm_openWithSnapshot: (a: number, b: number) => [number, num
82
82
  export const taladbwasm_setUserVersion: (a: number, b: number) => [number, number];
83
83
  export const taladbwasm_userVersion: (a: number) => [number, number, number];
84
84
  export const init: () => void;
85
+ export const idb_load_snapshot: (a: number, b: number) => any;
86
+ export const idb_save_snapshot: (a: number, b: number, c: number, d: number) => any;
87
+ export const opfs_open_backend: (a: number, b: number) => any;
85
88
  export const is_opfs_available: () => any;
86
89
  export const opfs_delete_snapshot: (a: number, b: number) => any;
87
90
  export const opfs_flush_snapshot: (a: number, b: number, c: number, d: number) => any;
88
91
  export const opfs_load_snapshot: (a: number, b: number) => any;
89
- export const idb_load_snapshot: (a: number, b: number) => any;
90
- export const idb_save_snapshot: (a: number, b: number, c: number, d: number) => any;
91
- export const opfs_open_backend: (a: number, b: number) => any;
92
92
  export const wasm_bindgen_4501a39796791c69___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_4501a39796791c69___JsValue____Output_______: (a: number, b: number) => void;
93
93
  export const wasm_bindgen_4501a39796791c69___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut_____Output_______: (a: number, b: number) => void;
94
94
  export const wasm_bindgen_4501a39796791c69___closure__destroy___dyn_core_9b3796e30d99ddb7___ops__function__FnMut__wasm_bindgen_4501a39796791c69___JsValue____Output___core_9b3796e30d99ddb7___result__Result_____wasm_bindgen_4501a39796791c69___JsError___: (a: number, b: number) => void;