@trust0/ridb-core 1.7.39 → 1.7.40

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.
@@ -38,6 +38,16 @@ declare function __wbgtest_console_log(args: Array<any>): void;
38
38
  */
39
39
  declare function __wbgtest_console_error(args: Array<any>): void;
40
40
  /**
41
+ */
42
+ declare enum Errors {
43
+ Error = 0,
44
+ HookError = 1,
45
+ QueryError = 2,
46
+ SerializationError = 3,
47
+ ValidationError = 4,
48
+ AuthenticationError = 5,
49
+ }
50
+ /**
41
51
  * Represents the type of operation to be performed on the collection.
42
52
  */
43
53
  declare enum OpType {
@@ -62,16 +72,6 @@ declare enum OpType {
62
72
  */
63
73
  COUNT = 4,
64
74
  }
65
- /**
66
- */
67
- declare enum Errors {
68
- Error = 0,
69
- HookError = 1,
70
- QueryError = 2,
71
- SerializationError = 3,
72
- ValidationError = 4,
73
- AuthenticationError = 5,
74
- }
75
75
 
76
76
  type Operators<T> = {
77
77
  $gte?: number,
@@ -399,6 +399,7 @@ function __wbg_adapter_378(arg0, arg1, arg2, arg3, arg4) {
399
399
  function __wbg_adapter_395(arg0, arg1, arg2, arg3) {
400
400
  wasm.wasm_bindgen__convert__closures__invoke2_mut__h42aa995f02b6fdcb(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
401
401
  }
402
+ var Errors = Object.freeze({ Error: 0, "0": "Error", HookError: 1, "1": "HookError", QueryError: 2, "2": "QueryError", SerializationError: 3, "3": "SerializationError", ValidationError: 4, "4": "ValidationError", AuthenticationError: 5, "5": "AuthenticationError" });
402
403
  var OpType = Object.freeze({
403
404
  /**
404
405
  * Create operation.
@@ -426,7 +427,6 @@ var OpType = Object.freeze({
426
427
  COUNT: 4,
427
428
  "4": "COUNT"
428
429
  });
429
- var Errors = Object.freeze({ Error: 0, "0": "Error", HookError: 1, "1": "HookError", QueryError: 2, "2": "QueryError", SerializationError: 3, "3": "SerializationError", ValidationError: 4, "4": "ValidationError", AuthenticationError: 5, "5": "AuthenticationError" });
430
430
  var BasePluginFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
431
431
  }, unregister: () => {
432
432
  } } : new FinalizationRegistry((ptr) => wasm.__wbg_baseplugin_free(ptr >>> 0));
@@ -3144,6 +3144,8 @@ function initSync(module2) {
3144
3144
  }
3145
3145
  async function __wbg_init(input) {
3146
3146
  if (wasm !== void 0) return wasm;
3147
+ if (typeof input === "undefined") {
3148
+ }
3147
3149
  const imports = __wbg_get_imports();
3148
3150
  if (typeof input === "string" || typeof Request === "function" && input instanceof Request || typeof URL === "function" && input instanceof URL) {
3149
3151
  input = fetch(input);
@@ -352,6 +352,7 @@ function __wbg_adapter_378(arg0, arg1, arg2, arg3, arg4) {
352
352
  function __wbg_adapter_395(arg0, arg1, arg2, arg3) {
353
353
  wasm.wasm_bindgen__convert__closures__invoke2_mut__h42aa995f02b6fdcb(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
354
354
  }
355
+ var Errors = Object.freeze({ Error: 0, "0": "Error", HookError: 1, "1": "HookError", QueryError: 2, "2": "QueryError", SerializationError: 3, "3": "SerializationError", ValidationError: 4, "4": "ValidationError", AuthenticationError: 5, "5": "AuthenticationError" });
355
356
  var OpType = Object.freeze({
356
357
  /**
357
358
  * Create operation.
@@ -379,7 +380,6 @@ var OpType = Object.freeze({
379
380
  COUNT: 4,
380
381
  "4": "COUNT"
381
382
  });
382
- var Errors = Object.freeze({ Error: 0, "0": "Error", HookError: 1, "1": "HookError", QueryError: 2, "2": "QueryError", SerializationError: 3, "3": "SerializationError", ValidationError: 4, "4": "ValidationError", AuthenticationError: 5, "5": "AuthenticationError" });
383
383
  var BasePluginFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
384
384
  }, unregister: () => {
385
385
  } } : new FinalizationRegistry((ptr) => wasm.__wbg_baseplugin_free(ptr >>> 0));
@@ -3097,6 +3097,8 @@ function initSync(module2) {
3097
3097
  }
3098
3098
  async function __wbg_init(input) {
3099
3099
  if (wasm !== void 0) return wasm;
3100
+ if (typeof input === "undefined") {
3101
+ }
3100
3102
  const imports = __wbg_get_imports();
3101
3103
  if (typeof input === "string" || typeof Request === "function" && input instanceof Request || typeof URL === "function" && input instanceof URL) {
3102
3104
  input = fetch(input);
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
- "version": "1.7.39",
11
+ "version": "1.7.40",
12
12
  "main": "./build/ridb_core.js",
13
13
  "module": "./build/ridb_core.mjs",
14
14
  "types": "./build/ridb_core.d.ts",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "devDependencies": {
35
35
  "@esbuild-plugins/node-resolve": "^0.2.2",
36
- "@trust0/ridb-build": "0.0.23",
36
+ "@trust0/ridb-build": "0.0.24",
37
37
  "esbuild": "^0.25.4"
38
38
  },
39
39
  "files": [