tango-app-api-analysis-traffic 3.8.8 → 3.8.9
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 +1 -1
- package/src/dtos/revop.dtos.js +2 -2
package/package.json
CHANGED
package/src/dtos/revop.dtos.js
CHANGED
|
@@ -55,8 +55,8 @@ export const tagTempIdSchema = joi.object( {
|
|
|
55
55
|
|
|
56
56
|
const diff = today.diff( inputDate, 'day' );
|
|
57
57
|
|
|
58
|
-
if ( diff >
|
|
59
|
-
return helpers.message( 'Tagging is not allowed for a period exceeding
|
|
58
|
+
if ( diff > 4 ) {
|
|
59
|
+
return helpers.message( 'Tagging is not allowed for a period exceeding 4 days' );
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
return value;
|