tango-api-schema 2.2.100 → 2.2.101

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.100",
3
+ "version": "2.2.101",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -232,6 +232,10 @@ const checklistconfigSchema = new mongoose.Schema({
232
232
  type:Boolean
233
233
  }
234
234
  },
235
+ rawVideoUpload: {
236
+ type: Boolean,
237
+ default:false
238
+ },
235
239
  },
236
240
  {
237
241
  strict: true,
@@ -217,6 +217,13 @@ const processedchecklistSchema = new mongoose.Schema({
217
217
  type: Boolean,
218
218
  default:false
219
219
  },
220
+ rawVideoUpload: {
221
+ type: Boolean,
222
+ default:false
223
+ },
224
+ deviceDetails: {
225
+ type: Object
226
+ }
220
227
  },
221
228
  {
222
229
  strict: true,
@@ -121,7 +121,8 @@ const processedchecklistconfigSchema = new mongoose.Schema({
121
121
  rawImageUpload: {
122
122
  type: Boolean,
123
123
  default:false
124
- },aiStoreList:{
124
+ },
125
+ aiStoreList:{
125
126
  type:Array
126
127
  },
127
128
  aiConfig:{
@@ -158,6 +159,10 @@ const processedchecklistconfigSchema = new mongoose.Schema({
158
159
  type:Boolean
159
160
  }
160
161
  },
162
+ rawVideoUpload: {
163
+ type: Boolean,
164
+ default:false
165
+ },
161
166
  },
162
167
  {
163
168
  strict: true,