tango-api-schema 2.0.13 → 2.0.14

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.0.13",
3
+ "version": "2.0.14",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -279,28 +279,6 @@ const client = new mongoose.Schema(
279
279
  type: Number, // calculate no of past days
280
280
  enum:[1,2,3,4,5,6,8,9,10,11,12]
281
281
  },
282
- isRcaTicketAssign:{
283
- type: Boolean,
284
- default:true
285
- },
286
- isRefreshAlert:{
287
- type: Boolean,
288
- default:true
289
- },
290
- isStatusCheckAlert:{
291
- type: Boolean,
292
- default:true
293
- },
294
- alertSentTo:{
295
- admin:{
296
- type:Boolean,
297
- default:false
298
- },
299
- user:{
300
- type:Boolean,
301
- default:false
302
- }
303
- }
304
282
 
305
283
  },
306
284
  reportConfigs: {
@@ -16,6 +16,10 @@ const tangoTickets = new mongoose.Schema(
16
16
  enum:['infra','highcount','lowcount','installation']
17
17
  },
18
18
  infraTicketDetails:{
19
+ assigntoUser:{
20
+ type:Boolean,
21
+ default:false,
22
+ },
19
23
  ticketClosingtime:{
20
24
  type:Date
21
25
  },