albedo-node 0.5.6 → 0.5.7

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/dist/index.d.ts CHANGED
@@ -237,7 +237,7 @@ export declare class Bucket {
237
237
  type BSONValue = any;
238
238
  type FilterOperators = {
239
239
  $eq: BSONValue;
240
- } | {
240
+ } | BSONValue | {
241
241
  $ne: BSONValue;
242
242
  } | {
243
243
  $lt: BSONValue;
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ exports.where = where;
5
5
  const platformSuffix = process.platform == "darwin" ? "macos" : process.platform === "win32" ? "windows" : process.platform;
6
6
  const archSuffix = process.arch === "x64" ? "x86_64" : process.arch === "arm64" ? "aarch64" : process.arch;
7
7
  const isMusl = process.versions.libc && process.versions.libc.includes("musl");
8
- const libcSuffix = isMusl ? "_musl" : "";
8
+ const libcSuffix = process.platform == "linux" ? (isMusl ? "_musl" : "_gnu") : "";
9
9
  const albedo = require(`../native/albedo.${archSuffix}_${platformSuffix}${libcSuffix}.node`);
10
10
  exports.default = albedo;
11
11
  exports.BSON = {
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "albedo-node",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "description": "High-performance embedded database for Node.js with native bindings, BSON support, indexing, and replication",
5
5
  "keywords": [
6
6
  "albedo",