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
|
@@ -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',
|
package/src/dtos/revop.dtos.js
CHANGED