tango-api-schema 2.1.13 → 2.1.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.1.13",
3
+ "version": "2.1.15",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -377,6 +377,10 @@ const client = new mongoose.Schema(
377
377
  type:Boolean,
378
378
  default:false
379
379
  },
380
+ isNewDashboard:{
381
+ type:Boolean,
382
+ default:false
383
+ },
380
384
  },
381
385
  document: {
382
386
  addressProof: {
@@ -0,0 +1,18 @@
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
+ timestamps: true,
13
+ strict: true,
14
+ versionKey: false,
15
+ }
16
+ );
17
+
18
+ export default mongoose.model("eyeTest", collection);