tigerbeetle-node 0.14.181 → 0.14.183

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.
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tigerbeetle-node",
3
- "version": "0.14.181",
3
+ "version": "0.14.183",
4
4
  "description": "TigerBeetle Node.js client",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
package/src/node.zig CHANGED
@@ -153,7 +153,7 @@ fn create(env: c.napi_env, cluster_id: u128, concurrency: u32, addresses: []cons
153
153
  on_completion,
154
154
  ) catch |err| switch (err) {
155
155
  error.OutOfMemory => return translate.throw(env, "Failed to allocate memory for Client."),
156
- error.Unexpected => return translate.throw(env, "Unexpected error occured on Client."),
156
+ error.Unexpected => return translate.throw(env, "Unexpected error occurred on Client."),
157
157
  error.AddressInvalid => return translate.throw(env, "Invalid replica address."),
158
158
  error.AddressLimitExceeded => return translate.throw(env, "Too many replica addresses."),
159
159
  error.ConcurrencyMaxInvalid => return translate.throw(env, "Concurrency is too high."),