@thingd/native 0.71.0 → 0.73.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/README.md CHANGED
@@ -4,4 +4,4 @@
4
4
 
5
5
  Native Node.js binding for [thingd](https://github.com/sayanmohsin/thingd) — wraps `crates/thingd` (published on crates.io as `thingd`).
6
6
 
7
- This package is an internal dependency of `@thingd/sdk` and provides the native SQLite-backed store via napi-rs. You don't need to install it directly — `@thingd/sdk` pulls it in automatically when using `driver: "native"`.
7
+ This package is an internal dependency of `@thingd/sdk` and provides the native persistent store via napi-rs. You don't need to install it directly — `@thingd/sdk` pulls it in automatically when using `driver: "native"`.
package/index.d.ts CHANGED
@@ -29,8 +29,6 @@ export class NativeThingStore {
29
29
  listJobsJson(queue: string): string;
30
30
  listDeadJobsJson(queue: string): string;
31
31
  listQueuesJson(): string;
32
- walCheckpoint(): string;
33
- backupTo(path: string): void;
34
32
  putObjectsBatchJson(objectsJson: string): string;
35
33
  appendEventsBatchJson(eventsJson: string): string;
36
34
  pushJobsBatchJson(jobsJson: string): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thingd/native",
3
- "version": "0.71.0",
3
+ "version": "0.73.1",
4
4
  "description": "Native Node.js binding for thingd — a fast object-first data engine for applications and AI agents.",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -12,7 +12,6 @@
12
12
  "keywords": [
13
13
  "thingd",
14
14
  "native",
15
- "fjall",
16
15
  "napi-rs",
17
16
  "rust",
18
17
  "data-engine"