tigerbeetle-node 0.12.0 → 0.12.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
@@ -172,7 +172,7 @@ not necessarily the same as the order of IDs in the
172
172
  request. You can refer to the ID field in the response to
173
173
  distinguish accounts.
174
174
 
175
- In this example, transfer `137` exists while transfer `138` does not.
175
+ In this example, account `137` exists while account `138` does not.
176
176
 
177
177
  ```javascript
178
178
  const accounts = await client.lookupAccounts([137n, 138n]);
@@ -446,8 +446,10 @@ const errors = await client.createTransfers(batch);
446
446
  ### On Linux and macOS
447
447
 
448
448
  ```console
449
- $ git clone https://github.com/tigerbeetledb/tigerbeetle
449
+ $ rm -rf tigerbeetle
450
+ $ git clone https://github.com/${GITHUB_REPOSITY:-tigerbeetledb/tigerbeetle}
450
451
  $ cd tigerbeetle
452
+ $ git checkout $GIT_SHA # Optional
451
453
  $ ./scripts/install_zig.sh
452
454
  $ cd src/clients/node
453
455
  $ npm install --include dev
@@ -456,12 +458,5 @@ $ npm pack
456
458
 
457
459
  ### On Windows
458
460
 
459
- ```console
460
- $ git clone https://github.com/tigerbeetledb/tigerbeetle
461
- $ cd tigerbeetle
462
- $ ./scripts/install_zig.bat
463
- $ npm install --include dev # NOTE! This does not work at the moment (on Windows).
464
- $ cd src/clients/node
465
- $ npm pack
466
- ```
461
+ Unsupported.
467
462
 
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tigerbeetle-node",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "TigerBeetle Node.js client",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",