tango-api-schema 2.2.75 → 2.2.77

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.75",
3
+ "version": "2.2.77",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -140,6 +140,22 @@ const collection = new Schema(
140
140
  trim: true,
141
141
  default: 50,
142
142
  },
143
+ crf:{
144
+ type: String,
145
+ trim: true,
146
+ enum: ["18", "23","28","35"],
147
+ default: "28",
148
+ },
149
+ preset:{
150
+ type: String,
151
+ trim: true,
152
+ enum: ["ultrafast", "superfast","veryfast","faster","fast","medium","slow"],
153
+ default: "medium",
154
+ },
155
+ compression:{
156
+ type: Boolean,
157
+ default: false,
158
+ }
143
159
  },
144
160
  {
145
161
  strict: true,
@@ -27,6 +27,10 @@ const planoTaskCompliance = new mongoose.Schema(
27
27
  enum: ['fixture', 'vm', 'product', 'layout'],
28
28
  required: true
29
29
  },
30
+ date_string:{
31
+ type:String,
32
+ required:true
33
+ },
30
34
  },
31
35
  {
32
36
  timestamps: true,
@@ -285,7 +285,11 @@ const store = new mongoose.Schema(
285
285
  },
286
286
  videoQueueList: {
287
287
  type: Array,
288
- default: [],
288
+ default: ["YOLO-VIDEO"],
289
+ },
290
+ processType: {
291
+ type: String,
292
+ default: "eod"
289
293
  },
290
294
  productFilter: [
291
295
  {