@bob-kit/types 0.0.11 → 0.0.13
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/errors.d.ts +2 -0
- package/dist/errors.js +2 -0
- package/package.json +1 -1
package/dist/errors.d.ts
CHANGED
|
@@ -32,6 +32,8 @@ export declare const BobErrors: {
|
|
|
32
32
|
readonly JsonParse: "JsonParse";
|
|
33
33
|
readonly UndefinedOrderTarget: "UndefinedOrderTarget";
|
|
34
34
|
readonly MultipleActions: "MultipleActions";
|
|
35
|
+
readonly LimitMustBeNumeric: "LimitMustBeNumeric";
|
|
36
|
+
readonly UnclosedContextAtTable: "MalformedTable";
|
|
35
37
|
};
|
|
36
38
|
export type BobQueryError = {
|
|
37
39
|
name: (typeof BobErrors)[keyof typeof BobErrors];
|
package/dist/errors.js
CHANGED