@fnlb-project/database 1.0.8 → 1.0.9
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 +7 -0
- package/dist/index.js +381 -381
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5085,5 +5085,12 @@ export declare const UserModel: import("mongoose").Model<{
|
|
|
5085
5085
|
__v: number;
|
|
5086
5086
|
}) | null>;
|
|
5087
5087
|
};
|
|
5088
|
+
export declare enum DatabaseErrors {
|
|
5089
|
+
InternalError = 1,
|
|
5090
|
+
BadValue = 2,
|
|
5091
|
+
NoSuchKey = 4,
|
|
5092
|
+
KeyNotFound = 211,
|
|
5093
|
+
DuplicateKey = 11000
|
|
5094
|
+
}
|
|
5088
5095
|
|
|
5089
5096
|
export {};
|