@trust0/ridb-core 1.7.15 → 1.7.16
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/build/ridb_core.d.ts +10 -10
- package/build/ridb_core.js +1 -1
- package/build/ridb_core.mjs +3080 -0
- package/build/ridb_core_bg.d.mts +2 -0
- package/build/ridb_core_bg.mjs +5 -0
- package/package.json +4 -3
package/build/ridb_core.d.ts
CHANGED
|
@@ -38,6 +38,16 @@ declare function __wbgtest_console_warn(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 InternalsRecord = {
|
|
77
77
|
[name: string]: BaseStorage<SchemaTypeRecord>
|
package/build/ridb_core.js
CHANGED
|
@@ -377,6 +377,7 @@ function __wbg_adapter_339(arg0, arg1, arg2, arg3, arg4) {
|
|
|
377
377
|
function __wbg_adapter_396(arg0, arg1, arg2, arg3) {
|
|
378
378
|
wasm.wasm_bindgen__convert__closures__invoke2_mut__h424d8c39cf909020(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
379
379
|
}
|
|
380
|
+
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" });
|
|
380
381
|
var OpType = Object.freeze({
|
|
381
382
|
/**
|
|
382
383
|
* Create operation.
|
|
@@ -404,7 +405,6 @@ var OpType = Object.freeze({
|
|
|
404
405
|
COUNT: 4,
|
|
405
406
|
"4": "COUNT"
|
|
406
407
|
});
|
|
407
|
-
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" });
|
|
408
408
|
var BasePluginFinalization = typeof FinalizationRegistry === "undefined" ? { register: () => {
|
|
409
409
|
}, unregister: () => {
|
|
410
410
|
} } : new FinalizationRegistry((ptr) => wasm.__wbg_baseplugin_free(ptr >>> 0));
|