tango-api-schema 2.1.91 → 2.1.93

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.1.91",
3
+ "version": "2.1.93",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -174,6 +174,10 @@ const checklistconfigSchema = new mongoose.Schema({
174
174
  type:Array,
175
175
  default:[]
176
176
  },
177
+ owner:{
178
+ type:Array,
179
+ default:[]
180
+ },
177
181
  },
178
182
  {
179
183
  strict: true,
@@ -55,6 +55,9 @@ const checklistlogSchema = new mongoose.Schema({
55
55
  userAnswer:{
56
56
  type:Array
57
57
  },
58
+ checkListType:{
59
+ type:String
60
+ },
58
61
  },
59
62
  {
60
63
  strict: true,
@@ -273,7 +273,7 @@ const client = new mongoose.Schema(
273
273
  default:'<='
274
274
  },
275
275
  value: {
276
- type: Number,
276
+ type: String,
277
277
  default: "1"
278
278
  },
279
279
  },
@@ -283,7 +283,7 @@ const client = new mongoose.Schema(
283
283
  default: '>'
284
284
  },
285
285
  value: {
286
- type: Number,
286
+ type: String,
287
287
  default:'1'
288
288
  },
289
289
  },
@@ -293,7 +293,7 @@ const client = new mongoose.Schema(
293
293
  default:"<="
294
294
  },
295
295
  value: {
296
- type: Number,
296
+ type: String,
297
297
  default:"5"
298
298
  },
299
299
  },
@@ -303,7 +303,7 @@ const client = new mongoose.Schema(
303
303
  default:">"
304
304
  },
305
305
  value: {
306
- type: Number,
306
+ type: String,
307
307
  default:'5'
308
308
  },
309
309
  },
@@ -189,7 +189,11 @@ const processedchecklistSchema = new mongoose.Schema({
189
189
  redoStatus:{
190
190
  type:Boolean,
191
191
  default:false
192
- }
192
+ },
193
+ remainder:{
194
+ type:Array,
195
+ default:[]
196
+ },
193
197
  },
194
198
  {
195
199
  strict: true,