tango-app-api-analysis-traffic 3.8.7-vms.4 → 3.8.7-vms.5

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-analysis-traffic",
3
- "version": "3.8.7-vms.4",
3
+ "version": "3.8.7-vms.5",
4
4
  "description": "Traffic Analysis",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -548,6 +548,7 @@ export async function tagTempId( req, res ) {
548
548
  action: 'submitted',
549
549
  },
550
550
  ],
551
+ comments: inputData.comments || '',
551
552
  createdAt: new Date(),
552
553
  updatedAt: new Date(),
553
554
 
@@ -601,6 +602,7 @@ export async function tagTempId( req, res ) {
601
602
  isParent: false,
602
603
  type: 'tagging-reflect',
603
604
  ticketStatus: 'submitted',
605
+ comments: inputData.comments || '',
604
606
  actions: [
605
607
  {
606
608
  actionType: 'tagging',
@@ -84,6 +84,7 @@ export const tagTempIdSchema = joi.object( {
84
84
  entryTime: joi.string().required(),
85
85
  exitTime: joi.string().required(),
86
86
  filePath: joi.string().required(),
87
+ comments: joi.string().optional().allow( '' ),
87
88
 
88
89
  } );
89
90