tango-api-schema 1.0.70 → 1.0.72
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 +1 -1
- package/schema/client.model.js +12 -8
- package/schema/eyeTest.model.js +3 -0
package/package.json
CHANGED
package/schema/client.model.js
CHANGED
|
@@ -96,6 +96,18 @@ const clientSchema = new mongoose.Schema(
|
|
|
96
96
|
type: String,
|
|
97
97
|
},
|
|
98
98
|
},
|
|
99
|
+
liveMetrics: {
|
|
100
|
+
type: String,
|
|
101
|
+
default: "",
|
|
102
|
+
},
|
|
103
|
+
isLiveMetricsEnable:{
|
|
104
|
+
type: Boolean,
|
|
105
|
+
default: false,
|
|
106
|
+
},
|
|
107
|
+
liveMetricsType: {
|
|
108
|
+
type: String,
|
|
109
|
+
default: "",
|
|
110
|
+
},
|
|
99
111
|
},
|
|
100
112
|
clientStatus: {
|
|
101
113
|
type: String,
|
|
@@ -127,14 +139,6 @@ const clientSchema = new mongoose.Schema(
|
|
|
127
139
|
type: String,
|
|
128
140
|
default: "",
|
|
129
141
|
},
|
|
130
|
-
liveMetrics: {
|
|
131
|
-
type: String,
|
|
132
|
-
default: "",
|
|
133
|
-
},
|
|
134
|
-
isLiveMetricsEnable: {
|
|
135
|
-
type: Boolean,
|
|
136
|
-
default: false,
|
|
137
|
-
},
|
|
138
142
|
},
|
|
139
143
|
auditConfigs: {
|
|
140
144
|
count: {
|