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
|
@@ -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,
|