tango-api-schema 2.0.64 → 2.0.66

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.64",
3
+ "version": "2.0.66",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -63,6 +63,11 @@ const tangoTickets = new mongoose.Schema(
63
63
  default: 'notidentified',
64
64
  enum: ['identified', 'notidentified']
65
65
  },
66
+ refreshTicketStatus: {
67
+ type: String,
68
+ default: 'notidentified',
69
+ enum: ['identified', 'notidentified']
70
+ },
66
71
  ticketRefreshTime: {
67
72
  type: Date
68
73
  },
@@ -97,9 +102,8 @@ const tangoTickets = new mongoose.Schema(
97
102
  type: mongoose.Types.ObjectId
98
103
  },
99
104
  comment: {
100
- type: {
101
- String
102
- }
105
+ type: String
106
+
103
107
  },
104
108
  reasons: [
105
109
  {