tango-api-schema 2.2.110 → 2.2.112
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/index.js
CHANGED
|
@@ -86,6 +86,7 @@ import planoStaticData from './schema/planoStaticData.model.js';
|
|
|
86
86
|
import suspiciousActivityModel from "./schema/suspiciousActivity.model.js";
|
|
87
87
|
import auditConfigModel from "./schema/auditConfig.model.js";
|
|
88
88
|
import revopConfigModel from "./schema/revopConfig.model.js";
|
|
89
|
+
import planoCrestLogModel from './schema/planoCrestLog.model.js';
|
|
89
90
|
|
|
90
91
|
|
|
91
92
|
|
|
@@ -177,6 +178,6 @@ export default {
|
|
|
177
178
|
planoStaticData,
|
|
178
179
|
suspiciousActivityModel,
|
|
179
180
|
auditConfigModel,
|
|
180
|
-
revopConfigModel
|
|
181
|
-
|
|
181
|
+
revopConfigModel,
|
|
182
|
+
planoCrestLogModel,
|
|
182
183
|
};
|
package/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @name planoCrestLogModel
|
|
3
|
+
* @description planoCrestLog Schema
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import mongoose from "mongoose";
|
|
7
|
+
|
|
8
|
+
const collection = new mongoose.Schema(
|
|
9
|
+
{
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
timestamps: true,
|
|
13
|
+
strict: false,
|
|
14
|
+
versionKey: false,
|
|
15
|
+
}
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
export default mongoose.model("planoCrestLog", collection);
|