@candlerip/shared3 0.0.114 → 0.0.116
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -2,4 +2,4 @@ import * as mongoose from 'mongoose';
|
|
2
2
|
const ErrorLogSchema = new mongoose.Schema({
|
3
3
|
customError: { type: mongoose.Schema.Types.Mixed },
|
4
4
|
}, { timestamps: true, versionKey: false });
|
5
|
-
export const ErrorLogModel = mongoose.models
|
5
|
+
export const ErrorLogModel = mongoose.models?.errorLogs || mongoose.model('errorLogs', ErrorLogSchema);
|
@@ -4,4 +4,4 @@ const TranslationSchema = new mongoose.Schema({
|
|
4
4
|
en: { type: String },
|
5
5
|
hu: { type: String },
|
6
6
|
}, { timestamps: true, versionKey: false });
|
7
|
-
export const TranslationDbModel = mongoose.models
|
7
|
+
export const TranslationDbModel = mongoose.models?.translations || mongoose.model('translations', TranslationSchema);
|
package/src/backend/index.d.ts
CHANGED
package/src/backend/index.js
CHANGED