tango-app-api-analysis-traffic 3.0.0-alpha.22 → 3.0.0-alpha.23

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.0.0-alpha.22",
3
+ "version": "3.0.0-alpha.23",
4
4
  "description": "Traffic Analysis",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -32,6 +32,7 @@ export const validateRecapVideoSchema = joi.object( {
32
32
  clientId: joi.string().required(),
33
33
  storeId: joi.array().required().empty(),
34
34
  recapVideoDate: joi.string().required(),
35
+ valueType: joi.string().optional().allow( '' ),
35
36
  } );
36
37
 
37
38
  export const validateRecapVideoParams = {
@@ -111,6 +112,7 @@ export const validateFootfallDirectoryFoldersSchema = joi.object( {
111
112
  storeId: joi.array().required().empty(),
112
113
  footfallDate: joi.string().required(),
113
114
  processType: joi.string().required(),
115
+ valueType: joi.string().optional().allow( '' ),
114
116
  } );
115
117
 
116
118
  export const validateFootfallDirectoryFoldersParams = {
@@ -123,6 +125,7 @@ export const validateFootfallDirectorySchema = joi.object( {
123
125
  footfallDate: joi.string().required(),
124
126
  processType: joi.string().required(),
125
127
  folderName: joi.string().required(),
128
+ valueType: joi.string().optional().allow( '' ),
126
129
  } );
127
130
 
128
131
  export const validateFootfallDirectoryParams = {