tango-app-api-store-zone 3.0.17-dev → 3.0.18-dev

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-store-zone",
3
- "version": "3.0.17-dev",
3
+ "version": "3.0.18-dev",
4
4
  "description": "zone",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -41,7 +41,7 @@ export const addCustomTag = async ( req, res ) => {
41
41
 
42
42
  export const customTagList = async ( req, res ) => {
43
43
  try {
44
- let customTagList = [];
44
+ let customTagList = [ 'Front', 'Back' ];
45
45
  let storeDetails = await storeService.findOne( { storeId: req.query.storeId }, { product: 1 } );
46
46
  let clientDetails = await clientService.findOne( { clientId: req.query.clientId }, { featureConfigs: 1 } );
47
47
  if ( clientDetails && clientDetails?.featureConfigs?.isExcludedArea ) {