tango-api-schema 1.0.77 → 1.0.78
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 +3 -1
- package/package.json +1 -1
- package/schema/hotjar.model.js +19 -0
package/index.js
CHANGED
|
@@ -37,6 +37,7 @@ import activitylogModel from "./schema/activitylog.model.js";
|
|
|
37
37
|
import dailyWorkLogModel from "./schema/dailyWorkLog.model.js";
|
|
38
38
|
import financeModel from "./schema/finance.model.js";
|
|
39
39
|
import eyeTestDataModel from "./schema/eyeTestData.model.js";
|
|
40
|
+
import hotjarModel from "./schema/hotjar.model.js";
|
|
40
41
|
|
|
41
42
|
export default {
|
|
42
43
|
clientModel,
|
|
@@ -77,5 +78,6 @@ export default {
|
|
|
77
78
|
activitylogModel,
|
|
78
79
|
dailyWorkLogModel,
|
|
79
80
|
financeModel,
|
|
80
|
-
eyeTestDataModel
|
|
81
|
+
eyeTestDataModel,
|
|
82
|
+
hotjarModel
|
|
81
83
|
};
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @name api_eyeTest_models
|
|
3
|
+
* @description EyeTest Schema
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import mongoose from "mongoose";
|
|
7
|
+
|
|
8
|
+
// Schema
|
|
9
|
+
const collection = new mongoose.Schema(
|
|
10
|
+
{
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
timestamps: true,
|
|
14
|
+
strict: false,
|
|
15
|
+
versionKey: false,
|
|
16
|
+
}
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
export default mongoose.model("hotJarTracking", collection,"hotJarTracking");
|