@resvary/sqlite 0.7.0 → 0.8.0

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -16,4 +16,4 @@ service account and restrict the database directory with NTFS ACLs.
16
16
 
17
17
  The existing `createSqliteReceiptStore` remains available for payment invoices, receipts, webhook deliveries, and Arc watcher cursors. Both stores can use the same file.
18
18
 
19
- Requires Node.js 24+ and local filesystem access. The credit store uses WAL, `BEGIN IMMEDIATE`, rollback-safe writes, and versioned schema metadata. Opening schema v4 with version 0.7 applies schema v5 automatically and backfills balances and open reservations into verified legacy lots.
19
+ Requires Node.js 24+ and local filesystem access. The credit store uses WAL, `BEGIN IMMEDIATE`, rollback-safe writes, and versioned schema metadata. Opening schema v4 applies schema v5 automatically and backfills balances and open reservations into verified legacy lots. Resvary 0.8 keeps schema v5 and stores advanced prices and receipt breakdowns in the existing payload columns.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resvary/sqlite",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "SQLite persistence for Resvary credits, usage receipts, and payment receipts",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -34,7 +34,7 @@
34
34
  "directory": "packages/sqlite"
35
35
  },
36
36
  "dependencies": {
37
- "@resvary/sdk": "0.7.0"
37
+ "@resvary/sdk": "0.8.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/node": "^22.20.1",
@@ -42,5 +42,5 @@
42
42
  "vitest": "^4.1.11"
43
43
  },
44
44
  "license": "Apache-2.0",
45
- "gitHead": "fa0365a648186aa0330da25268a3f6626d0db8a3"
45
+ "gitHead": "1372d2c0dcba8ea1cd25736848d5ec22a3e34fbf"
46
46
  }