tango-api-schema 2.0.37 → 2.0.39

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.37",
3
+ "version": "2.0.39",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -342,9 +342,6 @@ const client = new mongoose.Schema(
342
342
  type:Number
343
343
  }
344
344
  },
345
- price:{
346
- type:Number
347
- },
348
345
  priceType:{
349
346
  type:String,
350
347
  enum: ['standard','step']
@@ -195,6 +195,10 @@ const store = new mongoose.Schema(
195
195
  },
196
196
  spocDetails: [
197
197
  {
198
+ _id: {
199
+ type: mongoose.Schema.Types.ObjectId,
200
+ default: new mongoose.Types.ObjectId()
201
+ },
198
202
  name: {
199
203
  type: String,
200
204
  required: true,
@@ -15,7 +15,13 @@ const tangoTickets = new mongoose.Schema(
15
15
  type: String,
16
16
  enum: ['infra', 'highcount', 'lowcount', 'installation']
17
17
  },
18
+ hibernation:{
19
+ type:Date
20
+ },
18
21
  infraTicketDetails: {
22
+ issueIdentifiedDate:{
23
+ type:Date
24
+ },
19
25
  issueIdentifiedBy:{
20
26
  type:String,
21
27
  enum:["client",'tango',"automated"]
@@ -49,6 +55,15 @@ const tangoTickets = new mongoose.Schema(
49
55
  },
50
56
  infraActivity: [
51
57
  {
58
+ statusCheckAlertTime:{
59
+ type: Date,
60
+ },
61
+ statusCheckReply:{
62
+ type: String,
63
+ },
64
+ hibernationDays:{
65
+ type: String,
66
+ },
52
67
  actionType: {
53
68
  type: String
54
69
  },