@trust0/ridb-core 1.6.0-rc.1 → 1.6.0
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/package.json +1 -1
- package/pkg/ridb_core.d.ts +10 -10
- package/pkg/ridb_core.js +3 -3
package/package.json
CHANGED
package/pkg/ridb_core.d.ts
CHANGED
|
@@ -38,6 +38,16 @@ export function __wbgtest_console_warn(args: Array<any>): void;
|
|
|
38
38
|
*/
|
|
39
39
|
export function __wbgtest_console_error(args: Array<any>): void;
|
|
40
40
|
/**
|
|
41
|
+
*/
|
|
42
|
+
export 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
|
export enum OpType {
|
|
@@ -62,16 +72,6 @@ export enum OpType {
|
|
|
62
72
|
*/
|
|
63
73
|
COUNT = 4,
|
|
64
74
|
}
|
|
65
|
-
/**
|
|
66
|
-
*/
|
|
67
|
-
export 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
|
/**
|
|
77
77
|
* Represents a property within a schema, including various constraints and nested properties.
|
package/pkg/ridb_core.js
CHANGED
|
@@ -422,6 +422,9 @@ function __wbg_adapter_384(arg0, arg1, arg2, arg3) {
|
|
|
422
422
|
wasm.wasm_bindgen__convert__closures__invoke2_mut__h52532ff5a9b6e10e(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
|
|
423
423
|
}
|
|
424
424
|
|
|
425
|
+
/**
|
|
426
|
+
*/
|
|
427
|
+
export const 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", });
|
|
425
428
|
/**
|
|
426
429
|
* Represents the type of operation to be performed on the collection.
|
|
427
430
|
*/
|
|
@@ -446,9 +449,6 @@ QUERY:3,"3":"QUERY",
|
|
|
446
449
|
* Count Operation.
|
|
447
450
|
*/
|
|
448
451
|
COUNT:4,"4":"COUNT", });
|
|
449
|
-
/**
|
|
450
|
-
*/
|
|
451
|
-
export const 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", });
|
|
452
452
|
|
|
453
453
|
const BasePluginFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
454
454
|
? { register: () => {}, unregister: () => {} }
|