tango-api-schema 2.0.99 → 2.0.101

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.99",
3
+ "version": "2.0.101",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -51,6 +51,15 @@ const tangoTickets = new mongoose.Schema(
51
51
  attachmentPath: {
52
52
  type: String
53
53
  },
54
+ mappedCount: {
55
+ type: Number
56
+ },
57
+ zipFilePath: {
58
+ type: String
59
+ },
60
+ successPercentage: {
61
+ type: Number
62
+ }
54
63
  },
55
64
  ticketDetails: {
56
65
  issueIdentifiedDate: {
@@ -121,6 +130,12 @@ const tangoTickets = new mongoose.Schema(
121
130
  actionBy: {
122
131
  type: String
123
132
  },
133
+ description: {
134
+ type: String
135
+ },
136
+ attachments: {
137
+ type: Array
138
+ },
124
139
  actionId: {
125
140
  type: mongoose.Types.ObjectId
126
141
  },