tango-app-api-store-zone 3.3.1-beta.5 → 3.3.1-beta.6
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
|
@@ -224,12 +224,12 @@ export const tagging = async ( req, res ) => {
|
|
|
224
224
|
...taggingDetails.toObject(),
|
|
225
225
|
},
|
|
226
226
|
oldData: {
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
TagName: taggingDetails.tagName,
|
|
228
|
+
StreamName: taggingDetails.streamName,
|
|
229
229
|
},
|
|
230
230
|
newData: {
|
|
231
|
-
|
|
232
|
-
|
|
231
|
+
TagName: taggingDetails.tagName,
|
|
232
|
+
StreamName: taggingDetails.streamName,
|
|
233
233
|
},
|
|
234
234
|
showTo: [ 'tango', 'client' ],
|
|
235
235
|
};
|
|
@@ -452,10 +452,10 @@ export const updateTag = async ( req, res ) => {
|
|
|
452
452
|
tagName: req.body.tagName,
|
|
453
453
|
},
|
|
454
454
|
oldData: {
|
|
455
|
-
|
|
455
|
+
TagName: req.body.existTag,
|
|
456
456
|
},
|
|
457
457
|
newData: {
|
|
458
|
-
|
|
458
|
+
TagName: req.body.tagName,
|
|
459
459
|
},
|
|
460
460
|
showTo: [ 'tango', 'client' ],
|
|
461
461
|
};
|