tango-app-api-audit 3.4.11-alpha.3 → 3.4.11-alpha.4

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-app-api-audit",
3
- "version": "3.4.11-alpha.3",
3
+ "version": "3.4.11-alpha.4",
4
4
  "description": "audit & audit metrics apis",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -1191,6 +1191,7 @@ export async function saveDraft( req, res ) {
1191
1191
  clientName: inputData.queueName,
1192
1192
  beforeCount: inputData.totalCount,
1193
1193
  afterCount: inputData.customerCount,
1194
+ timeSpent: inputData.timeSpent,
1194
1195
  auditId: inputData.auditId,
1195
1196
  moduleType: inputData.moduleType,
1196
1197
  zoneName: inputData.zoneName,
@@ -52,6 +52,7 @@ export const saveDraftSchema = joi.object( {
52
52
  auditId: joi.string().required(),
53
53
  moduleType: joi.string().required(),
54
54
  zoneName: joi.string().required(),
55
+ timeSpent: joi.number().required(),
55
56
  auditType: joi.string().required(),
56
57
  fileDate: joi.string().required(),
57
58
  queueName: joi.string().required(),