tango-api-schema 2.2.109 → 2.2.110

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.2.109",
3
+ "version": "2.2.110",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -223,7 +223,19 @@ const processedchecklistSchema = new mongoose.Schema({
223
223
  },
224
224
  deviceDetails: {
225
225
  type: Object
226
- }
226
+ },
227
+ approvalTime:{
228
+ type: Date,
229
+ },
230
+ approvalTime_string:{
231
+ type: String,
232
+ },
233
+ approvalByName:{
234
+ type: String,
235
+ },
236
+ approvalByEmail:{
237
+ type: String,
238
+ },
227
239
  },
228
240
  {
229
241
  strict: true,
@@ -213,6 +213,25 @@ const processedTaskSchema = new mongoose.Schema(
213
213
  isPlano:{
214
214
  type:Boolean,
215
215
  },
216
+ rawVideoUpload: {
217
+ type: Boolean,
218
+ default:false
219
+ },
220
+ deviceDetails: {
221
+ type: Object
222
+ },
223
+ approvalTime:{
224
+ type: Date,
225
+ },
226
+ approvalTime_string:{
227
+ type: String,
228
+ },
229
+ approvalByName:{
230
+ type: String,
231
+ },
232
+ approvalByEmail:{
233
+ type: String,
234
+ },
216
235
  },
217
236
  {
218
237
  strict: true,