tango-api-schema 2.4.14 → 2.4.16

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.4.14",
3
+ "version": "2.4.16",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -15,6 +15,9 @@ const tangoTickets = new mongoose.Schema(
15
15
  type: String,
16
16
  enum: ['infra', 'mat', 'highcount', 'lowcount', 'installation']
17
17
  },
18
+ productModule: {
19
+ type: String,
20
+ },
18
21
  hibernation: {
19
22
  type: Date
20
23
  },
@@ -110,7 +110,15 @@ const taskSchema = new mongoose.Schema(
110
110
  },
111
111
  zoneName: {
112
112
  type: String
113
- }
113
+ },
114
+ videoUploadTimeLimit:{
115
+ type:Number,
116
+ default:0
117
+ },
118
+ rawVideoUpload: {
119
+ type: Boolean,
120
+ default:false
121
+ },
114
122
  },
115
123
  {
116
124
  strict: true,
@@ -249,7 +249,15 @@ const processedTaskSchema = new mongoose.Schema(
249
249
  },
250
250
  refTaskId:{
251
251
  type:mongoose.Types.ObjectId
252
- }
252
+ },
253
+ videoUploadTimeLimit:{
254
+ type:Number,
255
+ default:0
256
+ },
257
+ rawVideoUpload: {
258
+ type: Boolean,
259
+ default:false
260
+ },
253
261
  },
254
262
  {
255
263
  strict: true,